commit e4204178d5b1f3b369626368d90bd14fc47496b4 Author: Virgile Bello Date: Thu Apr 25 19:02:52 2019 +0900 Initial commit diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..03a9bd7 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,19 @@ +*.dll filter=lfs diff=lfs merge=lfs -text +*.fbx filter=lfs diff=lfs merge=lfs -text +*.FBX filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.tga filter=lfs diff=lfs merge=lfs -text +*.max filter=lfs diff=lfs merge=lfs -text +*.psd filter=lfs diff=lfs merge=lfs -text +*.blend filter=lfs diff=lfs merge=lfs -text +*.bmp filter=lfs diff=lfs merge=lfs -text +*.dds filter=lfs diff=lfs merge=lfs -text +*.wav filter=lfs diff=lfs merge=lfs -text +*.mp3 filter=lfs diff=lfs merge=lfs -text +*.mb filter=lfs diff=lfs merge=lfs -text +*.exe filter=lfs diff=lfs merge=lfs -text +*.jpg filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.flv filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.spp filter=lfs diff=lfs merge=lfs -text \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..351d3c2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,17 @@ +**/Bin/ +**/obj/ +**/log/ +*.user +*.lock +.vs/ +_ReSharper* +*.suo +Starbreach.sdf +Starbreach/Starbreach/log/ +*.psess +*.VC.db +*.vsp +*.vshost.exe +*.manifest +**/*.fbm +Cache/ diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..55d7292 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,31 @@ +# License + +## Code + +The MIT License (MIT) + +Copyright (c) 2016-2017 Silicon Studio Corp. (https://www.siliconstudio.co.jp) + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +## Assets + +Assets are released under [Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)](https://creativecommons.org/licenses/by-nc/4.0/) license. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..3148ace --- /dev/null +++ b/README.md @@ -0,0 +1,15 @@ +# Starbreach + +[Xenko](https://xenko.com) demo, made in 2016/2017 by [Silicon Studio](https://www.siliconstudio.co.jp) + +![Poster](poster.jpg) + +![Editor screenshot](editor_screenshot.jpg) + +## License + +Code: [MIT](https://opensource.org/licenses/MIT) + +Assets: [Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)](https://creativecommons.org/licenses/by-nc/4.0/) + +[More details here.](LICENSE.md) \ No newline at end of file diff --git a/Starbreach.Windows/Resources/Icon.ico b/Starbreach.Windows/Resources/Icon.ico new file mode 100644 index 0000000..29256ad Binary files /dev/null and b/Starbreach.Windows/Resources/Icon.ico differ diff --git a/Starbreach.Windows/Starbreach.Windows.csproj b/Starbreach.Windows/Starbreach.Windows.csproj new file mode 100644 index 0000000..9decd73 --- /dev/null +++ b/Starbreach.Windows/Starbreach.Windows.csproj @@ -0,0 +1,63 @@ + + + + net461 + Resources\Icon.ico + WinExe + Starbreach + + ..\Bin\Windows\$(Configuration)\ + false + + + $(MSBuildThisFileDirectory)..\Starbreach.xkpkg + Executable + Windows + Windows + + + true + full + false + DEBUG;TRACE;XENKO_PLATFORM_WINDOWS;XENKO_PLATFORM_WINDOWS_DESKTOP + ..\Bin\Windows\Debug\ + obj\Windows\Debug\ + prompt + 4 + true + + + pdbonly + true + TRACE;XENKO_PLATFORM_WINDOWS;XENKO_PLATFORM_WINDOWS_DESKTOP + ..\Bin\Windows\Release\ + obj\Windows\Release\ + prompt + 4 + true + + + pdbonly + true + TRACE;XENKO_PLATFORM_WINDOWS;XENKO_PLATFORM_WINDOWS_DESKTOP + ..\Bin\Windows\Testing\ + obj\Windows\Testing\ + prompt + 4 + true + + + pdbonly + true + TRACE;XENKO_PLATFORM_WINDOWS;XENKO_PLATFORM_WINDOWS_DESKTOP + ..\Bin\Windows\AppStore\ + obj\Windows\AppStore\ + prompt + 4 + true + + + + + + diff --git a/Starbreach.Windows/StarbreachApp.cs b/Starbreach.Windows/StarbreachApp.cs new file mode 100644 index 0000000..bec4e2e --- /dev/null +++ b/Starbreach.Windows/StarbreachApp.cs @@ -0,0 +1,17 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using Xenko.Engine; + +namespace Starbreach +{ + class StarbreachApp + { + static void Main(string[] args) + { + using (var game = new StarbreachGame()) + { + game.Run(); + } + } + } +} diff --git a/Starbreach.Windows/StarbreachGame.cs b/Starbreach.Windows/StarbreachGame.cs new file mode 100644 index 0000000..0ea288a --- /dev/null +++ b/Starbreach.Windows/StarbreachGame.cs @@ -0,0 +1,78 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System.IO; +using System.Linq; +using System.Threading.Tasks; +using Starbreach; +using Xenko.Engine; +using Xenko.Games; +using Xenko.Graphics; + +namespace Starbreach +{ + public class StarbreachGame : Game, IStarbreach + { + public Entity PlayerUiEntity { get; private set; } + + + public StarbreachGame() + { + IsFixedTimeStep = true; + IsDrawDesynchronized = true; + } + + public void SaveTexture(Texture texture, string path, ImageFileType fileType) + { + using (var stream = File.Create(path)) + { + texture.Save(GraphicsContext.CommandList, stream, fileType); + } + } + + protected override void Initialize() + { + base.Initialize(); + + Services.AddService(this); + } + + protected override Task LoadContent() + { + return base.LoadContent(); + } + + protected override void BeginRun() + { + //// TODO remove this hack to create a seperate UI scene when post effects no longer get applied to UI + //var compositor = (SceneGraphicsCompositorLayers)SceneSystem.SceneInstance.Scene.Settings.GraphicsCompositor; + //Entity uiEntity; + //SceneChildRenderer childRend1; + + Scene uiScene = Content.Load("UI/UISceneSoldier"); + + // SceneSystem.SceneInstance.Scene.Entities.Add(uiEntity); + // childRend1 = new SceneChildRenderer(uiEntity.Get()); + // compositor.Master.Add(childRend1); + + // TODO Hack the HUD + PlayerUiEntity = uiScene.Entities.First(x => x.Name == "UI"); + + base.BeginRun(); + } + + protected override void Draw(GameTime gameTime) + { + base.Draw(gameTime); + } + + protected override void Update(GameTime gameTime) + { + base.Update(gameTime); + } + + protected override void Destroy() + { + base.Destroy(); + } + } +} diff --git a/Starbreach.sln b/Starbreach.sln new file mode 100644 index 0000000..c6197ab --- /dev/null +++ b/Starbreach.sln @@ -0,0 +1,112 @@ +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.26430.16 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Starbreach.Windows", "Starbreach.Windows\Starbreach.Windows.csproj", "{DB769CC4-C8BC-49A4-A9AF-DA67C1267F26}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Starbreach", "Starbreach\Starbreach.csproj", "{7FDAE97A-8B8E-4D00-B555-6D0DCD398CE0}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VFXPackage", "VFXPackage\VFXPackage.csproj", "{ED36EE06-A604-4E33-B6F3-F49447853079}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + AppStore|Any CPU = AppStore|Any CPU + AppStore|Mixed Platforms = AppStore|Mixed Platforms + AppStore|Windows = AppStore|Windows + Debug|Any CPU = Debug|Any CPU + Debug|Mixed Platforms = Debug|Mixed Platforms + Debug|Windows = Debug|Windows + Release|Any CPU = Release|Any CPU + Release|Mixed Platforms = Release|Mixed Platforms + Release|Windows = Release|Windows + Testing|Any CPU = Testing|Any CPU + Testing|Mixed Platforms = Testing|Mixed Platforms + Testing|Windows = Testing|Windows + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {DB769CC4-C8BC-49A4-A9AF-DA67C1267F26}.AppStore|Any CPU.ActiveCfg = Release|Any CPU + {DB769CC4-C8BC-49A4-A9AF-DA67C1267F26}.AppStore|Any CPU.Build.0 = Release|Any CPU + {DB769CC4-C8BC-49A4-A9AF-DA67C1267F26}.AppStore|Mixed Platforms.ActiveCfg = Release|Any CPU + {DB769CC4-C8BC-49A4-A9AF-DA67C1267F26}.AppStore|Mixed Platforms.Build.0 = Release|Any CPU + {DB769CC4-C8BC-49A4-A9AF-DA67C1267F26}.AppStore|Windows.ActiveCfg = Release|Any CPU + {DB769CC4-C8BC-49A4-A9AF-DA67C1267F26}.AppStore|Windows.Build.0 = Release|Any CPU + {DB769CC4-C8BC-49A4-A9AF-DA67C1267F26}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DB769CC4-C8BC-49A4-A9AF-DA67C1267F26}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DB769CC4-C8BC-49A4-A9AF-DA67C1267F26}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {DB769CC4-C8BC-49A4-A9AF-DA67C1267F26}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {DB769CC4-C8BC-49A4-A9AF-DA67C1267F26}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {DB769CC4-C8BC-49A4-A9AF-DA67C1267F26}.Debug|Mixed Platforms.Deploy.0 = Debug|Any CPU + {DB769CC4-C8BC-49A4-A9AF-DA67C1267F26}.Debug|Windows.ActiveCfg = Debug|Any CPU + {DB769CC4-C8BC-49A4-A9AF-DA67C1267F26}.Debug|Windows.Build.0 = Debug|Any CPU + {DB769CC4-C8BC-49A4-A9AF-DA67C1267F26}.Debug|Windows.Deploy.0 = Debug|Any CPU + {DB769CC4-C8BC-49A4-A9AF-DA67C1267F26}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DB769CC4-C8BC-49A4-A9AF-DA67C1267F26}.Release|Any CPU.Build.0 = Release|Any CPU + {DB769CC4-C8BC-49A4-A9AF-DA67C1267F26}.Release|Any CPU.Deploy.0 = Release|Any CPU + {DB769CC4-C8BC-49A4-A9AF-DA67C1267F26}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {DB769CC4-C8BC-49A4-A9AF-DA67C1267F26}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {DB769CC4-C8BC-49A4-A9AF-DA67C1267F26}.Release|Mixed Platforms.Deploy.0 = Release|Any CPU + {DB769CC4-C8BC-49A4-A9AF-DA67C1267F26}.Release|Windows.ActiveCfg = Release|Any CPU + {DB769CC4-C8BC-49A4-A9AF-DA67C1267F26}.Release|Windows.Build.0 = Release|Any CPU + {DB769CC4-C8BC-49A4-A9AF-DA67C1267F26}.Release|Windows.Deploy.0 = Release|Any CPU + {DB769CC4-C8BC-49A4-A9AF-DA67C1267F26}.Testing|Any CPU.ActiveCfg = Release|Any CPU + {DB769CC4-C8BC-49A4-A9AF-DA67C1267F26}.Testing|Any CPU.Build.0 = Release|Any CPU + {DB769CC4-C8BC-49A4-A9AF-DA67C1267F26}.Testing|Mixed Platforms.ActiveCfg = Release|Any CPU + {DB769CC4-C8BC-49A4-A9AF-DA67C1267F26}.Testing|Mixed Platforms.Build.0 = Release|Any CPU + {DB769CC4-C8BC-49A4-A9AF-DA67C1267F26}.Testing|Windows.ActiveCfg = Release|Any CPU + {DB769CC4-C8BC-49A4-A9AF-DA67C1267F26}.Testing|Windows.Build.0 = Release|Any CPU + {7FDAE97A-8B8E-4D00-B555-6D0DCD398CE0}.AppStore|Any CPU.ActiveCfg = Release|Any CPU + {7FDAE97A-8B8E-4D00-B555-6D0DCD398CE0}.AppStore|Any CPU.Build.0 = Release|Any CPU + {7FDAE97A-8B8E-4D00-B555-6D0DCD398CE0}.AppStore|Mixed Platforms.ActiveCfg = Release|Any CPU + {7FDAE97A-8B8E-4D00-B555-6D0DCD398CE0}.AppStore|Mixed Platforms.Build.0 = Release|Any CPU + {7FDAE97A-8B8E-4D00-B555-6D0DCD398CE0}.AppStore|Windows.ActiveCfg = Release|Any CPU + {7FDAE97A-8B8E-4D00-B555-6D0DCD398CE0}.AppStore|Windows.Build.0 = Release|Any CPU + {7FDAE97A-8B8E-4D00-B555-6D0DCD398CE0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7FDAE97A-8B8E-4D00-B555-6D0DCD398CE0}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7FDAE97A-8B8E-4D00-B555-6D0DCD398CE0}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {7FDAE97A-8B8E-4D00-B555-6D0DCD398CE0}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {7FDAE97A-8B8E-4D00-B555-6D0DCD398CE0}.Debug|Windows.ActiveCfg = Debug|Any CPU + {7FDAE97A-8B8E-4D00-B555-6D0DCD398CE0}.Debug|Windows.Build.0 = Debug|Any CPU + {7FDAE97A-8B8E-4D00-B555-6D0DCD398CE0}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7FDAE97A-8B8E-4D00-B555-6D0DCD398CE0}.Release|Any CPU.Build.0 = Release|Any CPU + {7FDAE97A-8B8E-4D00-B555-6D0DCD398CE0}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {7FDAE97A-8B8E-4D00-B555-6D0DCD398CE0}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {7FDAE97A-8B8E-4D00-B555-6D0DCD398CE0}.Release|Windows.ActiveCfg = Release|Any CPU + {7FDAE97A-8B8E-4D00-B555-6D0DCD398CE0}.Release|Windows.Build.0 = Release|Any CPU + {7FDAE97A-8B8E-4D00-B555-6D0DCD398CE0}.Testing|Any CPU.ActiveCfg = Release|Any CPU + {7FDAE97A-8B8E-4D00-B555-6D0DCD398CE0}.Testing|Any CPU.Build.0 = Release|Any CPU + {7FDAE97A-8B8E-4D00-B555-6D0DCD398CE0}.Testing|Mixed Platforms.ActiveCfg = Release|Any CPU + {7FDAE97A-8B8E-4D00-B555-6D0DCD398CE0}.Testing|Mixed Platforms.Build.0 = Release|Any CPU + {7FDAE97A-8B8E-4D00-B555-6D0DCD398CE0}.Testing|Windows.ActiveCfg = Release|Any CPU + {7FDAE97A-8B8E-4D00-B555-6D0DCD398CE0}.Testing|Windows.Build.0 = Release|Any CPU + {ED36EE06-A604-4E33-B6F3-F49447853079}.AppStore|Any CPU.ActiveCfg = Debug|Any CPU + {ED36EE06-A604-4E33-B6F3-F49447853079}.AppStore|Any CPU.Build.0 = Debug|Any CPU + {ED36EE06-A604-4E33-B6F3-F49447853079}.AppStore|Mixed Platforms.ActiveCfg = Debug|Any CPU + {ED36EE06-A604-4E33-B6F3-F49447853079}.AppStore|Mixed Platforms.Build.0 = Debug|Any CPU + {ED36EE06-A604-4E33-B6F3-F49447853079}.AppStore|Windows.ActiveCfg = Debug|Any CPU + {ED36EE06-A604-4E33-B6F3-F49447853079}.AppStore|Windows.Build.0 = Debug|Any CPU + {ED36EE06-A604-4E33-B6F3-F49447853079}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {ED36EE06-A604-4E33-B6F3-F49447853079}.Debug|Any CPU.Build.0 = Debug|Any CPU + {ED36EE06-A604-4E33-B6F3-F49447853079}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {ED36EE06-A604-4E33-B6F3-F49447853079}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {ED36EE06-A604-4E33-B6F3-F49447853079}.Debug|Windows.ActiveCfg = Debug|Any CPU + {ED36EE06-A604-4E33-B6F3-F49447853079}.Debug|Windows.Build.0 = Debug|Any CPU + {ED36EE06-A604-4E33-B6F3-F49447853079}.Release|Any CPU.ActiveCfg = Release|Any CPU + {ED36EE06-A604-4E33-B6F3-F49447853079}.Release|Any CPU.Build.0 = Release|Any CPU + {ED36EE06-A604-4E33-B6F3-F49447853079}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {ED36EE06-A604-4E33-B6F3-F49447853079}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {ED36EE06-A604-4E33-B6F3-F49447853079}.Release|Windows.ActiveCfg = Release|Any CPU + {ED36EE06-A604-4E33-B6F3-F49447853079}.Release|Windows.Build.0 = Release|Any CPU + {ED36EE06-A604-4E33-B6F3-F49447853079}.Testing|Any CPU.ActiveCfg = Debug|Any CPU + {ED36EE06-A604-4E33-B6F3-F49447853079}.Testing|Any CPU.Build.0 = Debug|Any CPU + {ED36EE06-A604-4E33-B6F3-F49447853079}.Testing|Mixed Platforms.ActiveCfg = Debug|Any CPU + {ED36EE06-A604-4E33-B6F3-F49447853079}.Testing|Mixed Platforms.Build.0 = Debug|Any CPU + {ED36EE06-A604-4E33-B6F3-F49447853079}.Testing|Windows.ActiveCfg = Debug|Any CPU + {ED36EE06-A604-4E33-B6F3-F49447853079}.Testing|Windows.Build.0 = Debug|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {D12DFDBB-8FFE-4F21-A199-3C57737D03A2} + EndGlobalSection +EndGlobal diff --git a/Starbreach/Assets/Shared/Character/Animations/Death.xkanim b/Starbreach/Assets/Shared/Character/Animations/Death.xkanim new file mode 100644 index 0000000..3cf3380 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Animations/Death.xkanim @@ -0,0 +1,17 @@ +!Animation +Id: 7ff4ed25-a865-40df-9941-c12cfdc9ac45 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/Animations/08-05-2016/critical_injury.FBX +ClipDuration: + Enabled: false + StartAnimationTime: 0:00:00:00.0000000 + EndAnimationTime: 0:00:30:00.0000000 +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +RepeatMode: LoopInfinite +Type: !StandardAnimationAssetType {} +Skeleton: b18ce390-d277-401c-872c-917f4cb017d0:Character/Main_character_base Skeleton +RootMotion: false +PreviewModel: 94618d74-a17c-486b-88e0-42a1b6c081f2:Character/Main_character_base +AnimationTimeMinimum: 0:00:00:00.0000000 +AnimationTimeMaximum: 0:00:30:00.0000000 diff --git a/Starbreach/Assets/Shared/Character/Animations/Draw_Weapon.xkanim b/Starbreach/Assets/Shared/Character/Animations/Draw_Weapon.xkanim new file mode 100644 index 0000000..e281596 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Animations/Draw_Weapon.xkanim @@ -0,0 +1,23 @@ +!Animation +Id: 360c3467-1106-4b5f-b974-c2c8ad3edbf3 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/Animations/08-05-2016/stand_gun_goes_up.FBX +ClipDuration: + Enabled: false + StartAnimationTime: 0:00:00:00.0000000 + EndAnimationTime: 0:00:30:00.0000000 +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +RepeatMode: PlayOnce +Type: !DifferenceAnimationAssetType + BaseSource: ../../../../Resources/Character/Animations/17-29-2016/idle gun aim.FBX + Mode: FirstFrame + ClipDuration: + Enabled: false + StartAnimationTimeBox: 0:00:00:00.0000000 + EndAnimationTimeBox: 0:00:30:00.0000000 +Skeleton: b18ce390-d277-401c-872c-917f4cb017d0:Character/Main_character_base Skeleton +RootMotion: false +PreviewModel: 94618d74-a17c-486b-88e0-42a1b6c081f2:Character/Main_character_base +AnimationTimeMinimum: 0:00:00:00.0000000 +AnimationTimeMaximum: 0:00:30:00.0000000 diff --git a/Starbreach/Assets/Shared/Character/Animations/Fire_Weapon.xkanim b/Starbreach/Assets/Shared/Character/Animations/Fire_Weapon.xkanim new file mode 100644 index 0000000..4999536 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Animations/Fire_Weapon.xkanim @@ -0,0 +1,23 @@ +!Animation +Id: cc8b125e-d3d4-4079-8431-0d58c4ad12d4 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/Animations/08-05-2016/stand_walk_shot.FBX +ClipDuration: + Enabled: false + StartAnimationTime: 0:00:00:00.0000000 + EndAnimationTime: 0:00:30:00.0000000 +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +RepeatMode: LoopInfinite +Type: !DifferenceAnimationAssetType + BaseSource: ../../../../Resources/Character/Animations/17-29-2016/idle gun aim.FBX + Mode: FirstFrame + ClipDuration: + Enabled: false + StartAnimationTimeBox: 0:00:00:00.0000000 + EndAnimationTimeBox: 0:00:30:00.0000000 +Skeleton: b18ce390-d277-401c-872c-917f4cb017d0:Character/Main_character_base Skeleton +RootMotion: false +PreviewModel: 94618d74-a17c-486b-88e0-42a1b6c081f2:Character/Main_character_base +AnimationTimeMinimum: 0:00:00:00.0000000 +AnimationTimeMaximum: 0:00:30:00.0000000 diff --git a/Starbreach/Assets/Shared/Character/Animations/Holster_Weapon.xkanim b/Starbreach/Assets/Shared/Character/Animations/Holster_Weapon.xkanim new file mode 100644 index 0000000..754599d --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Animations/Holster_Weapon.xkanim @@ -0,0 +1,23 @@ +!Animation +Id: 3764c274-6c53-4af0-ae60-bdb369f72e37 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/Animations/08-05-2016/stand_gun_goes_down.FBX +ClipDuration: + Enabled: false + StartAnimationTime: 0:00:00:00.0000000 + EndAnimationTime: 0:00:30:00.0000000 +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +RepeatMode: PlayOnce +Type: !DifferenceAnimationAssetType + BaseSource: ../../../../Resources/Character/Animations/17-29-2016/idle gun aim.FBX + Mode: FirstFrame + ClipDuration: + Enabled: false + StartAnimationTimeBox: 0:00:00:00.0000000 + EndAnimationTimeBox: 0:00:30:00.0000000 +Skeleton: b18ce390-d277-401c-872c-917f4cb017d0:Character/Main_character_base Skeleton +RootMotion: false +PreviewModel: 94618d74-a17c-486b-88e0-42a1b6c081f2:Character/Main_character_base +AnimationTimeMinimum: 0:00:00:00.0000000 +AnimationTimeMaximum: 0:00:30:00.0000000 diff --git a/Starbreach/Assets/Shared/Character/Animations/Idle_Aim.xkanim b/Starbreach/Assets/Shared/Character/Animations/Idle_Aim.xkanim new file mode 100644 index 0000000..0e517f9 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Animations/Idle_Aim.xkanim @@ -0,0 +1,17 @@ +!Animation +Id: f6e24254-da29-4b29-a983-5f47ee5502d8 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/Animations/08-05-2016/stand_aim.FBX +ClipDuration: + Enabled: false + StartAnimationTime: 0:00:00:00.0000000 + EndAnimationTime: 0:00:30:00.0000000 +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +RepeatMode: LoopInfinite +Type: !StandardAnimationAssetType {} +Skeleton: b18ce390-d277-401c-872c-917f4cb017d0:Character/Main_character_base Skeleton +RootMotion: false +PreviewModel: 94618d74-a17c-486b-88e0-42a1b6c081f2:Character/Main_character_base +AnimationTimeMinimum: 0:00:00:00.0000000 +AnimationTimeMaximum: 0:00:30:00.0000000 diff --git a/Starbreach/Assets/Shared/Character/Animations/Idle_Low.xkanim b/Starbreach/Assets/Shared/Character/Animations/Idle_Low.xkanim new file mode 100644 index 0000000..9d0addd --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Animations/Idle_Low.xkanim @@ -0,0 +1,17 @@ +!Animation +Id: 2d7ebda1-b120-4688-aa46-fd4044c4893f +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/Animations/08-05-2016/stand_gun_down.FBX +ClipDuration: + Enabled: false + StartAnimationTime: 0:00:00:00.0000000 + EndAnimationTime: 0:00:30:00.0000000 +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +RepeatMode: LoopInfinite +Type: !StandardAnimationAssetType {} +Skeleton: b18ce390-d277-401c-872c-917f4cb017d0:Character/Main_character_base Skeleton +RootMotion: false +PreviewModel: 94618d74-a17c-486b-88e0-42a1b6c081f2:Character/Main_character_base +AnimationTimeMinimum: 0:00:00:00.0000000 +AnimationTimeMaximum: 0:00:30:00.0000000 diff --git a/Starbreach/Assets/Shared/Character/Animations/Reload_Weapon.xkanim b/Starbreach/Assets/Shared/Character/Animations/Reload_Weapon.xkanim new file mode 100644 index 0000000..c760328 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Animations/Reload_Weapon.xkanim @@ -0,0 +1,23 @@ +!Animation +Id: 25e8001e-af72-4363-a733-23e380c4b73f +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/Animations/08-05-2016/reload_aim_stand_walk.FBX +ClipDuration: + Enabled: false + StartAnimationTime: 0:00:00:00.0000000 + EndAnimationTime: 0:00:30:00.0000000 +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +RepeatMode: PlayOnce +Type: !DifferenceAnimationAssetType + BaseSource: ../../../../Resources/Character/Animations/17-29-2016/idle gun aim.FBX + Mode: FirstFrame + ClipDuration: + Enabled: false + StartAnimationTimeBox: 0:00:00:00.0000000 + EndAnimationTimeBox: 0:00:30:00.0000000 +Skeleton: b18ce390-d277-401c-872c-917f4cb017d0:Character/Main_character_base Skeleton +RootMotion: false +PreviewModel: 94618d74-a17c-486b-88e0-42a1b6c081f2:Character/Main_character_base +AnimationTimeMinimum: 0:00:00:00.0000000 +AnimationTimeMaximum: 0:00:30:00.0000000 diff --git a/Starbreach/Assets/Shared/Character/Animations/Run_Aim.xkanim b/Starbreach/Assets/Shared/Character/Animations/Run_Aim.xkanim new file mode 100644 index 0000000..2340a92 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Animations/Run_Aim.xkanim @@ -0,0 +1,17 @@ +!Animation +Id: 1e7a8c41-9c80-416c-9115-2c82991d9751 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/Animations/08-05-2016/run_gun_aim.FBX +ClipDuration: + Enabled: false + StartAnimationTime: 0:00:00:00.0000000 + EndAnimationTime: 0:00:30:00.0000000 +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +RepeatMode: LoopInfinite +Type: !StandardAnimationAssetType {} +Skeleton: b18ce390-d277-401c-872c-917f4cb017d0:Character/Main_character_base Skeleton +RootMotion: false +PreviewModel: 94618d74-a17c-486b-88e0-42a1b6c081f2:Character/Main_character_base +AnimationTimeMinimum: 0:00:00:00.0000000 +AnimationTimeMaximum: 0:00:30:00.0000000 diff --git a/Starbreach/Assets/Shared/Character/Animations/Run_Low.xkanim b/Starbreach/Assets/Shared/Character/Animations/Run_Low.xkanim new file mode 100644 index 0000000..1615c0c --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Animations/Run_Low.xkanim @@ -0,0 +1,17 @@ +!Animation +Id: cd91c99b-6b66-48bb-b160-099c51e6f9ba +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/Animations/08-05-2016/run_fwd_gun_down.FBX +ClipDuration: + Enabled: false + StartAnimationTime: 0:00:00:00.0000000 + EndAnimationTime: 0:00:30:00.0000000 +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +RepeatMode: LoopInfinite +Type: !StandardAnimationAssetType {} +Skeleton: b18ce390-d277-401c-872c-917f4cb017d0:Character/Main_character_base Skeleton +RootMotion: false +PreviewModel: 94618d74-a17c-486b-88e0-42a1b6c081f2:Character/Main_character_base +AnimationTimeMinimum: 0:00:00:00.0000000 +AnimationTimeMaximum: 0:00:30:00.0000000 diff --git a/Starbreach/Assets/Shared/Character/Animations/Take_Damage.xkanim b/Starbreach/Assets/Shared/Character/Animations/Take_Damage.xkanim new file mode 100644 index 0000000..2b68e5b --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Animations/Take_Damage.xkanim @@ -0,0 +1,23 @@ +!Animation +Id: 0abbfd57-6fff-4ae6-a021-ced7004089a2 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/Animations/08-05-2016/got_hit.FBX +ClipDuration: + Enabled: false + StartAnimationTime: 0:00:00:00.0000000 + EndAnimationTime: 0:00:30:00.0000000 +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +RepeatMode: PlayOnce +Type: !DifferenceAnimationAssetType + BaseSource: ../../../../Resources/Character/Animations/17-29-2016/idle gun aim.FBX + Mode: FirstFrame + ClipDuration: + Enabled: false + StartAnimationTimeBox: 0:00:00:00.0000000 + EndAnimationTimeBox: 0:00:30:00.0000000 +Skeleton: b18ce390-d277-401c-872c-917f4cb017d0:Character/Main_character_base Skeleton +RootMotion: false +PreviewModel: 94618d74-a17c-486b-88e0-42a1b6c081f2:Character/Main_character_base +AnimationTimeMinimum: 0:00:00:00.0000000 +AnimationTimeMaximum: 0:00:30:00.0000000 diff --git a/Starbreach/Assets/Shared/Character/Animations/Walk_Backward.xkanim b/Starbreach/Assets/Shared/Character/Animations/Walk_Backward.xkanim new file mode 100644 index 0000000..89f94a5 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Animations/Walk_Backward.xkanim @@ -0,0 +1,17 @@ +!Animation +Id: f71e3505-e1e1-40fb-9dca-270d124180ca +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/Animations/08-05-2016/walk_fwd_aim.FBX +ClipDuration: + Enabled: false + StartAnimationTime: 0:00:00:00.0000000 + EndAnimationTime: 0:00:30:00.0000000 +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +RepeatMode: LoopInfinite +Type: !StandardAnimationAssetType {} +Skeleton: b18ce390-d277-401c-872c-917f4cb017d0:Character/Main_character_base Skeleton +RootMotion: false +PreviewModel: 94618d74-a17c-486b-88e0-42a1b6c081f2:Character/Main_character_base +AnimationTimeMinimum: 0:00:00:00.0000000 +AnimationTimeMaximum: 0:00:30:00.0000000 diff --git a/Starbreach/Assets/Shared/Character/Animations/Walk_Forward.xkanim b/Starbreach/Assets/Shared/Character/Animations/Walk_Forward.xkanim new file mode 100644 index 0000000..4e76592 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Animations/Walk_Forward.xkanim @@ -0,0 +1,17 @@ +!Animation +Id: d29a04c8-14f8-48b5-a70c-5a03ac98d80a +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/Animations/08-05-2016/walk_bckwrds_aims.FBX +ClipDuration: + Enabled: false + StartAnimationTime: 0:00:00:00.0000000 + EndAnimationTime: 0:00:30:00.0000000 +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +RepeatMode: LoopInfinite +Type: !StandardAnimationAssetType {} +Skeleton: b18ce390-d277-401c-872c-917f4cb017d0:Character/Main_character_base Skeleton +RootMotion: false +PreviewModel: 94618d74-a17c-486b-88e0-42a1b6c081f2:Character/Main_character_base +AnimationTimeMinimum: 0:00:00:00.0000000 +AnimationTimeMaximum: 0:00:30:00.0000000 diff --git a/Starbreach/Assets/Shared/Character/Animations/Walk_Left.xkanim b/Starbreach/Assets/Shared/Character/Animations/Walk_Left.xkanim new file mode 100644 index 0000000..2e818db --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Animations/Walk_Left.xkanim @@ -0,0 +1,17 @@ +!Animation +Id: 50c5f2cd-682a-4551-919b-6a597e71e55e +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/Animations/08-05-2016/walk_left_aim.FBX +ClipDuration: + Enabled: false + StartAnimationTime: 0:00:00:00.0000000 + EndAnimationTime: 0:00:30:00.0000000 +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +RepeatMode: LoopInfinite +Type: !StandardAnimationAssetType {} +Skeleton: b18ce390-d277-401c-872c-917f4cb017d0:Character/Main_character_base Skeleton +RootMotion: false +PreviewModel: 94618d74-a17c-486b-88e0-42a1b6c081f2:Character/Main_character_base +AnimationTimeMinimum: 0:00:00:00.0000000 +AnimationTimeMaximum: 0:00:30:00.0000000 diff --git a/Starbreach/Assets/Shared/Character/Animations/Walk_Right.xkanim b/Starbreach/Assets/Shared/Character/Animations/Walk_Right.xkanim new file mode 100644 index 0000000..12d0845 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Animations/Walk_Right.xkanim @@ -0,0 +1,17 @@ +!Animation +Id: 73ad5202-a904-4eab-b8d1-512111a72fa4 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/Animations/08-05-2016/walk_right_aim.FBX +ClipDuration: + Enabled: false + StartAnimationTime: 0:00:00:00.0000000 + EndAnimationTime: 0:00:30:00.0000000 +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +RepeatMode: LoopInfinite +Type: !StandardAnimationAssetType {} +Skeleton: b18ce390-d277-401c-872c-917f4cb017d0:Character/Main_character_base Skeleton +RootMotion: false +PreviewModel: 94618d74-a17c-486b-88e0-42a1b6c081f2:Character/Main_character_base +AnimationTimeMinimum: 0:00:00:00.0000000 +AnimationTimeMaximum: 0:00:30:00.0000000 diff --git a/Starbreach/Assets/Shared/Character/Capsule.xkpromodel b/Starbreach/Assets/Shared/Character/Capsule.xkpromodel new file mode 100644 index 0000000..3165e82 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Capsule.xkpromodel @@ -0,0 +1,10 @@ +!ProceduralModelAsset +Id: bb3a6f1b-ebdc-4dde-bdde-32221970686c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Type: !CapsuleProceduralModel + Scale: {X: 1.0, Y: 5.0, Z: 1.0} + UvScale: {X: 1.0, Y: 1.0} + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + MaterialInstance: + Material: aa3d5ce5-2d55-440e-9da0-7fa7d8f7ca33:Character/LaserEmissive diff --git a/Starbreach/Assets/Shared/Character/Character.xkprefab b/Starbreach/Assets/Shared/Character/Character.xkprefab new file mode 100644 index 0000000..c61672c --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Character.xkprefab @@ -0,0 +1,1134 @@ +!PrefabAsset +Id: 4d05b073-bd5f-46c4-849e-46acd1cd2224 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 80b424e6-9284-4686-bdab-fd1ad9095382 + - ref!! 94af96ef-b9b5-4e5c-b84b-0d72dcc38adf + - ref!! 63e5bf81-713b-4248-83ff-505497603e25 + Parts: + - Entity: + Id: 2a599dcd-c782-4f30-b7b2-bf6155c0fe54 + Name: Point light + Components: + f5599b1e4954624db3a69b99d1893a19: !TransformComponent + Id: 1e9b59f5-5449-4d62-b3a6-9b99d1893a19 + Position: {X: 0.2, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 99c736503f4f2542ac643e4ce04a6290: !LightComponent + Id: 5036c799-4f3f-4225-ac64-3e4ce04a6290 + Type: !LightPoint + Color: !ColorRgbProvider + Value: {R: 0.98775, G: 0.8226877, B: 0.4136203} + Radius: 3.0 + Shadow: + Size: Small + BiasParameters: {} + Intensity: 10.0 + - Entity: + Id: 2fe741d6-39cd-4b7a-b55f-9560ab7c84ee + Name: EnemyCrosshair + Components: + 59023ce7edbdb849ab031e66690377b1: !TransformComponent + Id: e73c0259-bded-49b8-ab03-1e66690377b1 + Position: {X: 0.0, Y: 1.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + - Entity: + Id: 3b6c47a1-e66e-4ed2-b810-4849ed0d0d74 + Name: CameraPivot + Components: + 42abb466d28c3041868491b8c5a85a3e: !TransformComponent + Id: 66b4ab42-8cd2-4130-8684-91b8c5a85a3e + Position: {X: -4.22554081E-08, Y: 0.0, Z: -4.22554081E-08} + Rotation: {X: 0.461939752, Y: 0.3314136, Z: -0.191341728, W: 0.8001031} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 1af1a532aaf4154f902639470b8db618: ref!! 32a5f11a-f4aa-4f15-9026-39470b8db618 + - Entity: + Id: 63e5bf81-713b-4248-83ff-505497603e25 + Name: vfx-Bullettrail + Components: + 488e7cc5ff03914ba45e6388e110e9c2: !TransformComponent + Id: c57c8e48-03ff-4b91-a45e-6388e110e9c2 + Position: {X: 12.6746531, Y: 0.0, Z: -0.8158401} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + - Entity: + Id: 7fcad025-b9ee-49ff-8680-d3047251411a + Name: Model + Components: + 3b5227cf145ee145a29d7e5c5a0b0b10: !TransformComponent + Id: cf27523b-5e14-45e1-a29d-7e5c5a0b0b10 + Position: {X: 0.0, Y: 0.07, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + f0cda019ec4e5a45964644d63727a895: ref!! 19a0cdf0-4eec-455a-9646-44d63727a895 + 61c797e51ae27e4ba5ef3d610cdcf3ab: ref!! e597c761-e21a-4b7e-a5ef-3d610cdcf3ab + cb0d69e8c07b714c9a09efe316a9cdbd: !ModelComponent + Id: e8690dcb-7bc0-4c71-9a09-efe316a9cdbd + Model: 94618d74-a17c-486b-88e0-42a1b6c081f2:Character/Main_character_base + Materials: {} + 7f12c91daf83324d99bf6cf9fabf899b: !AnimationComponent + Id: 1dc9127f-83af-4d32-99bf-6cf9fabf899b + Animations: + c5152d6b22ee324390ff0c894b2d5171~Additive_Draw_Weapon: 360c3467-1106-4b5f-b974-c2c8ad3edbf3:Character/Animations/Draw_Weapon + 08e23c02928a5e4cb29c077a4d8d9243~Additive_Fire_Weapon: cc8b125e-d3d4-4079-8431-0d58c4ad12d4:Character/Animations/Fire_Weapon + c74612385a717f43ac313b9b2afd75b1~Additive_Holster_Weapon: 3764c274-6c53-4af0-ae60-bdb369f72e37:Character/Animations/Holster_Weapon + bf86399fc4c6f741b09b80d41bd56d5f~Additive_Reload_Weapon: 25e8001e-af72-4363-a733-23e380c4b73f:Character/Animations/Reload_Weapon + 1eaef8d4170c4a4ab5731992a8a60542~Additive_Take_Damage: 0abbfd57-6fff-4ae6-a021-ced7004089a2:Character/Animations/Take_Damage + ce3716909f7f5d4a9950244383070704~Death: 7ff4ed25-a865-40df-9941-c12cfdc9ac45:Character/Animations/Death + f724895c05941a45b53d94e38fd2e269~Idle_Aim: f6e24254-da29-4b29-a983-5f47ee5502d8:Character/Animations/Idle_Aim + 4eb16fdf0b179e42811f70f0d313e8e2~Idle_Low: 2d7ebda1-b120-4688-aa46-fd4044c4893f:Character/Animations/Idle_Low + 7342e979e002cb49a546f7b20480ea72~Run_Aim: 1e7a8c41-9c80-416c-9115-2c82991d9751:Character/Animations/Run_Aim + 4b1c12356bb6fc43923abecc9bf56156~Run_Low: cd91c99b-6b66-48bb-b160-099c51e6f9ba:Character/Animations/Run_Low + 3df19239dc6bc041aa91362d627b896a~Walk_Backward: f71e3505-e1e1-40fb-9dca-270d124180ca:Character/Animations/Walk_Backward + 1267844a831e3f49ace15aa9e0c84763~Walk_Forward: d29a04c8-14f8-48b5-a70c-5a03ac98d80a:Character/Animations/Walk_Forward + b268e0f5feda7b49a426340c6b8da5b9~Walk_Left: 50c5f2cd-682a-4551-919b-6a597e71e55e:Character/Animations/Walk_Left + 9bf1b18631ee0942b2c86f9ea874426f~Walk_Right: 73ad5202-a904-4eab-b8d1-512111a72fa4:Character/Animations/Walk_Right + - Entity: + Id: 80b424e6-9284-4686-bdab-fd1ad9095382 + Name: Character + Components: + 1d8f62a1aa670a409230bb04fa9d6f30: !TransformComponent + Id: a1628f1d-67aa-400a-9230-bb04fa9d6f30 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 3b5227cf145ee145a29d7e5c5a0b0b10: ref!! cf27523b-5e14-45e1-a29d-7e5c5a0b0b10 + 42abb466d28c3041868491b8c5a85a3e: ref!! 66b4ab42-8cd2-4130-8684-91b8c5a85a3e + 59023ce7edbdb849ab031e66690377b1: ref!! e73c0259-bded-49b8-ab03-1e66690377b1 + 97e054717e943d43939af223f7d1612b: !CharacterComponent + Id: 7154e097-947e-433d-939a-f223f7d1612b + CollisionGroup: CharacterFilter + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + FallSpeed: 10.0 + MaxSlope: {Radians: 0.7853982} + JumpSpeed: 5.0 + Gravity: {X: 0.0, Y: -10.0, Z: 0.0} + ColliderShapes: + 06442cf5914e98cdc0d5c5a4a66e7098: !CapsuleColliderShapeDesc + Length: 1.0 + Radius: 0.5 + LocalOffset: {X: 0.0, Y: 1.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 1f1ad5780ddb344da1491f619b271405: !Starbreach.Camera.CameraController,Starbreach + Id: 78d51a1f-db0d-4d34-a149-1f619b271405 + Camera: ref!! 00b73fc8-d452-4e7e-a02a-1380260714f1 + Pivot: ref!! 3b6c47a1-e66e-4ed2-b810-4849ed0d0d74 + Model: ref!! e8690dcb-7bc0-4c71-9a09-efe316a9cdbd + SwitchDuration: 0.2 + Distance: + ValueAtRun: 3.5 + ValueAtAim: 1.5 + Fov: + ValueAtRun: 45.0 + ValueAtAim: 40.0 + Pan: + ValueAtRun: {X: 0.0, Y: 1.2} + ValueAtAim: {X: -0.6, Y: 1.4} + Pitch: 20.0 + Yaw: 45.0 + PitchSpeed: 60.0 + YawSpeed: 180.0 + PitchRange: {X: 0.0, Y: 80.0} + b73787fb7505194fb6bb7884dfe525c6: !Starbreach.Soldier.SoldierController,Starbreach + Id: fb8737b7-0575-4f19-b6bb-7884dfe525c6 + Input: ref!! 4313e795-081a-45e9-9528-083db5f1662e + RunSpeed: 5.5 + WalkSpeed: 2.0 + RotationSpeed: 0.15 + YawSpeedDuringAim: 90.0 + Camera: ref!! 00b73fc8-d452-4e7e-a02a-1380260714f1 + AnimationComponent: ref!! 1dc9127f-83af-4d32-99bf-6cf9fabf899b + CameraController: ref!! 78d51a1f-db0d-4d34-a149-1f619b271405 + DroneCrosshair: ref!! 2fe741d6-39cd-4b7a-b55f-9560ab7c84ee + IsEnabled: false + 8e65ac297d16c543a5a492b71971e16b: !Starbreach.Soldier.SoldierAnimation,Starbreach + Id: 29ac658e-167d-43c5-a5a4-92b71971e16b + SoldierController: ref!! fb8737b7-0575-4f19-b6bb-7884dfe525c6 + WalkAngleThreshold: {X: 67.5, Y: 112.5} + WalkCrossfadeDuration: 0.2 + Camera: ref!! 00b73fc8-d452-4e7e-a02a-1380260714f1 + AnimationComponent: ref!! 1dc9127f-83af-4d32-99bf-6cf9fabf899b + fd41bc2ef3810c4e96e95fe891cb6701: !Starbreach.Soldier.SoldierWeapon,Starbreach + Id: 2ebc41fd-81f3-4e0c-96e9-5fe891cb6701 + Camera: ref!! 78d51a1f-db0d-4d34-a149-1f619b271405 + ShootSource: ref!! b2fa0b1f-ce9f-49f9-a878-3828dbcbbe8f + BulletPerSeconds: 10.0 + ShootingConeAngle: 2.0 + MaxAmmo: 20 + 368e5ff144e737429ec5da15ea0581d4: !Starbreach.Soldier.SoldierWeaponFireFeedback,Starbreach + Id: f15f8e36-e744-4237-9ec5-da15ea0581d4 + ShootSource: ref!! b2fa0b1f-ce9f-49f9-a878-3828dbcbbe8f + ShootTarget: ref!! 94af96ef-b9b5-4e5c-b84b-0d72dcc38adf + Light: ref!! 5036c799-4f3f-4225-ac64-3e4ce04a6290 + ShootTrail: ref!! 1ff2e8b2-cdd1-429f-a98b-5df3285b58c1 + ShootImpact: ref!! 67e4c5ea-b777-4b35-abea-586ef30bd4d1 + BulletHole: ref!! 74488160-a3cf-4aa6-8991-6d0f963cccd6 + 285184b573bcad4098cd46eaceaf3dcc: !AudioEmitterComponent + Id: b5845128-bc73-40ad-98cd-46eaceaf3dcc + Sounds: + 601715a995f0144599c48c3c0470eddd~Death: 7f5bdb0e-74d0-4789-b2b5-8bbc918ee2e2:Sounds/Soldier/death + 0704b4103b7cbb4caeb5674b8658a68d~Hit0: b2f2e90c-4bc1-44fb-91ad-eaf2ace40cb6:Sounds/Soldier/take_damage1 + 06134e5f27087f4983cbcad4366d86f9~Hit1: 96a6a59f-dec9-465d-9f01-e426b0eab295:Sounds/Soldier/take_damage2 + c0c39bc33617774c805d8475b8e996a7~Hit2: a9cf4143-d093-440d-98d6-b537d84a4b0b:Sounds/Soldier/take_damage3 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + 95e713431a08e9459528083db5f1662e: !Starbreach.Soldier.SoldierPlayerInput,Starbreach + Id: 4313e795-081a-45e9-9528-083db5f1662e + Priority: -5 + InvertYAxis: false + InvertXAxis: false + MouseSensitivity: 100.0 + KeysLeft: + 2eb15dd13f3192f4f028c215faa9a83f: A + KeysRight: + e27f5c84eed81b1dfd6b162d157996ef: D + KeysUp: + 661d013d80747c2920e7cf51cdf34a15: W + KeysDown: + b11f90973c2acbfa460a4e8579cb3b16: S + KeysAim: {} + KeysShoot: {} + KeysReload: + 8dd7ab233e47a42259a46c2c90d02e13: R + KeysStart: {} + KeysInteract: + 47fc4aad9e33e502d841a6f5b3f6cbf4: E + ControllerIndex: 0 + DeadZone: 0.5 + - Entity: + Id: 94af96ef-b9b5-4e5c-b84b-0d72dcc38adf + Name: ShootTarget + Components: + 9f82fa8c6a9e004689bf3b95b90e6b83: !TransformComponent + Id: 8cfa829f-9e6a-4600-89bf-3b95b90e6b83 + Position: {X: 12.9997749, Y: 0.0, Z: -1.930578} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 53253064c588b64686e635d70323f202: ref!! 64302553-88c5-46b6-86e6-35d70323f202 + 54ee1d701f5ac045a7c28e344d497057: ref!! 701dee54-5a1f-45c0-a7c2-8e344d497057 + 7a701d41ba2cc2408544dcf414f5fbc9: !AudioEmitterComponent + Id: 411d707a-2cba-40c2-8544-dcf414f5fbc9 + Sounds: + 5edad75832438e459c7e84092be17595~Impact0: 7cdb4abf-b948-4f3a-8978-d69473b49a41:Sounds/Soldier/bullet_impact_1 + 418d8db54ba0fa4098387ddf0fd16aae~Impact1: 29858800-765e-4589-b3a3-4ded9910549f:Sounds/Soldier/bullet_impact_2 + 463404e59024814aae76745fefe24170~Impact2: 3612ceb7-4a10-4d18-8b25-f9c216cff945:Sounds/Soldier/bullet_impact_3 + 7e4f118bf9476d49a43969b103aa4eb1~Impact3: 626af2c1-b8d2-44d0-bc4b-d30497b4a23f:Sounds/Soldier/bullet_impact_4 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + - Entity: + Id: 99cbc381-072a-4165-b3dd-2e3ef07b60df + Name: BulletHole + Components: + 54ee1d701f5ac045a7c28e344d497057: !TransformComponent + Id: 701dee54-5a1f-45c0-a7c2-8e344d497057 + Position: {X: -0.0981434, Y: 0.0, Z: 0.5368307} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 60814874cfa3a64a89916d0f963cccd6: !ParticleSystemComponent + Id: 74488160-a3cf-4aa6-8991-6d0f963cccd6 + Control: + ResetSeconds: 5.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + 521c907b72b6834b9d48d92a6bf8e435: + EmitterName: Burns + ParticleLifetime: {X: 4.0, Y: 8.0} + ShapeBuilder: !ShapeBuilderQuad + SamplerPosition: null + SamplerSize: null + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ZOffset: 0.3 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8ab2edfe-0ead-489f-a899-97a8112807f7:Textures/Smoke02 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeColor + Value: {R: 0.0, G: 0.0, B: 0.0, A: 1.0} + UVBuilder: null + ForceTexCoords: false + Spawners: + 9df7798dc9990c428193ecef2e239385: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 100.0 + Initializers: + 7c224fce36d98f44b7c26299c92cba5c: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.5, Y: 0.0, Z: -0.5} + PositionMax: {X: 0.5, Y: 0.0, Z: 0.5} + Interpolate: false + Updaters: {} + baf8b3df9268df43801ec26aa3319b64: + EmitterName: BulletHoles + ParticleLifetime: {X: 8.0, Y: 10.0} + ShapeBuilder: !ShapeBuilderQuad + SamplerPosition: null + SamplerSize: null + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ZOffset: 0.3 + ComputeColor: !ComputeBinaryColor + Operator: Add + LeftChild: !ComputeFloat4 + Value: {X: 0.0, Y: 0.0, Z: 0.0, W: 0.0} + RightChild: !ComputeTextureColor + Texture: 12575e84-8b35-4683-82d3-1f40a6348473:Textures/BulletHole + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: null + ForceTexCoords: false + Spawners: + 803a0da2aad47744906ea363fa84f20a: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 20.0 + Initializers: + 82a8489872a87f43b6cb9fd28a5a4beb: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.35, Y: 0.55} + e45d4ea9945e824898135a8e911ebc47: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.5, Y: 0.0, Z: -0.5} + PositionMax: {X: 0.5, Y: 0.0, Z: 0.5} + Interpolate: false + 62d96e98c4c2d847a37e0816cc022395: !Initial3DRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: false + RotationQuaternionMin: {X: 0.0, Y: -0.6427876, Z: 0.0, W: 0.766044438} + RotationQuaternionMax: {X: 0.0, Y: 0.6427876, Z: 0.0, W: 0.766044438} + Updaters: {} + Base: + BasePartAsset: e1164942-e691-4b2b-baf5-95d11fe6d716:VFXPrefabs/vfx-Bullehole + BasePartId: 2fbd0a2c-0a41-4079-9140-62862ef77192 + InstanceId: 1912a9e3-2470-4f1e-b5b6-d49228a4c12e + - Entity: + Id: a5bc3bd5-1a64-4088-bf7e-111f848d6412 + Name: Sparks + Components: + ff26b404fd96534ba50fff60cdb5128a: !TransformComponent + Id: 04b426ff-96fd-4b53-a50f-ff60cdb5128a + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + eac5e46777b7354babea586ef30bd4d1: !ParticleSystemComponent + Id: 67e4c5ea-b777-4b35-abea-586ef30bd4d1 + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + da465e53965ade4fabe172d1fb19dc30: + EmitterName: sparks + MaxParticlesOverride: 100 + ParticleLifetime: {X: 0.75, Y: 1.0} + ShapeBuilder: !ShapeBuilderOrientedQuad + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 66179a362867ad4fa81c4828ed37b306: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 543edb979345114aaf57da0586b2b1f3: + Key: 0.25 + Value: 0.5 + TangentType: Linear + 48220905d438de4b959e474a415a16ce: + Key: 1.0 + Value: 0.1 + TangentType: Linear + ScaleLength: true + LengthFactor: 5.0 + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 200.0, Y: 30.0, Z: 30.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 91119660-137e-4be0-bcb9-32f8aeee6ca8:Textures/dota + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + bd4c9485a5a8a1428cb47bcb0a7d8628: !SpawnerPerFrame + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 8.0 + Framerate: 60.0 + Initializers: + 2bf8de46251ee442b293ab905c0871d1: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.3 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.05, Y: 0.02} + e9ae5eeccf4333458f3c00f2b2a75054: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.03, Y: -0.03, Z: -0.03} + PositionMax: {X: 0.03, Y: 0.03, Z: 0.03} + Interpolate: false + e3f2dfa8c4b2e14685c4b3aba307172d: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -3.0, Y: 3.0, Z: -3.0} + VelocityMax: {X: 3.0, Y: 4.0, Z: 3.0} + Updaters: + b2b11ca17ffada469874b44e6649cfd4: !UpdaterGravity + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + GravitationalAcceleration: {X: 0.0, Y: -9.80665, Z: 0.0} + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + a79b1f60c1902143b6307dd66abf51d5: !UpdaterSpeedToDirection + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + 1f0893c277cc9944b3dd11dd4a146534: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + caf74a8c447ba4419561e5cf23beb6a1: + Key: 0.0 + Value: {R: 0.1, G: 0.3, B: 1.0, A: 0.1} + TangentType: Linear + c01c3713703bd1419e97bbe94289ab0a: + Key: 1.0 + Value: {R: 0.1, G: 0.3, B: 1.0, A: 0.5} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 0d41855c55cfcd419fb3035290400829: + EmitterName: smoke + MaxParticlesOverride: 20 + ParticleLifetime: {X: 2.0, Y: 4.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: null + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 1.0, Y: 1.0, Z: 1.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: fa1018e4-c74d-4495-9535-134f5a06e4cd:Textures/SMO001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: !UVBuilderFlipbook + XDivisions: 8 + YDivisions: 8 + StartingFrame: 0 + AnimationSpeed: 64 + ForceTexCoords: false + Spawners: + e21904c7fcc8d442ba9483a0d2c949c8: !SpawnerPerFrame + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 1.0 + Framerate: 60.0 + Initializers: + a21e9cb2a8bf8644b6169341be64314f: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: false + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.05, Y: 0.3, Z: -0.05} + VelocityMax: {X: 0.05, Y: 0.4, Z: 0.05} + e4a11e3acc820643ae48224552a9a515: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + e0b8f7c67c6ce9439ba76a1bd6cfa7f0: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.5 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.5, Y: 1.0} + 86147475590605478ba314d672d20660: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.1, Y: 0.0, Z: -0.1} + PositionMax: {X: 0.1, Y: 0.0, Z: 0.1} + Interpolate: false + Updaters: + b17cff875d669f499d203cc83e037c0c: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + d300a7e45c2a724db551167f0e543b0a: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.05} + TangentType: Linear + 7edeaa8dd1cba04b941cea8b0f3a0c00: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 08a5f70ad7c56f4ca2e4f64a3c798053: + EmitterName: light + MaxParticlesOverride: 10 + ParticleLifetime: {X: 0.05, Y: 0.05} + DrawPriority: 5 + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: null + SamplerRotation: null + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 50.0, Y: 30.0, Z: 30.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + e52202fd0b9d664d8ac076bafbd5e60d: !SpawnerPerFrame + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 1.0 + Framerate: 60.0 + Initializers: + cefeaf78276ac545881e1c827aecc458: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: 0.0, Y: 360.0} + Updaters: + d12128e39a11eb4dac43c4ca32b9babf: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + fe6a13211f49d94498b31de2b381881e: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + 8751ea2a3f769648b7a2d7615393278b: + Key: 0.5 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.1} + TangentType: Linear + 4da52f14639c7d448abd17cdf528ee07: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + Base: + BasePartAsset: 417f8621-7097-44a4-9b57-574704389d0a:VFXPrefabs/vfx-LaserSparks + BasePartId: 4bb551db-595c-4c2f-928c-19e06785ef70 + InstanceId: d51e04e1-b0ce-4976-b7e1-fa054dd9212b + - Entity: + Id: b2fa0b1f-ce9f-49f9-a878-3828dbcbbe8f + Name: ShootSource + Components: + f0cda019ec4e5a45964644d63727a895: !TransformComponent + Id: 19a0cdf0-4eec-455a-9646-44d63727a895 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + f64803bed11dc146a051377a1f0dd811: ref!! be0348f6-1dd1-46c1-a051-377a1f0dd811 + 1e49a7c9b0fb9243a6c8969764c516e5: ref!! c9a7491e-fbb0-4392-a6c8-969764c516e5 + f5599b1e4954624db3a69b99d1893a19: ref!! 1e9b59f5-5449-4d62-b3a6-9b99d1893a19 + ba979b8c3b12af4384c2fbadd984e7fc: !ModelNodeLinkComponent + Id: 8c9b97ba-123b-43af-84c2-fbadd984e7fc + Target: null + NodeName: gun_barrel + 8edd11dc81504346b9807aebdc071b05: !AudioEmitterComponent + Id: dc11dd8e-5081-4643-b980-7aebdc071b05 + Sounds: + c742a725a890b8499b96c27135cbf760~Reload: d9f83c4b-b23e-4673-b6b1-109f0c8f4656:Sounds/Soldier/reload + 513f7c4a2226e446a1d0e20e8b60336b~Shoot0: 59256dc3-bb1f-441e-81e7-acb8f86c9530:Sounds/Soldier/bullet_fire_one_shot1 + 9216d643afcbce44b27e6b56357e5caa~Shoot1: e41eb073-4e7f-4aee-b365-6273e5afb42d:Sounds/Soldier/bullet_fire_one_shot2 + 4e012b6d7c668e4baf616222e37a245a~Shoot2: 6fe0476d-204f-4181-8484-f91741b605ce:Sounds/Soldier/bullet_fire_one_shot3 + 67de5883e712404fad5562ed671b0c76~Shoot3: 4239f814-6ec9-4417-bab9-5829a2f393ab:Sounds/Soldier/bullet_fire_one_shot4 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + - Entity: + Id: c2d0afcc-14b7-4d96-b96a-cd0f59ca664a + Name: SphereCastOrigin + Components: + 61c797e51ae27e4ba5ef3d610cdcf3ab: !TransformComponent + Id: e597c761-e21a-4b7e-a5ef-3d610cdcf3ab + Position: {X: 0.0, Y: 1.23887253, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + - Entity: + Id: d027d729-b19d-4341-bd0b-659defb5ec12 + Name: Bullettrail + Components: + f64803bed11dc146a051377a1f0dd811: !TransformComponent + Id: be0348f6-1dd1-46c1-a051-377a1f0dd811 + Position*: {X: 0.0, Y: 0.0, Z: 2.25952277E-07} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + b2e8f21fd1cd9f42a98b5df3285b58c1: !ParticleSystemComponent + Id: 1ff2e8b2-cdd1-429f-a98b-5df3285b58c1 + Control: + ResetSeconds: 3.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + a69514f7e76a3947a388fab4b17b40e3: + EmitterName: trail + MaxParticlesOverride: 50 + ParticleLifetime: {X: 1.0, Y: 1.0} + SortingPolicy: ByOrder + ShapeBuilder: !ShapeBuilderRibbon + SmoothingPolicy: Best + Segments: 15 + TextureCoordinatePolicy: Stretched + TexCoordsFactor: 1.0 + UVRotate: + FlipX: false + FlipY: false + UVClockwise: Degree0 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 0.5 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 5.0, Y: 5.0, Z: 5.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 2c8e60e4-e070-4124-a1fa-f36cc74de76c:Textures/Bullettrail01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 49a593b25a626a4a9ae6abd1e6d80a01: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 50.0 + Initializers: + 77e504c4ae8c8b40b3e86fc2f2159927: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation*: false + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.1, Y: 0.4, Z: -0.1} + VelocityMax: {X: 0.1, Y: 0.4, Z: 0.1} + b81a1444d030c3418f4268a112f3495e: !InitialSpawnOrder + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + Updaters: + f5dcc863ffffb248a240f9a87c4986d4: !UpdaterSizeOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + a1df6c8fa767cc4c9256ed22cb99047e: + Key: 0.0 + Value: 0.1 + TangentType: Linear + 069b80707306b341902968bc4a16cff9: + Key: 0.9 + Value: 0.0 + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 4b4b8636d557404f89e237f792878df3: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 5ba51e26ba02014281f963a86f91993d: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.5} + TangentType: Linear + 772e3919fe5c9b41aa10618cb4e9abbc: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + Base: + BasePartAsset: 5016de4d-9078-4966-a548-570e7e0bc37d:VFXPrefabs/vfx-Bullettrail + BasePartId: 7858fffa-938f-49dd-8d71-e4c227fdf269 + InstanceId: ee9fee01-b455-4bac-b22f-18628d3288a7 + - Entity: + Id: e25b5619-be55-4aa9-bd0b-ffe7f26e6d14 + Name: Camera + Components: + 1af1a532aaf4154f902639470b8db618: !TransformComponent + Id: 32a5f11a-f4aa-4f15-9026-39470b8db618 + Position: {X: 0.0, Y: 0.0, Z: -10.0} + Rotation: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c83fb70052d47e4ea02a1380260714f1: !CameraComponent + Id: 00b73fc8-d452-4e7e-a02a-1380260714f1 + Name: null + Projection: Perspective + VerticalFieldOfView: 35.0 + Slot: 361499d7-0cf6-407b-8f59-034e1b80f4b4 + 8be6ce55ffa71c4db44cb06ad2c8f89c: !AudioListenerComponent + Id: 55cee68b-a7ff-4d1c-b44c-b06ad2c8f89c + - Entity: + Id: f90b0fcb-51bc-40df-acb3-8bbddc560ade + Name: vfx-LaserSparks + Components: + 53253064c588b64686e635d70323f202: !TransformComponent + Id: 64302553-88c5-46b6-86e6-35d70323f202 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.3, Y: 1.3, Z: 1.3} + Children: + ff26b404fd96534ba50fff60cdb5128a: ref!! 04b426ff-96fd-4b53-a50f-ff60cdb5128a + - Entity: + Id: fd5f8eea-c26a-4a30-a046-0c5f7548644e + Name*: MuzzleFlash + Components: + 1e49a7c9b0fb9243a6c8969764c516e5: !TransformComponent + Id: c9a7491e-fbb0-4392-a6c8-969764c516e5 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation*: {X: -1.0900429E-07, Y: -1.19709057E-07, Z: -1.30488009E-14, W: 1.0} + Scale: {X: 1.738093, Y: 1.738093, Z: 1.738093} + Children: {} + 9da8f6cb5544c14a87c630b9fdc7706f: !ParticleSystemComponent + Id: cbf6a89d-4455-4ac1-87c6-30b9fdc7706f + Control: + ResetSeconds: 5.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + 16d5d9d86396824d94ceb3d7518fd6c2: + ParticleLifetime: {X: 0.1, Y: 0.15} + SimulationSpace: Local + ShapeBuilder: !ShapeBuilderQuad + SamplerPosition: null + SamplerSize: null + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeTextureColor + Texture: 0455ae16-c507-49ba-8b06-68cd747e0155:Textures/Muzzle_flash_NiX + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: !UVBuilderFlipbook + XDivisions: 3 + YDivisions: 3 + StartingFrame: 0 + AnimationSpeed: 9 + ForceTexCoords: false + Spawners: + 66a3a56abb70e7479895a7a916fa16ac: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.1, Y: 0.2} + Duration: {X: 0.1, Y: 0.2} + SpawnCount: 40.0 + Initializers: + 1c7d1a02bd5f844da871e583baffffcd: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.35, Y: 0.55} + 7f10f8fc21890b4594da108ba71daa71: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: 0.15, Y: 0.0, Z: 0.0} + PositionMax: {X: 0.25, Y: 0.0, Z: 0.0} + Interpolate: false + 28068111562f744daed35a7d7e640782: !Initial3DRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 1001 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: false + RotationQuaternionMin: {X: -0.675590158, Y: 0.0, Z: 0.0, W: 0.7372773} + RotationQuaternionMax: {X: 0.675590158, Y: 0.0, Z: 0.0, W: 0.7372773} + Updaters: {} + 86693d3ede99964b84987adfcb956eae: + ParticleLifetime: {X: 0.1, Y: 0.15} + SimulationSpace: Local + ShapeBuilder: !ShapeBuilderQuad + SamplerPosition: null + SamplerSize: null + SamplerRotation: null + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeTextureColor + Texture: e1f01f3a-44fa-4288-917a-d24692beb01f:Textures/Muzzleflash02 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: null + ForceTexCoords: false + Spawners: + 4cf35d84e2ea7f45a4175790ac406423: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.1, Y: 0.2} + Duration: {X: 0.1, Y: 0.2} + SpawnCount: 30.0 + Initializers: + 223774884ad9bb4693a9ba6d2a6b3436: !Initial3DRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: false + RotationQuaternionMin: {X: 0.0, Y: 0.0, Z: 0.707106769, W: 0.707106769} + RotationQuaternionMax: {X: 0.0, Y: 0.0, Z: 0.707106769, W: 0.707106769} + 6ab62e4e22b91a43a6d44a00f2094231: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.2, Y: 0.35} + f61e0a061a3d714fb1a862463ac46a49: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: 0.04, Y: 0.0, Z: 0.0} + PositionMax: {X: 0.04, Y: 0.0, Z: 0.0} + Interpolate: false + Updaters: {} + Base: + BasePartAsset: 391b3662-9158-406c-bb92-bb76b70cac7c:VFXPrefabs/vfx-MuzzleflashNiX + BasePartId: de3d82d7-b1dd-459f-9d3d-13545a31156e + InstanceId: 79c239b0-b9b4-4ae9-a854-b78c756e8772 diff --git a/Starbreach/Assets/Shared/Character/CrosshairSprite.xktex b/Starbreach/Assets/Shared/Character/CrosshairSprite.xktex new file mode 100644 index 0000000..7958029 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/CrosshairSprite.xktex @@ -0,0 +1,7 @@ +!Texture +Id: eae93d0c-346b-4399-adf7-ab193c2688d9 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/Character/Target.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Character/LaserEmissive.xkmat b/Starbreach/Assets/Shared/Character/LaserEmissive.xkmat new file mode 100644 index 0000000..890fe64 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/LaserEmissive.xkmat @@ -0,0 +1,13 @@ +!MaterialAsset +Id: aa3d5ce5-2d55-440e-9da0-7fa7d8f7ca33 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeFloat4 + Value: {X: 50.0, Y: 10.0, Z: 10.0, W: 1.0} + Intensity: !ComputeFloat + Value: 1.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Character/Main_character_base Skeleton.xkskel b/Starbreach/Assets/Shared/Character/Main_character_base Skeleton.xkskel new file mode 100644 index 0000000..710c91c --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Main_character_base Skeleton.xkskel @@ -0,0 +1,98 @@ +!Skeleton +Id: b18ce390-d277-401c-872c-917f4cb017d0 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/Character/Main_character_base.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Nodes: + 2b83a4a0d5dde6216f7c2fe8b32bbfe2: {Name: RootNode, Depth: 0} + b217e705821c15557599ef127599ef12: {Name: Lower, Depth: 1} + 62d42cde8f43ec46b13e4c3ab13e4c3a: {Name: Upper, Depth: 1} + 187b042aba3ac3edf95e787eabe729d3: {Name: _character_legs_armor, Depth: 1} + 13dc49852cb89c7d24bd128da50b3a26: {Name: Character001, Depth: 1} + 7bef8eff2e1acbb2fdd189472e89111d: {Name: CATRigHub001, Depth: 1} + f0e0cea52cd23eb81518be725c10e855: {Name: CATRigLLeg1, Depth: 2} + 19e5e024d2906e8bba2878ff332cb923: {Name: CATRigLLeg2, Depth: 3} + 95048b1c453131aba561262218b018da: {Name: CATRigLLegAnkle, Depth: 4} + ae307be85d4098714af5abe721d4787a: {Name: CATRigAnkleleft, Depth: 5} + d6275a15c3b937e4cb0fc2176f51a9c5: {Name: left_additional, Depth: 5} + 723970845daafc0eacbc36f6949366dc: {Name: left_extra_bone, Depth: 6} + 4fcbc3e24c35704ef0aa52e9eb486b39: {Name: CATRig1Boneside01, Depth: 4} + 6657f200fa4642b6d3239e7d18f49ac9: {Name: CATRig1Boneside324, Depth: 4} + ea298c1b9b973ba88823f1e21c072453: {Name: CATRig1Boneupleft, Depth: 3} + 8a819d6b93ec0fd5dadfd40eabe50990: {Name: CATRig1Bonelowleft, Depth: 4} + 0466944d330daac7ff562fe3777ad4e2: {Name: backplateleftup, Depth: 2} + 6da0bc2246d38fcac032167464c2f60b: {Name: backplatelieftdown, Depth: 3} + b278cbd9d10ed5be9f6c1a804316f703: {Name: CATRigSpine1, Depth: 2} + 962874f02f8a12722d70146f92819ce8: {Name: CATRigSpine2, Depth: 3} + 6e78ea6cb645cdf09cf820864c7fac0a: {Name: CATRigSpine3, Depth: 4} + 511f75ab227c617916836f46713bca9d: {Name: CATRigHub002, Depth: 5} + 03a229a261ae1df5095797048e9cbba0: {Name: CATRigLArmCollarbone, Depth: 6} + bac3dda8ecb86300f365b90bd1657515: {Name: CATRigLArm1, Depth: 7} + e0a6614165f8ee01e4616d763b44a981: {Name: CATRigLArm2, Depth: 8} + 9e108381e010b12f1015bab0d6141a52: {Name: CATRigLArmPalm, Depth: 9} + 313e2dd329ed1c62277070c12960cba7: {Name: CATRigLArmDigit11, Depth: 10} + 5fdae5156fdee51f52200d2c88646709: {Name: CATRigLArmDigit12, Depth: 11} + 027e9c4e1ce1ceb6add2632d7fa49d1c: {Name: CATRigLArmDigit13, Depth: 12} + 2955dbc5fdb330e2dcad7683d8206a69: {Name: CATRigLArmDigit21, Depth: 10} + e6f2ced8dfec2d99d72200dbf8577d63: {Name: CATRigLArmDigit22, Depth: 11} + 7c60dd7b277310e01911598cc6f24adb: {Name: CATRigLArmDigit23, Depth: 12} + 767b7d44d8f43020b38272c86fc9772a: {Name: CATRigLArmDigit31, Depth: 10} + 8fec615f2a327d20568da3b04998a892: {Name: CATRigLArmDigit32, Depth: 11} + b16b827727d63cb0c59d993a10d00e34: {Name: CATRigLArmDigit33, Depth: 12} + 94d4637abf2ee7b039bdd9ccf1af7845: {Name: CATRigLArmDigit41, Depth: 10} + 92921a92fc54a5a1cf382231c27d8ea2: {Name: CATRigLArmDigit42, Depth: 11} + 51b4c5e630ef21ca526c396fddd33b6b: {Name: CATRigLArmDigit43, Depth: 12} + cd64a8eb706d0a9a7db3c6f3c960f5a3: {Name: CATRigLArmDigit51, Depth: 10} + c1ad1a618eb5780f88ec9f638d1bcc07: {Name: CATRigLArmDigit52, Depth: 11} + 44c2764e8930f8f6e11e01c393f230d2: {Name: CATRigLArmDigit53, Depth: 12} + 5d96b783a0230c07d901cad77c678307: {Name: CATRigHub002Bone001, Depth: 6} + bc2125f86d2cc9f802b1fc7b9114d564: {Name: CATRigHub002Bone002, Depth: 6} + 0c0e43a4435353deec7fe1643260a2b8: {Name: CATRigHub002Bone003, Depth: 6} + 1518758e9b6db8978ac947ae9e7c5079: {Name: CATRigSpin4435f, Depth: 6} + f8695b7a8feb9ed9618e8d7146f015e7: {Name: CATRigSpine3294, Depth: 7} + bf4ecc735ff8d849f3dfce48d7a406a1: {Name: CATRigSpineneck043, Depth: 8} + 30fd90bad8bcfe89b653afac01172777: {Name: CATRigRibcage0rtee, Depth: 9} + 0c2fee34727b05c514b00eb6202bf0d9: {Name: CATRigHub002Bone004, Depth: 6} + 825ae2099ce03d5a075e8e669904abf3: {Name: CATRigRArmCollarbone, Depth: 6} + a6a4b41ea2fd79e16d393ce8440076cc: {Name: CATRigRArm1, Depth: 7} + 1f47df0c2039bc5368ca5d0e8bc84d10: {Name: CATRigRArm2, Depth: 8} + 427fa001893cf32fd282625b6946fdd4: {Name: CATRigRArmPalm, Depth: 9} + 3d17e3118b581140c247fd1dd8b011fd: {Name: CATRigRArmDigit11, Depth: 10} + fcda27ce3383b983791430ee9c848464: {Name: CATRigRArmDigit12, Depth: 11} + 9f8fa80bdf7acd23e2583d20a99949e4: {Name: CATRigRArmDigit13, Depth: 12} + 7b0844c486c7b48733664c2dda895bdf: {Name: CATRigRArmDigit21, Depth: 10} + 79f9d2c2c541a94d07311c52446e964b: {Name: CATRigRArmDigit22, Depth: 11} + 60520907275b4fcc73d3079cb231084a: {Name: CATRigRArmDigit23, Depth: 12} + 7eafc4037bd8eca838ac131f9e270f39: {Name: CATRigRArmDigit31, Depth: 10} + 1c27069a4f238152ebf2a2ecbe87a645: {Name: CATRigRArmDigit32, Depth: 11} + 0e13eb395d6f3de3a7ac87bf8663a4fc: {Name: CATRigRArmDigit33, Depth: 12} + 6b1b73a9c0ba4f7391dfb8bac98139f8: {Name: CATRigRArmDigit41, Depth: 10} + 4d24a7c8edfff91334afb2087379384c: {Name: CATRigRArmDigit42, Depth: 11} + ee3a361f2e025d48461fd85acb4179be: {Name: CATRigRArmDigit43, Depth: 12} + c3d72c9e20c0e5725681b68f552547f1: {Name: CATRigRArmDigit51, Depth: 10} + 80a046cf38e887b01765b41270ed1f4b: {Name: CATRigRArmDigit52, Depth: 11} + 2e21fcf23da1f282cb37214ad5936929: {Name: CATRigRArmDigit53, Depth: 12} + a1a84ba355e59825bb955b4cdc730f4a: {Name: gun_bone, Depth: 6} + f63bf5bed1580da07240542419b974e8: {Name: gun_bone_magazine, Depth: 7} + d86d9845cf1c9a788dbb27937f2622e2: {Name: gun_barrel, Depth: 7} + 195a00737a22dd37964a00cc2039613b: {Name: CATRigHub001Bone002, Depth: 2} + f6a98ca9bdf5b9e7488c97fd74602246: {Name: backplaterightup, Depth: 2} + 38b6b9c22e75d79681a825275805d738: {Name: back platerightdown, Depth: 3} + 4c1f110a82a404d6545aac25623829a0: {Name: CATRigRLeg1, Depth: 2} + 41ac0eb78eb044ec6c00db8682f7db70: {Name: CATRigRLeg2, Depth: 3} + 609a58422b941ce9079a179c282a057e: {Name: CATRigRLegAnkle, Depth: 4} + dc00eaed59f8bc33029b64c4183e4b95: {Name: CATRigAnkleright, Depth: 5} + 649378c0af5e479e95362d86e71b57ca: {Name: right_additional, Depth: 5} + 0a76f5e3049702419275d81f0d556da7: {Name: right_extra_bone, Depth: 6} + 9aa14933b9836a01d40ba4559519f56d: {Name: CATRig1Boeer643, Depth: 4} + d9e0e60f76dd18cb37618ae2db3d7436: {Name: CATRig1Bone43840, Depth: 4} + 93bcbe0dc4142a12eeadd70e91062b46: {Name: CATRig1Bonesiderightup, Depth: 3} + e4a434c15ba5f8f6d3bda84a92d4182e: {Name: CATRig1Bonerightlow, Depth: 4} + abd1e63e9b4c31a9fa80a807f9268a4f: {Name: CATRigLLegPlatform, Depth: 1} + 983027c3e25c0a45483bbb4c3e1a5adf: {Name: CATRigRLegPlatform, Depth: 1} + 6e2f6e42aa9a45250bab6727b5368434: {Name: CATRigRArmIKTarget, Depth: 1} + 83720612cdc76b6fd98971b8f14bf452: {Name: CATRigLArmIKTarget, Depth: 1} + 21c9675a36272b8cf3bd1f05abbeb063: {Name: Machinegun, Depth: 1} +~SourceHashes: + 34f6e8e688a20ed4e63db05a4e2ac3a0~../../../Resources/Character/Main_character_base.FBX: 769b43ddb4049de7e221fd7440094729 diff --git a/Starbreach/Assets/Shared/Character/Main_character_base.xkm3d b/Starbreach/Assets/Shared/Character/Main_character_base.xkm3d new file mode 100644 index 0000000..00c7ebf --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Main_character_base.xkm3d @@ -0,0 +1,22 @@ +!Model +Id: 94618d74-a17c-486b-88e0-42a1b6c081f2 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/Character/Main_character_base_04.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 6bf838ce5dd33f684a100a862c5073ea: + Name: lower_body + MaterialInstance: + Material: ded8cec5-0e12-4ee8-a67d-273c49d6420b:Character/Materials/Lower_part_normal + 89c6194f50adc5a98f3e5477d5a09e9a: + Name: upper_body + MaterialInstance: + Material: 6b6aaf08-35b7-40b7-94a8-cf12a6c1d293:Character/Materials/Upper_part_normal + bd01869177a636a25a096493bf2f6cd6: + Name: _MACHINEGUN_Q2default + MaterialInstance: + Material: abe48172-91b9-405f-93d9-3a908c2d925f:Character/Materials/Weapon +Skeleton: b18ce390-d277-401c-872c-917f4cb017d0:Character/Main_character_base Skeleton +~SourceHashes: + 17b5b9fb86db77651aa4d099646dd5e3~../../../Resources/Character/Main_character_base_04.FBX: 54a5485a88bf9236fc28110b80e788a1 diff --git a/Starbreach/Assets/Shared/Character/Materials/Lower_part_burnt.xkmat b/Starbreach/Assets/Shared/Character/Materials/Lower_part_burnt.xkmat new file mode 100644 index 0000000..82d76ac --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Materials/Lower_part_burnt.xkmat @@ -0,0 +1,72 @@ +!MaterialAsset +Id: 3a0e40cf-0f23-42ec-820b-3491216b936f +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 33ecad47-0fd2-40fa-b24b-94724bdcefbd:Character/Textures/Lower_Burnt_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 41c3326a-1ee9-4d80-8c89-515344b00d65:Character/Textures/Lower_Burnt_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 850f5859-de95-460a-b8fa-fba8acff49c0:Character/Textures/Lower_Burnt_A + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 03a5afe5-93ca-4bae-944c-ff94762a4353:Character/Textures/Lower_Burnt_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 4ebe3927-3f72-459b-b98a-09f52e7ff8f5:Character/Textures/Lower_Burnt_O + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: fe7e07f6-5d27-4bd0-9200-871bb806e958:Character/Textures/Lower_Burnt_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 10.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Character/Materials/Lower_part_damaged.xkmat b/Starbreach/Assets/Shared/Character/Materials/Lower_part_damaged.xkmat new file mode 100644 index 0000000..c584c44 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Materials/Lower_part_damaged.xkmat @@ -0,0 +1,72 @@ +!MaterialAsset +Id: c4888e3f-8606-40ff-a5cd-08440a997a2b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 8805c785-2d16-40ee-90e1-fe8ad113ca10:Character/Textures/Lower_Damaged_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: a869d97f-d21f-4391-9f12-bb94a4ddfefb:Character/Textures/Lower_Damaged_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: aeac0702-fdc7-4c64-8598-4771b4681a1f:Character/Textures/Lower_Damaged_A + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 2e2e73fe-be5c-448c-8077-5f3364e2e074:Character/Textures/Lower_Damaged_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: c032f38e-eac4-4a80-a3cc-4bd9c426f6f9:Character/Textures/Lower_Damaged_O + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: 4bfadade-e225-4e37-b5c2-9d0c502deae0:Character/Textures/Lower_Damaged_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 10.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Character/Materials/Lower_part_normal.xkmat b/Starbreach/Assets/Shared/Character/Materials/Lower_part_normal.xkmat new file mode 100644 index 0000000..c4d76b9 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Materials/Lower_part_normal.xkmat @@ -0,0 +1,72 @@ +!MaterialAsset +Id: ded8cec5-0e12-4ee8-a67d-273c49d6420b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: c7967ddb-6863-429a-97f1-11b5fe4c6995:Character/Textures/Lower_Normal_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 049878fd-2382-47eb-b274-337471de4428:Character/Textures/Lower_Normal_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 0ef69f8d-c307-4935-a39c-76ab85e1ae69:Character/Textures/Lower_Normal_A + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: c3a718cd-94e5-461a-972f-b7ef4458962b:Character/Textures/Lower_Normal_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 80bf10b3-66c2-4537-b1c7-fd3b9d9df6a7:Character/Textures/Lower_Normal_O + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: afbe3f06-0784-4b86-801f-1e8759455738:Character/Textures/Lower_Normal_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 10.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Character/Materials/Upper_part_burnt.xkmat b/Starbreach/Assets/Shared/Character/Materials/Upper_part_burnt.xkmat new file mode 100644 index 0000000..d106cf4 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Materials/Upper_part_burnt.xkmat @@ -0,0 +1,72 @@ +!MaterialAsset +Id: efec60cc-78d3-4906-afd7-59a6a84e9ea3 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 790884dd-8fca-4590-9c2b-cf049b923ba5:Character/Textures/Upper_Burnt_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 21b4799b-1cf4-4b02-8165-06a4dddb2732:Character/Textures/Upper_Burnt_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: e23101ec-9001-4622-b0a7-c31ac2fa6ad9:Character/Textures/Upper_Burnt_A + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: ee7fa7d5-9c0b-40d9-a703-1a011c014273:Character/Textures/Upper_Burnt_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 3041915e-9f88-444d-8391-27e8405683bf:Character/Textures/Upper_Burnt_O + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: 10be3c19-714a-408f-b6aa-dd6199bfe705:Character/Textures/Upper_Burnt_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 10.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Character/Materials/Upper_part_damaged.xkmat b/Starbreach/Assets/Shared/Character/Materials/Upper_part_damaged.xkmat new file mode 100644 index 0000000..a77470b --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Materials/Upper_part_damaged.xkmat @@ -0,0 +1,72 @@ +!MaterialAsset +Id: a0c0e33e-d64d-4304-b3dd-03e3885023f3 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: a264e548-ddae-415d-982d-d04486795dac:Character/Textures/Upper_Normal_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 3d626f33-75d9-4774-8f2d-a85ad08fbbbe:Character/Textures/Upper_Damaged_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: cdb32683-27b3-4409-a589-d15fa0723ee5:Character/Textures/Upper_Damaged_A + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 4104a63d-4635-4723-986b-eff61aae8b0b:Character/Textures/Upper_Damaged_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: b9c9d1e7-c3d0-4cf2-9424-849cb1d1445b:Character/Textures/Upper_Damaged_O + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: 7fb3e39b-bb19-481f-86e6-fca87e24a3c7:Character/Textures/Upper_Damaged_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 10.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Character/Materials/Upper_part_normal.xkmat b/Starbreach/Assets/Shared/Character/Materials/Upper_part_normal.xkmat new file mode 100644 index 0000000..7dfb498 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Materials/Upper_part_normal.xkmat @@ -0,0 +1,72 @@ +!MaterialAsset +Id: 6b6aaf08-35b7-40b7-94a8-cf12a6c1d293 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: a264e548-ddae-415d-982d-d04486795dac:Character/Textures/Upper_Normal_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: bffa23d1-c999-4452-822d-f1577b3e582f:Character/Textures/Upper_Normal_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 2fef9b83-159b-4d44-ae82-d516e45a7cbc:Character/Textures/Upper_Normal_A + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 0511e59b-552b-4978-8d14-48a5f4db5560:Character/Textures/Upper_Normal_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 6e78af7e-69f4-43d7-b3c1-e4d324650995:Character/Textures/Upper_Normal_O + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: 24cc1841-a7dc-4d67-a737-baab150c461f:Character/Textures/Upper_Normal_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 10.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Character/Materials/Weapon.xkmat b/Starbreach/Assets/Shared/Character/Materials/Weapon.xkmat new file mode 100644 index 0000000..e3370d5 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Materials/Weapon.xkmat @@ -0,0 +1,62 @@ +!MaterialAsset +Id: abe48172-91b9-405f-93d9-3a908c2d925f +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: fbd29f69-3fc1-4a1c-8e87-680bbe4d2f9e:Character/Textures/Machinegun_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: cd627bfd-00f4-41c5-a31a-a053208f7019:Character/Textures/Machinegun_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: f634bb41-0de4-4e4b-96d8-f0bea242cdc2:Character/Textures/Machinegun_A + FallbackValue: + Value: {R: 0.98, G: 0.9, B: 0.7, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 8ed387c7-2d5e-4e62-b4f8-1a1d42c7e653:Character/Textures/Machinegun_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: f06fbb11-a6b7-4356-94ce-97d35d085a7b:Character/Textures/Machinegun_O + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Character/ShootSource.xkprefab b/Starbreach/Assets/Shared/Character/ShootSource.xkprefab new file mode 100644 index 0000000..841cfd1 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/ShootSource.xkprefab @@ -0,0 +1,155 @@ +!PrefabAsset +Id: 926b314f-388d-4aec-93e3-f19d4d876a42 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 97931349-08c9-4210-801f-21b417472611 + Parts: + - Entity: + Id: 74247c8e-9fd7-4ec3-90a0-ff704dc12a33 + Name: ShootTrail + Components: + f58a388933e21f47a0bc2f0261d361e3: !TransformComponent + Id: 89388af5-e233-471f-a0bc-2f0261d361e3 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 9dcae3aa020ae04cbb5422cc6bc5d4cc: !ParticleSystemComponent + Id: aae3ca9d-0a02-4ce0-bb54-22cc6bc5d4cc + Control: + ResetSeconds: 5.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + adb8fcc8a1b24545b38e9baef4b601bf: + MaxParticlesOverride: 60 + ParticleLifetime: {X: 0.5, Y: 0.5} + ShapeBuilder: !ShapeBuilderRibbon + SmoothingPolicy: None + Segments: 5 + TextureCoordinatePolicy: AsIs + TexCoordsFactor: 1.0 + UVRotate: + FlipX: false + FlipY: false + UVClockwise: Degree0 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 0.5 + ComputeColor: !ComputeFloat4 + Value: {X: 5.0, Y: 0.2, Z: 0.2, W: 1.0} + UVBuilder: null + ForceTexCoords: false + Spawners: + bad604c5ad10df4da08d741c357644da: !SpawnerPerFrame + Enabled: false + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 10.0 + Framerate: 60.0 + Initializers: + a1cc372b3690d340a28487d1dea312ac: !InitialPositionArc + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticleRotation: true + DisplayParticlePosition: false + Target: null + DisplayParticleScaleUniform: false + DisplayParticleScale: false + FallbackTarget: {X: 0.0, Y: 0.0, Z: -1.0} + ArcHeight: 0.0 + Sequential: true + FixedLength: 0 + PositionMin: {X: 0.0, Y: 0.0, Z: 0.0} + PositionMax: {X: 0.0, Y: 0.0, Z: 0.0} + SeedOffset: 0 + b2c96c3975a6fa409f49c05852d86fdb: !InitialSpawnOrderGroup + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + Updaters: + 6b4c4dcad8f329458ff22935b3a11718: !UpdaterSizeOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 67ff742d15ab1f428f4465b8eeb864d2: + Key: 0.0 + Value: 0.25 + TangentType: Linear + 402be62ce08d3840858b9075c0dbbaba: + Key: 0.12 + Value: 0.1 + TangentType: Linear + 27fedde6b99c194b81b4a67060b882ac: + Key: 1.0 + Value: 0.0 + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + RenderGroup: Group1 + - Entity: + Id: 80609e8f-c72c-4849-b81a-916c9ebf911e + Name: Point light + Components: + f5599b1e4954624db3a69b99d1893a19: !TransformComponent + Id: 1e9b59f5-5449-4d62-b3a6-9b99d1893a19 + Position: {X: 0.2, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 99c736503f4f2542ac643e4ce04a6290: !LightComponent + Id: 5036c799-4f3f-4225-ac64-3e4ce04a6290 + Type: !LightPoint + Color: !ColorRgbProvider + Value: {R: 0.98775, G: 0.8226877, B: 0.4136203} + Radius: 3.0 + Shadow: + Size: Small + BiasParameters: {} + Intensity: 10.0 + - Entity: + Id: 97931349-08c9-4210-801f-21b417472611 + Name: ShootSource + Components: + f0cda019ec4e5a45964644d63727a895: !TransformComponent + Id: 19a0cdf0-4eec-455a-9646-44d63727a895 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + f58a388933e21f47a0bc2f0261d361e3: ref!! 89388af5-e233-471f-a0bc-2f0261d361e3 + f5599b1e4954624db3a69b99d1893a19: ref!! 1e9b59f5-5449-4d62-b3a6-9b99d1893a19 + ba979b8c3b12af4384c2fbadd984e7fc: !ModelNodeLinkComponent + Id: 8c9b97ba-123b-43af-84c2-fbadd984e7fc + Target: null + NodeName: gun_barrel diff --git a/Starbreach/Assets/Shared/Character/Textures/Lower_Burnt_A.xktex b/Starbreach/Assets/Shared/Character/Textures/Lower_Burnt_A.xktex new file mode 100644 index 0000000..b775c2c --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Lower_Burnt_A.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 850f5859-de95-460a-b8fa-fba8acff49c0 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/MainCharacter_Burnt/MainCharacter_Lower_Burnt_A.tga +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Character/Textures/Lower_Burnt_E.xktex b/Starbreach/Assets/Shared/Character/Textures/Lower_Burnt_E.xktex new file mode 100644 index 0000000..6bcee5f --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Lower_Burnt_E.xktex @@ -0,0 +1,9 @@ +!Texture +Id: fe7e07f6-5d27-4bd0-9200-871bb806e958 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/MainCharacter_Burnt/MainCharacter_Lower_Burnt_E.tga +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Character/Textures/Lower_Burnt_G.xktex b/Starbreach/Assets/Shared/Character/Textures/Lower_Burnt_G.xktex new file mode 100644 index 0000000..936228f --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Lower_Burnt_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 41c3326a-1ee9-4d80-8c89-515344b00d65 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/MainCharacter_Burnt/MainCharacter_Lower_Burnt_R.tga +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Character/Textures/Lower_Burnt_M.xktex b/Starbreach/Assets/Shared/Character/Textures/Lower_Burnt_M.xktex new file mode 100644 index 0000000..4ce9181 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Lower_Burnt_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 03a5afe5-93ca-4bae-944c-ff94762a4353 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/MainCharacter_Burnt/MainCharacter_Lower_Burnt_M.tga +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Character/Textures/Lower_Burnt_N.xktex b/Starbreach/Assets/Shared/Character/Textures/Lower_Burnt_N.xktex new file mode 100644 index 0000000..86063a7 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Lower_Burnt_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 33ecad47-0fd2-40fa-b24b-94724bdcefbd +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/MainCharacter_Burnt/MainCharacter_Lower_Burnt_N.tga +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Character/Textures/Lower_Burnt_O.xktex b/Starbreach/Assets/Shared/Character/Textures/Lower_Burnt_O.xktex new file mode 100644 index 0000000..a04374d --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Lower_Burnt_O.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 4ebe3927-3f72-459b-b98a-09f52e7ff8f5 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/MainCharacter_Burnt/MainCharacter_Lower_Burnt_O.tga +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Character/Textures/Lower_Damaged_A.xktex b/Starbreach/Assets/Shared/Character/Textures/Lower_Damaged_A.xktex new file mode 100644 index 0000000..67ff3a9 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Lower_Damaged_A.xktex @@ -0,0 +1,9 @@ +!Texture +Id: aeac0702-fdc7-4c64-8598-4771b4681a1f +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/MainCharacter_Damaged/MainCharacter_Lower_Damaged_A.tga +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Character/Textures/Lower_Damaged_E.xktex b/Starbreach/Assets/Shared/Character/Textures/Lower_Damaged_E.xktex new file mode 100644 index 0000000..1371a5e --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Lower_Damaged_E.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 4bfadade-e225-4e37-b5c2-9d0c502deae0 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/MainCharacter_Damaged/MainCharacter_Lower_Damaged_E.tga +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Character/Textures/Lower_Damaged_G.xktex b/Starbreach/Assets/Shared/Character/Textures/Lower_Damaged_G.xktex new file mode 100644 index 0000000..53ce07c --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Lower_Damaged_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: a869d97f-d21f-4391-9f12-bb94a4ddfefb +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/MainCharacter_Damaged/MainCharacter_Lower_Damaged_R.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Character/Textures/Lower_Damaged_M.xktex b/Starbreach/Assets/Shared/Character/Textures/Lower_Damaged_M.xktex new file mode 100644 index 0000000..1b2cab1 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Lower_Damaged_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 2e2e73fe-be5c-448c-8077-5f3364e2e074 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/MainCharacter_Damaged/MainCharacter_Lower_Damaged_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Character/Textures/Lower_Damaged_N.xktex b/Starbreach/Assets/Shared/Character/Textures/Lower_Damaged_N.xktex new file mode 100644 index 0000000..c5ad36d --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Lower_Damaged_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 8805c785-2d16-40ee-90e1-fe8ad113ca10 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/MainCharacter_Damaged/MainCharacter_Lower_Damaged_N.tga +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Character/Textures/Lower_Damaged_O.xktex b/Starbreach/Assets/Shared/Character/Textures/Lower_Damaged_O.xktex new file mode 100644 index 0000000..b296683 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Lower_Damaged_O.xktex @@ -0,0 +1,9 @@ +!Texture +Id: c032f38e-eac4-4a80-a3cc-4bd9c426f6f9 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/MainCharacter_Damaged/MainCharacter_Lower_Damaged_O.tga +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Character/Textures/Lower_Normal_A.xktex b/Starbreach/Assets/Shared/Character/Textures/Lower_Normal_A.xktex new file mode 100644 index 0000000..be1aca8 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Lower_Normal_A.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 0ef69f8d-c307-4935-a39c-76ab85e1ae69 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/Lower [AlbedoM].tga +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Character/Textures/Lower_Normal_E.xktex b/Starbreach/Assets/Shared/Character/Textures/Lower_Normal_E.xktex new file mode 100644 index 0000000..7a62fab --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Lower_Normal_E.xktex @@ -0,0 +1,9 @@ +!Texture +Id: afbe3f06-0784-4b86-801f-1e8759455738 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/Lower [Emissive].tga +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Character/Textures/Lower_Normal_G.xktex b/Starbreach/Assets/Shared/Character/Textures/Lower_Normal_G.xktex new file mode 100644 index 0000000..3c0ea31 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Lower_Normal_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 049878fd-2382-47eb-b274-337471de4428 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/Lower [Gloss].tga +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Character/Textures/Lower_Normal_M.xktex b/Starbreach/Assets/Shared/Character/Textures/Lower_Normal_M.xktex new file mode 100644 index 0000000..35c8519 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Lower_Normal_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: c3a718cd-94e5-461a-972f-b7ef4458962b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/Lower [Metalness].tga +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Character/Textures/Lower_Normal_N.xktex b/Starbreach/Assets/Shared/Character/Textures/Lower_Normal_N.xktex new file mode 100644 index 0000000..a751976 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Lower_Normal_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: c7967ddb-6863-429a-97f1-11b5fe4c6995 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/Lower [Normal].tga +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Character/Textures/Lower_Normal_O.xktex b/Starbreach/Assets/Shared/Character/Textures/Lower_Normal_O.xktex new file mode 100644 index 0000000..d80a722 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Lower_Normal_O.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 80bf10b3-66c2-4537-b1c7-fd3b9d9df6a7 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/Lower [Occlusion].tga +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Character/Textures/Machinegun_A.xktex b/Starbreach/Assets/Shared/Character/Textures/Machinegun_A.xktex new file mode 100644 index 0000000..ceb81b9 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Machinegun_A.xktex @@ -0,0 +1,9 @@ +!Texture +Id: f634bb41-0de4-4e4b-96d8-f0bea242cdc2 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/Machinegun_A.tga +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Character/Textures/Machinegun_G.xktex b/Starbreach/Assets/Shared/Character/Textures/Machinegun_G.xktex new file mode 100644 index 0000000..c0ace0b --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Machinegun_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: cd627bfd-00f4-41c5-a31a-a053208f7019 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/Machinegun_R.tga +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Character/Textures/Machinegun_M.xktex b/Starbreach/Assets/Shared/Character/Textures/Machinegun_M.xktex new file mode 100644 index 0000000..4a88b83 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Machinegun_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 8ed387c7-2d5e-4e62-b4f8-1a1d42c7e653 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/Machinegun_M.tga +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Character/Textures/Machinegun_N.xktex b/Starbreach/Assets/Shared/Character/Textures/Machinegun_N.xktex new file mode 100644 index 0000000..1ac09c7 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Machinegun_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: fbd29f69-3fc1-4a1c-8e87-680bbe4d2f9e +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/Machinegun_N.tga +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Character/Textures/Machinegun_O.xktex b/Starbreach/Assets/Shared/Character/Textures/Machinegun_O.xktex new file mode 100644 index 0000000..a31c822 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Machinegun_O.xktex @@ -0,0 +1,9 @@ +!Texture +Id: f06fbb11-a6b7-4356-94ce-97d35d085a7b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/Machinegun_O.tga +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Character/Textures/Upper_Burnt_A.xktex b/Starbreach/Assets/Shared/Character/Textures/Upper_Burnt_A.xktex new file mode 100644 index 0000000..5db48b7 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Upper_Burnt_A.xktex @@ -0,0 +1,9 @@ +!Texture +Id: e23101ec-9001-4622-b0a7-c31ac2fa6ad9 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/MainCharacter_Burnt/MainCharacter_Upper_Burnt_A.tga +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Character/Textures/Upper_Burnt_E.xktex b/Starbreach/Assets/Shared/Character/Textures/Upper_Burnt_E.xktex new file mode 100644 index 0000000..258bd5b --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Upper_Burnt_E.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 10be3c19-714a-408f-b6aa-dd6199bfe705 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/MainCharacter_Burnt/MainCharacter_Upper_Burnt_E.tga +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Character/Textures/Upper_Burnt_G.xktex b/Starbreach/Assets/Shared/Character/Textures/Upper_Burnt_G.xktex new file mode 100644 index 0000000..4297cf5 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Upper_Burnt_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 21b4799b-1cf4-4b02-8165-06a4dddb2732 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/MainCharacter_Burnt/MainCharacter_Upper_Burnt_R.tga +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Character/Textures/Upper_Burnt_M.xktex b/Starbreach/Assets/Shared/Character/Textures/Upper_Burnt_M.xktex new file mode 100644 index 0000000..a895e03 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Upper_Burnt_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: ee7fa7d5-9c0b-40d9-a703-1a011c014273 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/MainCharacter_Burnt/MainCharacter_Upper_Burnt_M.tga +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Character/Textures/Upper_Burnt_N.xktex b/Starbreach/Assets/Shared/Character/Textures/Upper_Burnt_N.xktex new file mode 100644 index 0000000..f1bd524 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Upper_Burnt_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 790884dd-8fca-4590-9c2b-cf049b923ba5 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/MainCharacter_Burnt/MainCharacter_Upper_Burnt_N.tga +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Character/Textures/Upper_Burnt_O.xktex b/Starbreach/Assets/Shared/Character/Textures/Upper_Burnt_O.xktex new file mode 100644 index 0000000..de64ca6 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Upper_Burnt_O.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 3041915e-9f88-444d-8391-27e8405683bf +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/MainCharacter_Burnt/MainCharacter_Upper_Burnt_O.tga +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Character/Textures/Upper_Damaged_A.xktex b/Starbreach/Assets/Shared/Character/Textures/Upper_Damaged_A.xktex new file mode 100644 index 0000000..74d9e1b --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Upper_Damaged_A.xktex @@ -0,0 +1,9 @@ +!Texture +Id: cdb32683-27b3-4409-a589-d15fa0723ee5 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/MainCharacter_Damaged/MainCharacter_Upper_Damaged_A.tga +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Character/Textures/Upper_Damaged_E.xktex b/Starbreach/Assets/Shared/Character/Textures/Upper_Damaged_E.xktex new file mode 100644 index 0000000..56dc6ca --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Upper_Damaged_E.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 7fb3e39b-bb19-481f-86e6-fca87e24a3c7 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/MainCharacter_Damaged/MainCharacter_Upper_Damaged_E.tga +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Character/Textures/Upper_Damaged_G.xktex b/Starbreach/Assets/Shared/Character/Textures/Upper_Damaged_G.xktex new file mode 100644 index 0000000..8e1fe42 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Upper_Damaged_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 3d626f33-75d9-4774-8f2d-a85ad08fbbbe +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/MainCharacter_Damaged/MainCharacter_Upper_Damaged_R.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Character/Textures/Upper_Damaged_M.xktex b/Starbreach/Assets/Shared/Character/Textures/Upper_Damaged_M.xktex new file mode 100644 index 0000000..32a36be --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Upper_Damaged_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 4104a63d-4635-4723-986b-eff61aae8b0b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/MainCharacter_Damaged/MainCharacter_Upper_Damaged_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Character/Textures/Upper_Damaged_N.xktex b/Starbreach/Assets/Shared/Character/Textures/Upper_Damaged_N.xktex new file mode 100644 index 0000000..b0fad0b --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Upper_Damaged_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 07e796c0-9e11-4f2d-8115-3bad57c0c954 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/MainCharacter_Damaged/MainCharacter_Upper_Damaged_N.tga +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Character/Textures/Upper_Damaged_O.xktex b/Starbreach/Assets/Shared/Character/Textures/Upper_Damaged_O.xktex new file mode 100644 index 0000000..b2009ee --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Upper_Damaged_O.xktex @@ -0,0 +1,9 @@ +!Texture +Id: b9c9d1e7-c3d0-4cf2-9424-849cb1d1445b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/MainCharacter_Damaged/MainCharacter_Upper_Damaged_O.tga +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Character/Textures/Upper_Normal_A.xktex b/Starbreach/Assets/Shared/Character/Textures/Upper_Normal_A.xktex new file mode 100644 index 0000000..bc68672 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Upper_Normal_A.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 2fef9b83-159b-4d44-ae82-d516e45a7cbc +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/Upper [AlbedoM].tga +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Character/Textures/Upper_Normal_E.xktex b/Starbreach/Assets/Shared/Character/Textures/Upper_Normal_E.xktex new file mode 100644 index 0000000..9aeca4e --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Upper_Normal_E.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 24cc1841-a7dc-4d67-a737-baab150c461f +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/Upper [Emissive].tga +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Character/Textures/Upper_Normal_G.xktex b/Starbreach/Assets/Shared/Character/Textures/Upper_Normal_G.xktex new file mode 100644 index 0000000..9c6a722 --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Upper_Normal_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: bffa23d1-c999-4452-822d-f1577b3e582f +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/Upper [Gloss].tga +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Character/Textures/Upper_Normal_M.xktex b/Starbreach/Assets/Shared/Character/Textures/Upper_Normal_M.xktex new file mode 100644 index 0000000..6e2174d --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Upper_Normal_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 0511e59b-552b-4978-8d14-48a5f4db5560 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/Upper [Metalness].tga +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Character/Textures/Upper_Normal_N.xktex b/Starbreach/Assets/Shared/Character/Textures/Upper_Normal_N.xktex new file mode 100644 index 0000000..307d01e --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Upper_Normal_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: a264e548-ddae-415d-982d-d04486795dac +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/Upper [Normal].tga +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Character/Textures/Upper_Normal_O.xktex b/Starbreach/Assets/Shared/Character/Textures/Upper_Normal_O.xktex new file mode 100644 index 0000000..f7c619e --- /dev/null +++ b/Starbreach/Assets/Shared/Character/Textures/Upper_Normal_O.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 6e78af7e-69f4-43d7-b3c1-e4d324650995 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Character/Upper [Occlusion].tga +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Drones/Animations/EnergyDroneFire.xkanim b/Starbreach/Assets/Shared/Drones/Animations/EnergyDroneFire.xkanim new file mode 100644 index 0000000..6f6ab07 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Animations/EnergyDroneFire.xkanim @@ -0,0 +1,23 @@ +!Animation +Id: bbff5c1d-80bb-4c8c-bd8e-edd752029865 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Drones/EnergyDrone/Fire.FBX +ClipDuration: + Enabled: false + StartAnimationTime: 0:00:00:00.0000000 + EndAnimationTime: 0:00:30:00.0000000 +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +RepeatMode: LoopInfinite +Type: !DifferenceAnimationAssetType + BaseSource: ../../../../Resources/Drones/EnergyDrone/Ilde.FBX + Mode: FirstFrame + ClipDuration: + Enabled: false + StartAnimationTimeBox: 0:00:00:00.0000000 + EndAnimationTimeBox: 0:00:30:00.0000000 +Skeleton: 6f6f6e23-78c1-481d-ba5d-42ecd7f0a413:Drones/Models/EnergyDrone_Skeleton +RootMotion: false +PreviewModel: 8b6b1e4a-7de0-4524-8851-23d9e11339b5:Drones/Models/EnergyDrone +AnimationTimeMinimum: 0:00:00:00.0000000 +AnimationTimeMaximum: 0:00:30:00.0000000 diff --git a/Starbreach/Assets/Shared/Drones/Animations/EnergyDroneFly.xkanim b/Starbreach/Assets/Shared/Drones/Animations/EnergyDroneFly.xkanim new file mode 100644 index 0000000..fd0a2f3 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Animations/EnergyDroneFly.xkanim @@ -0,0 +1,17 @@ +!Animation +Id: 1ed61017-cfb9-4a44-9ff7-effd95f4e6c2 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Drones/EnergyDrone/Fly.FBX +ClipDuration: + Enabled: false + StartAnimationTime: 0:00:00:00.0000000 + EndAnimationTime: 0:00:30:00.0000000 +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +RepeatMode: LoopInfinite +Type: !StandardAnimationAssetType {} +Skeleton: 6f6f6e23-78c1-481d-ba5d-42ecd7f0a413:Drones/Models/EnergyDrone_Skeleton +RootMotion: false +PreviewModel: 8b6b1e4a-7de0-4524-8851-23d9e11339b5:Drones/Models/EnergyDrone +AnimationTimeMinimum: 0:00:00:00.0000000 +AnimationTimeMaximum: 0:00:30:00.0000000 diff --git a/Starbreach/Assets/Shared/Drones/Animations/EnergyDroneIdle.xkanim b/Starbreach/Assets/Shared/Drones/Animations/EnergyDroneIdle.xkanim new file mode 100644 index 0000000..c34f199 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Animations/EnergyDroneIdle.xkanim @@ -0,0 +1,17 @@ +!Animation +Id: c9f1abb3-03e4-41b0-b65e-95168f7c3a5f +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Drones/EnergyDrone/Ilde.FBX +ClipDuration: + Enabled: false + StartAnimationTime: 0:00:00:00.0000000 + EndAnimationTime: 0:00:30:00.0000000 +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +RepeatMode: LoopInfinite +Type: !StandardAnimationAssetType {} +Skeleton: 6f6f6e23-78c1-481d-ba5d-42ecd7f0a413:Drones/Models/EnergyDrone_Skeleton +RootMotion: false +PreviewModel: 8b6b1e4a-7de0-4524-8851-23d9e11339b5:Drones/Models/EnergyDrone +AnimationTimeMinimum: 0:00:00:00.0000000 +AnimationTimeMaximum: 0:00:30:00.0000000 diff --git a/Starbreach/Assets/Shared/Drones/Animations/RocketDroneFire.xkanim b/Starbreach/Assets/Shared/Drones/Animations/RocketDroneFire.xkanim new file mode 100644 index 0000000..12c9ca1 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Animations/RocketDroneFire.xkanim @@ -0,0 +1,23 @@ +!Animation +Id: b476b79e-b408-4d80-8be5-e243b0355168 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Drones/RocketDrone/Fire.FBX +ClipDuration: + Enabled: false + StartAnimationTime: 0:00:00:00.0000000 + EndAnimationTime: 0:00:30:00.0000000 +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +RepeatMode: LoopInfinite +Type: !DifferenceAnimationAssetType + BaseSource: ../../../../Resources/Drones/RocketDrone/Idle.FBX + Mode: FirstFrame + ClipDuration: + Enabled: false + StartAnimationTimeBox: 0:00:00:00.0000000 + EndAnimationTimeBox: 0:00:30:00.0000000 +Skeleton: 7554e710-9981-42fd-be94-d17a3957bf94:Drones/Models/RocketDrone_Skeleton +RootMotion: false +PreviewModel: c1428709-fa5d-40a7-8e17-d2efb546bfef:Drones/Models/RocketDrone +AnimationTimeMinimum: 0:00:00:00.0000000 +AnimationTimeMaximum: 0:00:30:00.0000000 diff --git a/Starbreach/Assets/Shared/Drones/Animations/RocketDroneFly.xkanim b/Starbreach/Assets/Shared/Drones/Animations/RocketDroneFly.xkanim new file mode 100644 index 0000000..11f494e --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Animations/RocketDroneFly.xkanim @@ -0,0 +1,17 @@ +!Animation +Id: b3ba9abe-76d5-4580-8531-d1d1de2fc1ef +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Drones/RocketDrone/Fly.FBX +ClipDuration: + Enabled: false + StartAnimationTime: 0:00:00:00.0000000 + EndAnimationTime: 0:00:30:00.0000000 +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +RepeatMode: LoopInfinite +Type: !StandardAnimationAssetType {} +Skeleton: 7554e710-9981-42fd-be94-d17a3957bf94:Drones/Models/RocketDrone_Skeleton +RootMotion: false +PreviewModel: c1428709-fa5d-40a7-8e17-d2efb546bfef:Drones/Models/RocketDrone +AnimationTimeMinimum: 0:00:00:00.0000000 +AnimationTimeMaximum: 0:00:30:00.0000000 diff --git a/Starbreach/Assets/Shared/Drones/Animations/RocketDroneIdle.xkanim b/Starbreach/Assets/Shared/Drones/Animations/RocketDroneIdle.xkanim new file mode 100644 index 0000000..7d3ab3c --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Animations/RocketDroneIdle.xkanim @@ -0,0 +1,17 @@ +!Animation +Id: a980d9c8-1ff7-456c-87d6-312bb28c9a90 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Drones/RocketDrone/Idle.FBX +ClipDuration: + Enabled: false + StartAnimationTime: 0:00:00:00.0000000 + EndAnimationTime: 0:00:30:00.0000000 +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +RepeatMode: LoopInfinite +Type: !StandardAnimationAssetType {} +Skeleton: 7554e710-9981-42fd-be94-d17a3957bf94:Drones/Models/RocketDrone_Skeleton +RootMotion: false +PreviewModel: c1428709-fa5d-40a7-8e17-d2efb546bfef:Drones/Models/RocketDrone +AnimationTimeMinimum: 0:00:00:00.0000000 +AnimationTimeMaximum: 0:00:30:00.0000000 diff --git a/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneLower.xkmat b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneLower.xkmat new file mode 100644 index 0000000..0eab11b --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneLower.xkmat @@ -0,0 +1,76 @@ +!MaterialAsset +Id: 76636c37-5239-4cd3-ac8a-953e9e4d913e +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 5c61c48d-a7e5-43d8-85be-0061dfaf26f6:Drones/Materials/Drone/DroneLower_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 7b400497-099f-445b-b246-3e0deea4ab76:Drones/Materials/Drone/DroneLower_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 0acef466-e3a4-481f-b24c-31398a5582cc:Drones/Materials/Drone/DroneLower_A + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: afd1c72a-a63e-4af9-a6b0-c0e5e8e282f0:Drones/Materials/Drone/DroneLower_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 5c442183-ce18-401e-855f-ce6947ed5adb:Drones/Materials/Drone/DroneLower_O + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 1.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: bafe58bf-c14b-4d41-bbec-2839031b95dd:Drones/Materials/Drone/DroneLower_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeColor + Value: {R: 0.447058827, G: 0.5568628, B: 0.7490196, A: 1.0} + Intensity: !ComputeFloat + Value: 5.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneLower_A.xktex b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneLower_A.xktex new file mode 100644 index 0000000..9217ba3 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneLower_A.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 0acef466-e3a4-481f-b24c-31398a5582cc +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Drones/Drone/DroneLower_A.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneLower_E.xktex b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneLower_E.xktex new file mode 100644 index 0000000..8c460e2 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneLower_E.xktex @@ -0,0 +1,9 @@ +!Texture +Id: bafe58bf-c14b-4d41-bbec-2839031b95dd +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Drones/Drone/DroneLower_E.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneLower_G.xktex b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneLower_G.xktex new file mode 100644 index 0000000..a3b915d --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneLower_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 7b400497-099f-445b-b246-3e0deea4ab76 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Drones/Drone/DroneLower_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneLower_M.xktex b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneLower_M.xktex new file mode 100644 index 0000000..cd1caf9 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneLower_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: afd1c72a-a63e-4af9-a6b0-c0e5e8e282f0 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Drones/Drone/DroneLower_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneLower_N.xktex b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneLower_N.xktex new file mode 100644 index 0000000..d8a2df6 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneLower_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 5c61c48d-a7e5-43d8-85be-0061dfaf26f6 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Drones/Drone/DroneLower_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneLower_O.xktex b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneLower_O.xktex new file mode 100644 index 0000000..f242bc8 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneLower_O.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 5c442183-ce18-401e-855f-ce6947ed5adb +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Drones/Drone/DroneLower_O.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneLower_explosion.xkmat b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneLower_explosion.xkmat new file mode 100644 index 0000000..6556879 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneLower_explosion.xkmat @@ -0,0 +1,77 @@ +!MaterialAsset +Id: 2400967d-d214-43a0-b178-f4b148e2330a +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 5c61c48d-a7e5-43d8-85be-0061dfaf26f6:Drones/Materials/Drone/DroneLower_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 7b400497-099f-445b-b246-3e0deea4ab76:Drones/Materials/Drone/DroneLower_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 0acef466-e3a4-481f-b24c-31398a5582cc:Drones/Materials/Drone/DroneLower_A + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: afd1c72a-a63e-4af9-a6b0-c0e5e8e282f0:Drones/Materials/Drone/DroneLower_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 5c442183-ce18-401e-855f-ce6947ed5adb:Drones/Materials/Drone/DroneLower_O + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 1.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + Enabled: false + EmissiveMap: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: bafe58bf-c14b-4d41-bbec-2839031b95dd:Drones/Materials/Drone/DroneLower_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeColor + Value: {R: 0.447058827, G: 0.5568628, B: 0.7490196, A: 1.0} + Intensity: !ComputeFloat + Value: 5.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneUpper.xkmat b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneUpper.xkmat new file mode 100644 index 0000000..e30a892 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneUpper.xkmat @@ -0,0 +1,76 @@ +!MaterialAsset +Id: b91deeaf-43f6-434a-8400-22a1c6cb0447 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 58403429-2337-4882-9a2e-f412996ec5ed:Drones/Materials/Drone/DroneUpper_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 5f611895-70e3-47cb-a94c-9ddc058f300c:Drones/Materials/Drone/DroneUpper_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: ddd97c09-1d80-433b-b0e8-79fe0e90c6cb:Drones/Materials/Drone/DroneUpper_A + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 3a6c443a-5c09-4b74-afe7-edcb53ba9caa:Drones/Materials/Drone/DroneUpper_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 8f0145d3-376a-4e88-a144-7a25eab2753c:Drones/Materials/Drone/DroneUpper_O + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 1.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: f89485f0-1051-459e-9dfb-784a187e549e:Drones/Materials/Drone/DroneUpper_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeColor + Value: {R: 0.0, G: 0.546699941, B: 0.994, A: 1.0} + Intensity: !ComputeFloat + Value: 5.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneUpper_A.xktex b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneUpper_A.xktex new file mode 100644 index 0000000..d568ce5 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneUpper_A.xktex @@ -0,0 +1,9 @@ +!Texture +Id: ddd97c09-1d80-433b-b0e8-79fe0e90c6cb +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Drones/Drone/DroneUpper_A.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneUpper_Alerted.xkmat b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneUpper_Alerted.xkmat new file mode 100644 index 0000000..314b235 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneUpper_Alerted.xkmat @@ -0,0 +1,76 @@ +!MaterialAsset +Id: 70cfa151-cffc-4cf1-a0d5-2ac4ac94e4a6 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 58403429-2337-4882-9a2e-f412996ec5ed:Drones/Materials/Drone/DroneUpper_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 5f611895-70e3-47cb-a94c-9ddc058f300c:Drones/Materials/Drone/DroneUpper_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: ddd97c09-1d80-433b-b0e8-79fe0e90c6cb:Drones/Materials/Drone/DroneUpper_A + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 3a6c443a-5c09-4b74-afe7-edcb53ba9caa:Drones/Materials/Drone/DroneUpper_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 8f0145d3-376a-4e88-a144-7a25eab2753c:Drones/Materials/Drone/DroneUpper_O + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 1.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 99ebf751-11b4-4a9f-ab0c-48d2c8636f07:Drones/Materials/Drone/DroneUpper_Desaturated + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeColor + Value: {R: 0.90025, G: 0.112531252, B: 0.112531252, A: 1.0} + Intensity: !ComputeFloat + Value: 200.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneUpper_Desaturated.xktex b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneUpper_Desaturated.xktex new file mode 100644 index 0000000..c72dd27 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneUpper_Desaturated.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 99ebf751-11b4-4a9f-ab0c-48d2c8636f07 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Drones/Drone/DroneUpper_Desaturated.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneUpper_E.xktex b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneUpper_E.xktex new file mode 100644 index 0000000..888c4e8 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneUpper_E.xktex @@ -0,0 +1,9 @@ +!Texture +Id: f89485f0-1051-459e-9dfb-784a187e549e +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Drones/Drone/DroneUpper_E.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneUpper_G.xktex b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneUpper_G.xktex new file mode 100644 index 0000000..b5446f5 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneUpper_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 5f611895-70e3-47cb-a94c-9ddc058f300c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Drones/Drone/DroneUpper_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneUpper_M.xktex b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneUpper_M.xktex new file mode 100644 index 0000000..29002d0 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneUpper_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 3a6c443a-5c09-4b74-afe7-edcb53ba9caa +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Drones/Drone/DroneUpper_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneUpper_N.xktex b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneUpper_N.xktex new file mode 100644 index 0000000..369b1ba --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneUpper_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 58403429-2337-4882-9a2e-f412996ec5ed +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Drones/Drone/DroneUpper_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneUpper_O.xktex b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneUpper_O.xktex new file mode 100644 index 0000000..54638da --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneUpper_O.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 8f0145d3-376a-4e88-a144-7a25eab2753c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Drones/Drone/DroneUpper_O.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneUpper_explosion.xkmat b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneUpper_explosion.xkmat new file mode 100644 index 0000000..ff14532 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/Drone/DroneUpper_explosion.xkmat @@ -0,0 +1,77 @@ +!MaterialAsset +Id: 4756b860-c10e-475a-afbb-a437f26c8e6d +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 58403429-2337-4882-9a2e-f412996ec5ed:Drones/Materials/Drone/DroneUpper_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 5f611895-70e3-47cb-a94c-9ddc058f300c:Drones/Materials/Drone/DroneUpper_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: ddd97c09-1d80-433b-b0e8-79fe0e90c6cb:Drones/Materials/Drone/DroneUpper_A + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 3a6c443a-5c09-4b74-afe7-edcb53ba9caa:Drones/Materials/Drone/DroneUpper_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 8f0145d3-376a-4e88-a144-7a25eab2753c:Drones/Materials/Drone/DroneUpper_O + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 1.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + Enabled: false + EmissiveMap: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: f89485f0-1051-459e-9dfb-784a187e549e:Drones/Materials/Drone/DroneUpper_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeColor + Value: {R: 0.0, G: 0.546699941, B: 0.994, A: 1.0} + Intensity: !ComputeFloat + Value: 5.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Drones/Materials/EnergyDrone/EnergyDrone.xkmat b/Starbreach/Assets/Shared/Drones/Materials/EnergyDrone/EnergyDrone.xkmat new file mode 100644 index 0000000..46cdf9a --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/EnergyDrone/EnergyDrone.xkmat @@ -0,0 +1,72 @@ +!MaterialAsset +Id: c2292c76-631b-4a19-b984-096e90ede1ed +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 1f23fec4-ff69-4850-9c03-eca79dfbcf74:Drones/Materials/EnergyDrone/EnergyDrone_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 9898fce9-867f-40b6-8841-71f0eaf7d961:Drones/Materials/EnergyDrone/EnergyDrone_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 869ff277-6f1d-491b-bb84-1696b5f27274:Drones/Materials/EnergyDrone/EnergyDrone_A + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 73098a29-c554-4ebc-ae66-3807abee515e:Drones/Materials/EnergyDrone/EnergyDrone_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 4e4bdc2c-979e-45c5-9607-627a93479888:Drones/Materials/EnergyDrone/EnergyDrone_O + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 1.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: 989685c9-455e-479a-88b8-b79a73e757dc:Drones/Materials/EnergyDrone/EnergyDrone_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 8.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Drones/Materials/EnergyDrone/EnergyDrone_A.xktex b/Starbreach/Assets/Shared/Drones/Materials/EnergyDrone/EnergyDrone_A.xktex new file mode 100644 index 0000000..26f15b1 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/EnergyDrone/EnergyDrone_A.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 869ff277-6f1d-491b-bb84-1696b5f27274 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Drones/RocketDrone/EnergyDrone_A.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Drones/Materials/EnergyDrone/EnergyDrone_E.xktex b/Starbreach/Assets/Shared/Drones/Materials/EnergyDrone/EnergyDrone_E.xktex new file mode 100644 index 0000000..08cd6df --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/EnergyDrone/EnergyDrone_E.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 989685c9-455e-479a-88b8-b79a73e757dc +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Drones/RocketDrone/EnergyDrone_E.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Drones/Materials/EnergyDrone/EnergyDrone_G.xktex b/Starbreach/Assets/Shared/Drones/Materials/EnergyDrone/EnergyDrone_G.xktex new file mode 100644 index 0000000..4d5a807 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/EnergyDrone/EnergyDrone_G.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 9898fce9-867f-40b6-8841-71f0eaf7d961 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Drones/RocketDrone/EnergyDrone_G.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Drones/Materials/EnergyDrone/EnergyDrone_M.xktex b/Starbreach/Assets/Shared/Drones/Materials/EnergyDrone/EnergyDrone_M.xktex new file mode 100644 index 0000000..61a1489 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/EnergyDrone/EnergyDrone_M.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 73098a29-c554-4ebc-ae66-3807abee515e +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Drones/EnergyDrone/EnergyDrone_M.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Drones/Materials/EnergyDrone/EnergyDrone_N.xktex b/Starbreach/Assets/Shared/Drones/Materials/EnergyDrone/EnergyDrone_N.xktex new file mode 100644 index 0000000..bbe10de --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/EnergyDrone/EnergyDrone_N.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 1f23fec4-ff69-4850-9c03-eca79dfbcf74 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Drones/EnergyDrone/EnergyDrone_N.png +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Drones/Materials/EnergyDrone/EnergyDrone_O.xktex b/Starbreach/Assets/Shared/Drones/Materials/EnergyDrone/EnergyDrone_O.xktex new file mode 100644 index 0000000..c87b4fc --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/EnergyDrone/EnergyDrone_O.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 4e4bdc2c-979e-45c5-9607-627a93479888 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Drones/EnergyDrone/EnergyDrone_O.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Drones/Materials/Rocket/Explosion.xktex b/Starbreach/Assets/Shared/Drones/Materials/Rocket/Explosion.xktex new file mode 100644 index 0000000..03c84e0 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/Rocket/Explosion.xktex @@ -0,0 +1,7 @@ +!Texture +Id: dcae3aac-de6d-4d07-a287-200dd2f4b064 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Drones/Rocket/Explosion.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Drones/Materials/Rocket/Explosion_Fire_Grayscale.xktex b/Starbreach/Assets/Shared/Drones/Materials/Rocket/Explosion_Fire_Grayscale.xktex new file mode 100644 index 0000000..6c6e821 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/Rocket/Explosion_Fire_Grayscale.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 1bfb51c4-3584-42b7-b185-0751c708c460 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Drones/Rocket/Explosion_Fire_Grayscale.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Drones/Materials/Rocket/Explosion_Grayscale.xktex b/Starbreach/Assets/Shared/Drones/Materials/Rocket/Explosion_Grayscale.xktex new file mode 100644 index 0000000..aca6769 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/Rocket/Explosion_Grayscale.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 2bfdce9f-f8f6-4e6c-a9fc-313ffdd34cb8 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Drones/Rocket/Explosion_Grayscale.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Drones/Materials/Rocket/Rocket.xkmat b/Starbreach/Assets/Shared/Drones/Materials/Rocket/Rocket.xkmat new file mode 100644 index 0000000..5c35cb0 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/Rocket/Rocket.xkmat @@ -0,0 +1,72 @@ +!MaterialAsset +Id: 6aec840c-1173-4374-bfce-5886fe37ad16 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 5af915c2-7828-4f9e-9fc4-7b503cd0cd8c:Drones/Materials/Rocket/Rocket_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: d425536d-0e90-43fb-a899-8f2e0d794df3:Drones/Materials/Rocket/Rocket_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 71848468-57ea-4d02-8364-bfde7b74b143:Drones/Materials/Rocket/Rocket_A + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 00d37b25-c253-496c-8ecf-2fb1a9c53e3c:Drones/Materials/Rocket/Rocket_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 71b39b34-e669-43a4-801c-3e066825a698:Drones/Materials/Rocket/Rocket_O + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: fd7b48a5-7112-42a2-be09-8543f1bc61a4:Drones/Materials/Rocket/Rocket_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 50.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Drones/Materials/Rocket/Rocket_A.xktex b/Starbreach/Assets/Shared/Drones/Materials/Rocket/Rocket_A.xktex new file mode 100644 index 0000000..30cb6ce --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/Rocket/Rocket_A.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 71848468-57ea-4d02-8364-bfde7b74b143 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Drones/Rocket/Rocket_A.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Drones/Materials/Rocket/Rocket_E.xktex b/Starbreach/Assets/Shared/Drones/Materials/Rocket/Rocket_E.xktex new file mode 100644 index 0000000..c6a4b85 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/Rocket/Rocket_E.xktex @@ -0,0 +1,7 @@ +!Texture +Id: fd7b48a5-7112-42a2-be09-8543f1bc61a4 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Drones/Rocket/Rocket_E.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Drones/Materials/Rocket/Rocket_G.xktex b/Starbreach/Assets/Shared/Drones/Materials/Rocket/Rocket_G.xktex new file mode 100644 index 0000000..be267f0 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/Rocket/Rocket_G.xktex @@ -0,0 +1,6 @@ +!Texture +Id: d425536d-0e90-43fb-a899-8f2e0d794df3 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Drones/Rocket/Rocket_G.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Drones/Materials/Rocket/Rocket_M.xktex b/Starbreach/Assets/Shared/Drones/Materials/Rocket/Rocket_M.xktex new file mode 100644 index 0000000..76d7793 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/Rocket/Rocket_M.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 00d37b25-c253-496c-8ecf-2fb1a9c53e3c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Drones/Rocket/Rocket_M.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Drones/Materials/Rocket/Rocket_N.xktex b/Starbreach/Assets/Shared/Drones/Materials/Rocket/Rocket_N.xktex new file mode 100644 index 0000000..ce84d69 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/Rocket/Rocket_N.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 5af915c2-7828-4f9e-9fc4-7b503cd0cd8c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Drones/Rocket/Rocket_N.png +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Drones/Materials/Rocket/Rocket_O.xktex b/Starbreach/Assets/Shared/Drones/Materials/Rocket/Rocket_O.xktex new file mode 100644 index 0000000..eca757a --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/Rocket/Rocket_O.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 71b39b34-e669-43a4-801c-3e066825a698 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Drones/Rocket/Rocket_O.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Drones/Materials/RocketDrone/RocketDrone.xkmat b/Starbreach/Assets/Shared/Drones/Materials/RocketDrone/RocketDrone.xkmat new file mode 100644 index 0000000..e7f2d4f --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/RocketDrone/RocketDrone.xkmat @@ -0,0 +1,72 @@ +!MaterialAsset +Id: b55d921d-b0d4-416f-85ad-2e1f468a1f7e +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 42b6c52d-217a-413a-9fe0-f0073240b2f2:Drones/Materials/RocketDrone/RocketDrone_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 410fd2df-60b9-4d62-a8f0-490880f7e947:Drones/Materials/RocketDrone/RocketDrone_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 6af6e619-f78f-4345-aeaa-16f1094f9779:Drones/Materials/RocketDrone/RocketDrone_A + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: c6fd9d53-85bf-4bdc-9e5a-35a8939e6d7e:Drones/Materials/RocketDrone/RocketDrone_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 574ef289-b4a0-47ad-be13-e75075685820:Drones/Materials/RocketDrone/RocketDrone_O + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 1.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: 1d308f5b-5ca8-4af3-8a0c-021fe033a2bd:Drones/Materials/RocketDrone/RocketDrone_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 7.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Drones/Materials/RocketDrone/RocketDrone_A.xktex b/Starbreach/Assets/Shared/Drones/Materials/RocketDrone/RocketDrone_A.xktex new file mode 100644 index 0000000..13c6394 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/RocketDrone/RocketDrone_A.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 6af6e619-f78f-4345-aeaa-16f1094f9779 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Drones/RocketDrone/RocketDrone_A.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Drones/Materials/RocketDrone/RocketDrone_E.xktex b/Starbreach/Assets/Shared/Drones/Materials/RocketDrone/RocketDrone_E.xktex new file mode 100644 index 0000000..402a282 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/RocketDrone/RocketDrone_E.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 1d308f5b-5ca8-4af3-8a0c-021fe033a2bd +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Drones/RocketDrone/RocketDrone_E.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Drones/Materials/RocketDrone/RocketDrone_G.xktex b/Starbreach/Assets/Shared/Drones/Materials/RocketDrone/RocketDrone_G.xktex new file mode 100644 index 0000000..7ae7aaa --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/RocketDrone/RocketDrone_G.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 410fd2df-60b9-4d62-a8f0-490880f7e947 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Drones/RocketDrone/RocketDrone_G.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Drones/Materials/RocketDrone/RocketDrone_M.xktex b/Starbreach/Assets/Shared/Drones/Materials/RocketDrone/RocketDrone_M.xktex new file mode 100644 index 0000000..446a06c --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/RocketDrone/RocketDrone_M.xktex @@ -0,0 +1,6 @@ +!Texture +Id: c6fd9d53-85bf-4bdc-9e5a-35a8939e6d7e +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Drones/RocketDrone/RocketDrone_M.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Drones/Materials/RocketDrone/RocketDrone_N.xktex b/Starbreach/Assets/Shared/Drones/Materials/RocketDrone/RocketDrone_N.xktex new file mode 100644 index 0000000..298e380 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/RocketDrone/RocketDrone_N.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 42b6c52d-217a-413a-9fe0-f0073240b2f2 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Drones/RocketDrone/RocketDrone_N.png +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Drones/Materials/RocketDrone/RocketDrone_O.xktex b/Starbreach/Assets/Shared/Drones/Materials/RocketDrone/RocketDrone_O.xktex new file mode 100644 index 0000000..a47eecb --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Materials/RocketDrone/RocketDrone_O.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 574ef289-b4a0-47ad-be13-e75075685820 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Drones/RocketDrone/RocketDrone_O.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Drones/Models/EnergyDrone.xkm3d b/Starbreach/Assets/Shared/Drones/Models/EnergyDrone.xkm3d new file mode 100644 index 0000000..804c338 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Models/EnergyDrone.xkm3d @@ -0,0 +1,22 @@ +!Model +Id: 8b6b1e4a-7de0-4524-8851-23d9e11339b5 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Drones/EnergyDrone/Model.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + c85c85441289f030be44c0e8be44c0e8: + Name: bottom + MaterialInstance: + Material: 76636c37-5239-4cd3-ac8a-953e9e4d913e:Drones/Materials/Drone/DroneLower + 84a2b35395e6d82e95e6d82e95e6d82e: + Name: top + MaterialInstance: + Material: b91deeaf-43f6-434a-8400-22a1c6cb0447:Drones/Materials/Drone/DroneUpper + fe0f722b28c564ae044289ea044289ea: + Name: Material + MaterialInstance: + Material: c2292c76-631b-4a19-b984-096e90ede1ed:Drones/Materials/EnergyDrone/EnergyDrone +Skeleton: 6f6f6e23-78c1-481d-ba5d-42ecd7f0a413:Drones/Models/EnergyDrone_Skeleton +~SourceHashes: + 584c8ad60a628b131a0b757771fcfcaa~../../../../Resources/Drones/EnergyDrone/Model.FBX: 9bcd5d6cd93c724f59e1bb73313de491 diff --git a/Starbreach/Assets/Shared/Drones/Models/EnergyDrone_Skeleton.xkskel b/Starbreach/Assets/Shared/Drones/Models/EnergyDrone_Skeleton.xkskel new file mode 100644 index 0000000..309ee44 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Models/EnergyDrone_Skeleton.xkskel @@ -0,0 +1,19 @@ +!Skeleton +Id: 6f6f6e23-78c1-481d-ba5d-42ecd7f0a413 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Drones/EnergyDrone/Model.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Nodes: + 2b83a4a0d5dde6216f7c2fe8b32bbfe2: {Name: RootNode, Depth: 0} + 5313a8c347ec655703d514afff2a064a: {Name: Drone_bottom, Depth: 1} + 31d72cd05d6e68b593beedc1d6cbd862: {Name: Drone_top, Depth: 1} + aa0e709ee9d11a77a9300486e270b693: {Name: Bone_base, Depth: 1} + 1b03e388f467a6bae7e2a8f55a4cc4aa: {Name: Bone_turret_ring, Depth: 1} + 8797a5c6511c3b84552d4b3d331f164d: {Name: Bone_turret_orientation, Depth: 2} + fa8f8dbc9a684cb72b32db7f754c6554: {Name: Bone_turret, Depth: 3} + dde796c1a1b3d4f4eb4c0481c853faf5: {Name: Bone_rocket_rotor, Depth: 4} + f66b0de41b5e9e8683d744101124d0a6: {Name: Bone_blast, Depth: 4} + 2e307e0a230330e43b9eec540b30325a: {Name: DroneEnergy, Depth: 1} +~SourceHashes: + 7f3cab2496de51be8974c5ab01053ecd~../../../../Resources/Drones/EnergyDrone/Model.FBX: 9bcd5d6cd93c724f59e1bb73313de491 diff --git a/Starbreach/Assets/Shared/Drones/Models/Fractured/DroneFr1.xkm3d b/Starbreach/Assets/Shared/Drones/Models/Fractured/DroneFr1.xkm3d new file mode 100644 index 0000000..57d1f07 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Models/Fractured/DroneFr1.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 65a2213f-b68b-4af9-bd50-009fa5a2f8cb +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/EnemyDrone/DroneFr1.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + c324673bc6e1a400c092e6e9f0364778: + Name: 04-Default + MaterialInstance: + Material: 4756b860-c10e-475a-afbb-a437f26c8e6d:Drones/Materials/Drone/DroneUpper_explosion +Skeleton: null +~SourceHashes: + 2a97d8622e5e0ade1030e84eaba2d20f~../../../../../Resources/EnemyDrone/DroneFr1.fbx: 57e1d0f1a3240b09d4dce006c9cb410e diff --git a/Starbreach/Assets/Shared/Drones/Models/Fractured/DroneFr10.xkm3d b/Starbreach/Assets/Shared/Drones/Models/Fractured/DroneFr10.xkm3d new file mode 100644 index 0000000..bbf6290 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Models/Fractured/DroneFr10.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: b75b3f6f-5467-42a2-8f59-65f7f1f7fa05 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/EnemyDrone/DroneFr10.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 6bdfad25fc0e9fbaa575744c0036d08b: + Name: Material + MaterialInstance: + Material: 4756b860-c10e-475a-afbb-a437f26c8e6d:Drones/Materials/Drone/DroneUpper_explosion +Skeleton: null +~SourceHashes: + 28638e73d41162a1271d666a3ddffad7~../../../../../Resources/EnemyDrone/DroneFr10.fbx: dc15eb86a3cd5e1f92a2243c2d65fedf diff --git a/Starbreach/Assets/Shared/Drones/Models/Fractured/DroneFr2.xkm3d b/Starbreach/Assets/Shared/Drones/Models/Fractured/DroneFr2.xkm3d new file mode 100644 index 0000000..c9bdb3f --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Models/Fractured/DroneFr2.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: c30e2a73-7c97-463a-8ffd-45d0c5183685 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/EnemyDrone/DroneFr2.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 61caf739476773c68cdb4242158079e6: + Name: Material + MaterialInstance: + Material: 4756b860-c10e-475a-afbb-a437f26c8e6d:Drones/Materials/Drone/DroneUpper_explosion +Skeleton: null +~SourceHashes: + f94d4ce9768bcd495a72cfdc9e5edfd3~../../../../../Resources/EnemyDrone/DroneFr2.fbx: c1aebb7aa29817448cfe18bc865a87b2 diff --git a/Starbreach/Assets/Shared/Drones/Models/Fractured/DroneFr3.xkm3d b/Starbreach/Assets/Shared/Drones/Models/Fractured/DroneFr3.xkm3d new file mode 100644 index 0000000..373e2f5 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Models/Fractured/DroneFr3.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: ed1b5a97-2888-497c-b2d5-5c9392ce011b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/EnemyDrone/DroneFr3.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 95397d326ecc49babadb0fd8612cf87f: + Name: Material + MaterialInstance: + Material: 4756b860-c10e-475a-afbb-a437f26c8e6d:Drones/Materials/Drone/DroneUpper_explosion +Skeleton: null +~SourceHashes: + 4b84166840563e6bcc01f1ff742900a5~../../../../../Resources/EnemyDrone/DroneFr3.fbx: c2be8e2383ba5e311d5750683309de25 diff --git a/Starbreach/Assets/Shared/Drones/Models/Fractured/DroneFr4.xkm3d b/Starbreach/Assets/Shared/Drones/Models/Fractured/DroneFr4.xkm3d new file mode 100644 index 0000000..59032df --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Models/Fractured/DroneFr4.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: a21761f7-f5de-4067-80e0-ee90b962e08a +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/EnemyDrone/DroneFr4.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 34e47320e63f270674da1984b182f8ac: + Name: Material + MaterialInstance: + Material: 4756b860-c10e-475a-afbb-a437f26c8e6d:Drones/Materials/Drone/DroneUpper_explosion +Skeleton: null +~SourceHashes: + 9635558ae5f30516b1d7a4cf4d50654a~../../../../../Resources/EnemyDrone/DroneFr4.fbx: 100a9e66aee8cc9b785e9aed01bdeb34 diff --git a/Starbreach/Assets/Shared/Drones/Models/Fractured/DroneFr5.xkm3d b/Starbreach/Assets/Shared/Drones/Models/Fractured/DroneFr5.xkm3d new file mode 100644 index 0000000..8beed6d --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Models/Fractured/DroneFr5.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 989928aa-feb2-48b5-b4d6-cb9aaadde1ef +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/EnemyDrone/DroneFr5.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 9abf90c3636c043050dbb059370ac540: + Name: Material + MaterialInstance: + Material: 4756b860-c10e-475a-afbb-a437f26c8e6d:Drones/Materials/Drone/DroneUpper_explosion +Skeleton: null +~SourceHashes: + 3a711d6da610b1c17f36fdbfb2fbc6e9~../../../../../Resources/EnemyDrone/DroneFr5.fbx: a38982275ec4adbc0ee5b8bf08c70b3b diff --git a/Starbreach/Assets/Shared/Drones/Models/Fractured/DroneFr6.xkm3d b/Starbreach/Assets/Shared/Drones/Models/Fractured/DroneFr6.xkm3d new file mode 100644 index 0000000..c8249e8 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Models/Fractured/DroneFr6.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: d237b486-a5d5-4847-9cff-ccf95fac0456 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/EnemyDrone/DroneFr6.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 2e2754e494e243c30beb380c2d19f0de: + Name: Material + MaterialInstance: + Material: 4756b860-c10e-475a-afbb-a437f26c8e6d:Drones/Materials/Drone/DroneUpper_explosion +Skeleton: null +~SourceHashes: + e208e878c8cacdef23036e728a02deba~../../../../../Resources/EnemyDrone/DroneFr6.fbx: ccbafca028b616c95033b12fdc7fef25 diff --git a/Starbreach/Assets/Shared/Drones/Models/Fractured/DroneFr7.xkm3d b/Starbreach/Assets/Shared/Drones/Models/Fractured/DroneFr7.xkm3d new file mode 100644 index 0000000..34e26ef --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Models/Fractured/DroneFr7.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 10da9024-7c2a-4953-8242-9cb5de66fd29 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/EnemyDrone/DroneFr7.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 087882a713ff4f64b7961d14d969e5ad: + Name: Material + MaterialInstance: + Material: 4756b860-c10e-475a-afbb-a437f26c8e6d:Drones/Materials/Drone/DroneUpper_explosion +Skeleton: null +~SourceHashes: + d830ed01580b34cb56192524677b8b63~../../../../../Resources/EnemyDrone/DroneFr7.fbx: ef3c36b5f22de25e24eb4d782328adca diff --git a/Starbreach/Assets/Shared/Drones/Models/Fractured/DroneFr8.xkm3d b/Starbreach/Assets/Shared/Drones/Models/Fractured/DroneFr8.xkm3d new file mode 100644 index 0000000..24d6921 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Models/Fractured/DroneFr8.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 50b1e536-58f2-487f-84c9-48e034f4c6bb +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/EnemyDrone/DroneFr8.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 3b7585a48c8a8609b55bbf824b289980: + Name: Material + MaterialInstance: + Material: 4756b860-c10e-475a-afbb-a437f26c8e6d:Drones/Materials/Drone/DroneUpper_explosion +Skeleton: null +~SourceHashes: + 96887240d5cdfc46f528f0966ef6376f~../../../../../Resources/EnemyDrone/DroneFr8.fbx: 0277c283081f93d2b09c63c8afd60650 diff --git a/Starbreach/Assets/Shared/Drones/Models/Fractured/DroneFr9.xkm3d b/Starbreach/Assets/Shared/Drones/Models/Fractured/DroneFr9.xkm3d new file mode 100644 index 0000000..6620827 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Models/Fractured/DroneFr9.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: edf4d60e-6c77-4ff5-8ff6-df873d26cf3e +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/EnemyDrone/DroneFr9.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 7f3c00facb8e088eb80166cfc47962a0: + Name: Material + MaterialInstance: + Material: 4756b860-c10e-475a-afbb-a437f26c8e6d:Drones/Materials/Drone/DroneUpper_explosion +Skeleton: null +~SourceHashes: + 73e0fbd2a05eb52e762d18694c97383f~../../../../../Resources/EnemyDrone/DroneFr9.fbx: 2dea6e954fca39a82b3497fe6ffb2e70 diff --git a/Starbreach/Assets/Shared/Drones/Models/Fractured/DroneFrBody.xkm3d b/Starbreach/Assets/Shared/Drones/Models/Fractured/DroneFrBody.xkm3d new file mode 100644 index 0000000..8fdd487 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Models/Fractured/DroneFrBody.xkm3d @@ -0,0 +1,18 @@ +!Model +Id: f7b718d5-2ba7-4aaa-aea3-5017d7bc2e0a +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/EnemyDrone/DroneFrBody.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + fc97d82625203f49e3128880555437af: + Name: Material1 + MaterialInstance: + Material: 2400967d-d214-43a0-b178-f4b148e2330a:Drones/Materials/Drone/DroneLower_explosion + cd7e83fa33df032a1a11652f8e70abbc: + Name: Material2 + MaterialInstance: + Material: 2400967d-d214-43a0-b178-f4b148e2330a:Drones/Materials/Drone/DroneLower_explosion +Skeleton: null +~SourceHashes: + 8adf076a966385efc8572f551ca65e38~../../../../../Resources/EnemyDrone/DroneFrBody.fbx: ed90648b0da67fd8bd75fd784f888868 diff --git a/Starbreach/Assets/Shared/Drones/Models/Fractured/Hull1.xkphy b/Starbreach/Assets/Shared/Drones/Models/Fractured/Hull1.xkphy new file mode 100644 index 0000000..b9455ff --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Models/Fractured/Hull1.xkphy @@ -0,0 +1,21 @@ +!ColliderShapeAsset +Id: 8e2b9665-ad04-4fcc-8b9c-fdd99db3b256 +SerializedVersion: {Xenko: 3.0.0.0} +Tags: [] +ColliderShapes: + bfa8239e84b485b2f3095ae243dd6f96: !ConvexHullColliderShapeDesc + ConvexHulls: null + ConvexHullsIndices: null + Model: 65a2213f-b68b-4af9-bd50-009fa5a2f8cb:Drones/Models/Fractured/DroneFr1 + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scaling: {X: 1.0, Y: 1.0, Z: 1.0} + Decomposition: + Depth: 10 + PosSampling: 10 + AngleSampling: 10 + PosRefine: 5 + AngleRefine: 5 + Alpha: 0.01 + Threshold: 0.01 + Enabled: false diff --git a/Starbreach/Assets/Shared/Drones/Models/Fractured/Hull10.xkphy b/Starbreach/Assets/Shared/Drones/Models/Fractured/Hull10.xkphy new file mode 100644 index 0000000..a77a83d --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Models/Fractured/Hull10.xkphy @@ -0,0 +1,21 @@ +!ColliderShapeAsset +Id: 53477a51-7952-46ef-8822-413027a095b9 +SerializedVersion: {Xenko: 3.0.0.0} +Tags: [] +ColliderShapes: + c19d6bea54b5acb712677dc72528ac86: !ConvexHullColliderShapeDesc + ConvexHulls: null + ConvexHullsIndices: null + Model: b75b3f6f-5467-42a2-8f59-65f7f1f7fa05:Drones/Models/Fractured/DroneFr10 + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scaling: {X: 1.0, Y: 1.0, Z: 1.0} + Decomposition: + Depth: 10 + PosSampling: 10 + AngleSampling: 10 + PosRefine: 5 + AngleRefine: 5 + Alpha: 0.01 + Threshold: 0.01 + Enabled: false diff --git a/Starbreach/Assets/Shared/Drones/Models/Fractured/Hull2.xkphy b/Starbreach/Assets/Shared/Drones/Models/Fractured/Hull2.xkphy new file mode 100644 index 0000000..e52e0f1 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Models/Fractured/Hull2.xkphy @@ -0,0 +1,21 @@ +!ColliderShapeAsset +Id: 3d207d60-6803-41ef-b089-60b351bb4b99 +SerializedVersion: {Xenko: 3.0.0.0} +Tags: [] +ColliderShapes: + c19d6bea54b5acb712677dc72528ac86: !ConvexHullColliderShapeDesc + ConvexHulls: null + ConvexHullsIndices: null + Model: c30e2a73-7c97-463a-8ffd-45d0c5183685:Drones/Models/Fractured/DroneFr2 + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scaling: {X: 1.0, Y: 1.0, Z: 1.0} + Decomposition: + Depth: 10 + PosSampling: 10 + AngleSampling: 10 + PosRefine: 5 + AngleRefine: 5 + Alpha: 0.01 + Threshold: 0.01 + Enabled: false diff --git a/Starbreach/Assets/Shared/Drones/Models/Fractured/Hull3.xkphy b/Starbreach/Assets/Shared/Drones/Models/Fractured/Hull3.xkphy new file mode 100644 index 0000000..3f81bd1 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Models/Fractured/Hull3.xkphy @@ -0,0 +1,21 @@ +!ColliderShapeAsset +Id: bd15ca12-fac8-4e0c-916e-fdd0656ce223 +SerializedVersion: {Xenko: 3.0.0.0} +Tags: [] +ColliderShapes: + c19d6bea54b5acb712677dc72528ac86: !ConvexHullColliderShapeDesc + ConvexHulls: null + ConvexHullsIndices: null + Model: ed1b5a97-2888-497c-b2d5-5c9392ce011b:Drones/Models/Fractured/DroneFr3 + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scaling: {X: 1.0, Y: 1.0, Z: 1.0} + Decomposition: + Depth: 10 + PosSampling: 10 + AngleSampling: 10 + PosRefine: 5 + AngleRefine: 5 + Alpha: 0.01 + Threshold: 0.01 + Enabled: false diff --git a/Starbreach/Assets/Shared/Drones/Models/Fractured/Hull4.xkphy b/Starbreach/Assets/Shared/Drones/Models/Fractured/Hull4.xkphy new file mode 100644 index 0000000..d5b3e22 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Models/Fractured/Hull4.xkphy @@ -0,0 +1,21 @@ +!ColliderShapeAsset +Id: e079d921-3201-4291-a00b-b2de55a55236 +SerializedVersion: {Xenko: 3.0.0.0} +Tags: [] +ColliderShapes: + c19d6bea54b5acb712677dc72528ac86: !ConvexHullColliderShapeDesc + ConvexHulls: null + ConvexHullsIndices: null + Model: a21761f7-f5de-4067-80e0-ee90b962e08a:Drones/Models/Fractured/DroneFr4 + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scaling: {X: 1.0, Y: 1.0, Z: 1.0} + Decomposition: + Depth: 10 + PosSampling: 10 + AngleSampling: 10 + PosRefine: 5 + AngleRefine: 5 + Alpha: 0.01 + Threshold: 0.01 + Enabled: false diff --git a/Starbreach/Assets/Shared/Drones/Models/Fractured/Hull5.xkphy b/Starbreach/Assets/Shared/Drones/Models/Fractured/Hull5.xkphy new file mode 100644 index 0000000..3a973c0 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Models/Fractured/Hull5.xkphy @@ -0,0 +1,21 @@ +!ColliderShapeAsset +Id: 42812d1d-d028-463c-b505-5491c50c532c +SerializedVersion: {Xenko: 3.0.0.0} +Tags: [] +ColliderShapes: + c19d6bea54b5acb712677dc72528ac86: !ConvexHullColliderShapeDesc + ConvexHulls: null + ConvexHullsIndices: null + Model: 989928aa-feb2-48b5-b4d6-cb9aaadde1ef:Drones/Models/Fractured/DroneFr5 + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scaling: {X: 1.0, Y: 1.0, Z: 1.0} + Decomposition: + Depth: 10 + PosSampling: 10 + AngleSampling: 10 + PosRefine: 5 + AngleRefine: 5 + Alpha: 0.01 + Threshold: 0.01 + Enabled: false diff --git a/Starbreach/Assets/Shared/Drones/Models/Fractured/Hull6.xkphy b/Starbreach/Assets/Shared/Drones/Models/Fractured/Hull6.xkphy new file mode 100644 index 0000000..537559e --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Models/Fractured/Hull6.xkphy @@ -0,0 +1,21 @@ +!ColliderShapeAsset +Id: 5e850645-5ae6-4af1-a297-1ebcd47f36f3 +SerializedVersion: {Xenko: 3.0.0.0} +Tags: [] +ColliderShapes: + c19d6bea54b5acb712677dc72528ac86: !ConvexHullColliderShapeDesc + ConvexHulls: null + ConvexHullsIndices: null + Model: d237b486-a5d5-4847-9cff-ccf95fac0456:Drones/Models/Fractured/DroneFr6 + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scaling: {X: 1.0, Y: 1.0, Z: 1.0} + Decomposition: + Depth: 10 + PosSampling: 10 + AngleSampling: 10 + PosRefine: 5 + AngleRefine: 5 + Alpha: 0.01 + Threshold: 0.01 + Enabled: false diff --git a/Starbreach/Assets/Shared/Drones/Models/Fractured/Hull7.xkphy b/Starbreach/Assets/Shared/Drones/Models/Fractured/Hull7.xkphy new file mode 100644 index 0000000..a5cb268 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Models/Fractured/Hull7.xkphy @@ -0,0 +1,21 @@ +!ColliderShapeAsset +Id: c56e06b6-ee71-4d0e-9686-811950d3f801 +SerializedVersion: {Xenko: 3.0.0.0} +Tags: [] +ColliderShapes: + c19d6bea54b5acb712677dc72528ac86: !ConvexHullColliderShapeDesc + ConvexHulls: null + ConvexHullsIndices: null + Model: 10da9024-7c2a-4953-8242-9cb5de66fd29:Drones/Models/Fractured/DroneFr7 + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scaling: {X: 1.0, Y: 1.0, Z: 1.0} + Decomposition: + Depth: 10 + PosSampling: 10 + AngleSampling: 10 + PosRefine: 5 + AngleRefine: 5 + Alpha: 0.01 + Threshold: 0.01 + Enabled: false diff --git a/Starbreach/Assets/Shared/Drones/Models/Fractured/Hull8.xkphy b/Starbreach/Assets/Shared/Drones/Models/Fractured/Hull8.xkphy new file mode 100644 index 0000000..d5ca79f --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Models/Fractured/Hull8.xkphy @@ -0,0 +1,21 @@ +!ColliderShapeAsset +Id: 77a731c2-b1f4-4f69-b28d-929496e30fd0 +SerializedVersion: {Xenko: 3.0.0.0} +Tags: [] +ColliderShapes: + c19d6bea54b5acb712677dc72528ac86: !ConvexHullColliderShapeDesc + ConvexHulls: null + ConvexHullsIndices: null + Model: 50b1e536-58f2-487f-84c9-48e034f4c6bb:Drones/Models/Fractured/DroneFr8 + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scaling: {X: 1.0, Y: 1.0, Z: 1.0} + Decomposition: + Depth: 10 + PosSampling: 10 + AngleSampling: 10 + PosRefine: 5 + AngleRefine: 5 + Alpha: 0.01 + Threshold: 0.01 + Enabled: false diff --git a/Starbreach/Assets/Shared/Drones/Models/Fractured/Hull9.xkphy b/Starbreach/Assets/Shared/Drones/Models/Fractured/Hull9.xkphy new file mode 100644 index 0000000..f5ada6c --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Models/Fractured/Hull9.xkphy @@ -0,0 +1,21 @@ +!ColliderShapeAsset +Id: 6f9f0a9b-020a-4cb7-aff8-010ca09e4765 +SerializedVersion: {Xenko: 3.0.0.0} +Tags: [] +ColliderShapes: + c19d6bea54b5acb712677dc72528ac86: !ConvexHullColliderShapeDesc + ConvexHulls: null + ConvexHullsIndices: null + Model: edf4d60e-6c77-4ff5-8ff6-df873d26cf3e:Drones/Models/Fractured/DroneFr9 + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scaling: {X: 1.0, Y: 1.0, Z: 1.0} + Decomposition: + Depth: 10 + PosSampling: 10 + AngleSampling: 10 + PosRefine: 5 + AngleRefine: 5 + Alpha: 0.01 + Threshold: 0.01 + Enabled: false diff --git a/Starbreach/Assets/Shared/Drones/Models/Fractured/HullBody.xkphy b/Starbreach/Assets/Shared/Drones/Models/Fractured/HullBody.xkphy new file mode 100644 index 0000000..23de57d --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Models/Fractured/HullBody.xkphy @@ -0,0 +1,21 @@ +!ColliderShapeAsset +Id: d078694d-d632-4b8b-9b03-d1f80554b28a +SerializedVersion: {Xenko: 3.0.0.0} +Tags: [] +ColliderShapes: + c19d6bea54b5acb712677dc72528ac86: !ConvexHullColliderShapeDesc + ConvexHulls: null + ConvexHullsIndices: null + Model: f7b718d5-2ba7-4aaa-aea3-5017d7bc2e0a:Drones/Models/Fractured/DroneFrBody + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scaling: {X: 1.0, Y: 1.0, Z: 1.0} + Decomposition: + Depth: 10 + PosSampling: 10 + AngleSampling: 10 + PosRefine: 5 + AngleRefine: 5 + Alpha: 0.01 + Threshold: 0.01 + Enabled: false diff --git a/Starbreach/Assets/Shared/Drones/Models/Rocket.xkm3d b/Starbreach/Assets/Shared/Drones/Models/Rocket.xkm3d new file mode 100644 index 0000000..ec85573 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Models/Rocket.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: e32d2bc5-e8cb-42be-b405-f2ffb60f15d4 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Drones/Rocket/Rocket.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + fe0f722b28c564ae044289ea044289ea: + Name: Material + MaterialInstance: + Material: 6aec840c-1173-4374-bfce-5886fe37ad16:Drones/Materials/Rocket/Rocket +Skeleton: null +~SourceHashes: + 0da5845d08f2f7a6cafb7b1c34fefacf~../../../../Resources/Drones/Rocket/Rocket.fbx: 119daf934b3086e1609428c925e3c519 diff --git a/Starbreach/Assets/Shared/Drones/Models/RocketDrone.xkm3d b/Starbreach/Assets/Shared/Drones/Models/RocketDrone.xkm3d new file mode 100644 index 0000000..ab27d30 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Models/RocketDrone.xkm3d @@ -0,0 +1,22 @@ +!Model +Id: c1428709-fa5d-40a7-8e17-d2efb546bfef +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Drones/RocketDrone/Model.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + c85c85441289f030be44c0e8be44c0e8: + Name: bottom + MaterialInstance: + Material: 76636c37-5239-4cd3-ac8a-953e9e4d913e:Drones/Materials/Drone/DroneLower + 84a2b35395e6d82e95e6d82e95e6d82e: + Name: top + MaterialInstance: + Material: b91deeaf-43f6-434a-8400-22a1c6cb0447:Drones/Materials/Drone/DroneUpper + fe0f722b28c564ae044289ea044289ea: + Name: Material + MaterialInstance: + Material: b55d921d-b0d4-416f-85ad-2e1f468a1f7e:Drones/Materials/RocketDrone/RocketDrone +Skeleton: 7554e710-9981-42fd-be94-d17a3957bf94:Drones/Models/RocketDrone_Skeleton +~SourceHashes: + 4f678c73ab27f49453c868c62832a6df~../../../../Resources/Drones/RocketDrone/Model.FBX: 39bb08c28f8f923e186132040fad9e37 diff --git a/Starbreach/Assets/Shared/Drones/Models/RocketDrone_Skeleton.xkskel b/Starbreach/Assets/Shared/Drones/Models/RocketDrone_Skeleton.xkskel new file mode 100644 index 0000000..711f5db --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Models/RocketDrone_Skeleton.xkskel @@ -0,0 +1,27 @@ +!Skeleton +Id: 7554e710-9981-42fd-be94-d17a3957bf94 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Drones/RocketDrone/Model.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Nodes: + 2b83a4a0d5dde6216f7c2fe8b32bbfe2: {Name: RootNode, Depth: 0} + 5313a8c347ec655703d514afff2a064a: {Name: Drone_bottom, Depth: 1} + 31d72cd05d6e68b593beedc1d6cbd862: {Name: Drone_top, Depth: 1} + aa0e709ee9d11a77a9300486e270b693: {Name: Bone_base, Depth: 1} + 1b03e388f467a6bae7e2a8f55a4cc4aa: {Name: Bone_turret_ring, Depth: 1} + 8797a5c6511c3b84552d4b3d331f164d: {Name: Bone_turret_orientation, Depth: 2} + fa8f8dbc9a684cb72b32db7f754c6554: {Name: Bone_turret, Depth: 3} + f77d64089c5c4995c8f50e81d1291d82: {Name: Bone_rocket, Depth: 4} + 205ca53f5528759ea2740450cf35ef36: {Name: Bone_rocket001, Depth: 4} + 33fc5f881ba3631a3d711707c6209660: {Name: Bone_rocket002, Depth: 4} + 04e5390f93ddfd78f34321826e4a6bd5: {Name: Bone_rocket003, Depth: 4} + c7e0b0332c5d86a5c34cf6c9bd5a980b: {Name: Bone_rocket004, Depth: 4} + 47fc997c0af1b9d7ce2eac2566d31d8e: {Name: Bone_rocket005, Depth: 4} + 429937b38a3072f7701f3482cb9a4ed9: {Name: Bone_rocket006, Depth: 4} + 0b98a108e06dee0ff472d3091cb0a4c0: {Name: Bone_rocket007, Depth: 4} + 73c6414019c42439fd95d3f89ff70635: {Name: Bone_rocket008, Depth: 4} + 7ae5e26dbeda6a5606c0960b847a99b4: {Name: Drone Missile, Depth: 1} + dc216b285b93723eae6c160522d38c24: {Name: Object047, Depth: 1} +~SourceHashes: + 4c4d79b9d726d6ff1194205441c56d6d~../../../../Resources/Drones/RocketDrone/Model.FBX: 39bb08c28f8f923e186132040fad9e37 diff --git a/Starbreach/Assets/Shared/Drones/Prefabs/BasicDrone.xkprefab b/Starbreach/Assets/Shared/Drones/Prefabs/BasicDrone.xkprefab new file mode 100644 index 0000000..b59b800 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Prefabs/BasicDrone.xkprefab @@ -0,0 +1,354 @@ +!PrefabAsset +Id: de245d94-a1aa-4964-a26a-4b34f1d3bf2d +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! b2772ba8-0ab8-4593-9055-09b88d5c4268 + Parts: + - Entity: + Id: 8247a6ff-4157-4f60-bdc7-4553ec153eb4 + Name: Steam + Components: + c1ecc9674350ec47b258da4ab8ccf2ff: !TransformComponent + Id: 67c9ecc1-5043-47ec-b258-da4ab8ccf2ff + Position*: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8323bf5daa524c4fb5d833e41b08b32d: !ParticleSystemComponent + Id: 5dbf2383-52aa-4f4c-b5d8-33e41b08b32d + Control: + ResetSeconds*: 0.0 + Control*: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + 9a3a5271a4a0934d9467f6b095793379: + ParticleLifetime: {X: 0.5, Y: 1.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 0383cd796e839e4b9667af5d0fe71756: + Key: 0.0 + Value: 0.5 + TangentType: Linear + 3c3bf45d6e50e542871470a99fdfd9f3: + Key: 0.3 + Value: 0.7 + TangentType: Linear + aa6cd07e77ba1c4da6e836dff7b31695: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ZOffset: 0.2 + SoftEdgeDistance: 0.3 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 5.0, Y: 5.0, Z: 5.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8dbe2382-769c-45fe-9604-98c5ae5c434c:Textures/SMO001_3 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + fa12c9550522c24fa400d8ce84ef83a0: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 80.0 + Initializers: + 3994a4c9897c7049af5217d699e668a9: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.4, Y: 0.5} + 7fa5fb2d4e692c4aae5cda5ce081ca44: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.5, Y: 0.0, Z: -0.5} + PositionMax: {X: 0.5, Y: 0.0, Z: 0.5} + Interpolate: false + 3d037e54f2051d42a511f75567a2d5eb: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.05, Y: -3.0, Z: -0.05} + VelocityMax: {X: 0.05, Y: -3.0, Z: 0.05} + d4d112e1ace7b944828fa9278f3938e1: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + Updaters: + 226c0f6bc8f05441a0eb6454e9f89045: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 82276cc03e3f854b9dc5c50ece2e25f9: + Key: 0.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + e3927f1e92cb4d4f80c729960776e1ca: + Key: 0.2 + Value: {R: 0.5, G: 0.5, B: 0.5, A: 0.25} + TangentType: Linear + bb31441c3997734baf5d4b324f145da1: + Key: 1.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + a788c7989777534fbc50541f7eebe631: !UpdaterForceField + DebugDraw: true + InheritPosition: true + Position*: {X: 0.0, Y: -1.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: true + FieldShape: !FieldShapeCylinder + HalfHeight: 1.0 + Radius: 1.0 + DisplayParticleRotation: true + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 1.0 + FalloffStart: 0.1 + StrengthOutside: 0.0 + FalloffEnd: 0.9 + EnergyConservation: 1.0 + ForceDirected: 0.0 + ForceVortex: 0.0 + ForceRepulsive: 4.0 + ForceFixed: {X: 0.0, Y: 8.0, Z: 0.0} + Base: + BasePartAsset: d20837e3-879e-45a0-874b-030246721293:VFXPrefabs/vfx-Engine + BasePartId: 39e6666d-d2d1-49c3-8f0e-31f321ca5b12 + InstanceId: 0a828fd7-dd54-43cb-bdb6-ff5d5635a1f6 + - Entity: + Id: 8a314568-4602-4fca-85a3-248210fb9341 + Name: vfx-Engine + Components: + 585f08a4c7e8554391f68583881993a2: !TransformComponent + Id: a4085f58-e8c7-4355-91f6-8583881993a2 + Position: {X: 0.0, Y: 0.2, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + c1ecc9674350ec47b258da4ab8ccf2ff: ref!! 67c9ecc1-5043-47ec-b258-da4ab8ccf2ff + c141928df7725e448d9ee2d635345744: !AudioEmitterComponent + Id: 8d9241c1-72f7-445e-8d9e-e2d635345744 + Sounds: + 210c4fe5f3b4c243942a23a4b3f26e49~Engine: 1d4673e5-cfbf-45eb-a34f-6d0c93074702:Drones/Sounds/Engine0 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + - Entity: + Id: 95ac12fa-2dfc-4b15-96e7-ba5402e3cf12 + Name: Model + Components: + 7dad9d7cd55ced4abbf2cb2bbbd70c1a: !TransformComponent + Id: 7c9dad7d-5cd5-4aed-bbf2-cb2bbbd70c1a + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + d719b2b339248f17748edd917f6bc9b2: ref!! 920132ef-5c02-4739-bb1a-db1c533630a6 + 827f49f9d5034b4acf8a8939110ddb8d: ref!! a4085f58-e8c7-4355-91f6-8583881993a2 + c212d189fcc79d46bbb83d892c85ce82: !ModelComponent + Id: 89d112c2-c7fc-469d-bbb8-3d892c85ce82 + Model: c1428709-fa5d-40a7-8e17-d2efb546bfef:Drones/Models/RocketDrone + Materials: + bff18010728c254c925bebf2f03be01b~0: 76636c37-5239-4cd3-ac8a-953e9e4d913e:Drones/Materials/Drone/DroneLower + bad52956f3fcbb45ac19f0a99abdf1d0~1: b91deeaf-43f6-434a-8400-22a1c6cb0447:Drones/Materials/Drone/DroneUpper + 8710bd731b44b446a6f9448a50fcd66b~2: b55d921d-b0d4-416f-85ad-2e1f468a1f7e:Drones/Materials/RocketDrone/RocketDrone + c123a40ea35064c3e5b77b9aaec447dc: !AnimationComponent + Id: 02b2b2f2-f679-407f-abf6-7abdf572fee5 + Animations: + a713ec907506354eb188aaba71f6039c~Fire: null + 8df1171e0223014899b19b71b409f1b3~Idle: null + bcc277ca9a2ea247bf4ad6e427a787bf~Move: null + - Entity: + Id: a6312dce-9fee-4f86-ba71-f87362215025 + Name: AlertZoneTrigger + Components: + 37741c7f7923b7e1ef2d73915a26c89b: !TransformComponent + Id: 43e8a561-77ca-417e-9229-3a641aae280e + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 557d0a5f00f82108bd3505f6850bc931: !RigidbodyComponent + Id: cdd4911b-f606-40c3-916b-4095af1cd5b5 + CollisionGroup: CustomFilter2 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: true + IsKinematic: true + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 65240769cedf3fbd99aca64e97ba4ae6: !SphereColliderShapeDesc + Is2D: false + Radius: 1.0 + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + - Entity: + Id: b2772ba8-0ab8-4593-9055-09b88d5c4268 + Name: Drone + Components: + bee1416b5e2d304389e20936f750b8b1: !TransformComponent + Id: 6b41e1be-2d5e-4330-89e2-0936f750b8b1 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 68b08d6ef4327063ddfe04b67a961aae: ref!! 7c9dad7d-5cd5-4aed-bbf2-cb2bbbd70c1a + 963458a2c6c68927d38fec6a605500fa: ref!! 43e8a561-77ca-417e-9229-3a641aae280e + aed3e642d5d71f48bdf23181156082f9: !CharacterComponent + Id: 42e6d3ae-d7d5-481f-bdf2-3181156082f9 + CollisionGroup: CustomFilter3 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + FallSpeed: 10.0 + MaxSlope: {Radians: 0.7853982} + JumpSpeed: 5.0 + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + ColliderShapes: + d27547538ff5dd4eb72e1d385d4862bd: !CylinderColliderShapeDesc + Height: 2.0 + Radius: 1.0 + LocalOffset: {X: 0.0, Y: 1.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 827cf65eb5dca148adaa7ef5bc60df35: !AudioEmitterComponent + Id: 5ef67c82-dcb5-48a1-adaa-7ef5bc60df35 + Sounds: + 9f0d8aaa3fc06a44bae1c6cff7aeef58~Death: 4c9333d4-d4d5-4f61-9390-6b2e2602cf1b:Drones/Sounds/Death + 062488fbcb22f344b134f663d4a59ff9~Explosion: 936a2dbe-31df-40cc-836b-18793ffcea22:Drones/Sounds/Explosion + 762f069faf274a408a2da257ca0f4736~Hit0: 732e562c-622b-4fff-8282-58a7efa0b204:Drones/Sounds/Hit0 + ba953638f1e5db4d852167189517624d~Hit1: 973a4551-7cd6-4b8d-8a53-5a61ca9e461b:Drones/Sounds/Hit1 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + c7262ebf0d468f43ba11ca1221215c08: !NavigationComponent + Id: bf2e26c7-460d-438f-ba11-ca1221215c08 + NavigationMesh: null + GroupId: 665dbfaa-d91a-ee40-d176-a5eaed1268bc + 238e55139b0b248973a65b6ba75f8d54: !Starbreach.Drones.Drone,Starbreach + Id: e798d19d-28f6-4813-8a83-16840915a06d + Priority: 4000 + Weapon: null + MaximumSpeed: 1.5 + RotationSpeed: 6.283185 + HeadRotationSpeed: 6.283185 + Model: ref!! 89d112c2-c7fc-469d-bbb8-3d892c85ce82 + DefaultMaterial: b91deeaf-43f6-434a-8400-22a1c6cb0447:Drones/Materials/Drone/DroneUpper + AlertedMaterial: 70cfa151-cffc-4cf1-a0d5-2ac4ac94e4a6:Drones/Materials/Drone/DroneUpper_Alerted + EngineParticle: ref!! 5dbf2383-52aa-4f4c-b5d8-33e41b08b32d + EngineAudioEmitter: ref!! 8d9241c1-72f7-445e-8d9e-e2d635345744 + DroneExplosionPrefab: d1f82cfd-900e-4757-958c-1dd35a4ec775:Drones/Prefabs/DroneExplosion + e3d3d4a2c9c5e7676d484a7a5a41d498: !Starbreach.Drones.PatrollingDroneController,Starbreach + Id: b329b495-07e7-4fd5-8a3e-403ef5f2a170 + PathToFollow: null + ChaseAlertZoneRadius: 20.0 + IdleAlertZoneRadius: 15.0 + AlertZoneTriggerEntity: ref!! a6312dce-9fee-4f86-ba71-f87362215025 + - Entity: + Id: e7693fa5-f37b-4166-9558-1e4d73d4d27c + Name: ProjectileSpawnPoint + Components: + ef320192025c3947bb1adb1c533630a6: !TransformComponent + Id: 920132ef-5c02-4739-bb1a-db1c533630a6 + Position: {X: 0.06672533, Y: -0.07741097, Z: 2.45432545E-08} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d3a20669d1ecb74791449a8d599302ad: !ModelNodeLinkComponent + Id: 6906a2d3-ecd1-47b7-9144-9a8d599302ad + Target: null + NodeName: Bone_turret + f2be80b1286b9c4495a77d23ce7fc8b5: !AudioEmitterComponent + Id: b180bef2-6b28-449c-95a7-7d23ce7fc8b5 + Sounds: {} + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small diff --git a/Starbreach/Assets/Shared/Drones/Prefabs/DroneExplosion.xkprefab b/Starbreach/Assets/Shared/Drones/Prefabs/DroneExplosion.xkprefab new file mode 100644 index 0000000..e08f049 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Prefabs/DroneExplosion.xkprefab @@ -0,0 +1,1032 @@ +!PrefabAsset +Id: d1f82cfd-900e-4757-958c-1dd35a4ec775 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! d1037b0d-ded4-4cc0-9518-fee80c7a4f7d + - ref!! 1e1bc631-3b0d-4cc2-ae9b-5e892c7302a0 + - ref!! ba094ec6-2049-4678-afe1-e8b99cc42841 + - ref!! ecba7093-1f48-4af3-903a-be0fb751021c + - ref!! 8728999b-ecb3-4c98-8af5-99e2edbd36db + - ref!! 59697044-c73d-48e3-bb20-2578364981b6 + - ref!! 82d9262f-6abc-4e5b-8f84-7a8fe71ec7c3 + - ref!! 013b2d47-66fc-4bf7-8e3e-9fcb9efe7df4 + - ref!! 2b6ecfe9-9601-468f-bf33-3307f6f31aba + - ref!! bc751f5a-02b3-4000-ab68-dcf6119bc83c + - ref!! c7effe18-5885-4898-87fe-06ed9ea75ee8 + - ref!! a5459f8a-ba00-49c7-9020-5ceb3361cbec + Parts: + - Entity: + Id: 013b2d47-66fc-4bf7-8e3e-9fcb9efe7df4 + Name: DroneFr5 + Components: + 99ea39c7415646882adbf82f8e1d1379: !TransformComponent + Id: 93face13-71c6-4171-a728-02328ac5133e + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + ce7081d0bee4ebae6c3020ce9e665b05: !ModelComponent + Id: c3af5ca2-82eb-4e0a-8f15-a1ae8a67619d + Model: 989928aa-feb2-48b5-b4d6-cb9aaadde1ef:Drones/Models/Fractured/DroneFr5 + Materials: {} + 701cdbae08beb73648ec6db27809d591: !RigidbodyComponent + Id: 4ca70017-f46d-46db-a9b2-8baf865cd6d5 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + IsKinematic: false + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 9a16dd66fce999435e8f1c89c570f7c9: !ColliderShapeAssetDesc + Shape: 42812d1d-d028-463c-b505-5491c50c532c:Drones/Models/Fractured/Hull5 + - Entity: + Id: 1e1bc631-3b0d-4cc2-ae9b-5e892c7302a0 + Name: DroneBody + Components: + cc0c64f113223baf269d499329b51b4c: !TransformComponent + Id: 1bac5795-14a5-4b37-a975-d26976986a4f + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + df2ab3e7316ada0dd547d70f4f5750fa: !ModelComponent + Id: daf14bb7-9098-43da-9c2c-7277a32ac3c1 + Model: f7b718d5-2ba7-4aaa-aea3-5017d7bc2e0a:Drones/Models/Fractured/DroneFrBody + Materials: {} + d9104c9dcf0253da9d1c659de63c85bb: !RigidbodyComponent + Id: 630aadff-6ad7-4156-8153-9df759ec20b1 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + IsKinematic: false + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 69bcdbfef58c90f250dc04ed018381e8: !ColliderShapeAssetDesc + Shape: d078694d-d632-4b8b-9b03-d1f80554b28a:Drones/Models/Fractured/HullBody + - Entity: + Id: 2b6ecfe9-9601-468f-bf33-3307f6f31aba + Name: DroneFr4 + Components: + bce209bc24766885face874a0fd1c276: !TransformComponent + Id: 36b52099-6f94-4983-9d1f-88062c164d46 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c8ebcd503f326a599fe33be0f992afec: !ModelComponent + Id: 4eae862a-ddb8-401b-9aab-3647dd8c9121 + Model: a21761f7-f5de-4067-80e0-ee90b962e08a:Drones/Models/Fractured/DroneFr4 + Materials: {} + e188e10d59dbe1bfca2e4590d002e2e9: !RigidbodyComponent + Id: eac0f77b-6f2e-445e-ad27-a3da30ad6b08 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + IsKinematic: false + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 32403ec03034509509b2c358ce29f842: !ColliderShapeAssetDesc + Shape: e079d921-3201-4291-a00b-b2de55a55236:Drones/Models/Fractured/Hull4 + - Entity: + Id: 59697044-c73d-48e3-bb20-2578364981b6 + Name: DroneFr7 + Components: + cac2913e7c8f29993c36afa9551160e3: !TransformComponent + Id: a0bfee3b-bc0f-47e9-a23b-e17542204679 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 919d49437be76a91a3a42a68bfd6caa2: !ModelComponent + Id: 68f8a29d-92b1-48f6-adda-732bff76e80a + Model: 10da9024-7c2a-4953-8242-9cb5de66fd29:Drones/Models/Fractured/DroneFr7 + Materials: {} + 151fa065304c8ddfc89209dfe9ee2fab: !RigidbodyComponent + Id: 98547da5-31fc-4655-af9c-5adabdf1938d + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + IsKinematic: false + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 403cd8acfc61e7c720c1649962f2802c: !ColliderShapeAssetDesc + Shape: c56e06b6-ee71-4d0e-9686-811950d3f801:Drones/Models/Fractured/Hull7 + - Entity: + Id: 82d9262f-6abc-4e5b-8f84-7a8fe71ec7c3 + Name: DroneFr6 + Components: + f9a6154df301793e40b1a82cb669d3e5: !TransformComponent + Id: d7b3d86c-e69e-4cd1-a626-2f65306b1b6c + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 776bdd7da6f572083df9febc2cb15320: !ModelComponent + Id: 07f577bf-1f1f-4ca1-92cd-93d4b249bff1 + Model: d237b486-a5d5-4847-9cff-ccf95fac0456:Drones/Models/Fractured/DroneFr6 + Materials: {} + ed6d70ead20b301805a16bbb8d001051: !RigidbodyComponent + Id: a9427d01-788d-40bc-b6b0-102fe11aacc7 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + IsKinematic: false + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 24a26ef6616421f52005b93e4b4e51a5: !ColliderShapeAssetDesc + Shape: 5e850645-5ae6-4af1-a297-1ebcd47f36f3:Drones/Models/Fractured/Hull6 + - Entity: + Id: 8728999b-ecb3-4c98-8af5-99e2edbd36db + Name: DroneFr8 + Components: + 8cfbf3f945bc14808953d63891b161ab: !TransformComponent + Id: 89b466a9-c447-4fcd-9997-f304d5a40c41 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 5ed02e5eddb3753efd8edce686628aa0: !ModelComponent + Id: 209aa6b6-778e-4a85-b8d6-ec75ec409168 + Model: 50b1e536-58f2-487f-84c9-48e034f4c6bb:Drones/Models/Fractured/DroneFr8 + Materials: {} + a3821e07c2bb21c2a595a20378d2e55a: !RigidbodyComponent + Id: 47a939cc-45bf-443b-b85f-359c5c415bec + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + IsKinematic: false + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + a754253f95cd379e91a434679ebac134: !ColliderShapeAssetDesc + Shape: 77a731c2-b1f4-4f69-b28d-929496e30fd0:Drones/Models/Fractured/Hull8 + - Entity: + Id: a5459f8a-ba00-49c7-9020-5ceb3361cbec + Name: DroneFr1 + Components: + 5f74d4e6a6c7059b82919dac841e3845: !TransformComponent + Id: fc419100-0231-44bd-a257-3b00e35a9bc0 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 0379fa8778225d1c06b3808d172634a8: !ModelComponent + Id: e3189337-70ac-4aa5-85e4-58e07c4e88e3 + Model: 65a2213f-b68b-4af9-bd50-009fa5a2f8cb:Drones/Models/Fractured/DroneFr1 + Materials: {} + 31f726f5a0b6aa25e6de939010259c60: !RigidbodyComponent + Id: 7723c848-5e44-4b23-b0d8-d6707323a76e + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + IsKinematic: false + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + d1579af295c3280fe8f86df7265efcf3: !ColliderShapeAssetDesc + Shape: 8e2b9665-ad04-4fcc-8b9c-fdd99db3b256:Drones/Models/Fractured/Hull1 + - Entity: + Id: ba094ec6-2049-4678-afe1-e8b99cc42841 + Name: DroneFr10 + Components: + 29b03c6fc46e050153f361f9b7e1290c: !TransformComponent + Id: eaffd62c-7b31-4ca8-8c45-1b36ad9e481e + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + fadb044435ecb6727c44599d32723967: !ModelComponent + Id: 47d2dd8e-1651-48a4-8b71-e84fcfb5ed2f + Model: b75b3f6f-5467-42a2-8f59-65f7f1f7fa05:Drones/Models/Fractured/DroneFr10 + Materials: {} + 90cd6d09c5df32584c08e083b3675ad2: !RigidbodyComponent + Id: 8f2814b9-6161-4501-aff6-4adf51bbec14 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + IsKinematic: false + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 34bb5ec6d5145b849ac888eb56c26f10: !ColliderShapeAssetDesc + Shape: 53477a51-7952-46ef-8822-413027a095b9:Drones/Models/Fractured/Hull10 + - Entity: + Id: bc751f5a-02b3-4000-ab68-dcf6119bc83c + Name: DroneFr3 + Components: + 6b0728ee11f66105957b2edd80ea7e37: !TransformComponent + Id: ad480667-1443-4970-80c3-801e2d5a393b + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 9500a518b456b199ba4503727d6502d2: !ModelComponent + Id: db6e58ca-e203-47c2-8bd6-aa5e694ae3e4 + Model: ed1b5a97-2888-497c-b2d5-5c9392ce011b:Drones/Models/Fractured/DroneFr3 + Materials: {} + 897a064c1f4865dffba0556f00851ab5: !RigidbodyComponent + Id: b571de48-3608-4e19-9d38-28d0026bba83 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + IsKinematic: false + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 809a95eca209df065f7c26bbec2d5937: !ColliderShapeAssetDesc + Shape: bd15ca12-fac8-4e0c-916e-fdd0656ce223:Drones/Models/Fractured/Hull3 + - Entity: + Id: c7effe18-5885-4898-87fe-06ed9ea75ee8 + Name: DroneFr2 + Components: + b0e0173d3de3a4b0f20e716c258469f4: !TransformComponent + Id: 2abed9d9-03d8-4c62-8268-1377f1ea17f7 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6f1a54d53fb80457e81ceff640e7f790: !ModelComponent + Id: 5211153d-3edd-4b12-8b9e-b11e686640ea + Model: c30e2a73-7c97-463a-8ffd-45d0c5183685:Drones/Models/Fractured/DroneFr2 + Materials: {} + 5426d4a50116e6bd1bfbe9c5d4f46c90: !RigidbodyComponent + Id: 50816c32-ce5d-4c6a-aafa-4cb0f627eb08 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + IsKinematic: false + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 6b5125efc1f6f1c4407a77b6059f03e1: !ColliderShapeAssetDesc + Shape: 3d207d60-6803-41ef-b089-60b351bb4b99:Drones/Models/Fractured/Hull2 + - Entity: + Id: ca8de680-c9c9-450c-a1db-3d3b9e4ece4e + Name: Explosion + Components: + fa8f95b220b7df4e8f0019f95a5d1eef: !TransformComponent + Id: b2958ffa-b720-4edf-8f00-19f95a5d1eef + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 39b07e196ff99a4d957dbebeb153ad2c: !ParticleSystemComponent + Id: 197eb039-f96f-4d9a-957d-bebeb153ad2c + Control: + ResetSeconds: 3.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + eb5ed7aa88fb514bba1d3d103de25130: + EmitterName: explosionfire + ParticleLifetime: {X: 1.0, Y: 1.3} + DrawPriority: 5 + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: null + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ZOffset: 0.3 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 50.0, Y: 50.0, Z: 50.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 24a1fa27-5ec5-4eb6-bf4d-918005b0fb24:Textures/EXP001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: !UVBuilderFlipbook + XDivisions: 8 + YDivisions: 8 + StartingFrame: 8 + AnimationSpeed: 56 + ForceTexCoords: false + Spawners: + 165f1e4629d4e94dbd8b07106bba4094: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 10 + Initializers: + 970c04baec3d9446b004b8b395b4e55c: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 1.0, Y: 2.0} + 9954f868fd1b684bace8a8bcb5b40077: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.2, Y: 0.0, Z: -0.2} + PositionMax: {X: 0.2, Y: 0.0, Z: 0.2} + Interpolate: false + 2d3a6f731037fb4fabce65b7a4d9e699: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.5, Y: -0.2, Z: -0.5} + VelocityMax: {X: 0.5, Y: 0.5, Z: 0.5} + e72f33e3e3dbc34a97a52bb1518ad1d7: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + Updaters: + 8d180206ee158549a2761d2780549f34: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 27419d94c90c0148b5946367e7e9596c: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + TangentType: Linear + ad146079d1b1ae4b911db781ac5990b1: + Key: 0.5 + Value: {R: 0.3, G: 0.3, B: 0.3, A: 0.25} + TangentType: Linear + 3feb08a0affa9e439cfe3d30cfdd7f06: + Key: 1.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 5af7f013ba6565478604ad770eb2d79b: + EmitterName: explosionsmoke01 + ParticleLifetime: {X: 2.0, Y: 2.0} + DrawPriority: 10 + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 6c44bc7750f4f84dbc608cf07e7c2746: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 6a4fef6ba2a55e4197a3c969d09ff2ed: + Key: 0.1 + Value: 2.0 + TangentType: Linear + aa24e7b496ddf143b46f3fbb8993e7c5: + Key: 1.0 + Value: 3.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ZOffset: 0.3 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 30.0, Y: 25.0, Z: 20.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8ab2edfe-0ead-489f-a899-97a8112807f7:Textures/Smoke02 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 3896be20cd20964e8c2588e75eb168e3: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 5 + Initializers: + a610a3236a6e9a4881ab8e8cf3c173c0: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.15, Y: -0.15, Z: -0.15} + PositionMax: {X: 0.15, Y: 0.15, Z: 0.15} + Interpolate: false + 481a0c50e2cdd24db2aaee92ae6d123e: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.5, Y: -0.5, Z: -0.5} + VelocityMax: {X: 0.5, Y: 0.5, Z: 0.5} + Updaters: + c084855f635b064a9472035e0844893c: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 4a5fc68d580326498f44faec012fbef4: + Key: 0.0 + Value: {R: 1.0, G: 0.5, B: 0.199999988, A: 1.0} + TangentType: Linear + 28960ea9445c6e409b9c3cfc147cf310: + Key: 0.08 + Value: {R: 1.0, G: 0.5, B: 0.2, A: 0.01} + TangentType: Linear + 10753de7bd280b4a95fd92ce9ab074d2: + Key: 1.0 + Value: {R: 0.5, G: 0.2, B: 0.1, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 1410f2689a31a14c8019f0f7c9cfbf1a: + EmitterName: explosionsmoke02 + ParticleLifetime: {X: 1.0, Y: 2.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 3e866549c2cb6a4daacb90f0bf831502: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 71e90623a5ba0e4f94572b38dbac3796: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ZOffset: 0.3 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 1.0, Y: 1.0, Z: 1.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: fa1018e4-c74d-4495-9535-134f5a06e4cd:Textures/SMO001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: !UVBuilderFlipbook + XDivisions: 8 + YDivisions: 8 + StartingFrame: 0 + AnimationSpeed: 64 + ForceTexCoords: false + Spawners: + 47416577012cb541a89c0af842ed0a78: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 10 + Initializers: + 7a67faa43612c044bcb0ceafca3c1980: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.4, Y: -0.4, Z: -0.4} + VelocityMax: {X: 0.4, Y: 0.4, Z: 0.4} + 44b42d9fe0db524bb1608fa15c426c92: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + 31c1fff3ce08fd42b625e9620a75a410: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.3, Y: -0.3, Z: -0.3} + PositionMax: {X: 0.3, Y: 0.3, Z: 0.3} + Interpolate: false + Updaters: + d46f4ae2805dc94b93cda65de7715f54: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + e4e848b71c5d344a94c4d5f651bf4e83: + Key: 0.0 + Value: {R: 0.5, G: 0.25, B: 0.1, A: 1.0} + TangentType: Linear + 930d8a2b2d2445448cfb1729782f16d6: + Key: 0.5 + Value: {R: 0.5, G: 0.2, B: 0.1, A: 0.7} + TangentType: Linear + a045b91bb4837c42b4058100893916e5: + Key: 1.0 + Value: {R: 0.1, G: 0.1, B: 0.1, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + cfa68e0360198c449c8508789d2e698f: + EmitterName: sparks + ParticleLifetime: {X: 0.7, Y: 1.4} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + de2510d5fd44ff4aa2491947f98e2470: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 5e73e50106cc4541abf62d1aff2bed31: + Key: 1.0 + Value: 0.1 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 100.0, Y: 40.0, Z: 40.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 91119660-137e-4be0-bcb9-32f8aeee6ca8:Textures/dota + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 9c09411daafbac478a3a27646840aee4: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.5, Y: 0.5} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 50 + Initializers: + dfb1a4fa455fd5458c8758b302cc5011: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.5, Y: -0.5, Z: -0.5} + VelocityMax: {X: 0.5, Y: 0.5, Z: 0.5} + baa8a2a1459ce84f8be9542a80c9c9bd: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.1 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.1, Y: 0.2} + 3ad9c7d485619e4f9d8e2be0b7046bd2: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.6, Y: -0.6, Z: -0.6} + PositionMax: {X: 0.6, Y: 0.6, Z: 0.6} + Interpolate: false + 11906182baabda4aab60a117befd904b: !InitialColorSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ColorMin: {R: 1.0, G: 0.18187499, B: 0.0375000238, A: 1.0} + ColorMax: {R: 1.0, G: 0.3, B: 0.0, A: 1.0} + Updaters: + abe14565ea671640b23e478d067dd5d8: !UpdaterForceField + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + DisplayParticleRotation: true + DisplayParticlePosition: true + FieldShape: !FieldShapeSphere + Radius: 1.0 + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 1.0 + FalloffStart: 0.1 + StrengthOutside: 0.0 + FalloffEnd: 0.9 + EnergyConservation: 0.5 + ForceDirected: 0.3 + ForceVortex: 0.5 + ForceRepulsive: -0.3 + ForceFixed: {X: 0.0, Y: 0.0, Z: 0.0} + b5cedd623bce604099cb47871db40684: + EmitterName: explosionsmoke03 + ParticleLifetime: {X: 1.0, Y: 1.5} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 8a08f695e107b4488ca7a7991a7fb325: + Key: 0.0 + Value: 1.0 + TangentType: Linear + f6eb8711c87144438e694499547b1831: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 59b7b5ec9861c445b1b3558255d3325d: + Key: 0.0 + Value: 0.0 + TangentType: Linear + c03fea4e42fdd04c9d069925ad89de2e: + Key: 1.0 + Value: 30.0 + TangentType: Linear + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ZOffset: 0.3 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 50.0, Y: 11.0, Z: 0.5, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8dbe2382-769c-45fe-9604-98c5ae5c434c:Textures/SMO001_3 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 6b2ae1cdda05e44382e9b234b33baa99: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 5 + Initializers: + 9000f9d978246049b41d3c659be5bad3: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + a7aa65c6f62d6545a0df7b410f241198: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.2, Y: -0.2, Z: -0.2} + PositionMax: {X: 0.2, Y: 0.2, Z: 0.2} + Interpolate: false + e16f3ca37b2d5a4ca3d259ad28ee8c04: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.2, Y: -0.2, Z: -0.2} + VelocityMax: {X: 0.2, Y: 0.2, Z: 0.2} + Updaters: + d0cd4314fa204547a067c82f1617f51d: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 695a36ed6b47f64a80e5513d1a1331fa: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + aaed0ceebb6bc6408f2cb7eba355998a: + Key: 0.5 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.03} + TangentType: Linear + f57e4def19b7a04892597661194881b7: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + Base: + BasePartAsset: 22ae5484-30af-4633-8e35-a4f5a177188e:VFXPrefabs/vfx-Explosion + BasePartId: a561f593-5d34-4ddc-9c89-8328527c4ac0 + InstanceId: 4ca3bbf9-91bb-4ace-aa9c-d8b27536e07a + - Entity: + Id: d1037b0d-ded4-4cc0-9518-fee80c7a4f7d + Name: vfx-Explosion + Components: + 1c25ee2c7bcbb048bff70a2cf49b3549: !TransformComponent + Id: 2cee251c-cb7b-48b0-bff7-0a2cf49b3549 + Position: {X: 0.0, Y: 0.7154081, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + fa8f95b220b7df4e8f0019f95a5d1eef: ref!! b2958ffa-b720-4edf-8f00-19f95a5d1eef + - Entity: + Id: ecba7093-1f48-4af3-903a-be0fb751021c + Name: DroneFr9 + Components: + 5b44f495ae1a302cbd4eeea6a67cd4be: !TransformComponent + Id: 85b55b1a-8a39-4601-ae71-9286a87ca41f + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 0de51be324e9237e81eb8b1fe26bb9a6: !ModelComponent + Id: 93655f84-b25d-4c90-a56a-dc641d25d5ae + Model: edf4d60e-6c77-4ff5-8ff6-df873d26cf3e:Drones/Models/Fractured/DroneFr9 + Materials: {} + bfb134b13999f8ed3b5afc60086ab616: !RigidbodyComponent + Id: 62b18c04-b258-447b-ba12-7b1bb22476bd + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + IsKinematic: false + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 337378e12bb077f2d542b843b39aa27a: !ColliderShapeAssetDesc + Shape: 6f9f0a9b-020a-4cb7-aff8-010ca09e4765:Drones/Models/Fractured/Hull9 diff --git a/Starbreach/Assets/Shared/Drones/Prefabs/EnergyDrone.xkprefab b/Starbreach/Assets/Shared/Drones/Prefabs/EnergyDrone.xkprefab new file mode 100644 index 0000000..8e77ab4 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Prefabs/EnergyDrone.xkprefab @@ -0,0 +1,382 @@ +!PrefabAsset +Id: aac85dfd-95cb-4a1f-8b00-00e61427e601 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! fb95e431-53b2-4f1b-b194-74a16c023eef + Parts: + - Entity: + Id: 67bf9668-b948-4e6a-8e59-ca5aebed6c09 + Name: Steam + Components: + c1ecc9674350ec47b258da4ab8ccf2ff: !TransformComponent + Id: 67c9ecc1-5043-47ec-b258-da4ab8ccf2ff + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8323bf5daa524c4fb5d833e41b08b32d: !ParticleSystemComponent + Id: 5dbf2383-52aa-4f4c-b5d8-33e41b08b32d + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape*: !BoundingSpheretatic + DebugDraw: true + Radius: 4.0 + Emitters: + 9a3a5271a4a0934d9467f6b095793379: + ParticleLifetime: {X: 0.5, Y: 1.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 0383cd796e839e4b9667af5d0fe71756: + Key: 0.0 + Value: 0.5 + TangentType: Linear + 3c3bf45d6e50e542871470a99fdfd9f3: + Key: 0.3 + Value: 0.7 + TangentType: Linear + aa6cd07e77ba1c4da6e836dff7b31695: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ZOffset: 0.2 + SoftEdgeDistance: 0.3 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 5.0, Y: 5.0, Z: 5.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8dbe2382-769c-45fe-9604-98c5ae5c434c:Textures/SMO001_3 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + fa12c9550522c24fa400d8ce84ef83a0: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 80.0 + Initializers: + 3994a4c9897c7049af5217d699e668a9: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.4, Y: 0.5} + 7fa5fb2d4e692c4aae5cda5ce081ca44: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.5, Y: 0.0, Z: -0.5} + PositionMax: {X: 0.5, Y: 0.0, Z: 0.5} + Interpolate: false + 3d037e54f2051d42a511f75567a2d5eb: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.05, Y: -3.0, Z: -0.05} + VelocityMax: {X: 0.05, Y: -3.0, Z: 0.05} + d4d112e1ace7b944828fa9278f3938e1: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + Updaters: + 226c0f6bc8f05441a0eb6454e9f89045: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 82276cc03e3f854b9dc5c50ece2e25f9: + Key: 0.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + e3927f1e92cb4d4f80c729960776e1ca: + Key: 0.2 + Value: {R: 0.5, G: 0.5, B: 0.5, A: 0.25} + TangentType: Linear + bb31441c3997734baf5d4b324f145da1: + Key: 1.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + a788c7989777534fbc50541f7eebe631: !UpdaterForceField + DebugDraw*: false + InheritPosition: true + Position: {X: 0.0, Y: -1.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: true + FieldShape: !FieldShapeCylinder + HalfHeight: 1.0 + Radius: 1.0 + DisplayParticleRotation: true + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 1.0 + FalloffStart: 0.1 + StrengthOutside: 0.0 + FalloffEnd: 0.9 + EnergyConservation: 1.0 + ForceDirected: 0.0 + ForceVortex: 0.0 + ForceRepulsive: 4.0 + ForceFixed: {X: 0.0, Y: 8.0, Z: 0.0} + Base: + BasePartAsset: de245d94-a1aa-4964-a26a-4b34f1d3bf2d:Drones/Prefabs/BasicDrone + BasePartId: 8247a6ff-4157-4f60-bdc7-4553ec153eb4 + InstanceId: cb59e38a-cd47-48ff-bda7-4442136498b9 + - Entity: + Id: 79e33d69-4e12-473f-bdc6-0c107e3244ad + Name: AlertZoneTrigger + Components: + 37741c7f7923b7e1ef2d73915a26c89b: !TransformComponent + Id: 43e8a561-77ca-417e-9229-3a641aae280e + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 557d0a5f00f82108bd3505f6850bc931: !RigidbodyComponent + Id: cdd4911b-f606-40c3-916b-4095af1cd5b5 + CollisionGroup: CustomFilter2 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: true + IsKinematic: true + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 65240769cedf3fbd99aca64e97ba4ae6: !SphereColliderShapeDesc + Is2D: false + Radius: 1.0 + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + Base: + BasePartAsset: de245d94-a1aa-4964-a26a-4b34f1d3bf2d:Drones/Prefabs/BasicDrone + BasePartId: a6312dce-9fee-4f86-ba71-f87362215025 + InstanceId: cb59e38a-cd47-48ff-bda7-4442136498b9 + - Entity: + Id: 92eafacb-5258-4c7b-8040-b4b6d2721043 + Name: ProjectileSpawnPoint + Components: + ef320192025c3947bb1adb1c533630a6: !TransformComponent + Id: 920132ef-5c02-4739-bb1a-db1c533630a6 + Position*: {X: 0.785251141, Y: 0.0, Z: 1.41112423E-07} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d3a20669d1ecb74791449a8d599302ad: !ModelNodeLinkComponent + Id: 6906a2d3-ecd1-47b7-9144-9a8d599302ad + Target: null + NodeName*: Bone_turret + f2be80b1286b9c4495a77d23ce7fc8b5: !AudioEmitterComponent + Id: b180bef2-6b28-449c-95a7-7d23ce7fc8b5 + Sounds: + 68142dcfca753ffa32191b0615d93ade*~Fire0: bba0e27c-3fb8-4ce6-99be-bc45ea5e03a7:Drones/Sounds/LaserFire0 + ec7e82125fa39f9cd037e85363f7d40f*~Fire1: 10ee8241-9a28-45b6-aba4-00c4c39106b6:Drones/Sounds/LaserFire1 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + Base: + BasePartAsset: de245d94-a1aa-4964-a26a-4b34f1d3bf2d:Drones/Prefabs/BasicDrone + BasePartId: e7693fa5-f37b-4166-9558-1e4d73d4d27c + InstanceId: cb59e38a-cd47-48ff-bda7-4442136498b9 + - Entity: + Id: e84e5acd-b1a3-43f4-9066-a3247f4be1e3 + Name: vfx-Engine + Components: + 585f08a4c7e8554391f68583881993a2: !TransformComponent + Id: a4085f58-e8c7-4355-91f6-8583881993a2 + Position: {X: 0.0, Y: 0.2, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + c1ecc9674350ec47b258da4ab8ccf2ff: ref!! 67c9ecc1-5043-47ec-b258-da4ab8ccf2ff + c141928df7725e448d9ee2d635345744: !AudioEmitterComponent + Id: 8d9241c1-72f7-445e-8d9e-e2d635345744 + Sounds: + 210c4fe5f3b4c243942a23a4b3f26e49~Engine: 1d4673e5-cfbf-45eb-a34f-6d0c93074702:Drones/Sounds/Engine0 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + Base: + BasePartAsset: de245d94-a1aa-4964-a26a-4b34f1d3bf2d:Drones/Prefabs/BasicDrone + BasePartId: 8a314568-4602-4fca-85a3-248210fb9341 + InstanceId: cb59e38a-cd47-48ff-bda7-4442136498b9 + - Entity: + Id: ee748701-a6a0-4afd-b04c-ab208598af51 + Name: Model + Components: + 7dad9d7cd55ced4abbf2cb2bbbd70c1a: !TransformComponent + Id: 7c9dad7d-5cd5-4aed-bbf2-cb2bbbd70c1a + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + d719b2b339248f17748edd917f6bc9b2: ref!! 920132ef-5c02-4739-bb1a-db1c533630a6 + 827f49f9d5034b4acf8a8939110ddb8d: ref!! a4085f58-e8c7-4355-91f6-8583881993a2 + c212d189fcc79d46bbb83d892c85ce82: !ModelComponent + Id: 89d112c2-c7fc-469d-bbb8-3d892c85ce82 + Model*: 8b6b1e4a-7de0-4524-8851-23d9e11339b5:Drones/Models/EnergyDrone + Materials: + bff18010728c254c925bebf2f03be01b~0: 76636c37-5239-4cd3-ac8a-953e9e4d913e:Drones/Materials/Drone/DroneLower + bad52956f3fcbb45ac19f0a99abdf1d0~1: b91deeaf-43f6-434a-8400-22a1c6cb0447:Drones/Materials/Drone/DroneUpper + 8710bd731b44b446a6f9448a50fcd66b*~2: c2292c76-631b-4a19-b984-096e90ede1ed:Drones/Materials/EnergyDrone/EnergyDrone + c123a40ea35064c3e5b77b9aaec447dc: !AnimationComponent + Id: 02b2b2f2-f679-407f-abf6-7abdf572fee5 + Animations: + a713ec907506354eb188aaba71f6039c*~Fire: bbff5c1d-80bb-4c8c-bd8e-edd752029865:Drones/Animations/EnergyDroneFire + 8df1171e0223014899b19b71b409f1b3*~Idle: c9f1abb3-03e4-41b0-b65e-95168f7c3a5f:Drones/Animations/EnergyDroneIdle + bcc277ca9a2ea247bf4ad6e427a787bf*~Move: 1ed61017-cfb9-4a44-9ff7-effd95f4e6c2:Drones/Animations/EnergyDroneFly + Base: + BasePartAsset: de245d94-a1aa-4964-a26a-4b34f1d3bf2d:Drones/Prefabs/BasicDrone + BasePartId: 95ac12fa-2dfc-4b15-96e7-ba5402e3cf12 + InstanceId: cb59e38a-cd47-48ff-bda7-4442136498b9 + - Entity: + Id: fb95e431-53b2-4f1b-b194-74a16c023eef + Name: Drone + Components: + bee1416b5e2d304389e20936f750b8b1: !TransformComponent + Id: 6b41e1be-2d5e-4330-89e2-0936f750b8b1 + Position*: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 68b08d6ef4327063ddfe04b67a961aae: ref!! 7c9dad7d-5cd5-4aed-bbf2-cb2bbbd70c1a + 963458a2c6c68927d38fec6a605500fa: ref!! 43e8a561-77ca-417e-9229-3a641aae280e + aed3e642d5d71f48bdf23181156082f9: !CharacterComponent + Id: 42e6d3ae-d7d5-481f-bdf2-3181156082f9 + CollisionGroup: CustomFilter3 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + FallSpeed: 10.0 + MaxSlope: {Radians: 0.7853982} + JumpSpeed: 5.0 + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + ColliderShapes: + d27547538ff5dd4eb72e1d385d4862bd: !CylinderColliderShapeDesc + Height: 2.0 + Radius: 1.0 + LocalOffset: {X: 0.0, Y: 1.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 827cf65eb5dca148adaa7ef5bc60df35: !AudioEmitterComponent + Id: 5ef67c82-dcb5-48a1-adaa-7ef5bc60df35 + Sounds: + 9f0d8aaa3fc06a44bae1c6cff7aeef58~Death: 4c9333d4-d4d5-4f61-9390-6b2e2602cf1b:Drones/Sounds/Death + 062488fbcb22f344b134f663d4a59ff9~Explosion: 936a2dbe-31df-40cc-836b-18793ffcea22:Drones/Sounds/Explosion + 762f069faf274a408a2da257ca0f4736~Hit0: 732e562c-622b-4fff-8282-58a7efa0b204:Drones/Sounds/Hit0 + ba953638f1e5db4d852167189517624d~Hit1: 973a4551-7cd6-4b8d-8a53-5a61ca9e461b:Drones/Sounds/Hit1 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + c7262ebf0d468f43ba11ca1221215c08: !NavigationComponent + Id: bf2e26c7-460d-438f-ba11-ca1221215c08 + NavigationMesh: null + GroupId: 665dbfaa-d91a-ee40-d176-a5eaed1268bc + 238e55139b0b248973a65b6ba75f8d54: !Starbreach.Drones.Drone,Starbreach + Id: e798d19d-28f6-4813-8a83-16840915a06d + Priority: 4000 + Weapon*: !Starbreach.Drones.LaserDroneWeapon,Starbreach + ProjectileSpawnPoint: ref!! 92eafacb-5258-4c7b-8040-b4b6d2721043 + ReloadTime: 1.5 + ProjectilePrefab: 38b52cd2-bfc8-4128-b939-232ab85a9b82:Drones/Prefabs/Laser + AnimationDelay: 0.7 + MaximumSpeed: 1.5 + RotationSpeed: 6.283185 + HeadRotationSpeed: 6.283185 + Model: ref!! 89d112c2-c7fc-469d-bbb8-3d892c85ce82 + DefaultMaterial: b91deeaf-43f6-434a-8400-22a1c6cb0447:Drones/Materials/Drone/DroneUpper + AlertedMaterial: 70cfa151-cffc-4cf1-a0d5-2ac4ac94e4a6:Drones/Materials/Drone/DroneUpper_Alerted + EngineParticle: ref!! 5dbf2383-52aa-4f4c-b5d8-33e41b08b32d + EngineAudioEmitter: ref!! 8d9241c1-72f7-445e-8d9e-e2d635345744 + DroneExplosionPrefab: d1f82cfd-900e-4757-958c-1dd35a4ec775:Drones/Prefabs/DroneExplosion + e3d3d4a2c9c5e7676d484a7a5a41d498: !Starbreach.Drones.PatrollingDroneController,Starbreach + Id: b329b495-07e7-4fd5-8a3e-403ef5f2a170 + PathToFollow: null + ChaseAlertZoneRadius: 20.0 + IdleAlertZoneRadius: 15.0 + AlertZoneTriggerEntity: ref!! 79e33d69-4e12-473f-bdc6-0c107e3244ad + Base: + BasePartAsset: de245d94-a1aa-4964-a26a-4b34f1d3bf2d:Drones/Prefabs/BasicDrone + BasePartId: b2772ba8-0ab8-4593-9055-09b88d5c4268 + InstanceId: cb59e38a-cd47-48ff-bda7-4442136498b9 diff --git a/Starbreach/Assets/Shared/Drones/Prefabs/Laser.xkprefab b/Starbreach/Assets/Shared/Drones/Prefabs/Laser.xkprefab new file mode 100644 index 0000000..219a7b9 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Prefabs/Laser.xkprefab @@ -0,0 +1,1450 @@ +!PrefabAsset +Id: 38b52cd2-bfc8-4128-b939-232ab85a9b82 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! fee409ca-f8b5-4fc3-b61b-c32a7a104af1 + Parts: + - Entity: + Id: 4028c44c-6e87-4793-8dd5-451b9fda8960 + Name: SmokeTrail + Components: + 9fccf99aaa253a46b1fb78c5548ece50: !TransformComponent + Id: 9af9cc9f-25aa-463a-b1fb-78c5548ece50 + Position: {X: 0.0, Y: 0.0, Z: -0.265483737} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c5dc12472bf6aa44a0c0f71ee2806c59: !ParticleSystemComponent + Id: 4712dcc5-f62b-44aa-a0c0-f71ee2806c59 + Control: + ResetSeconds: 5.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + 8666a7b86aa3864fa52f773044ce0e6f: + MaxParticlesOverride: 700 + ParticleLifetime: {X: 0.2, Y: 0.3} + SortingPolicy: ByDepth + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 7cfc477417de724b8bb1841434d3c224: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 9640631db46d0c2a398668ec594c89d4: + Key: 0.308997333 + Value: 1.0 + TangentType: Linear + 86ce4d2c248baa419d23bfcfcd09c59a: + Key: 1.0 + Value: 1.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 2607dde5-8519-4cf3-b4d0-cac472175827:Textures/Muzzleflash02_Desaturated + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + RightChild: !ComputeColor + Value: {R: 0.0, G: 0.9625001, B: 1.0, A: 1.0} + UVBuilder: null + ForceTexCoords: false + Spawners: + bb776de6777eb44b9647ae8d6424c217: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 20.0 + a32c4144afc1f04b94d798ee079bfed6: !SpawnerFromDistance + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 20.0 + Initializers: + f983ab1a5ba75c44a5bae0469cf3d2ac: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 2.0, Y: 4.0} + 65a28282a963df4691c3d9a2b50866dd: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.05, Y: 0.0, Z: 0.1} + PositionMax: {X: 0.05, Y: 0.0, Z: 0.05} + Interpolate: false + 2ada1077aa631a4c83d32f64c434968c: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: 0.0, Y: 360.0} + e47f94b6f1f1c7c627bfe28f38af83dd: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 2.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -1.0, Y: -1.0, Z: -1.0} + VelocityMax: {X: 1.0, Y: 1.0, Z: 1.0} + Updaters: + 118554f6edef08cf64da6c068ae60f31: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 09f082f64c267b86e318fa57e1b1d427: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + TangentType: Linear + 4ed3912ecb66470815d3749dab4f803c: + Key: 0.6345037 + Value: {R: 0.6302824, G: 0.6866761, B: 0.5937924, A: 0.645960152} + TangentType: Linear + 05a8ad30d2e447f7ace8fb99c97ba69c: + Key: 1.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 043719d272491283bca51488d94702a7: + MaxParticlesOverride: 700 + ParticleLifetime: {X: 0.2, Y: 0.3} + SortingPolicy: ByDepth + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 7cfc477417de724b8bb1841434d3c224: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 9640631db46d0c2a398668ec594c89d4: + Key: 0.308997333 + Value: 1.0 + TangentType: Linear + 86ce4d2c248baa419d23bfcfcd09c59a: + Key: 1.0 + Value: 1.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 2607dde5-8519-4cf3-b4d0-cac472175827:Textures/Muzzleflash02_Desaturated + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + RightChild: !ComputeFloat4 + Value: {X: 10.0, Y: 20.0, Z: 10.0, W: 0.0} + UVBuilder: null + ForceTexCoords: false + Spawners: + bb776de6777eb44b9647ae8d6424c217: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 20.0 + a32c4144afc1f04b94d798ee079bfed6: !SpawnerFromDistance + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 20.0 + Initializers: + f983ab1a5ba75c44a5bae0469cf3d2ac: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.5 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 2.0, Y: 4.0} + 65a28282a963df4691c3d9a2b50866dd: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.05, Y: 0.0, Z: 0.1} + PositionMax: {X: 0.05, Y: 0.0, Z: 0.05} + Interpolate: false + 2ada1077aa631a4c83d32f64c434968c: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: 0.0, Y: 360.0} + e47f94b6f1f1c7c627bfe28f38af83dd: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: -2.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.2, Y: -0.2, Z: 1.0} + VelocityMax: {X: 0.2, Y: 0.2, Z: 1.0} + Updaters: + 118554f6edef08cf64da6c068ae60f31: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 09f082f64c267b86e318fa57e1b1d427: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + TangentType: Linear + 4ed3912ecb66470815d3749dab4f803c: + Key: 0.6345037 + Value: {R: 0.6302824, G: 0.6866761, B: 0.5937924, A: 0.645960152} + TangentType: Linear + 05a8ad30d2e447f7ace8fb99c97ba69c: + Key: 1.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + - Entity: + Id: 437f5c35-b1bc-4c41-b890-8cb9f75ebdec + Name: TeleportEmitter + Components: + 6395ef07f550744397dd3081cd4a79cb: !TransformComponent + Id: 07ef9563-50f5-4374-97dd-3081cd4a79cb + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6669f00e3e069c40b07ce44ccf962a18: !ParticleSystemComponent + Id: 0ef06966-063e-409c-b07c-e44ccf962a18 + Enabled*: false + Control: + ResetSeconds: 3.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + 5040219717fd324093f1886466fda636: + Enabled*: false + ParticleLifetime: {X: 0.25, Y: 0.25} + DrawPriority: 5 + SortingPolicy: ByDepth + ShapeBuilder: !ShapeBuilderOrientedQuad + SamplerPosition: !ComputeCurveSamplerVector3 + Curve: !ComputeAnimationCurveVector3 + KeyFrames: + d4161c929ac69844a7083d46d80ca72d: + Key: 0.0 + Value: {X: 0.0, Y: -0.5, Z: 0.0} + TangentType: Linear + 9dfb29819652f943904a8794a2962457: + Key: 1.0 + Value: {X: 0.0, Y: 0.5, Z: 0.0} + TangentType: Linear + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + c4d7e1eb2866d8438f0f053da05de0ab: + Key: 2.220446E-16 + Value: 1.5 + TangentType: Linear + 0fbcd9f00ea7e04c812446849ba3c7b6: + Key: 0.05 + Value: 3.0 + TangentType: Linear + 50cbbf6311e2d04b9dd2ba0024c921d3: + Key: 0.5 + Value: 0.5 + TangentType: Linear + d0b72df5fdd2e448960e3267def415be: + Key: 1.0 + Value: 0.0 + TangentType: Linear + ScaleLength: false + LengthFactor: 5.0 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 100.0, Y: 100.0, Z: 100.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 163e7dce-4f33-419a-b03b-c592204a8a65:Textures/LensFlare01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 496e17e43727db46bdcde4f4bcc66dd1: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 1 + Initializers: + e1e472a3c24ac448921ec520f483204b: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.5, Y: 1.0} + 6165852bf4bbc743a07f29d28119d243: !InitialColorSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ColorMin: {R: 0.113725491, G: 0.172549024, B: 1.0, A: 1.0} + ColorMax: {R: 0.113725491, G: 0.172549024, B: 1.0, A: 1.0} + Updaters: {} + f738a7aee0e79e46bb75f702cf0b1691: + ParticleLifetime: {X: 0.5, Y: 1.5} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + e0b302699b821046add506e580a1f10d: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 7d1324b08263c949bc38f15855f48b48: + Key: 1.0 + Value: 0.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 50.0, Y: 50.0, Z: 50.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + aeffcc90d3662940a4aadd87175efcdd: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.1, Y: 0.1} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 50 + Initializers: + de19c0c802943e43b5bc16bf87710585: !InitialVelocityParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: true + ParentName: null + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: true + ParentControlFlag: Group00 + SeedOffset: 0 + ParentVelocityFactor: 0.5 + VelocityMin: {X: -0.2, Y: 0.0, Z: -0.2} + VelocityMax: {X: 0.2, Y: 0.2, Z: 0.2} + fffa6b4f3d3d71419258fec3c9df68f1: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.4 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.05, Y: 0.2} + b8e4f334269e834bae2ca058294c5379: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.1, Y: -1.5, Z: -0.1} + PositionMax: {X: 0.1, Y: 1.5, Z: 0.1} + Interpolate: false + 60a091975d1fcb46815576f1488c9c2e: !InitialColorSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ColorMin: {R: 0.0, G: 0.0235294122, B: 1.0, A: 1.0} + ColorMax: {R: 0.29375, G: 0.3103674, B: 1.0, A: 1.0} + Updaters: + dad1aef5ec8a2149ad5117fb3b07dddf: !UpdaterForceField + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: true + FieldShape: !FieldShapeCylinder + HalfHeight: 1.0 + Radius: 1.0 + DisplayParticleRotation: true + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 1.0 + FalloffStart: 0.1 + StrengthOutside: 0.0 + FalloffEnd: 0.9 + EnergyConservation: 0.5 + ForceDirected: 0.1 + ForceVortex: 0.3 + ForceRepulsive: 0.1 + ForceFixed: {X: 0.0, Y: 0.0, Z: 0.0} + 2367f1689883364ebc569283d9f78125: + ParticleLifetime: {X: 1.0, Y: 1.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 7d7327de46f348448de7aedbf5ad6e1c: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 000497e646e2a546ba4392d0c1b66575: + Key: 0.1 + Value: 2.0 + TangentType: Linear + 37cee8ea5a1f6a40bfbca8f78b33b718: + Key: 1.0 + Value: 3.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 2.0, Y: 2.0, Z: 2.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 91119660-137e-4be0-bcb9-32f8aeee6ca8:Textures/dota + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + f1342f4364f2c64a8e1109743226adda: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 1 + Initializers: {} + Updaters: + 92f14c2b239c804da91f87a452a7fae4: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 69cb6c275bacdc4081de7994e8aeab90: + Key: 0.0 + Value: {R: 0.2, G: 0.5, B: 1.0, A: 1.0} + TangentType: Linear + e2f4b5c3d6f82f41bdb30432bfddf8b1: + Key: 0.1 + Value: {R: 0.200000018, G: 0.5, B: 1.0, A: 0.2} + TangentType: Linear + 25f7523959ba7a4e8bb39921e9b1e993: + Key: 1.0 + Value: {R: 0.2, G: 0.5, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 8e789b11275a364fa866418228030b42: + ParticleLifetime: {X: 1.0, Y: 1.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 6ddde43e984e1a47bf567213c1119a99: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 9b61f57d88bb4a45a8ac0ccbb8005efe: + Key: 1.0 + Value: 0.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 50.0, Y: 50.0, Z: 50.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + eabe55d5cbc7454c836ec6c6ea3fa992: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 30 + Initializers: + 060b688c3079634fb2fcef4eeb738cf7: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.1, Y: -1.5, Z: -0.1} + PositionMax: {X: 0.1, Y: 1.5, Z: 0.1} + Interpolate: false + 458df8842fb51346bd3cd84fa0a3d048: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.1 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.1, Y: 0.5} + 1061bb81f346d14da70b57360377d87a: !InitialColorSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ColorMin: {R: 0.350000024, G: 0.683125, B: 1.0, A: 1.0} + ColorMax: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + 79628854ff680140b85d6011699fe4e7: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.05, Y: 0.0, Z: -0.05} + VelocityMax: {X: 0.05, Y: 0.25, Z: 0.05} + Updaters: {} + 841cf1cc6bea974fb72aeafc1e3b058b: + ParticleLifetime: {X: 0.5, Y: 2.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + cfc8cbfc5f7e80468f4658697a0dccfb: + Key: 0.0 + Value: 0.1 + TangentType: Linear + cec950b71d6b054cb0d52c4463cf843f: + Key: 1.0 + Value: 1.5 + TangentType: Linear + SamplerRotation: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 4f6a5597f95530449174ae84f03e5522: + Key: 0.0 + Value: 0.0 + TangentType: Linear + cf98f41d25d41c4a83ad36e1ec9746a2: + Key: 1.0 + Value: 60.0 + TangentType: Linear + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 20.0, Y: 20.0, Z: 20.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: ca6ebc41-c296-47ba-b009-4ed9429d2844:Textures/Aura01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 79df6107b22e334d8bca6b4960444b27: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 30 + Initializers: + 142e006d8e6b3a4dbbcb1926c73840f8: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.05, Y: 0.0, Z: -0.05} + VelocityMax: {X: 0.05, Y: 0.5, Z: 0.05} + f6eb4c7264821d4ab65350c123ab5be5: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + 46bdcf28870a6b458f932a8575859785: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.2, Y: -0.5, Z: -0.2} + PositionMax: {X: 0.2, Y: 0.5, Z: 0.2} + Interpolate: false + afa421dee27b89458bf03b8615bd730f: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 2.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.25, Y: 1.0} + Updaters: + db7c0011cf236a478829483fa06ce33e: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + e54f18a2ce59fd49ac1c52a0968ca7b5: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + 65d9881cc9902243a3f9561a1d617a34: + Key: 0.25 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.1} + TangentType: Linear + 050e06182d0dc149a97d6eee6edc869d: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 0c6d623373813b429d7c03b96d846da6: !UpdaterForceField + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 2.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: true + FieldShape: !FieldShapeCylinder + HalfHeight: 1.0 + Radius: 1.0 + DisplayParticleRotation: true + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 1.0 + FalloffStart: 0.1 + StrengthOutside: 0.0 + FalloffEnd: 0.9 + EnergyConservation: 0.5 + ForceDirected: 0.1 + ForceVortex: 0.7 + ForceRepulsive: 0.2 + ForceFixed: {X: 0.0, Y: 0.0, Z: 0.0} + d54f5f02b8fb784ca93dc56c42f1d31b: + MaxParticlesOverride: 3 + ParticleLifetime: {X: 0.2, Y: 0.2} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + f0279f2d9cd2c040ae63cfba0a277659: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 6faf63523fcdb14b9969d16a6dc927fa: + Key: 0.25 + Value: 2.0 + TangentType: Linear + ce867259d05680459a58feab8d883b77: + Key: 1.0 + Value: 2.5 + TangentType: Linear + SamplerRotation: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + ac96eaa5f5df674ba0b8864577cbbd22: + Key: 0.0 + Value: 45.0 + TangentType: Linear + ad95a725b3057a459f5521f45bf6a0bd: + Key: 1.0 + Value: 180.0 + TangentType: Linear + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 2.0, Y: 2.0, Z: 2.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 4ae36a31-e5f2-4cab-8143-e10f0ea7ab34:Textures/Ring01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 0a02d7d136d5304db330a2238551a554: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 1 + Initializers: {} + Updaters: + 01cc50267aaa1e4a8643cd7c75973809: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 53f065c2aa4c434aa5ad52c72076d5f4: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + TangentType: Linear + dc113008bd4b374b963d351d8c825d70: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 2b453fc5e8d3854098448c84c5fedb2f: + ParticleLifetime: {X: 0.1, Y: 0.1} + DrawPriority: 5 + SortingPolicy: ByDepth + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + dd02c62a2c326e4e8504fe1dde1b24ce: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 4d38720d6be9b54a96ae79d509d78bb3: + Key: 0.1 + Value: 2.0 + TangentType: Linear + 84c911cf8c60da43abdc6991b06c8822: + Key: 1.0 + Value: 3.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 20.0, Y: 50.0, Z: 100.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 11c110bc69927041a204bf6719fe448a: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 1 + Initializers: {} + Updaters: + 9f087a05a80b7e4b84b338aacdb69423: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 8493449dd2a0c84892c6f2ae1e28433c: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + TangentType: Linear + 28e4be7a18d4684fbc161eb940356754: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 5e86c7f04b616d459bcbeaf756f15754: + ParticleLifetime: {X: 0.2, Y: 1.5} + ShapeBuilder: !ShapeBuilderOrientedQuad + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + df36b147405cec4cb05b05d70ee60e33: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 26e9d6f9d1f9594d9d5954fa232bff57: + Key: 1.0 + Value: 0.0 + TangentType: Linear + ScaleLength: false + LengthFactor: 0.08 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 30.0, Y: 50.0, Z: 100.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 3f6c60d5046c8b418f3d934d53ddcb22: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 100 + Initializers: + 4f9c775831acee4a9995624b1132cfe0: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.2 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.05, Y: 0.2} + db7a69e7ebbf224ebf621a9ab73cba51: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.1, Y: -0.1, Z: -0.1} + VelocityMax: {X: 0.1, Y: 0.0, Z: 0.1} + 4e66b7ed44680943b98d885b771a7640: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: false + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.2, Y: -0.5, Z: -0.2} + PositionMax: {X: 0.2, Y: 0.5, Z: 0.2} + Interpolate: false + Updaters: + 183a71912f9f51488a6e3b0c8b4123ba: !UpdaterSpeedToDirection + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + 96df0b832224fa498c74e725c6dd6145: !UpdaterForceField + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + ScaleUniform: 1.0 + DisplayParticlePosition: true + FieldShape: !FieldShapeSphere + Radius: 1.0 + DisplayParticleRotation: true + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 1.0 + FalloffStart: 0.1 + StrengthOutside: 0.0 + FalloffEnd: 1.0 + EnergyConservation: 0.5 + ForceDirected: 0.5 + ForceVortex: 0.5 + ForceRepulsive: 0.5 + ForceFixed: {X: 0.0, Y: 0.0, Z: 0.0} + 552875fdb9bd534ea1e92b174567f678: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 6177e9905b4c1d458e8d4517a1682c32: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + 7fe9f118193470428f9fa8597d926761: + Key: 0.375415534 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + TangentType: Linear + bd818fedd0f77c44b8859c7a538d39ae: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 205ebee5fda131429afd176bd143ff9a: + Enabled*: false + ParticleLifetime: {X: 0.2, Y: 0.4} + ShapeBuilder: !ShapeBuilderOrientedQuad + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + f7a0542348699444bfc89d071847bfe3: + Key: 0.0 + Value: 0.0 + TangentType: Linear + 1234bc64e7632348b5b9a2131b99b8aa: + Key: 0.5 + Value: 1.0 + TangentType: Linear + f43779da0bba924aaf069c8e828c9409: + Key: 1.0 + Value: 0.0 + TangentType: Linear + ScaleLength: true + LengthFactor: 1.0 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 20.0, Y: 20.0, Z: 20.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 163e7dce-4f33-419a-b03b-c592204a8a65:Textures/LensFlare01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 3ece173fbb7ff4488c90ebf8c5e9b905: !SpawnerPerSecond + LoopCondition: OneShot + Delay: {X: 0.01, Y: 0.01} + Duration: {X: 0.3, Y: 0.3} + SpawnCount: 50.0 + Initializers: + e6ca323f4ea1b844a1a4ce45f559ebaf: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.5, Y: -1.0, Z: -0.5} + PositionMax: {X: 0.5, Y: 0.0, Z: 0.5} + Interpolate: false + 25bee8304e31464987d2cac60753cbb5: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: 0.0, Y: 4.0, Z: 0.0} + VelocityMax: {X: 0.0, Y: 5.0, Z: 0.0} + 00fef165306cd34da79578a24e931a36: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.4 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.1, Y: 1.0} + Updaters: + 47ce56558958f54b8e175088d1b2dfe6: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + fab43df57f347a4e94ec19e31f78e254: + Key: 0.0 + Value: {R: 0.0, G: 0.0, B: 1.0, A: 1.0} + TangentType: Linear + a13eda9bc54a4f4abbcb0831c2b03997: + Key: 0.5 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + TangentType: Linear + 88570bb570ad7a43a95c2e76575425c5: + Key: 1.0 + Value: {R: 0.0, G: 0.0, B: 1.0, A: 1.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 2dc8d724e8a39f43921e71057609fa5e: !UpdaterSpeedToDirection + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + a965fc946450744ba7fe151d40c653aa: !UpdaterForceField + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 5.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: true + FieldShape: !FieldShapeCylinder + HalfHeight: 1.0 + Radius: 1.0 + DisplayParticleRotation: true + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 1.0 + FalloffStart: 0.1 + StrengthOutside: 0.0 + FalloffEnd: 0.9 + EnergyConservation: 0.5 + ForceDirected: -2.0 + ForceVortex: 0.0 + ForceRepulsive: 0.0 + ForceFixed: {X: 0.0, Y: 0.0, Z: 0.0} + Base: + BasePartAsset: 3a5d76b7-2841-4d50-94a7-6e792a00e320:VFXPrefabs/vfx-Teleport + BasePartId: f9c3492f-998f-4728-a47c-17bdc010143a + InstanceId: 179aa480-e48f-4462-b3d1-15ab2674e5dc + - Entity: + Id: 4ad8e174-8cd8-4063-b33c-d6b827bc2ba4 + Name: vfx-Teleport + Components: + 4c007acacee76d904a54ffaeda884876: !TransformComponent + Id: ee961576-9856-4806-b6d4-f6f29a762a9d + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 89005d897338d37b8c0cea28d53b005f: ref!! 07ef9563-50f5-4374-97dd-3081cd4a79cb + - Entity: + Id: fee409ca-f8b5-4fc3-b61b-c32a7a104af1 + Name: Laser + Components: + e393d469d9e4514fa3f4d71a295f59f7: !TransformComponent + Id: 69d493e3-e4d9-4f51-a3f4-d71a295f59f7 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 0.25, Y: 0.25, Z: 0.25} + Children: + 9fccf99aaa253a46b1fb78c5548ece50: ref!! 9af9cc9f-25aa-463a-b1fb-78c5548ece50 + 7e0cc0490dc8df62c32b67d7685ddb2f: ref!! ee961576-9856-4806-b6d4-f6f29a762a9d + 5eb06964532095499e66d98114983e3b: !RigidbodyComponent + Id: 6469b05e-2053-4995-9e66-d98114983e3b + CanCollideWith: CustomFilter1, CustomFilter2 + CanSleep: false + Restitution: 0.0 + Friction: 0.0 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + IsKinematic: false + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: true + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 3535b360ecbedb44bbe56123464a6711: !SphereColliderShapeDesc + Is2D: false + Radius: 1.0 + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + 52e25f7385bb5a4a9654687034b1f7d9: !AudioEmitterComponent + Id: 735fe252-bb85-4a5a-9654-687034b1f7d9 + Sounds: + bb75ce4b56fdf9436cf503c6517e0995~Hit0: e879b7ba-0a56-49cf-920a-c21c74026532:Drones/Sounds/LaserImpact0 + fdf0f345b8bf44ae8c6f18bbcbfd59cb~Hit1: b28ea030-8e28-4676-8c2b-7a98fad37482:Drones/Sounds/LaserImpact1 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + 5adaeefabd322daa38e21adeb4a9b506: !SpriteComponent + Id: 65786209-fa1b-4b6b-85ff-ed9ddeb32865 + SpriteProvider: !SpriteFromTexture + Texture: 91119660-137e-4be0-bcb9-32f8aeee6ca8:Textures/dota + Center: {X: 0.0, Y: 0.0} + SpriteType: Billboard + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + IgnoreDepth: true + 33e997ae42ec32c3a6cd02642d487817: !Starbreach.Drones.LaserProjectile,Starbreach + Id: a4660101-334e-4233-8d6d-4fc1a421a80f + Impulse: 25.0 + MaxLifeSpan: 5.0 + Rigidbody: ref!! 6469b05e-2053-4995-9e66-d98114983e3b + ExplosionParticle: ref!! 0ef06966-063e-409c-b07c-e44ccf962a18 + TrailParticle: ref!! 4712dcc5-f62b-44aa-a0c0-f71ee2806c59 + Damage: 30 diff --git a/Starbreach/Assets/Shared/Drones/Prefabs/Rocket.xkprefab b/Starbreach/Assets/Shared/Drones/Prefabs/Rocket.xkprefab new file mode 100644 index 0000000..914ad44 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Prefabs/Rocket.xkprefab @@ -0,0 +1,1000 @@ +!PrefabAsset +Id: 35063ac9-350d-4c96-b28a-28abc68b4214 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 4e994a09-bc39-4ce3-bf26-6ffe729be6d7 + Parts: + - Entity: + Id: 1ac464f8-ca5e-45de-ac82-b550d51b92fc + Name: Explosion + Components: + fa8f95b220b7df4e8f0019f95a5d1eef: !TransformComponent + Id: b2958ffa-b720-4edf-8f00-19f95a5d1eef + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 39b07e196ff99a4d957dbebeb153ad2c: !ParticleSystemComponent + Id: 197eb039-f96f-4d9a-957d-bebeb153ad2c + Enabled*: false + Control: + ResetSeconds: 3.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + eb5ed7aa88fb514bba1d3d103de25130: + EmitterName: explosionfire + ParticleLifetime: {X: 1.0, Y: 1.3} + DrawPriority: 5 + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: null + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ZOffset: 0.3 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 50.0, Y: 50.0, Z: 50.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 24a1fa27-5ec5-4eb6-bf4d-918005b0fb24:Textures/EXP001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: !UVBuilderFlipbook + XDivisions: 8 + YDivisions: 8 + StartingFrame: 8 + AnimationSpeed: 56 + ForceTexCoords: false + Spawners: + 165f1e4629d4e94dbd8b07106bba4094: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 10 + Initializers: + 970c04baec3d9446b004b8b395b4e55c: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 1.0, Y: 2.0} + 9954f868fd1b684bace8a8bcb5b40077: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.2, Y: 0.0, Z: -0.2} + PositionMax: {X: 0.2, Y: 0.0, Z: 0.2} + Interpolate: false + 2d3a6f731037fb4fabce65b7a4d9e699: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.5, Y: -0.2, Z: -0.5} + VelocityMax: {X: 0.5, Y: 0.5, Z: 0.5} + e72f33e3e3dbc34a97a52bb1518ad1d7: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + Updaters: + 8d180206ee158549a2761d2780549f34: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 27419d94c90c0148b5946367e7e9596c: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + TangentType: Linear + ad146079d1b1ae4b911db781ac5990b1: + Key: 0.5 + Value: {R: 0.3, G: 0.3, B: 0.3, A: 0.25} + TangentType: Linear + 3feb08a0affa9e439cfe3d30cfdd7f06: + Key: 1.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 5af7f013ba6565478604ad770eb2d79b: + EmitterName: explosionsmoke01 + ParticleLifetime: {X: 2.0, Y: 2.0} + DrawPriority: 10 + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 6c44bc7750f4f84dbc608cf07e7c2746: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 6a4fef6ba2a55e4197a3c969d09ff2ed: + Key: 0.1 + Value: 2.0 + TangentType: Linear + aa24e7b496ddf143b46f3fbb8993e7c5: + Key: 1.0 + Value: 3.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ZOffset: 0.3 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 30.0, Y: 25.0, Z: 20.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8ab2edfe-0ead-489f-a899-97a8112807f7:Textures/Smoke02 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 3896be20cd20964e8c2588e75eb168e3: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 5 + Initializers: + a610a3236a6e9a4881ab8e8cf3c173c0: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.15, Y: -0.15, Z: -0.15} + PositionMax: {X: 0.15, Y: 0.15, Z: 0.15} + Interpolate: false + 481a0c50e2cdd24db2aaee92ae6d123e: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.5, Y: -0.5, Z: -0.5} + VelocityMax: {X: 0.5, Y: 0.5, Z: 0.5} + Updaters: + c084855f635b064a9472035e0844893c: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 4a5fc68d580326498f44faec012fbef4: + Key: 0.0 + Value: {R: 1.0, G: 0.5, B: 0.199999988, A: 1.0} + TangentType: Linear + 28960ea9445c6e409b9c3cfc147cf310: + Key: 0.08 + Value: {R: 1.0, G: 0.5, B: 0.2, A: 0.01} + TangentType: Linear + 10753de7bd280b4a95fd92ce9ab074d2: + Key: 1.0 + Value: {R: 0.5, G: 0.2, B: 0.1, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 1410f2689a31a14c8019f0f7c9cfbf1a: + EmitterName: explosionsmoke02 + ParticleLifetime: {X: 1.0, Y: 2.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 3e866549c2cb6a4daacb90f0bf831502: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 71e90623a5ba0e4f94572b38dbac3796: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ZOffset: 0.3 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 1.0, Y: 1.0, Z: 1.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: fa1018e4-c74d-4495-9535-134f5a06e4cd:Textures/SMO001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: !UVBuilderFlipbook + XDivisions: 8 + YDivisions: 8 + StartingFrame: 0 + AnimationSpeed: 64 + ForceTexCoords: false + Spawners: + 47416577012cb541a89c0af842ed0a78: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 10 + Initializers: + 7a67faa43612c044bcb0ceafca3c1980: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.4, Y: -0.4, Z: -0.4} + VelocityMax: {X: 0.4, Y: 0.4, Z: 0.4} + 44b42d9fe0db524bb1608fa15c426c92: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + 31c1fff3ce08fd42b625e9620a75a410: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.3, Y: -0.3, Z: -0.3} + PositionMax: {X: 0.3, Y: 0.3, Z: 0.3} + Interpolate: false + Updaters: + d46f4ae2805dc94b93cda65de7715f54: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + e4e848b71c5d344a94c4d5f651bf4e83: + Key: 0.0 + Value: {R: 0.5, G: 0.25, B: 0.1, A: 1.0} + TangentType: Linear + 930d8a2b2d2445448cfb1729782f16d6: + Key: 0.5 + Value: {R: 0.5, G: 0.2, B: 0.1, A: 0.7} + TangentType: Linear + a045b91bb4837c42b4058100893916e5: + Key: 1.0 + Value: {R: 0.1, G: 0.1, B: 0.1, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + cfa68e0360198c449c8508789d2e698f: + EmitterName: sparks + ParticleLifetime: {X: 0.7, Y: 1.4} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + de2510d5fd44ff4aa2491947f98e2470: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 5e73e50106cc4541abf62d1aff2bed31: + Key: 1.0 + Value: 0.1 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 100.0, Y: 40.0, Z: 40.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 91119660-137e-4be0-bcb9-32f8aeee6ca8:Textures/dota + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 9c09411daafbac478a3a27646840aee4: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.5, Y: 0.5} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 50 + Initializers: + dfb1a4fa455fd5458c8758b302cc5011: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.5, Y: -0.5, Z: -0.5} + VelocityMax: {X: 0.5, Y: 0.5, Z: 0.5} + baa8a2a1459ce84f8be9542a80c9c9bd: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.1 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.1, Y: 0.2} + 3ad9c7d485619e4f9d8e2be0b7046bd2: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.6, Y: -0.6, Z: -0.6} + PositionMax: {X: 0.6, Y: 0.6, Z: 0.6} + Interpolate: false + 11906182baabda4aab60a117befd904b: !InitialColorSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ColorMin: {R: 1.0, G: 0.18187499, B: 0.0375000238, A: 1.0} + ColorMax: {R: 1.0, G: 0.3, B: 0.0, A: 1.0} + Updaters: + abe14565ea671640b23e478d067dd5d8: !UpdaterForceField + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + ScaleUniform: 1.0 + DisplayParticlePosition: true + FieldShape: !FieldShapeSphere + Radius: 1.0 + DisplayParticleRotation: true + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 1.0 + FalloffStart: 0.1 + StrengthOutside: 0.0 + FalloffEnd: 0.9 + EnergyConservation: 0.5 + ForceDirected: 0.3 + ForceVortex: 0.5 + ForceRepulsive: -0.3 + ForceFixed: {X: 0.0, Y: 0.0, Z: 0.0} + b5cedd623bce604099cb47871db40684: + EmitterName: explosionsmoke03 + ParticleLifetime: {X: 1.0, Y: 1.5} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 8a08f695e107b4488ca7a7991a7fb325: + Key: 0.0 + Value: 1.0 + TangentType: Linear + f6eb8711c87144438e694499547b1831: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 59b7b5ec9861c445b1b3558255d3325d: + Key: 0.0 + Value: 0.0 + TangentType: Linear + c03fea4e42fdd04c9d069925ad89de2e: + Key: 1.0 + Value: 30.0 + TangentType: Linear + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ZOffset: 0.3 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 50.0, Y: 11.0, Z: 0.5, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8dbe2382-769c-45fe-9604-98c5ae5c434c:Textures/SMO001_3 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 6b2ae1cdda05e44382e9b234b33baa99: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 5 + Initializers: + 9000f9d978246049b41d3c659be5bad3: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + a7aa65c6f62d6545a0df7b410f241198: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.2, Y: -0.2, Z: -0.2} + PositionMax: {X: 0.2, Y: 0.2, Z: 0.2} + Interpolate: false + e16f3ca37b2d5a4ca3d259ad28ee8c04: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.2, Y: -0.2, Z: -0.2} + VelocityMax: {X: 0.2, Y: 0.2, Z: 0.2} + Updaters: + d0cd4314fa204547a067c82f1617f51d: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 695a36ed6b47f64a80e5513d1a1331fa: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + aaed0ceebb6bc6408f2cb7eba355998a: + Key: 0.5 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.03} + TangentType: Linear + f57e4def19b7a04892597661194881b7: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + Base: + BasePartAsset: 22ae5484-30af-4633-8e35-a4f5a177188e:VFXPrefabs/vfx-Explosion + BasePartId: a561f593-5d34-4ddc-9c89-8328527c4ac0 + InstanceId: 796e46b2-df03-48a9-bf63-528ec2747d50 + - Entity: + Id: 41252b29-2cef-4be1-a299-cd7753ae3c39 + Name: AoESensor + Components: + ac73093b4d2b0f4d826a6a5289d8a14b: !TransformComponent + Id: 3b0973ac-2b4d-4d0f-826a-6a5289d8a14b + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e3f8f3e131acf6429a20b1a76b270364: !RigidbodyComponent + Id: e1f3f8e3-ac31-42f6-9a20-b1a76b270364 + CollisionGroup: SensorTrigger + CanCollideWith: CharacterFilter, CustomFilter1 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: true + IsKinematic: true + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + c5c76107cc40814aaaf5916c320752ea: !SphereColliderShapeDesc + Is2D: false + Radius: 3.0 + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + - Entity: + Id: 4e994a09-bc39-4ce3-bf26-6ffe729be6d7 + Name: Rocket + Components: + e393d469d9e4514fa3f4d71a295f59f7: !TransformComponent + Id: 69d493e3-e4d9-4f51-a3f4-d71a295f59f7 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 0.5, Y: 0.5, Z: 0.5} + Children: + 6b661f3316038143812695680e122055: ref!! 331f666b-0316-4381-8126-95680e122055 + 9fccf99aaa253a46b1fb78c5548ece50: ref!! 9af9cc9f-25aa-463a-b1fb-78c5548ece50 + 47e1e3777b86d94d9ab4b5fd804193f3: ref!! 77e3e147-867b-4dd9-9ab4-b5fd804193f3 + ac73093b4d2b0f4d826a6a5289d8a14b: ref!! 3b0973ac-2b4d-4d0f-826a-6a5289d8a14b + f6bee631a5db814aacbcffde11f39835: !ModelComponent + Id: 31e6bef6-dba5-4a81-acbc-ffde11f39835 + Model: e32d2bc5-e8cb-42be-b405-f2ffb60f15d4:Drones/Models/Rocket + Materials: {} + 5eb06964532095499e66d98114983e3b: !RigidbodyComponent + Id: 6469b05e-2053-4995-9e66-d98114983e3b + CanCollideWith: CustomFilter1, CustomFilter2 + CanSleep: false + Restitution: 0.0 + Friction: 0.0 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + IsKinematic: false + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: true + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 3535b360ecbedb44bbe56123464a6711: !CapsuleColliderShapeDesc + Length: 0.6 + Radius: 0.1 + LocalOffset: {X: 0.0, Y: 0.0, Z: -0.4} + LocalRotation: {X: 0.707106769, Y: 0.0, Z: 0.0, W: 0.707106769} + 3469331e939e68459056cb0657a71772: !Starbreach.Drones.RocketProjectile,Starbreach + Id: 1e336934-9e93-4568-9056-cb0657a71772 + Impulse: 15.0 + MaxLifeSpan: 5.0 + Rigidbody: ref!! 6469b05e-2053-4995-9e66-d98114983e3b + ExplosionParticle: ref!! 197eb039-f96f-4d9a-957d-bebeb153ad2c + SmokeParticle: ref!! 4712dcc5-f62b-44aa-a0c0-f71ee2806c59 + AoE: 2.0 + Damage: 30.0 + 52e25f7385bb5a4a9654687034b1f7d9: !AudioEmitterComponent + Id: 735fe252-bb85-4a5a-9654-687034b1f7d9 + Sounds: + 74eea7e40fab9441b964c8f9b4459889~Explode: 9be6b5db-16d5-44e4-87c7-4dadc8916cdb:Drones/Sounds/RocketImpact + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + - Entity: + Id: 5fe9744b-c262-45d9-b4e4-b68c977a8bd6 + Name: MuzzleFlash + Components: + 47e1e3777b86d94d9ab4b5fd804193f3: !TransformComponent + Id: 77e3e147-867b-4dd9-9ab4-b5fd804193f3 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + b032ff329051f9459ea74326a59d2c14: !ParticleSystemComponent + Id: 32ff32b0-5190-45f9-9ea7-4326a59d2c14 + Control: + ResetSeconds: 1.0 + Control: Stop + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 2.0 + ParticleSystem: + Settings: + WarmupTime: 0.1 + BoundingShape: !BoundingSpheretatic + Radius: 5.0 + Emitters: + 701902d6a1310b408c524a84a8c3356f: + MaxParticlesOverride: 5 + ParticleLifetime: {X: 0.5, Y: 0.75} + SortingPolicy: ByDepth + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: null + SamplerRotation: null + Material: !ParticleMaterialComputeColor + AlphaAdditive: 0.6 + ZOffset: 0.75 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: dcae3aac-de6d-4d07-a287-200dd2f4b064:Drones/Materials/Rocket/Explosion + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeFloat4 + Value: {X: 30.0, Y: 20.0, Z: 20.0, W: 1.0} + UVBuilder: !UVBuilderFlipbook + XDivisions: 8 + YDivisions: 8 + StartingFrame: 0 + AnimationSpeed: 32 + ForceTexCoords: false + Spawners: + 3c89feb4eccf924689904f9c9bdd83a9: !SpawnerPerSecond + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 0.05, Y: 0.07} + SpawnCount: 30.0 + Initializers: + f6fc5d675c4c0245a25afb80a590175a: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.4, Y: 1.0} + 6218223c1e00b74e8b0d7352edfb056a: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -120.0, Y: 120.0} + Updaters: + 7a87e22997111e41bb23af5fb0b632a2: !UpdaterForceField + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: true + FieldShape: null + DisplayParticleRotation: true + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 1.0 + FalloffStart: 0.1 + StrengthOutside: 1.0 + FalloffEnd: 0.9 + EnergyConservation: 1.0 + ForceDirected: 0.0 + ForceVortex: 0.0 + ForceRepulsive: 0.0 + ForceFixed: {X: 0.0, Y: 1.0, Z: 0.0} + - Entity: + Id: 687d6dfb-9f90-4fe6-bd6a-3701de61e933 + Name: vfx-Explosion + Components: + 6b661f3316038143812695680e122055: !TransformComponent + Id: 331f666b-0316-4381-8126-95680e122055 + Position: {X: 0.0, Y: 0.0, Z: 0.3} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + fa8f95b220b7df4e8f0019f95a5d1eef: ref!! b2958ffa-b720-4edf-8f00-19f95a5d1eef + - Entity: + Id: b41e541b-c7a2-46e0-ab43-b37d32999e26 + Name: SmokeTrail + Components: + 9fccf99aaa253a46b1fb78c5548ece50: !TransformComponent + Id: 9af9cc9f-25aa-463a-b1fb-78c5548ece50 + Position: {X: 0.0, Y: 0.0, Z: -0.764436} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c5dc12472bf6aa44a0c0f71ee2806c59: !ParticleSystemComponent + Id: 4712dcc5-f62b-44aa-a0c0-f71ee2806c59 + Control: + ResetSeconds: 5.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + 8666a7b86aa3864fa52f773044ce0e6f: + MaxParticlesOverride: 700 + ParticleLifetime: {X: 0.5, Y: 1.0} + SortingPolicy: ByDepth + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 7cfc477417de724b8bb1841434d3c224: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 0e32e53e873a234c9ac5384f1fdd309e: + Key: 0.25687167 + Value: 1.56682134 + TangentType: Linear + 3ee5825e1e3e934a82aa85722bebb86b: + Key: 0.505757 + Value: 1.44095123 + TangentType: Linear + 8a1e99f73dd25245a5b8b5822b9cc844: + Key: 0.5687529 + Value: 1.80367362 + TangentType: Linear + 86ce4d2c248baa419d23bfcfcd09c59a: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 2bfdce9f-f8f6-4e6c-a9fc-313ffdd34cb8:Drones/Materials/Rocket/Explosion_Grayscale + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeFloat4 + Value: {X: 2.0, Y: 2.0, Z: 2.0, W: 0.3} + UVBuilder: !UVBuilderFlipbook + XDivisions: 8 + YDivisions: 8 + StartingFrame: 0 + AnimationSpeed: 64 + ForceTexCoords: false + Spawners: + bb776de6777eb44b9647ae8d6424c217: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 2.0 + a32c4144afc1f04b94d798ee079bfed6: !SpawnerFromDistance + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 10.0 + Initializers: + f983ab1a5ba75c44a5bae0469cf3d2ac: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.5 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.1, Y: 0.2} + 65a28282a963df4691c3d9a2b50866dd: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.05, Y: 0.0, Z: 0.1} + PositionMax: {X: 0.05, Y: 0.0, Z: 0.05} + Interpolate: false + 3c5599c47612d34fa9cdc50400e44778: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 111 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.2, Y: -0.2, Z: -0.2} + VelocityMax: {X: 0.2, Y: 0.3, Z: 0.2} + 2ada1077aa631a4c83d32f64c434968c: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: 0.0, Y: 360.0} + Updaters: {} diff --git a/Starbreach/Assets/Shared/Drones/Prefabs/RocketDrone.xkprefab b/Starbreach/Assets/Shared/Drones/Prefabs/RocketDrone.xkprefab new file mode 100644 index 0000000..e1aeae0 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Prefabs/RocketDrone.xkprefab @@ -0,0 +1,386 @@ +!PrefabAsset +Id: aac84dfd-95cb-4a1f-8b00-00e61427e600 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! fb95e431-53b2-4f1b-b194-74a16c023eef + Parts: + - Entity: + Id: 67bf9668-b948-4e6a-8e59-ca5aebed6c09 + Name: Steam + Components: + c1ecc9674350ec47b258da4ab8ccf2ff: !TransformComponent + Id: 67c9ecc1-5043-47ec-b258-da4ab8ccf2ff + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8323bf5daa524c4fb5d833e41b08b32d: !ParticleSystemComponent + Id: 5dbf2383-52aa-4f4c-b5d8-33e41b08b32d + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape*: !BoundingSpheretatic + DebugDraw: true + Radius: 4.0 + Emitters: + 9a3a5271a4a0934d9467f6b095793379: + ParticleLifetime: {X: 0.5, Y: 1.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 0383cd796e839e4b9667af5d0fe71756: + Key: 0.0 + Value: 0.5 + TangentType: Linear + 3c3bf45d6e50e542871470a99fdfd9f3: + Key: 0.3 + Value: 0.7 + TangentType: Linear + aa6cd07e77ba1c4da6e836dff7b31695: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ZOffset: 0.2 + SoftEdgeDistance: 0.3 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 5.0, Y: 5.0, Z: 5.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8dbe2382-769c-45fe-9604-98c5ae5c434c:Textures/SMO001_3 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + fa12c9550522c24fa400d8ce84ef83a0: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 80.0 + Initializers: + 3994a4c9897c7049af5217d699e668a9: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.4, Y: 0.5} + 7fa5fb2d4e692c4aae5cda5ce081ca44: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.5, Y: 0.0, Z: -0.5} + PositionMax: {X: 0.5, Y: 0.0, Z: 0.5} + Interpolate: false + 3d037e54f2051d42a511f75567a2d5eb: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.05, Y: -3.0, Z: -0.05} + VelocityMax: {X: 0.05, Y: -3.0, Z: 0.05} + d4d112e1ace7b944828fa9278f3938e1: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + Updaters: + 226c0f6bc8f05441a0eb6454e9f89045: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 82276cc03e3f854b9dc5c50ece2e25f9: + Key: 0.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + e3927f1e92cb4d4f80c729960776e1ca: + Key: 0.2 + Value: {R: 0.5, G: 0.5, B: 0.5, A: 0.25} + TangentType: Linear + bb31441c3997734baf5d4b324f145da1: + Key: 1.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + a788c7989777534fbc50541f7eebe631: !UpdaterForceField + DebugDraw*: false + InheritPosition: true + Position: {X: 0.0, Y: -1.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: true + FieldShape: !FieldShapeCylinder + HalfHeight: 1.0 + Radius: 1.0 + DisplayParticleRotation: true + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 1.0 + FalloffStart: 0.1 + StrengthOutside: 0.0 + FalloffEnd: 0.9 + EnergyConservation: 1.0 + ForceDirected: 0.0 + ForceVortex: 0.0 + ForceRepulsive: 4.0 + ForceFixed: {X: 0.0, Y: 8.0, Z: 0.0} + Base: + BasePartAsset: de245d94-a1aa-4964-a26a-4b34f1d3bf2d:Drones/Prefabs/BasicDrone + BasePartId: 8247a6ff-4157-4f60-bdc7-4553ec153eb4 + InstanceId: cb59e38a-cd47-48ff-bda7-4442136498b9 + - Entity: + Id: 79e33d69-4e12-473f-bdc6-0c107e3244ad + Name: AlertZoneTrigger + Components: + 37741c7f7923b7e1ef2d73915a26c89b: !TransformComponent + Id: 43e8a561-77ca-417e-9229-3a641aae280e + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 557d0a5f00f82108bd3505f6850bc931: !RigidbodyComponent + Id: cdd4911b-f606-40c3-916b-4095af1cd5b5 + CollisionGroup: CustomFilter2 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: true + IsKinematic: true + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 65240769cedf3fbd99aca64e97ba4ae6: !SphereColliderShapeDesc + Is2D: false + Radius: 1.0 + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + Base: + BasePartAsset: de245d94-a1aa-4964-a26a-4b34f1d3bf2d:Drones/Prefabs/BasicDrone + BasePartId: a6312dce-9fee-4f86-ba71-f87362215025 + InstanceId: cb59e38a-cd47-48ff-bda7-4442136498b9 + - Entity: + Id: 92eafacb-5258-4c7b-8040-b4b6d2721043 + Name: ProjectileSpawnPoint + Components: + ef320192025c3947bb1adb1c533630a6: !TransformComponent + Id: 920132ef-5c02-4739-bb1a-db1c533630a6 + Position*: {X: 0.787716269, Y: -0.0260489322, Z: 1.45098568E-07} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d3a20669d1ecb74791449a8d599302ad: !ModelNodeLinkComponent + Id: 6906a2d3-ecd1-47b7-9144-9a8d599302ad + Target: null + NodeName: Bone_turret + f2be80b1286b9c4495a77d23ce7fc8b5: !AudioEmitterComponent + Id: c192be33-4b28-449c-95a7-7d23ce7fc8b4 + Sounds: + 483657d21a6056232b19c15d3e90763b*~Fire: 3de4a0e3-c642-4aa1-9801-7583f510ed44:Drones/Sounds/RocketFire + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + Base: + BasePartAsset: de245d94-a1aa-4964-a26a-4b34f1d3bf2d:Drones/Prefabs/BasicDrone + BasePartId: e7693fa5-f37b-4166-9558-1e4d73d4d27c + InstanceId: cb59e38a-cd47-48ff-bda7-4442136498b9 + - Entity: + Id: e84e5acd-b1a3-43f4-9066-a3247f4be1e3 + Name: vfx-Engine + Components: + 585f08a4c7e8554391f68583881993a2: !TransformComponent + Id: a4085f58-e8c7-4355-91f6-8583881993a2 + Position: {X: 0.0, Y: 0.2, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + c1ecc9674350ec47b258da4ab8ccf2ff: ref!! 67c9ecc1-5043-47ec-b258-da4ab8ccf2ff + c141928df7725e448d9ee2d635345744: !AudioEmitterComponent + Id: 8d9241c1-72f7-445e-8d9e-e2d635345744 + Sounds: + 210c4fe5f3b4c243942a23a4b3f26e49~Engine: 1d4673e5-cfbf-45eb-a34f-6d0c93074702:Drones/Sounds/Engine0 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + Base: + BasePartAsset: de245d94-a1aa-4964-a26a-4b34f1d3bf2d:Drones/Prefabs/BasicDrone + BasePartId: 8a314568-4602-4fca-85a3-248210fb9341 + InstanceId: cb59e38a-cd47-48ff-bda7-4442136498b9 + - Entity: + Id: ee748701-a6a0-4afd-b04c-ab208598af51 + Name: Model + Components: + 7dad9d7cd55ced4abbf2cb2bbbd70c1a: !TransformComponent + Id: 7c9dad7d-5cd5-4aed-bbf2-cb2bbbd70c1a + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + d719b2b339248f17748edd917f6bc9b2: ref!! 920132ef-5c02-4739-bb1a-db1c533630a6 + 827f49f9d5034b4acf8a8939110ddb8d: ref!! a4085f58-e8c7-4355-91f6-8583881993a2 + c212d189fcc79d46bbb83d892c85ce82: !ModelComponent + Id: 89d112c2-c7fc-469d-bbb8-3d892c85ce82 + Model: c1428709-fa5d-40a7-8e17-d2efb546bfef:Drones/Models/RocketDrone + Materials: + bff18010728c254c925bebf2f03be01b~0: 76636c37-5239-4cd3-ac8a-953e9e4d913e:Drones/Materials/Drone/DroneLower + bad52956f3fcbb45ac19f0a99abdf1d0~1: b91deeaf-43f6-434a-8400-22a1c6cb0447:Drones/Materials/Drone/DroneUpper + 8710bd731b44b446a6f9448a50fcd66b~2: b55d921d-b0d4-416f-85ad-2e1f468a1f7e:Drones/Materials/RocketDrone/RocketDrone + c123a40ea35064c3e5b77b9aaec447dc: !AnimationComponent + Id: 02b2b2f2-f679-407f-abf6-7abdf572fee5 + Animations: + a713ec907506354eb188aaba71f6039c*~Fire: b476b79e-b408-4d80-8be5-e243b0355168:Drones/Animations/RocketDroneFire + 8df1171e0223014899b19b71b409f1b3*~Idle: a980d9c8-1ff7-456c-87d6-312bb28c9a90:Drones/Animations/RocketDroneIdle + bcc277ca9a2ea247bf4ad6e427a787bf*~Move: b3ba9abe-76d5-4580-8531-d1d1de2fc1ef:Drones/Animations/RocketDroneFly + Base: + BasePartAsset: de245d94-a1aa-4964-a26a-4b34f1d3bf2d:Drones/Prefabs/BasicDrone + BasePartId: 95ac12fa-2dfc-4b15-96e7-ba5402e3cf12 + InstanceId: cb59e38a-cd47-48ff-bda7-4442136498b9 + - Entity: + Id: fb95e431-53b2-4f1b-b194-74a16c023eef + Name: Drone + Components: + bee1416b5e2d304389e20936f750b8b1: !TransformComponent + Id: 6b41e1be-2d5e-4330-89e2-0936f750b8b1 + Position*: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 68b08d6ef4327063ddfe04b67a961aae: ref!! 7c9dad7d-5cd5-4aed-bbf2-cb2bbbd70c1a + 963458a2c6c68927d38fec6a605500fa: ref!! 43e8a561-77ca-417e-9229-3a641aae280e + aed3e642d5d71f48bdf23181156082f9: !CharacterComponent + Id: 42e6d3ae-d7d5-481f-bdf2-3181156082f9 + CollisionGroup: CustomFilter3 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + FallSpeed: 10.0 + MaxSlope: {Radians: 0.7853982} + JumpSpeed: 5.0 + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + ColliderShapes: + d27547538ff5dd4eb72e1d385d4862bd: !CylinderColliderShapeDesc + Height: 2.0 + Radius: 1.0 + LocalOffset: {X: 0.0, Y: 1.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 827cf65eb5dca148adaa7ef5bc60df35: !AudioEmitterComponent + Id: 7ec67c82-dcb5-48a1-adcc-1ef5bc60df35 + Sounds: + 9f0d8aaa3fc06a44bae1c6cff7aeef58~Death: 4c9333d4-d4d5-4f61-9390-6b2e2602cf1b:Drones/Sounds/Death + 062488fbcb22f344b134f663d4a59ff9~Explosion: 936a2dbe-31df-40cc-836b-18793ffcea22:Drones/Sounds/Explosion + 762f069faf274a408a2da257ca0f4736~Hit0: 732e562c-622b-4fff-8282-58a7efa0b204:Drones/Sounds/Hit0 + ba953638f1e5db4d852167189517624d~Hit1: 973a4551-7cd6-4b8d-8a53-5a61ca9e461b:Drones/Sounds/Hit1 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + c7262ebf0d468f43ba11ca1221215c08: !NavigationComponent + Id: bf2e26c7-460d-438f-ba11-ca1221215c08 + NavigationMesh: null + GroupId: 665dbfaa-d91a-ee40-d176-a5eaed1268bc + 238e55139b0b248973a65b6ba75f8d54: !Starbreach.Drones.Drone,Starbreach + Id: e798d19d-28f6-4813-8a83-16840915a06d + Priority: 4000 + Weapon*: !Starbreach.Drones.MissileDroneWeapon,Starbreach + ProjectileSpawnPoint: ref!! 92eafacb-5258-4c7b-8040-b4b6d2721043 + ReloadTime: 2.0 + ArraySize: {X: 3, Y: 3} + ArrayExtent: {X: 0.5, Y: 0.4} + MaximumRange: 20.0 + ProjectilePrefab: 35063ac9-350d-4c96-b28a-28abc68b4214:Drones/Prefabs/Rocket + AnimationDelay: 0.12 + SpreadAngle: {Radians: 0.1} + ShootingRange: 15.0 + MaximumSpeed: 1.5 + RotationSpeed: 6.283185 + HeadRotationSpeed: 6.283185 + Model: ref!! 89d112c2-c7fc-469d-bbb8-3d892c85ce82 + DefaultMaterial: b91deeaf-43f6-434a-8400-22a1c6cb0447:Drones/Materials/Drone/DroneUpper + AlertedMaterial: 70cfa151-cffc-4cf1-a0d5-2ac4ac94e4a6:Drones/Materials/Drone/DroneUpper_Alerted + EngineParticle: ref!! 5dbf2383-52aa-4f4c-b5d8-33e41b08b32d + EngineAudioEmitter: ref!! 8d9241c1-72f7-445e-8d9e-e2d635345744 + DroneExplosionPrefab: d1f82cfd-900e-4757-958c-1dd35a4ec775:Drones/Prefabs/DroneExplosion + e3d3d4a2c9c5e7676d484a7a5a41d498: !Starbreach.Drones.PatrollingDroneController,Starbreach + Id: b329b495-07e7-4fd5-8a3e-403ef5f2a170 + PathToFollow: null + ChaseAlertZoneRadius: 20.0 + IdleAlertZoneRadius: 15.0 + AlertZoneTriggerEntity: ref!! 79e33d69-4e12-473f-bdc6-0c107e3244ad + Base: + BasePartAsset: de245d94-a1aa-4964-a26a-4b34f1d3bf2d:Drones/Prefabs/BasicDrone + BasePartId: b2772ba8-0ab8-4593-9055-09b88d5c4268 + InstanceId: cb59e38a-cd47-48ff-bda7-4442136498b9 diff --git a/Starbreach/Assets/Shared/Drones/Sounds/Death.xksnd b/Starbreach/Assets/Shared/Drones/Sounds/Death.xksnd new file mode 100644 index 0000000..be7d366 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Sounds/Death.xksnd @@ -0,0 +1,8 @@ +!Sound +Id: 4c9333d4-d4d5-4f61-9390-6b2e2602cf1b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Drones/Sounds/Death.wav +CompressionRatio: 15 +StreamFromDisk: false +Spatialized: true diff --git a/Starbreach/Assets/Shared/Drones/Sounds/Engine0.xksnd b/Starbreach/Assets/Shared/Drones/Sounds/Engine0.xksnd new file mode 100644 index 0000000..f484529 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Sounds/Engine0.xksnd @@ -0,0 +1,8 @@ +!Sound +Id: 1d4673e5-cfbf-45eb-a34f-6d0c93074702 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Drones/Sounds/Engine0.wav +CompressionRatio: 15 +StreamFromDisk: false +Spatialized: true diff --git a/Starbreach/Assets/Shared/Drones/Sounds/Engine1.xksnd b/Starbreach/Assets/Shared/Drones/Sounds/Engine1.xksnd new file mode 100644 index 0000000..6777f2f --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Sounds/Engine1.xksnd @@ -0,0 +1,8 @@ +!Sound +Id: 4a57c7d7-e8f9-418f-b490-2db486f46141 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Drones/Sounds/Engine1.wav +CompressionRatio: 15 +StreamFromDisk: false +Spatialized: true diff --git a/Starbreach/Assets/Shared/Drones/Sounds/Engine2.xksnd b/Starbreach/Assets/Shared/Drones/Sounds/Engine2.xksnd new file mode 100644 index 0000000..1e63a59 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Sounds/Engine2.xksnd @@ -0,0 +1,8 @@ +!Sound +Id: b3b57357-eedc-4cf3-9e6e-401102cf38ff +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Drones/Sounds/Engine2.wav +CompressionRatio: 15 +StreamFromDisk: false +Spatialized: true diff --git a/Starbreach/Assets/Shared/Drones/Sounds/Explosion.xksnd b/Starbreach/Assets/Shared/Drones/Sounds/Explosion.xksnd new file mode 100644 index 0000000..17b0d58 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Sounds/Explosion.xksnd @@ -0,0 +1,8 @@ +!Sound +Id: 936a2dbe-31df-40cc-836b-18793ffcea22 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Drones/Sounds/Explosion.wav +CompressionRatio: 15 +StreamFromDisk: false +Spatialized: true diff --git a/Starbreach/Assets/Shared/Drones/Sounds/Hit0.xksnd b/Starbreach/Assets/Shared/Drones/Sounds/Hit0.xksnd new file mode 100644 index 0000000..643e315 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Sounds/Hit0.xksnd @@ -0,0 +1,8 @@ +!Sound +Id: 732e562c-622b-4fff-8282-58a7efa0b204 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Drones/Sounds/Hit0.wav +CompressionRatio: 15 +StreamFromDisk: false +Spatialized: true diff --git a/Starbreach/Assets/Shared/Drones/Sounds/Hit1.xksnd b/Starbreach/Assets/Shared/Drones/Sounds/Hit1.xksnd new file mode 100644 index 0000000..272b609 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Sounds/Hit1.xksnd @@ -0,0 +1,8 @@ +!Sound +Id: 973a4551-7cd6-4b8d-8a53-5a61ca9e461b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Drones/Sounds/Hit1.wav +CompressionRatio: 15 +StreamFromDisk: false +Spatialized: true diff --git a/Starbreach/Assets/Shared/Drones/Sounds/LaserFire0.xksnd b/Starbreach/Assets/Shared/Drones/Sounds/LaserFire0.xksnd new file mode 100644 index 0000000..c76b3e0 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Sounds/LaserFire0.xksnd @@ -0,0 +1,8 @@ +!Sound +Id: bba0e27c-3fb8-4ce6-99be-bc45ea5e03a7 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Drones/Sounds/LaserFire0.wav +CompressionRatio: 15 +StreamFromDisk: false +Spatialized: true diff --git a/Starbreach/Assets/Shared/Drones/Sounds/LaserFire1.xksnd b/Starbreach/Assets/Shared/Drones/Sounds/LaserFire1.xksnd new file mode 100644 index 0000000..6a2172f --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Sounds/LaserFire1.xksnd @@ -0,0 +1,8 @@ +!Sound +Id: 10ee8241-9a28-45b6-aba4-00c4c39106b6 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Drones/Sounds/LaserFire1.wav +CompressionRatio: 15 +StreamFromDisk: false +Spatialized: true diff --git a/Starbreach/Assets/Shared/Drones/Sounds/LaserImpact0.xksnd b/Starbreach/Assets/Shared/Drones/Sounds/LaserImpact0.xksnd new file mode 100644 index 0000000..09fa521 --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Sounds/LaserImpact0.xksnd @@ -0,0 +1,8 @@ +!Sound +Id: e879b7ba-0a56-49cf-920a-c21c74026532 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Drones/Sounds/LaserImpact0.wav +CompressionRatio: 15 +StreamFromDisk: false +Spatialized: true diff --git a/Starbreach/Assets/Shared/Drones/Sounds/LaserImpact1.xksnd b/Starbreach/Assets/Shared/Drones/Sounds/LaserImpact1.xksnd new file mode 100644 index 0000000..21fa38b --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Sounds/LaserImpact1.xksnd @@ -0,0 +1,8 @@ +!Sound +Id: b28ea030-8e28-4676-8c2b-7a98fad37482 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Drones/Sounds/LaserImpact1.wav +CompressionRatio: 15 +StreamFromDisk: false +Spatialized: true diff --git a/Starbreach/Assets/Shared/Drones/Sounds/RocketFire.xksnd b/Starbreach/Assets/Shared/Drones/Sounds/RocketFire.xksnd new file mode 100644 index 0000000..beb46ec --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Sounds/RocketFire.xksnd @@ -0,0 +1,8 @@ +!Sound +Id: 3de4a0e3-c642-4aa1-9801-7583f510ed44 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Drones/Sounds/RocketFire.wav +CompressionRatio: 15 +StreamFromDisk: false +Spatialized: true diff --git a/Starbreach/Assets/Shared/Drones/Sounds/RocketImpact.xksnd b/Starbreach/Assets/Shared/Drones/Sounds/RocketImpact.xksnd new file mode 100644 index 0000000..f334e4f --- /dev/null +++ b/Starbreach/Assets/Shared/Drones/Sounds/RocketImpact.xksnd @@ -0,0 +1,8 @@ +!Sound +Id: 9be6b5db-16d5-44e4-87c7-4dadc8916cdb +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Drones/Sounds/RocketImpact.wav +CompressionRatio: 15 +StreamFromDisk: false +Spatialized: true diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks1_AO.xktex b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks1_AO.xktex new file mode 100644 index 0000000..5c0f33d --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks1_AO.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 9227f120-2e37-448b-9583-ca9c0eb4e6ae +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Background/FloatingRocks/F_Rock01_AO.png +Width: 25.0 +Height: 25.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks1_D.xktex b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks1_D.xktex new file mode 100644 index 0000000..34452e3 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks1_D.xktex @@ -0,0 +1,11 @@ +!Texture +Id: ed2494c9-7c9a-4c84-b7f4-6ab6fc44baeb +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Background/FloatingRocks/F_Rock01_D.png +Width: 25.0 +Height: 25.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} + Alpha: None + PremultiplyAlpha: false diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks1_G.xktex b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks1_G.xktex new file mode 100644 index 0000000..31b6cb4 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks1_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: a9396f20-0525-4b93-b33d-d691f94f0e9c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Background/FloatingRocks/F_Rock01_G.png +Width: 25.0 +Height: 25.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks1_M.xktex b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks1_M.xktex new file mode 100644 index 0000000..7d2e035 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks1_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 80291f56-5bb8-4cba-8fa1-2aae2df8a48b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Background/FloatingRocks/F_Rock01_M.png +Width: 25.0 +Height: 25.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks1_MT.xkmat b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks1_MT.xkmat new file mode 100644 index 0000000..a1dae81 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks1_MT.xkmat @@ -0,0 +1,62 @@ +!MaterialAsset +Id: 43c89a20-2b17-43a1-84c0-ef4dac24663e +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 21bad6f2-016d-452c-a1f1-175f45a4636e:Environment/Background/Materials/FloatingRocks/FloatingRocks1_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: a9396f20-0525-4b93-b33d-d691f94f0e9c:Environment/Background/Materials/FloatingRocks/FloatingRocks1_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: ed2494c9-7c9a-4c84-b7f4-6ab6fc44baeb:Environment/Background/Materials/FloatingRocks/FloatingRocks1_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 80291f56-5bb8-4cba-8fa1-2aae2df8a48b:Environment/Background/Materials/FloatingRocks/FloatingRocks1_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 9227f120-2e37-448b-9583-ca9c0eb4e6ae:Environment/Background/Materials/FloatingRocks/FloatingRocks1_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks1_N.xktex b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks1_N.xktex new file mode 100644 index 0000000..b2fd44b --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks1_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 21bad6f2-016d-452c-a1f1-175f45a4636e +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Background/FloatingRocks/F_Rock01_N.png +Width: 25.0 +Height: 25.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks1_NoMineral_D.xktex b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks1_NoMineral_D.xktex new file mode 100644 index 0000000..655c786 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks1_NoMineral_D.xktex @@ -0,0 +1,11 @@ +!Texture +Id: 8ab306de-2c6f-45cc-b3f9-08de0e7ee2bd +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Background/FloatingRocks/F_Rock01-NoMineral_D.png +Width: 25.0 +Height: 25.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} + Alpha: None + PremultiplyAlpha: false diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks1_NoMineral_G.xktex b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks1_NoMineral_G.xktex new file mode 100644 index 0000000..9184eb7 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks1_NoMineral_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 502a78e8-72c8-4e0e-8412-49eeaa1d2682 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Background/FloatingRocks/F_Rock01-NoMineral_G.png +Width: 25.0 +Height: 25.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks1_NoMineral_MT.xkmat b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks1_NoMineral_MT.xkmat new file mode 100644 index 0000000..1fe9b73 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks1_NoMineral_MT.xkmat @@ -0,0 +1,62 @@ +!MaterialAsset +Id: a7e7bae1-bf21-462a-bf1e-13d552996d15 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 21bad6f2-016d-452c-a1f1-175f45a4636e:Environment/Background/Materials/FloatingRocks/FloatingRocks1_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 502a78e8-72c8-4e0e-8412-49eeaa1d2682:Environment/Background/Materials/FloatingRocks/FloatingRocks1_NoMineral_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 8ab306de-2c6f-45cc-b3f9-08de0e7ee2bd:Environment/Background/Materials/FloatingRocks/FloatingRocks1_NoMineral_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 80291f56-5bb8-4cba-8fa1-2aae2df8a48b:Environment/Background/Materials/FloatingRocks/FloatingRocks1_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 9227f120-2e37-448b-9583-ca9c0eb4e6ae:Environment/Background/Materials/FloatingRocks/FloatingRocks1_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks2_AO.xktex b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks2_AO.xktex new file mode 100644 index 0000000..e63a91a --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks2_AO.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 9114fb96-55de-49d7-b20f-b9d83d958906 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Background/FloatingRocks/F_Rock02_AO.png +Width: 25.0 +Height: 25.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks2_D.xktex b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks2_D.xktex new file mode 100644 index 0000000..158dbca --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks2_D.xktex @@ -0,0 +1,11 @@ +!Texture +Id: 1f7a4e66-7f1e-4183-8feb-80b3040af4f1 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Background/FloatingRocks/F_Rock02_D.png +Width: 25.0 +Height: 25.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} + Alpha: None + PremultiplyAlpha: false diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks2_G.xktex b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks2_G.xktex new file mode 100644 index 0000000..e3698f5 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks2_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 4cc8c786-f607-4406-ad8f-4f1c6635f7a7 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Background/FloatingRocks/F_Rock02_G.png +Width: 25.0 +Height: 25.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks2_M.xktex b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks2_M.xktex new file mode 100644 index 0000000..12c917a --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks2_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 70d5aab5-8f22-4fd6-8ebd-7ff460d1f30c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Background/FloatingRocks/F_Rock02_M.png +Width: 25.0 +Height: 25.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks2_MT.xkmat b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks2_MT.xkmat new file mode 100644 index 0000000..38a6ffc --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks2_MT.xkmat @@ -0,0 +1,62 @@ +!MaterialAsset +Id: 5e421159-a1b2-48c2-ab09-d8c0ad383f08 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 4b1f7fd7-f55b-4f2d-b416-4c9c23ddb00d:Environment/Background/Materials/FloatingRocks/FloatingRocks2_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 4cc8c786-f607-4406-ad8f-4f1c6635f7a7:Environment/Background/Materials/FloatingRocks/FloatingRocks2_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 1f7a4e66-7f1e-4183-8feb-80b3040af4f1:Environment/Background/Materials/FloatingRocks/FloatingRocks2_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 70d5aab5-8f22-4fd6-8ebd-7ff460d1f30c:Environment/Background/Materials/FloatingRocks/FloatingRocks2_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 9114fb96-55de-49d7-b20f-b9d83d958906:Environment/Background/Materials/FloatingRocks/FloatingRocks2_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks2_N.xktex b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks2_N.xktex new file mode 100644 index 0000000..b56e021 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks2_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 4b1f7fd7-f55b-4f2d-b416-4c9c23ddb00d +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Background/FloatingRocks/F_Rock02_N.png +Width: 25.0 +Height: 25.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks2_NoMineral_D.xktex b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks2_NoMineral_D.xktex new file mode 100644 index 0000000..505b6ee --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks2_NoMineral_D.xktex @@ -0,0 +1,11 @@ +!Texture +Id: 03f95295-f448-41b6-9dbf-179d7d6d8f5a +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Background/FloatingRocks/F_Rock02-NoMineral_D.png +Width: 25.0 +Height: 25.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} + Alpha: None + PremultiplyAlpha: false diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks2_NoMineral_G.xktex b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks2_NoMineral_G.xktex new file mode 100644 index 0000000..7c4d996 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks2_NoMineral_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 84b42ff3-f988-4f3e-9dc6-676f8da2972c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Background/FloatingRocks/F_Rock02-NoMineral_G.png +Width: 25.0 +Height: 25.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks2_NoMineral_MT.xkmat b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks2_NoMineral_MT.xkmat new file mode 100644 index 0000000..fd56b3e --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/FloatingRocks/FloatingRocks2_NoMineral_MT.xkmat @@ -0,0 +1,62 @@ +!MaterialAsset +Id: 747dcb65-a432-45d6-a55d-80d3417ccfdf +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 4b1f7fd7-f55b-4f2d-b416-4c9c23ddb00d:Environment/Background/Materials/FloatingRocks/FloatingRocks2_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 84b42ff3-f988-4f3e-9dc6-676f8da2972c:Environment/Background/Materials/FloatingRocks/FloatingRocks2_NoMineral_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 03f95295-f448-41b6-9dbf-179d7d6d8f5a:Environment/Background/Materials/FloatingRocks/FloatingRocks2_NoMineral_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 70d5aab5-8f22-4fd6-8ebd-7ff460d1f30c:Environment/Background/Materials/FloatingRocks/FloatingRocks2_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 9114fb96-55de-49d7-b20f-b9d83d958906:Environment/Background/Materials/FloatingRocks/FloatingRocks2_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/Island1/Island1_AO.xktex b/Starbreach/Assets/Shared/Environment/Background/Materials/Island1/Island1_AO.xktex new file mode 100644 index 0000000..1823f73 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/Island1/Island1_AO.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 5c1afd6c-d9c7-462a-a100-9dc2fa99badb +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Background/Island1/Isl1_AO.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/Island1/Island1_D.xktex b/Starbreach/Assets/Shared/Environment/Background/Materials/Island1/Island1_D.xktex new file mode 100644 index 0000000..7af2244 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/Island1/Island1_D.xktex @@ -0,0 +1,11 @@ +!Texture +Id: 0077ca81-7974-46b8-bcb0-d2f32022f312 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Background/Island1/Isl1_D.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} + Alpha: None + PremultiplyAlpha: false diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/Island1/Island1_G.xktex b/Starbreach/Assets/Shared/Environment/Background/Materials/Island1/Island1_G.xktex new file mode 100644 index 0000000..097c27e --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/Island1/Island1_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: f838ce9f-ff13-4a4d-85de-84de031f9829 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Background/Island1/Isl1_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/Island1/Island1_M.xktex b/Starbreach/Assets/Shared/Environment/Background/Materials/Island1/Island1_M.xktex new file mode 100644 index 0000000..ca5a1b7 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/Island1/Island1_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: a2039d8b-ba67-49fa-a46e-51766ee65d9e +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Background/Island1/Isl1_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/Island1/Island1_MT.xkmat b/Starbreach/Assets/Shared/Environment/Background/Materials/Island1/Island1_MT.xkmat new file mode 100644 index 0000000..a9d8885 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/Island1/Island1_MT.xkmat @@ -0,0 +1,62 @@ +!MaterialAsset +Id: aef50aaa-a5bd-4f20-a455-4a7da1f2f02a +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 6eb9fd67-a52f-44da-b14b-127336fb3124:Environment/Background/Materials/Island1/Island1_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: f838ce9f-ff13-4a4d-85de-84de031f9829:Environment/Background/Materials/Island1/Island1_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 0077ca81-7974-46b8-bcb0-d2f32022f312:Environment/Background/Materials/Island1/Island1_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: a2039d8b-ba67-49fa-a46e-51766ee65d9e:Environment/Background/Materials/Island1/Island1_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 5c1afd6c-d9c7-462a-a100-9dc2fa99badb:Environment/Background/Materials/Island1/Island1_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/Island1/Island1_N.xktex b/Starbreach/Assets/Shared/Environment/Background/Materials/Island1/Island1_N.xktex new file mode 100644 index 0000000..17a80b6 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/Island1/Island1_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 6eb9fd67-a52f-44da-b14b-127336fb3124 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Background/Island1/Isl1_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/Island2/Island2_AO.xktex b/Starbreach/Assets/Shared/Environment/Background/Materials/Island2/Island2_AO.xktex new file mode 100644 index 0000000..4e6bfcc --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/Island2/Island2_AO.xktex @@ -0,0 +1,8 @@ +!Texture +Id: edef3800-0015-4dc2-aaad-c3bb26e8cf68 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Background/Island2/Isl2_AO.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/Island2/Island2_D.xktex b/Starbreach/Assets/Shared/Environment/Background/Materials/Island2/Island2_D.xktex new file mode 100644 index 0000000..48a7c78 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/Island2/Island2_D.xktex @@ -0,0 +1,11 @@ +!Texture +Id: 5339889e-8072-4dd7-8b50-03c37e71ad8e +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Background/Island2/Isl2_D.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} + Alpha: None + PremultiplyAlpha: false diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/Island2/Island2_G.xktex b/Starbreach/Assets/Shared/Environment/Background/Materials/Island2/Island2_G.xktex new file mode 100644 index 0000000..a08ce15 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/Island2/Island2_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 2be6e2d5-be89-460f-a19f-cd21d696a825 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Background/Island2/Isl2_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/Island2/Island2_M.xktex b/Starbreach/Assets/Shared/Environment/Background/Materials/Island2/Island2_M.xktex new file mode 100644 index 0000000..13b1e98 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/Island2/Island2_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 45d7e7f5-2f9e-4fd7-8945-93726bee5202 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Background/Island2/Isl2_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/Island2/Island2_MT.xkmat b/Starbreach/Assets/Shared/Environment/Background/Materials/Island2/Island2_MT.xkmat new file mode 100644 index 0000000..4839298 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/Island2/Island2_MT.xkmat @@ -0,0 +1,62 @@ +!MaterialAsset +Id: edbf420d-72db-41f5-82ad-b0d0a822751e +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 08365f28-e2b1-47b2-b55e-d332e79e38fd:Environment/Background/Materials/Island2/Island2_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 2be6e2d5-be89-460f-a19f-cd21d696a825:Environment/Background/Materials/Island2/Island2_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 5339889e-8072-4dd7-8b50-03c37e71ad8e:Environment/Background/Materials/Island2/Island2_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 45d7e7f5-2f9e-4fd7-8945-93726bee5202:Environment/Background/Materials/Island2/Island2_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: edef3800-0015-4dc2-aaad-c3bb26e8cf68:Environment/Background/Materials/Island2/Island2_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/Island2/Island2_N.xktex b/Starbreach/Assets/Shared/Environment/Background/Materials/Island2/Island2_N.xktex new file mode 100644 index 0000000..a8305e8 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/Island2/Island2_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 08365f28-e2b1-47b2-b55e-d332e79e38fd +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Background/Island2/Isl2_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/PlatformRocks/PlatformRocks_AO.xktex b/Starbreach/Assets/Shared/Environment/Background/Materials/PlatformRocks/PlatformRocks_AO.xktex new file mode 100644 index 0000000..2458317 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/PlatformRocks/PlatformRocks_AO.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 8daa906c-8f96-4480-b5d8-f2dc062d2ea8 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Background/PlatformRocks/Rocks_AO.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/PlatformRocks/PlatformRocks_D.xktex b/Starbreach/Assets/Shared/Environment/Background/Materials/PlatformRocks/PlatformRocks_D.xktex new file mode 100644 index 0000000..ec6b958 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/PlatformRocks/PlatformRocks_D.xktex @@ -0,0 +1,11 @@ +!Texture +Id: 58189bad-3b40-48e9-80fd-75cc6fb4790d +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Background/PlatformRocks/Rocks_D.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} + Alpha: None + PremultiplyAlpha: false diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/PlatformRocks/PlatformRocks_G.xktex b/Starbreach/Assets/Shared/Environment/Background/Materials/PlatformRocks/PlatformRocks_G.xktex new file mode 100644 index 0000000..c6f2d16 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/PlatformRocks/PlatformRocks_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 6a30df68-2b0f-489e-abe6-4862e9427a9f +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Background/PlatformRocks/Rocks_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/PlatformRocks/PlatformRocks_MT.xkmat b/Starbreach/Assets/Shared/Environment/Background/Materials/PlatformRocks/PlatformRocks_MT.xkmat new file mode 100644 index 0000000..416f630 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/PlatformRocks/PlatformRocks_MT.xkmat @@ -0,0 +1,58 @@ +!MaterialAsset +Id: 51cc3f79-0eb8-4713-957f-e1d9a533845f +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 802e6c0b-c519-4226-b2d6-5c24f677ce77:Environment/Background/Materials/PlatformRocks/PlatformRocks_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 6a30df68-2b0f-489e-abe6-4862e9427a9f:Environment/Background/Materials/PlatformRocks/PlatformRocks_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 58189bad-3b40-48e9-80fd-75cc6fb4790d:Environment/Background/Materials/PlatformRocks/PlatformRocks_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeFloat + Value: 0.0 + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 8daa906c-8f96-4480-b5d8-f2dc062d2ea8:Environment/Background/Materials/PlatformRocks/PlatformRocks_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Materials/PlatformRocks/PlatformRocks_N.xktex b/Starbreach/Assets/Shared/Environment/Background/Materials/PlatformRocks/PlatformRocks_N.xktex new file mode 100644 index 0000000..53438a3 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Materials/PlatformRocks/PlatformRocks_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 802e6c0b-c519-4226-b2d6-5c24f677ce77 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Background/PlatformRocks/Rocks_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Models/FloatingRock1_1.xkm3d b/Starbreach/Assets/Shared/Environment/Background/Models/FloatingRock1_1.xkm3d new file mode 100644 index 0000000..373834f --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Models/FloatingRock1_1.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: b5ed7a0b-a015-43af-bd56-7d0964e9eb9a +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Background/FloatingRocks/FloatingRock1_1.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + e5bf31121760101b274e06d4bff6b139: + Name: _rocks_0102 + MaterialInstance: + Material: a7e7bae1-bf21-462a-bf1e-13d552996d15:Environment/Background/Materials/FloatingRocks/FloatingRocks1_NoMineral_MT +Skeleton: null +~SourceHashes: + 0f727234926cd71dd5e7e4b9ab0a229b~../../../../../Resources/Background/FloatingRocks/FloatingRock1_1.FBX: fd263d630172c8f2ac3169327d6ba39b diff --git a/Starbreach/Assets/Shared/Environment/Background/Models/FloatingRock1_2.xkm3d b/Starbreach/Assets/Shared/Environment/Background/Models/FloatingRock1_2.xkm3d new file mode 100644 index 0000000..d57b38b --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Models/FloatingRock1_2.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 6a331abf-6ede-4170-9bb4-ae1d6e7896ea +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Background/FloatingRocks/FloatingRock1_2.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 67889d8aac0dd39e54900a0500db4919: + Name: _rocks_0102 + MaterialInstance: + Material: a7e7bae1-bf21-462a-bf1e-13d552996d15:Environment/Background/Materials/FloatingRocks/FloatingRocks1_NoMineral_MT +Skeleton: null +~SourceHashes: + 48ea602bf5e677ec9a3c32960d30b8fb~../../../../../Resources/Background/FloatingRocks/FloatingRock1_2.FBX: 224f6142117192644629c37a91143d64 diff --git a/Starbreach/Assets/Shared/Environment/Background/Models/FloatingRock1_3.xkm3d b/Starbreach/Assets/Shared/Environment/Background/Models/FloatingRock1_3.xkm3d new file mode 100644 index 0000000..bdba289 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Models/FloatingRock1_3.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 9cefcfc9-d76f-4a63-9224-7cad03209790 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Background/FloatingRocks/FloatingRock1_3.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 447f548263e799a3abd78f0f82c81344: + Name: _rocks_0102 + MaterialInstance: + Material: a7e7bae1-bf21-462a-bf1e-13d552996d15:Environment/Background/Materials/FloatingRocks/FloatingRocks1_NoMineral_MT +Skeleton: null +~SourceHashes: + f532ac5ff6ca4015b86312a94c29a00a~../../../../../Resources/Background/FloatingRocks/FloatingRock1_3.FBX: e1db016905c635f80e692dcde251e58a diff --git a/Starbreach/Assets/Shared/Environment/Background/Models/FloatingRock2_1.xkm3d b/Starbreach/Assets/Shared/Environment/Background/Models/FloatingRock2_1.xkm3d new file mode 100644 index 0000000..c4e475e --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Models/FloatingRock2_1.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: d023b593-355e-4956-b6c2-76cc69aa956c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Background/FloatingRocks/FloatingRock2_1.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + b00726b289d88325c3cca4a8dc027342: + Name: FloatingRocks2 + MaterialInstance: + Material: 747dcb65-a432-45d6-a55d-80d3417ccfdf:Environment/Background/Materials/FloatingRocks/FloatingRocks2_NoMineral_MT +Skeleton: null +~SourceHashes: + 7dd468d849811045ddd6f25d2e7f407b~../../../../../Resources/Background/FloatingRocks/FloatingRock2_1.FBX: f348200066196da784f8f82d4fabc9be diff --git a/Starbreach/Assets/Shared/Environment/Background/Models/FloatingRock2_2.xkm3d b/Starbreach/Assets/Shared/Environment/Background/Models/FloatingRock2_2.xkm3d new file mode 100644 index 0000000..e311303 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Models/FloatingRock2_2.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 4a2f9278-e0c6-44fb-9c01-be4b1d8df07d +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Background/FloatingRocks/FloatingRock2_2.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 8849faabf01c485cc73ede89a6c6a6f5: + Name: FloatingRocks2 + MaterialInstance: + Material: 747dcb65-a432-45d6-a55d-80d3417ccfdf:Environment/Background/Materials/FloatingRocks/FloatingRocks2_NoMineral_MT +Skeleton: null +~SourceHashes: + bb06ca16073698403b8e6e9877ce6ea5~../../../../../Resources/Background/FloatingRocks/FloatingRock2_2.FBX: 04aadf4b2690a96eaa93842d81ea9c55 diff --git a/Starbreach/Assets/Shared/Environment/Background/Models/FloatingRock2_3.xkm3d b/Starbreach/Assets/Shared/Environment/Background/Models/FloatingRock2_3.xkm3d new file mode 100644 index 0000000..0bedf5b --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Models/FloatingRock2_3.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: e1555e64-a386-4bc0-93b5-f9d0a4ec9051 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Background/FloatingRocks/FloatingRock2_3.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 80d5e5c4c8ee2172f9d3ea704d65fd39: + Name: FloatingRocks2 + MaterialInstance: + Material: 747dcb65-a432-45d6-a55d-80d3417ccfdf:Environment/Background/Materials/FloatingRocks/FloatingRocks2_NoMineral_MT +Skeleton: null +~SourceHashes: + 72f37d8027d0e225df06d7a3137ff395~../../../../../Resources/Background/FloatingRocks/FloatingRock2_3.FBX: 010028709f216ca91cfe4399778f7fab diff --git a/Starbreach/Assets/Shared/Environment/Background/Models/Isl_1.xkm3d b/Starbreach/Assets/Shared/Environment/Background/Models/Isl_1.xkm3d new file mode 100644 index 0000000..7da4958 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Models/Isl_1.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: c4f3ea64-37ea-4e8a-bac9-101665acd80c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Background/Island1/Isl_1.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 3e7a3c829673451e5bbe9137da0da20c: + Name: scene_material1 + MaterialInstance: + Material: aef50aaa-a5bd-4f20-a455-4a7da1f2f02a:Environment/Background/Materials/Island1/Island1_MT +Skeleton: null +~SourceHashes: + da6c7eae510de0b18ecbf530dc75422a~../../../../../Resources/Background/Island1/Isl_1.fbx: 50ef61616a293d0819f565c221605513 diff --git a/Starbreach/Assets/Shared/Environment/Background/Models/Isl_2.xkm3d b/Starbreach/Assets/Shared/Environment/Background/Models/Isl_2.xkm3d new file mode 100644 index 0000000..c3482d0 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Models/Isl_2.xkm3d @@ -0,0 +1,22 @@ +!Model +Id: ec7a2cf2-8f68-4ea4-ae3b-f411798da431 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Background/Island2/Isl_2.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 889e0106f87fdabdda58d992df7751f3: + Name: Scene_Material + MaterialInstance: + Material: edbf420d-72db-41f5-82ad-b0d0a822751e:Environment/Background/Materials/Island2/Island2_MT + 401444070169d1e23fc764e058a84061: + Name: Isl_2_scene_material + MaterialInstance: + Material: edbf420d-72db-41f5-82ad-b0d0a822751e:Environment/Background/Materials/Island2/Island2_MT + 0cb49060bd0f09d88063f0e38c80dff9: + Name: Isl_add1_scene_material + MaterialInstance: + Material: edbf420d-72db-41f5-82ad-b0d0a822751e:Environment/Background/Materials/Island2/Island2_MT +Skeleton: null +~SourceHashes: + cc3a02a8fa0501598806ef9e558bbf71~../../../../../Resources/Background/Island2/Isl_2.fbx: bb12c54e9ea931325a1862cab64a94c9 diff --git a/Starbreach/Assets/Shared/Environment/Background/Models/PlatformRocks1.xkm3d b/Starbreach/Assets/Shared/Environment/Background/Models/PlatformRocks1.xkm3d new file mode 100644 index 0000000..9aaa8c3 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Models/PlatformRocks1.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Background/PlatformRocks/RockF_A_001.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + fb4f517b02c150fe302c1158c0e6d8e0: + Name: Rocks_Floating + MaterialInstance: + Material: 51cc3f79-0eb8-4713-957f-e1d9a533845f:Environment/Background/Materials/PlatformRocks/PlatformRocks_MT +Skeleton: null +~SourceHashes: + eff96287cd3f12df7d0c7493e9bb6253~../../../../../Resources/Background/PlatformRocks/RockF_A_001.FBX: a6296dc23da777a5815d46239dc73522 diff --git a/Starbreach/Assets/Shared/Environment/Background/Models/PlatformRocks2.xkm3d b/Starbreach/Assets/Shared/Environment/Background/Models/PlatformRocks2.xkm3d new file mode 100644 index 0000000..990f16b --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Models/PlatformRocks2.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Background/PlatformRocks/RockF_B_001.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + ab4956d83d893e5a151f8d94eea285b2: + Name: Rocks_Floating + MaterialInstance: + Material: 51cc3f79-0eb8-4713-957f-e1d9a533845f:Environment/Background/Materials/PlatformRocks/PlatformRocks_MT +Skeleton: null +~SourceHashes: + 71d1ccd16fcb8a1963158e6b28d8e1a0~../../../../../Resources/Background/PlatformRocks/RockF_B_001.FBX: 7f57571492541b19a7b1e172219b2e20 diff --git a/Starbreach/Assets/Shared/Environment/Background/Models/PlatformRocks3.xkm3d b/Starbreach/Assets/Shared/Environment/Background/Models/PlatformRocks3.xkm3d new file mode 100644 index 0000000..6f07869 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Models/PlatformRocks3.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 28b26550-fec0-4807-b432-3a95fc153485 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Background/PlatformRocks/RockF_C_001.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 3ea6bb5f19fdf03e3a9cb455e9ac36af: + Name: Rocks_Floating + MaterialInstance: + Material: 51cc3f79-0eb8-4713-957f-e1d9a533845f:Environment/Background/Materials/PlatformRocks/PlatformRocks_MT +Skeleton: null +~SourceHashes: + 8b6b2f4ffe34c4a6aa70e9a3e631bf8a~../../../../../Resources/Background/PlatformRocks/RockF_C_001.FBX: de7eb8ef3de8426221d6f986245e291e diff --git a/Starbreach/Assets/Shared/Environment/Background/Models/PlatformRocks4.xkm3d b/Starbreach/Assets/Shared/Environment/Background/Models/PlatformRocks4.xkm3d new file mode 100644 index 0000000..33117c2 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Models/PlatformRocks4.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 7c51860b-b28e-490f-90d1-b33e9167966f +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Background/PlatformRocks/RockF_D_001.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 0b93429cd6f8b140bb92347ad2fefa84: + Name: Rocks_Floating + MaterialInstance: + Material: 51cc3f79-0eb8-4713-957f-e1d9a533845f:Environment/Background/Materials/PlatformRocks/PlatformRocks_MT +Skeleton: null +~SourceHashes: + e970ff16e55d2621cf5fdff1451cc9e1~../../../../../Resources/Background/PlatformRocks/RockF_D_001.FBX: 0a24cf5f393121953e0a5965eda1261f diff --git a/Starbreach/Assets/Shared/Environment/Background/PrefabModels/Island1.xkprefabmodel b/Starbreach/Assets/Shared/Environment/Background/PrefabModels/Island1.xkprefabmodel new file mode 100644 index 0000000..0f73944 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/PrefabModels/Island1.xkprefabmodel @@ -0,0 +1,6 @@ +!PrefabModelAsset +Id: f9ad343e-0f57-4c41-b3c0-bfc7ed28c9d7 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Materials: {} +Prefab: 3b073657-9884-4200-8c07-b279d681ca21:Environment/Background/Prefabs/Island1 diff --git a/Starbreach/Assets/Shared/Environment/Background/PrefabModels/Island2.xkprefabmodel b/Starbreach/Assets/Shared/Environment/Background/PrefabModels/Island2.xkprefabmodel new file mode 100644 index 0000000..1dc7f44 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/PrefabModels/Island2.xkprefabmodel @@ -0,0 +1,6 @@ +!PrefabModelAsset +Id: 1cce311d-450b-4ec4-bff0-de67b74dfac0 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Materials: {} +Prefab: b0a5d699-fc88-44d9-a98e-813f5acb3225:Environment/Background/Prefabs/Island2 diff --git a/Starbreach/Assets/Shared/Environment/Background/Prefabs/FloatingRocks1_1.xkprefab b/Starbreach/Assets/Shared/Environment/Background/Prefabs/FloatingRocks1_1.xkprefab new file mode 100644 index 0000000..48e6bda --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Prefabs/FloatingRocks1_1.xkprefab @@ -0,0 +1,22 @@ +!PrefabAsset +Id: 29d13e5f-59dc-48d3-90fd-5b98939827d3 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 4316bcaa-2539-4f3a-87a7-a35e248c93c5 + Parts: + - Entity: + Id: 4316bcaa-2539-4f3a-87a7-a35e248c93c5 + Name: FloatingRock1_1 + Components: + 4eb1e899f0420cb437485b0c397af954: !TransformComponent + Id: 6e10900a-bcbb-46eb-b404-8108125abd8c + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8178b4303bd1ecfde7f3858f4b9e328d: !ModelComponent + Id: 99182495-59c6-45e2-8121-1894c9078fc0 + Model: b5ed7a0b-a015-43af-bd56-7d0964e9eb9a:Environment/Background/Models/FloatingRock1_1 + Materials: {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Prefabs/FloatingRocks1_2.xkprefab b/Starbreach/Assets/Shared/Environment/Background/Prefabs/FloatingRocks1_2.xkprefab new file mode 100644 index 0000000..ee2905c --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Prefabs/FloatingRocks1_2.xkprefab @@ -0,0 +1,22 @@ +!PrefabAsset +Id: cb48cca7-c22e-4485-a6e6-07aa698fbf3e +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 9b604468-8d1b-431d-adf9-79f53eaab11f + Parts: + - Entity: + Id: 9b604468-8d1b-431d-adf9-79f53eaab11f + Name: FloatingRock1_2 + Components: + f7d435da00a4f0db8567f052b2dd775b: !TransformComponent + Id: 38a9473b-977f-4957-8917-987d786d8c0b + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + dfee743743e4c3abf742a67210a57784: !ModelComponent + Id: 23bd3ced-b99e-464d-92ee-edfb93f90852 + Model: 6a331abf-6ede-4170-9bb4-ae1d6e7896ea:Environment/Background/Models/FloatingRock1_2 + Materials: {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Prefabs/FloatingRocks1_3.xkprefab b/Starbreach/Assets/Shared/Environment/Background/Prefabs/FloatingRocks1_3.xkprefab new file mode 100644 index 0000000..3bb8259 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Prefabs/FloatingRocks1_3.xkprefab @@ -0,0 +1,22 @@ +!PrefabAsset +Id: 9316ed7f-c095-4823-b523-c529a4056673 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 7e626d1c-b6a5-4e91-8a1c-5e2d92a77ee9 + Parts: + - Entity: + Id: 7e626d1c-b6a5-4e91-8a1c-5e2d92a77ee9 + Name: FloatingRock1_3 + Components: + 9f77ddc721fcf761064fcaea91cd58c2: !TransformComponent + Id: a67666ce-ea5a-43a5-9530-5cf779f49738 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 003b6267d30ac19d0238e9954e151363: !ModelComponent + Id: 2debad09-a49e-4a76-8de3-6d0e17375f6d + Model: 9cefcfc9-d76f-4a63-9224-7cad03209790:Environment/Background/Models/FloatingRock1_3 + Materials: {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Prefabs/FloatingRocks2_1.xkprefab b/Starbreach/Assets/Shared/Environment/Background/Prefabs/FloatingRocks2_1.xkprefab new file mode 100644 index 0000000..96fd3a3 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Prefabs/FloatingRocks2_1.xkprefab @@ -0,0 +1,22 @@ +!PrefabAsset +Id: cd1fe62d-b637-416f-85bb-1b017bd85424 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! d8012c4c-375c-4001-ba06-8834ca57a8a6 + Parts: + - Entity: + Id: d8012c4c-375c-4001-ba06-8834ca57a8a6 + Name: FloatingRock2_1 + Components: + e1c1c29771d528372e8df9fe0ec258df: !TransformComponent + Id: 61afd33f-c6f0-43dc-b919-bc5e0c76e4bf + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + cd6c3efe59d092dd1a8bf308dac643d1: !ModelComponent + Id: 5d866350-f32e-49de-b32f-af980c502271 + Model: d023b593-355e-4956-b6c2-76cc69aa956c:Environment/Background/Models/FloatingRock2_1 + Materials: {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Prefabs/FloatingRocks2_2.xkprefab b/Starbreach/Assets/Shared/Environment/Background/Prefabs/FloatingRocks2_2.xkprefab new file mode 100644 index 0000000..7de5f75 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Prefabs/FloatingRocks2_2.xkprefab @@ -0,0 +1,22 @@ +!PrefabAsset +Id: 015d5639-6ba5-4172-a09e-83d0c9decb1f +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! acd14fa1-66b9-41ba-a956-d373b2a8694b + Parts: + - Entity: + Id: acd14fa1-66b9-41ba-a956-d373b2a8694b + Name: FloatingRock2_2 + Components: + 5e4b0e71b6336787d1cda626d11089be: !TransformComponent + Id: e3ef3a6e-07be-46ac-9f70-d535c4c686dc + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + be4998ad68c8459667a7284a8d99157b: !ModelComponent + Id: c920169b-f442-48ec-8d02-5c58ed670fe0 + Model: 4a2f9278-e0c6-44fb-9c01-be4b1d8df07d:Environment/Background/Models/FloatingRock2_2 + Materials: {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Prefabs/FloatingRocks2_3.xkprefab b/Starbreach/Assets/Shared/Environment/Background/Prefabs/FloatingRocks2_3.xkprefab new file mode 100644 index 0000000..cbce235 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Prefabs/FloatingRocks2_3.xkprefab @@ -0,0 +1,22 @@ +!PrefabAsset +Id: 84e0f4f9-ff6e-40e3-9790-b150bb5dcaee +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 80111dc1-fd93-4f0e-831e-e6232fa142d5 + Parts: + - Entity: + Id: 80111dc1-fd93-4f0e-831e-e6232fa142d5 + Name: FloatingRock2_3 + Components: + 2dd20f6a087b1c11acdfacf28a0ea16d: !TransformComponent + Id: 11bd625c-ceed-43f0-8a22-b0d64aca3bca + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + da2ee4d13edd8daff07d8952ff3a4dcc: !ModelComponent + Id: 8e01c0bc-a093-4cb2-a43a-529de29e7c77 + Model: e1555e64-a386-4bc0-93b5-f9d0a4ec9051:Environment/Background/Models/FloatingRock2_3 + Materials: {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Prefabs/Island1.xkprefab b/Starbreach/Assets/Shared/Environment/Background/Prefabs/Island1.xkprefab new file mode 100644 index 0000000..cdc9186 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Prefabs/Island1.xkprefab @@ -0,0 +1,187 @@ +!PrefabAsset +Id: 3b073657-9884-4200-8c07-b279d681ca21 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 15292c10-a923-474c-b33f-9ce20dfef300 + - ref!! 68c223af-71cd-4645-9271-8b54a19b28ee + - ref!! 9a6c7cee-1908-4e49-a261-eeae81facb2c + - ref!! 5e33085b-ce59-4b36-ab9c-9e35f0ec4abe + - ref!! 650d4eff-13bd-425c-91d8-7cddaaddde22 + - ref!! 7c610ba4-df42-4a15-a9e8-10ab9018e3b2 + - ref!! 121aae14-3f09-4f72-af67-1180ca8ebb9c + - ref!! e1762914-de93-4c0a-99de-f4575d37cee4 + - ref!! 173b421e-739a-4fc2-a9a5-63da5cd2a934 + - ref!! 47429974-ff2e-405e-a45d-14f1b0fc19bb + - ref!! 6c4e64ce-45f5-4358-8c12-ee723a056189 + - ref!! d51ed6fe-7c89-404a-ad42-648cab68bbaf + Parts: + - Entity: + Id: 121aae14-3f09-4f72-af67-1180ca8ebb9c + Name: PlatformRocks2 (4) + Components: + 2384131a71811280cbd34ba170b7feb6: !TransformComponent + Id: fb0e0419-dab5-4052-a5ee-dd20714b2b72 + Position: {X: 22.9272919, Y: -25.7528648, Z: -8.704959} + Rotation: {X: 0.0, Y: -0.733628, Z: 0.0, W: 0.679551363} + Scale: {X: 8.0, Y: 8.0, Z: 8.0} + Children: {} + 14bb1742949911f368906188a326c460: !ModelComponent + Id: c530cbcb-20e9-4b5b-b52b-3f126d4947d8 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + - Entity: + Id: 15292c10-a923-474c-b33f-9ce20dfef300 + Name: Isl_1 + Components: + f73d0ddc039cbadb2f47fbe855fe7e96: !TransformComponent + Id: 251271ce-4bcc-4bb2-9c7b-01e521128991 + Position: {X: 0.0, Y: -1.15709841, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 1b620604547c76b3dd11de80fad3d800: !ModelComponent + Id: 48472beb-48fc-4f45-84d4-15c5314ea680 + Model: c4f3ea64-37ea-4e8a-bac9-101665acd80c:Environment/Background/Models/Isl_1 + Materials: {} + - Entity: + Id: 173b421e-739a-4fc2-a9a5-63da5cd2a934 + Name: PlatformRocks3 (2) + Components: + 0a386328baa0eec4c0f804bce393ec60: !TransformComponent + Id: 5508b87e-f0cf-4549-874b-fc8646e96fad + Position: {X: -0.5792875, Y: -12.4886408, Z: 16.7266426} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 8.0, Y: 8.0, Z: 8.0} + Children: {} + 80ebad7eedc69e9e2213edd1b02746ca: !ModelComponent + Id: 92dd668c-4d72-4a7f-9b6e-319bdfec2818 + Model: 28b26550-fec0-4807-b432-3a95fc153485:Environment/Background/Models/PlatformRocks3 + Materials: {} + - Entity: + Id: 47429974-ff2e-405e-a45d-14f1b0fc19bb + Name: PlatformRocks3 (3) + Components: + 0a386328baa0eec4c0f804bce393ec60: !TransformComponent + Id: ed0604df-021f-455d-aefe-8ecdd72ee302 + Position: {X: -9.719631, Y: -13.2785158, Z: 17.2399864} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 8.0, Y: 8.0, Z: 8.0} + Children: {} + 80ebad7eedc69e9e2213edd1b02746ca: !ModelComponent + Id: 772314fa-bc36-492d-8bd2-7327c2ac6e18 + Model: 28b26550-fec0-4807-b432-3a95fc153485:Environment/Background/Models/PlatformRocks3 + Materials: {} + - Entity: + Id: 5e33085b-ce59-4b36-ab9c-9e35f0ec4abe + Name: PlatformRocks2 (6) + Components: + 2384131a71811280cbd34ba170b7feb6: !TransformComponent + Id: c3471f70-a4f4-4af8-ae45-6f2bc77842d3 + Position: {X: 3.508162, Y: -24.7043877, Z: -15.1030674} + Rotation: {X: 0.0, Y: -0.2006756, Z: 0.0, W: 0.97965765} + Scale: {X: 8.0, Y: 8.0, Z: 8.0} + Children: {} + 14bb1742949911f368906188a326c460: !ModelComponent + Id: e07802f8-23a7-4df2-bd3f-a165f27e27fb + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + - Entity: + Id: 650d4eff-13bd-425c-91d8-7cddaaddde22 + Name: PlatformRocks2 (2) + Components: + 2384131a71811280cbd34ba170b7feb6: !TransformComponent + Id: caaac61d-6511-40f9-8100-841a908e0526 + Position: {X: 20.1136, Y: -24.4032421, Z: 11.8339653} + Rotation: {X: 0.0, Y: -0.919045031, Z: 0.0, W: -0.394152522} + Scale: {X: 8.0, Y: 8.0, Z: 8.0} + Children: {} + 14bb1742949911f368906188a326c460: !ModelComponent + Id: ef886cb5-0d04-4fb8-b9ae-57d357307de0 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + - Entity: + Id: 68c223af-71cd-4645-9271-8b54a19b28ee + Name: PlatformRocks2 + Components: + 2384131a71811280cbd34ba170b7feb6: !TransformComponent + Id: c4028e50-caaa-4d53-8cea-dd1289153e16 + Position: {X: -23.0603142, Y: -24.7043877, Z: 4.035959} + Rotation: {X: 0.0, Y: 0.7696357, Z: 0.0, W: -0.638483047} + Scale: {X: 8.0, Y: 8.0, Z: 8.0} + Children: {} + 14bb1742949911f368906188a326c460: !ModelComponent + Id: 209c1a0a-144c-4fc4-87f7-17f3cee9bdcd + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + - Entity: + Id: 6c4e64ce-45f5-4358-8c12-ee723a056189 + Name: PlatformRocks3 (4) + Components: + 0a386328baa0eec4c0f804bce393ec60: !TransformComponent + Id: 4be688ec-ea81-4f12-8741-a64c30edd56a + Position: {X: -17.2342415, Y: -13.2785158, Z: 15.4903374} + Rotation: {X: 0.0, Y: 0.6809715, Z: 0.0, W: -0.732309937} + Scale: {X: 8.0, Y: 8.0, Z: 8.0} + Children: {} + 80ebad7eedc69e9e2213edd1b02746ca: !ModelComponent + Id: 4f359090-444d-4391-9383-fc029a5cf070 + Model: 28b26550-fec0-4807-b432-3a95fc153485:Environment/Background/Models/PlatformRocks3 + Materials: {} + - Entity: + Id: 7c610ba4-df42-4a15-a9e8-10ab9018e3b2 + Name: PlatformRocks2 (5) + Components: + 2384131a71811280cbd34ba170b7feb6: !TransformComponent + Id: 5d22174f-894b-415c-8574-e39682631546 + Position: {X: -5.761159, Y: -26.6521473, Z: 14.861186} + Rotation: {X: 0.0, Y: -0.456781924, Z: 0.0, W: 0.8895787} + Scale: {X: 8.0, Y: 8.0, Z: 8.0} + Children: {} + 14bb1742949911f368906188a326c460: !ModelComponent + Id: 18cbfbc1-a13f-4b30-a7cd-2d4d71445d1f + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + - Entity: + Id: 9a6c7cee-1908-4e49-a261-eeae81facb2c + Name: PlatformRocks2 (3) + Components: + 2384131a71811280cbd34ba170b7feb6: !TransformComponent + Id: e140a478-46d5-4fc6-b463-26f90ec065a7 + Position: {X: -12.2410936, Y: -25.7013, Z: -13.7352266} + Rotation: {X: 0.0, Y: 0.283583671, Z: 0.0, W: 0.9589474} + Scale: {X: 8.0, Y: 8.0, Z: 8.0} + Children: {} + 14bb1742949911f368906188a326c460: !ModelComponent + Id: 7351344c-8778-4340-931d-a6fd84e6058e + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + - Entity: + Id: d51ed6fe-7c89-404a-ad42-648cab68bbaf + Name: PlatformRocks3 (5) + Components: + 0a386328baa0eec4c0f804bce393ec60: !TransformComponent + Id: 4f11a78d-ad0d-45ee-b0d5-768cbccf5849 + Position: {X: -11.2671633, Y: -13.2785158, Z: -20.5549622} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 8.0, Y: 8.0, Z: 8.0} + Children: {} + 80ebad7eedc69e9e2213edd1b02746ca: !ModelComponent + Id: 287449c5-0704-43b8-9c1f-fc00cab16996 + Model: 28b26550-fec0-4807-b432-3a95fc153485:Environment/Background/Models/PlatformRocks3 + Materials: {} + - Entity: + Id: e1762914-de93-4c0a-99de-f4575d37cee4 + Name: PlatformRocks3 + Components: + 0a386328baa0eec4c0f804bce393ec60: !TransformComponent + Id: 5eed3717-a18b-4243-b963-d6b072870f4f + Position: {X: 4.50396824, Y: -12.4886408, Z: 14.3248091} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 8.0, Y: 8.0, Z: 8.0} + Children: {} + 80ebad7eedc69e9e2213edd1b02746ca: !ModelComponent + Id: abf45f20-38e3-41fc-a4ea-8d199a085f15 + Model: 28b26550-fec0-4807-b432-3a95fc153485:Environment/Background/Models/PlatformRocks3 + Materials: {} diff --git a/Starbreach/Assets/Shared/Environment/Background/Prefabs/Island2.xkprefab b/Starbreach/Assets/Shared/Environment/Background/Prefabs/Island2.xkprefab new file mode 100644 index 0000000..a3a0c3a --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Background/Prefabs/Island2.xkprefab @@ -0,0 +1,187 @@ +!PrefabAsset +Id: b0a5d699-fc88-44d9-a98e-813f5acb3225 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 89a3075e-9d3d-45c9-9585-47cd98e4a533 + - ref!! 3114a9ed-8626-43f5-84da-d35b8da12025 + - ref!! ef91a9fe-fe04-40e6-8b88-d6fb42b80c6d + - ref!! bbb704e9-613a-499f-ac65-f1666f004081 + - ref!! 97b7d0dc-37c3-4a9f-966a-bb6b78bbf35d + - ref!! b3d2bdd7-6778-4685-8301-636f31b9f2e0 + - ref!! b563f5ac-2771-4534-91c3-93cc501e6fe1 + - ref!! a45d2355-e055-4ca8-a374-bb87e37ee679 + - ref!! c1cc2d58-c685-4ec6-b5bb-3ae5dbe05a62 + - ref!! 72d3d3bc-51b8-4030-8591-399a7c73307d + - ref!! 8155d2e3-0c30-42cc-a7e0-90ee630e80be + - ref!! dc9b70e0-0199-460a-9dcd-ba4a729e3ff5 + Parts: + - Entity: + Id: 3114a9ed-8626-43f5-84da-d35b8da12025 + Name: PlatformRocks2 + Components: + 2384131a71811280cbd34ba170b7feb6: !TransformComponent + Id: fb0e0419-dab5-4052-a5ee-dd20714b2b72 + Position: {X: 23.5947723, Y: -24.7043877, Z: -7.589718} + Rotation: {X: 0.0, Y: -0.63112396, Z: 0.0, W: -0.775681734} + Scale: {X: 8.0, Y: 8.0, Z: 8.0} + Children: {} + 14bb1742949911f368906188a326c460: !ModelComponent + Id: c530cbcb-20e9-4b5b-b52b-3f126d4947d8 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + - Entity: + Id: 72d3d3bc-51b8-4030-8591-399a7c73307d + Name: PlatformRocks3 (3) + Components: + 0a386328baa0eec4c0f804bce393ec60: !TransformComponent + Id: 5508b87e-f0cf-4549-874b-fc8646e96fad + Position: {X: 10.5080128, Y: -13.2785158, Z: -21.04546} + Rotation: {X: 0.0, Y: 0.999954641, Z: 0.0, W: 0.009524157} + Scale: {X: 8.0, Y: 8.0, Z: 8.0} + Children: {} + 80ebad7eedc69e9e2213edd1b02746ca: !ModelComponent + Id: 92dd668c-4d72-4a7f-9b6e-319bdfec2818 + Model: 28b26550-fec0-4807-b432-3a95fc153485:Environment/Background/Models/PlatformRocks3 + Materials: {} + - Entity: + Id: 8155d2e3-0c30-42cc-a7e0-90ee630e80be + Name: PlatformRocks3 (4) + Components: + 0a386328baa0eec4c0f804bce393ec60: !TransformComponent + Id: ad45bb7d-d400-41b2-a384-c160d7ce2115 + Position: {X: 17.9879341, Y: -13.2785158, Z: -19.1529884} + Rotation: {X: 0.0, Y: -0.725791037, Z: 0.0, W: -0.687915266} + Scale: {X: 8.0, Y: 8.0, Z: 8.0} + Children: {} + 80ebad7eedc69e9e2213edd1b02746ca: !ModelComponent + Id: f06c634b-ba4c-49e6-9180-0f5596ee6ea5 + Model: 28b26550-fec0-4807-b432-3a95fc153485:Environment/Background/Models/PlatformRocks3 + Materials: {} + - Entity: + Id: 89a3075e-9d3d-45c9-9585-47cd98e4a533 + Name: Isl_2 + Components: + 4c00e0f81166f787ea12348896cda29b: !TransformComponent + Id: 3123b193-5004-417b-98fd-e7390c24b258 + Position: {X: 0.0, Y: -1.721826, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 82451a54b836354ee79dbb21c3f806ef: !ModelComponent + Id: b0eeb538-3c60-42dd-a34f-f77d38d47af8 + Model: ec7a2cf2-8f68-4ea4-ae3b-f411798da431:Environment/Background/Models/Isl_2 + Materials: {} + - Entity: + Id: 97b7d0dc-37c3-4a9f-966a-bb6b78bbf35d + Name: PlatformRocks2 (2) + Components: + 2384131a71811280cbd34ba170b7feb6: !TransformComponent + Id: 4d292a67-d7ec-4c13-ad9f-20c63779ce25 + Position: {X: -19.4227848, Y: -24.4032421, Z: -16.20866} + Rotation: {X: 0.0, Y: -0.402887762, Z: 0.0, W: 0.9152494} + Scale: {X: 8.0, Y: 8.0, Z: 8.0} + Children: {} + 14bb1742949911f368906188a326c460: !ModelComponent + Id: 1c4e27c6-a14d-48a2-a328-24b921f0f6cf + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + - Entity: + Id: a45d2355-e055-4ca8-a374-bb87e37ee679 + Name: PlatformRocks3 + Components: + 0a386328baa0eec4c0f804bce393ec60: !TransformComponent + Id: c56d1744-2c60-4286-ad3d-be6763984405 + Position: {X: -3.76853371, Y: -12.4886408, Z: -18.40173} + Rotation: {X: 0.0, Y: 0.999954641, Z: 0.0, W: 0.009524157} + Scale: {X: 8.0, Y: 8.0, Z: 8.0} + Children: {} + 80ebad7eedc69e9e2213edd1b02746ca: !ModelComponent + Id: e1834d6a-4ff4-49c5-b119-caac84a0a51f + Model: 28b26550-fec0-4807-b432-3a95fc153485:Environment/Background/Models/PlatformRocks3 + Materials: {} + - Entity: + Id: b3d2bdd7-6778-4685-8301-636f31b9f2e0 + Name: PlatformRocks2 (5) + Components: + 2384131a71811280cbd34ba170b7feb6: !TransformComponent + Id: 9d579228-c6c1-40c8-97e7-164f82b80a4d + Position: {X: 6.50494576, Y: -26.6521473, Z: -18.7424812} + Rotation: {X: 0.0, Y: 0.885187864, Z: 0.0, W: 0.465233684} + Scale: {X: 8.0, Y: 8.0, Z: 8.0} + Children: {} + 14bb1742949911f368906188a326c460: !ModelComponent + Id: 7c5787c2-d7af-44e2-98f6-ae5e00717e3d + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + - Entity: + Id: b563f5ac-2771-4534-91c3-93cc501e6fe1 + Name: PlatformRocks2 (4) + Components: + 2384131a71811280cbd34ba170b7feb6: !TransformComponent + Id: 85d0dadd-58bb-467d-b165-226de110de6d + Position: {X: -22.6271687, Y: -25.7528648, Z: 4.272938} + Rotation: {X: 0.0, Y: 0.672533333, Z: 0.0, W: 0.7400669} + Scale: {X: 8.0, Y: 8.0, Z: 8.0} + Children: {} + 14bb1742949911f368906188a326c460: !ModelComponent + Id: 534c7bba-fb3c-43f5-b9d5-50d5fb8e2738 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + - Entity: + Id: bbb704e9-613a-499f-ac65-f1666f004081 + Name: PlatformRocks2 (6) + Components: + 2384131a71811280cbd34ba170b7feb6: !TransformComponent + Id: b3b3eaba-c424-4765-be1f-8580844b933a + Position: {X: -7.01633024, Y: -24.7043877, Z: 21.0299377} + Rotation: {X: 0.0, Y: -0.2521432, Z: 0.0, W: 0.967689753} + Scale: {X: 8.0, Y: 8.0, Z: 8.0} + Children: {} + 14bb1742949911f368906188a326c460: !ModelComponent + Id: e0e3e6fd-e8a3-4c1c-9e4a-99b228b215ef + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + - Entity: + Id: c1cc2d58-c685-4ec6-b5bb-3ae5dbe05a62 + Name: PlatformRocks3 (2) + Components: + 0a386328baa0eec4c0f804bce393ec60: !TransformComponent + Id: c2164e43-56a3-41e5-a2be-b343ff171f71 + Position: {X: 1.35954857, Y: -12.4886408, Z: -20.70631} + Rotation: {X: 0.0, Y: 0.999954641, Z: 0.0, W: 0.009524157} + Scale: {X: 8.0, Y: 8.0, Z: 8.0} + Children: {} + 80ebad7eedc69e9e2213edd1b02746ca: !ModelComponent + Id: ba1086a3-38d5-47ed-be17-9f8930b545a8 + Model: 28b26550-fec0-4807-b432-3a95fc153485:Environment/Background/Models/PlatformRocks3 + Materials: {} + - Entity: + Id: dc9b70e0-0199-460a-9dcd-ba4a729e3ff5 + Name: PlatformRocks3 (5) + Components: + 0a386328baa0eec4c0f804bce393ec60: !TransformComponent + Id: ece21b1d-0d95-4b70-9852-572b1a018020 + Position: {X: 11.3353662, Y: -13.2785158, Z: 16.77211} + Rotation: {X: 0.0, Y: 0.999954641, Z: 0.0, W: 0.009524157} + Scale: {X: 8.0, Y: 8.0, Z: 8.0} + Children: {} + 80ebad7eedc69e9e2213edd1b02746ca: !ModelComponent + Id: a963212c-d8b7-44ee-8b1b-548addcf5ff3 + Model: 28b26550-fec0-4807-b432-3a95fc153485:Environment/Background/Models/PlatformRocks3 + Materials: {} + - Entity: + Id: ef91a9fe-fe04-40e6-8b88-d6fb42b80c6d + Name: PlatformRocks2 (3) + Components: + 2384131a71811280cbd34ba170b7feb6: !TransformComponent + Id: 5598f1ed-332f-4a7a-87df-f06f87fdbb92 + Position: {X: 12.4390182, Y: -25.7013, Z: 9.972162} + Rotation: {X: 0.0, Y: 0.961604834, Z: 0.0, W: -0.274437636} + Scale: {X: 8.0, Y: 8.0, Z: 8.0} + Children: {} + 14bb1742949911f368906188a326c460: !ModelComponent + Id: e0d729c8-7805-4979-aa6a-50bab82bc51b + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} diff --git a/Starbreach/Assets/Shared/Environment/CaptureSkybox.xksky b/Starbreach/Assets/Shared/Environment/CaptureSkybox.xksky new file mode 100644 index 0000000..7d2abe3 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/CaptureSkybox.xksky @@ -0,0 +1,5 @@ +!SkyboxAsset +Id: 355df934-e46b-4e3f-9f99-810585fc1620 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +CubeMap: cfb26cc1-3a00-477f-8293-851206281ecf:EnvironmentCapture diff --git a/Starbreach/Assets/Shared/Environment/Clouds.xktex b/Starbreach/Assets/Shared/Environment/Clouds.xktex new file mode 100644 index 0000000..f5fd781 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Clouds.xktex @@ -0,0 +1,7 @@ +!Texture +Id: cd9304cd-d7b6-48cb-bdb2-a6790795a40d +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/Clouds.dds +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/EnvironmentMap.xktex b/Starbreach/Assets/Shared/Environment/EnvironmentMap.xktex new file mode 100644 index 0000000..ca2975e --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/EnvironmentMap.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 47179bd7-ee99-43df-a944-bb572838c0c9 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/Background.dds +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Border_D.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Border_D.xktex new file mode 100644 index 0000000..589647e --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Border_D.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 7edaa4ec-b1e2-4701-8936-9b4c65bf5d6c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Borders/Border_D.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} + Alpha: None + PremultiplyAlpha: false diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Border_G.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Border_G.xktex new file mode 100644 index 0000000..a3eea47 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Border_G.xktex @@ -0,0 +1,6 @@ +!Texture +Id: e9cdccbf-a048-4cc9-8dfc-3ff66f728e80 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Borders/Border_G.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Border_M.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Border_M.xktex new file mode 100644 index 0000000..6155c0f --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Border_M.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 88911171-aabf-40ff-a1ea-b06ec25449ff +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Borders/Border_M.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Border_MT.xkmat b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Border_MT.xkmat new file mode 100644 index 0000000..80b8c83 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Border_MT.xkmat @@ -0,0 +1,44 @@ +!MaterialAsset +Id: dade43d9-ff9b-456f-a9e7-78f5a26afb39 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: ae37972e-8953-4004-884b-241994bd018b:Environment/Platforms/Materials/Borders/Border_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: e9cdccbf-a048-4cc9-8dfc-3ff66f728e80:Environment/Platforms/Materials/Borders/Border_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 7edaa4ec-b1e2-4701-8936-9b4c65bf5d6c:Environment/Platforms/Materials/Borders/Border_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 88911171-aabf-40ff-a1ea-b06ec25449ff:Environment/Platforms/Materials/Borders/Border_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Border_N.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Border_N.xktex new file mode 100644 index 0000000..bb8fc2e --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Border_N.xktex @@ -0,0 +1,6 @@ +!Texture +Id: ae37972e-8953-4004-884b-241994bd018b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Borders/Border_N.png +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_AO.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_AO.xktex new file mode 100644 index 0000000..ffe749a --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_AO.xktex @@ -0,0 +1,6 @@ +!Texture +Id: aba4a745-bb68-45dd-9e48-ad7c5e8b88da +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Ledges/Ledge_AO.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_D.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_D.xktex new file mode 100644 index 0000000..1c4ed46 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_D.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 122c7157-1aea-4a43-92e7-c898c1ce4c8a +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Ledges/Ledge_D.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} + Alpha: None + PremultiplyAlpha: false diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_G.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_G.xktex new file mode 100644 index 0000000..3138de5 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_G.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 626e8715-036e-4def-925c-90c24794b87f +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Ledges/Ledge_G.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_M.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_M.xktex new file mode 100644 index 0000000..cc83d2a --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_M.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 38752da8-0a85-4285-8c63-3c0e36457040 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Ledges/Ledge_M.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_MT.xkmat b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_MT.xkmat new file mode 100644 index 0000000..5f4155c --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_MT.xkmat @@ -0,0 +1,62 @@ +!MaterialAsset +Id: 4f0862cf-6521-409e-a994-83921f59c09e +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 87d317f0-9738-4507-83bc-2b9c4fb4fbd9:Environment/Platforms/Materials/Borders/Ledge_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 626e8715-036e-4def-925c-90c24794b87f:Environment/Platforms/Materials/Borders/Ledge_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 122c7157-1aea-4a43-92e7-c898c1ce4c8a:Environment/Platforms/Materials/Borders/Ledge_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 38752da8-0a85-4285-8c63-3c0e36457040:Environment/Platforms/Materials/Borders/Ledge_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: aba4a745-bb68-45dd-9e48-ad7c5e8b88da:Environment/Platforms/Materials/Borders/Ledge_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_N.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_N.xktex new file mode 100644 index 0000000..7286a3e --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_N.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 87d317f0-9738-4507-83bc-2b9c4fb4fbd9 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Ledges/Ledge_N.png +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_Rusted_AO.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_Rusted_AO.xktex new file mode 100644 index 0000000..a63e0aa --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_Rusted_AO.xktex @@ -0,0 +1,6 @@ +!Texture +Id: e464f377-6887-4ee3-9586-c4c30d4afe44 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Ledges/Ledge_Rusted_AO.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_Rusted_D.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_Rusted_D.xktex new file mode 100644 index 0000000..052e40d --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_Rusted_D.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 427add2a-a6df-4aff-9386-c184f2b2a201 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Ledges/Ledge_Rusted_D.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} + Alpha: None + PremultiplyAlpha: false diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_Rusted_G.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_Rusted_G.xktex new file mode 100644 index 0000000..ceaa605 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_Rusted_G.xktex @@ -0,0 +1,6 @@ +!Texture +Id: c7c9af36-f762-4230-9f4a-3267044f16d7 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Ledges/Ledge_Rusted_G.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_Rusted_M.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_Rusted_M.xktex new file mode 100644 index 0000000..0244d2f --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_Rusted_M.xktex @@ -0,0 +1,6 @@ +!Texture +Id: b0fffa69-232d-446f-8a1e-38681e2c6f80 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Ledges/Ledge_Rusted_M.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_Rusted_MT.xkmat b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_Rusted_MT.xkmat new file mode 100644 index 0000000..b06ee49 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_Rusted_MT.xkmat @@ -0,0 +1,62 @@ +!MaterialAsset +Id: 9e3f4553-c2c6-4b3c-8bbe-99e49d11c87b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: c87aa7a5-2b87-40ce-ab53-5b4b128e1136:Environment/Platforms/Materials/Borders/Ledge_Rusted_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: c7c9af36-f762-4230-9f4a-3267044f16d7:Environment/Platforms/Materials/Borders/Ledge_Rusted_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 427add2a-a6df-4aff-9386-c184f2b2a201:Environment/Platforms/Materials/Borders/Ledge_Rusted_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: b0fffa69-232d-446f-8a1e-38681e2c6f80:Environment/Platforms/Materials/Borders/Ledge_Rusted_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: e464f377-6887-4ee3-9586-c4c30d4afe44:Environment/Platforms/Materials/Borders/Ledge_Rusted_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_Rusted_N.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_Rusted_N.xktex new file mode 100644 index 0000000..548d392 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Borders/Ledge_Rusted_N.xktex @@ -0,0 +1,6 @@ +!Texture +Id: c87aa7a5-2b87-40ce-ab53-5b4b128e1136 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Ledges/Ledge_Rusted_N.png +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell1R_D.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell1R_D.xktex new file mode 100644 index 0000000..77c54a8 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell1R_D.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 5f78ce62-0244-4e40-a263-576da37cc6dd +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Cells/cell1R_D.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell1R_G.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell1R_G.xktex new file mode 100644 index 0000000..7867727 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell1R_G.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 2580f3d3-1949-44ab-a370-1a7d75acf2fc +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Cells/cell1R_G.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell1R_M.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell1R_M.xktex new file mode 100644 index 0000000..89741f0 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell1R_M.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 3d39d331-c1d9-4169-b28b-d42c1f1bd044 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Cells/cell1R_M.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell1R_N.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell1R_N.xktex new file mode 100644 index 0000000..a0cc7cc --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell1R_N.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 9076b222-ad04-4056-bda8-49cd4af9af57 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Cells/cell1R_N.png +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell1_D.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell1_D.xktex new file mode 100644 index 0000000..e32e302 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell1_D.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 5984bf1b-375a-4274-8194-3257e43fa13f +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Cells/Cell1_D.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} + Alpha: None + PremultiplyAlpha: false diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell1_G.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell1_G.xktex new file mode 100644 index 0000000..9013d78 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell1_G.xktex @@ -0,0 +1,6 @@ +!Texture +Id: b8ed3548-8ec5-433c-b384-ee2f3abcf186 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Cells/Cell1_G.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell1_M.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell1_M.xktex new file mode 100644 index 0000000..4caa7bd --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell1_M.xktex @@ -0,0 +1,6 @@ +!Texture +Id: e9cff9f8-f441-4e51-b359-49c797464359 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Cells/Cell1_M.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell1_MT.xkmat b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell1_MT.xkmat new file mode 100644 index 0000000..ae3bf0e --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell1_MT.xkmat @@ -0,0 +1,44 @@ +!MaterialAsset +Id: 5b71fbf1-4d81-4e03-b5fe-dd21f0953c87 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 1eb882b2-40ba-462d-90a5-e4ba6687aa18:Environment/Platforms/Materials/Cells/Cell1_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: b8ed3548-8ec5-433c-b384-ee2f3abcf186:Environment/Platforms/Materials/Cells/Cell1_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 5984bf1b-375a-4274-8194-3257e43fa13f:Environment/Platforms/Materials/Cells/Cell1_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: e9cff9f8-f441-4e51-b359-49c797464359:Environment/Platforms/Materials/Cells/Cell1_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Overrides: + UVScale: {X: 2.0, Y: 2.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell1_MTTiny.xkmat b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell1_MTTiny.xkmat new file mode 100644 index 0000000..6d0fd1f --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell1_MTTiny.xkmat @@ -0,0 +1,44 @@ +!MaterialAsset +Id: aef9b661-500c-4204-9b71-f42c9b9635a3 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 1eb882b2-40ba-462d-90a5-e4ba6687aa18:Environment/Platforms/Materials/Cells/Cell1_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: b8ed3548-8ec5-433c-b384-ee2f3abcf186:Environment/Platforms/Materials/Cells/Cell1_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 5984bf1b-375a-4274-8194-3257e43fa13f:Environment/Platforms/Materials/Cells/Cell1_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: e9cff9f8-f441-4e51-b359-49c797464359:Environment/Platforms/Materials/Cells/Cell1_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Overrides: + UVScale: {X: 2.0, Y: 2.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell1_N.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell1_N.xktex new file mode 100644 index 0000000..6768d9c --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell1_N.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 1eb882b2-40ba-462d-90a5-e4ba6687aa18 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Cells/Cell1_N.png +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell1_Rust_MT.xkmat b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell1_Rust_MT.xkmat new file mode 100644 index 0000000..92d941b --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell1_Rust_MT.xkmat @@ -0,0 +1,44 @@ +!MaterialAsset +Id: 0d944493-c89b-44fe-8cfe-92ca28c16657 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 9076b222-ad04-4056-bda8-49cd4af9af57:Environment/Platforms/Materials/Cells/Cell1R_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 2580f3d3-1949-44ab-a370-1a7d75acf2fc:Environment/Platforms/Materials/Cells/Cell1R_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 5f78ce62-0244-4e40-a263-576da37cc6dd:Environment/Platforms/Materials/Cells/Cell1R_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 3d39d331-c1d9-4169-b28b-d42c1f1bd044:Environment/Platforms/Materials/Cells/Cell1R_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Overrides: + UVScale: {X: 2.0, Y: 2.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2R_D.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2R_D.xktex new file mode 100644 index 0000000..c2a1635 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2R_D.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 7c17980d-1242-4ea3-921a-e87258d38f70 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Cells/cell2R_D.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2R_G.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2R_G.xktex new file mode 100644 index 0000000..70a5679 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2R_G.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 10b20bf3-594f-4731-90c4-cd9dda5bc99a +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Cells/cell2R_G.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2R_M.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2R_M.xktex new file mode 100644 index 0000000..5704492 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2R_M.xktex @@ -0,0 +1,6 @@ +!Texture +Id: bc6bb918-fa4b-4a2d-a474-576770b3ee84 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Cells/cell2R_M.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2R_N.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2R_N.xktex new file mode 100644 index 0000000..e7e97f9 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2R_N.xktex @@ -0,0 +1,6 @@ +!Texture +Id: b094978d-7324-4171-9d14-b2709f9f8f32 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Cells/cell2R_N.png +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2_D.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2_D.xktex new file mode 100644 index 0000000..0ae6590 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2_D.xktex @@ -0,0 +1,9 @@ +!Texture +Id: d58f4f08-a990-4682-ab9e-e6253b0bea04 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Cells/Cell2_D.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} + Alpha: None + PremultiplyAlpha: false diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2_E1.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2_E1.xktex new file mode 100644 index 0000000..ac967ab --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2_E1.xktex @@ -0,0 +1,9 @@ +!Texture +Id: acfcea6f-1c60-4599-a738-cb6cf353dc84 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Cells/Cell2_E1.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} + Alpha: None + PremultiplyAlpha: false diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2_E2.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2_E2.xktex new file mode 100644 index 0000000..989de81 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2_E2.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 9d822224-f5ff-445d-8e28-4cb105868f3e +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Cells/Cell2_E2.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} + Alpha: None + PremultiplyAlpha: false diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2_G.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2_G.xktex new file mode 100644 index 0000000..9994cf6 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2_G.xktex @@ -0,0 +1,6 @@ +!Texture +Id: ccf166cd-37fd-4944-ae4a-4125b8d2c401 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Cells/Cell2_G.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2_M.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2_M.xktex new file mode 100644 index 0000000..ab232c3 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2_M.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 20bd3dfe-03d9-4510-9c7b-a70264421d1b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Cells/Cell2_M.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2_MT.xkmat b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2_MT.xkmat new file mode 100644 index 0000000..5c7d8ea --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2_MT.xkmat @@ -0,0 +1,44 @@ +!MaterialAsset +Id: eb812aa2-3188-436f-9874-3080b4a14582 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 01c24e09-2ccb-4266-8cb0-a9720b1edc8b:Environment/Platforms/Materials/Cells/Cell2_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: ccf166cd-37fd-4944-ae4a-4125b8d2c401:Environment/Platforms/Materials/Cells/Cell2_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: d58f4f08-a990-4682-ab9e-e6253b0bea04:Environment/Platforms/Materials/Cells/Cell2_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 20bd3dfe-03d9-4510-9c7b-a70264421d1b:Environment/Platforms/Materials/Cells/Cell2_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2_N.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2_N.xktex new file mode 100644 index 0000000..141402f --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2_N.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 01c24e09-2ccb-4266-8cb0-a9720b1edc8b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Cells/Cell2_N.png +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2_On_MT.xkmat b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2_On_MT.xkmat new file mode 100644 index 0000000..acceb2c --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2_On_MT.xkmat @@ -0,0 +1,54 @@ +!MaterialAsset +Id: 3cccd75d-9e11-4848-a50d-5f6dae11d108 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 01c24e09-2ccb-4266-8cb0-a9720b1edc8b:Environment/Platforms/Materials/Cells/Cell2_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: ccf166cd-37fd-4944-ae4a-4125b8d2c401:Environment/Platforms/Materials/Cells/Cell2_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: d58f4f08-a990-4682-ab9e-e6253b0bea04:Environment/Platforms/Materials/Cells/Cell2_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 20bd3dfe-03d9-4510-9c7b-a70264421d1b:Environment/Platforms/Materials/Cells/Cell2_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: acfcea6f-1c60-4599-a738-cb6cf353dc84:Environment/Platforms/Materials/Cells/Cell2_E1 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 1.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2_On_Rust_MT.xkmat b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2_On_Rust_MT.xkmat new file mode 100644 index 0000000..f234822 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2_On_Rust_MT.xkmat @@ -0,0 +1,54 @@ +!MaterialAsset +Id: 45f4a4a9-ea72-46f1-a67f-eca4c6524fa6 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: b094978d-7324-4171-9d14-b2709f9f8f32:Environment/Platforms/Materials/Cells/Cell2R_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 10b20bf3-594f-4731-90c4-cd9dda5bc99a:Environment/Platforms/Materials/Cells/Cell2R_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 7c17980d-1242-4ea3-921a-e87258d38f70:Environment/Platforms/Materials/Cells/Cell2R_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: bc6bb918-fa4b-4a2d-a474-576770b3ee84:Environment/Platforms/Materials/Cells/Cell2R_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: acfcea6f-1c60-4599-a738-cb6cf353dc84:Environment/Platforms/Materials/Cells/Cell2_E1 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 1.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2_Rust_MT.xkmat b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2_Rust_MT.xkmat new file mode 100644 index 0000000..d72c7e8 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell2_Rust_MT.xkmat @@ -0,0 +1,44 @@ +!MaterialAsset +Id: 5bf8d7c4-6f38-42fe-858f-5eead2460b84 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: b094978d-7324-4171-9d14-b2709f9f8f32:Environment/Platforms/Materials/Cells/Cell2R_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 10b20bf3-594f-4731-90c4-cd9dda5bc99a:Environment/Platforms/Materials/Cells/Cell2R_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 7c17980d-1242-4ea3-921a-e87258d38f70:Environment/Platforms/Materials/Cells/Cell2R_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: bc6bb918-fa4b-4a2d-a474-576770b3ee84:Environment/Platforms/Materials/Cells/Cell2R_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3R_D.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3R_D.xktex new file mode 100644 index 0000000..8633e15 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3R_D.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 0e6ebc2c-602e-43a7-bbf5-5790e69ad08a +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Cells/Cell3R_D.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3R_G.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3R_G.xktex new file mode 100644 index 0000000..dba340c --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3R_G.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 4539c0b6-23d3-4044-9689-4f6bc4feddb3 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Cells/Cell3R_G.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3R_M.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3R_M.xktex new file mode 100644 index 0000000..1c40477 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3R_M.xktex @@ -0,0 +1,6 @@ +!Texture +Id: adcd1aa0-5ec1-4e89-ba95-62b3376eb735 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Cells/Cell3R_M.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3R_N.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3R_N.xktex new file mode 100644 index 0000000..d74e458 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3R_N.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 3d4477ea-98b0-4bb6-84fc-5969d89b2b4f +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Cells/cell3R_N.png +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3_D.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3_D.xktex new file mode 100644 index 0000000..697a836 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3_D.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 2a5d5f9d-0ee6-45b5-b655-aae7f423dfd8 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Cells/Cell3_D.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} + Alpha: None + PremultiplyAlpha: false diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3_E1.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3_E1.xktex new file mode 100644 index 0000000..532101f --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3_E1.xktex @@ -0,0 +1,9 @@ +!Texture +Id: c4a69f5c-767f-419c-aaa7-4dbb572d54fc +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Cells/Cell3_E1.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} + Alpha: None + PremultiplyAlpha: false diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3_E2.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3_E2.xktex new file mode 100644 index 0000000..994e243 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3_E2.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 2a1eeae7-2fcf-41cc-98d7-17913a6c8efc +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Cells/Cell3_E2.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} + Alpha: None + PremultiplyAlpha: false diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3_E3.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3_E3.xktex new file mode 100644 index 0000000..faae58a --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3_E3.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 053f0e5c-4e49-465f-ab92-b86e2cf082d2 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Cells/Cell3_E3.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} + Alpha: None + PremultiplyAlpha: false diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3_G.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3_G.xktex new file mode 100644 index 0000000..c20e7c6 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3_G.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 9d5fdf98-0275-47ea-8713-0a6295d7fef7 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Cells/Cell3_G.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3_M.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3_M.xktex new file mode 100644 index 0000000..47aa242 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3_M.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 37b44996-13ce-4754-b6b4-3b58ca1773a4 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Cells/Cell3_M.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3_MT.xkmat b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3_MT.xkmat new file mode 100644 index 0000000..c9671d6 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3_MT.xkmat @@ -0,0 +1,44 @@ +!MaterialAsset +Id: e3fc855a-67cf-43c3-8a2a-f0241ce40afa +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 9544338a-7c49-46d1-b4f3-d1226d17fbb9:Environment/Platforms/Materials/Cells/Cell3_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 9d5fdf98-0275-47ea-8713-0a6295d7fef7:Environment/Platforms/Materials/Cells/Cell3_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 2a5d5f9d-0ee6-45b5-b655-aae7f423dfd8:Environment/Platforms/Materials/Cells/Cell3_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 37b44996-13ce-4754-b6b4-3b58ca1773a4:Environment/Platforms/Materials/Cells/Cell3_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3_N.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3_N.xktex new file mode 100644 index 0000000..f97822b --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3_N.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 9544338a-7c49-46d1-b4f3-d1226d17fbb9 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/Cells/Cell3_N.png +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3_Rust_MT.xkmat b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3_Rust_MT.xkmat new file mode 100644 index 0000000..a6ee03e --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/Cells/Cell3_Rust_MT.xkmat @@ -0,0 +1,44 @@ +!MaterialAsset +Id: cbacb7bc-a0b7-4874-bda8-99f8538baaae +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 3d4477ea-98b0-4bb6-84fc-5969d89b2b4f:Environment/Platforms/Materials/Cells/Cell3R_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 4539c0b6-23d3-4044-9689-4f6bc4feddb3:Environment/Platforms/Materials/Cells/Cell3R_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 0e6ebc2c-602e-43a7-bbf5-5790e69ad08a:Environment/Platforms/Materials/Cells/Cell3R_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: adcd1aa0-5ec1-4e89-ba95-62b3376eb735:Environment/Platforms/Materials/Cells/Cell3R_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/LargePillar/LargePillar_AO.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/LargePillar/LargePillar_AO.xktex new file mode 100644 index 0000000..fbb3b58 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/LargePillar/LargePillar_AO.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 7e6a760d-56bb-4c6a-8cc2-5d7fbd36de7c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/LargePillar/LargePillar_AO.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/LargePillar/LargePillar_D.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/LargePillar/LargePillar_D.xktex new file mode 100644 index 0000000..dff3cd3 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/LargePillar/LargePillar_D.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 6769bcea-6b61-4524-b853-e3c3d8fff1f3 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/LargePillar/LargePillar_D.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/LargePillar/LargePillar_E.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/LargePillar/LargePillar_E.xktex new file mode 100644 index 0000000..928e13f --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/LargePillar/LargePillar_E.xktex @@ -0,0 +1,9 @@ +!Texture +Id: c3eec6f8-9d7b-4c8b-8f3a-ceb43acc53ce +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/LargePillar/LargePillar_E.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/LargePillar/LargePillar_G.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/LargePillar/LargePillar_G.xktex new file mode 100644 index 0000000..2c590ab --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/LargePillar/LargePillar_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 9958a370-0ae2-4be6-ba32-92c2bf728bfa +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/LargePillar/LargePillar_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/LargePillar/LargePillar_M.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/LargePillar/LargePillar_M.xktex new file mode 100644 index 0000000..866ab0d --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/LargePillar/LargePillar_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: bc05ad70-d8e3-49c8-9236-cf5a6ca0b80c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/LargePillar/LargePillar_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/LargePillar/LargePillar_MT.xkmat b/Starbreach/Assets/Shared/Environment/Platforms/Materials/LargePillar/LargePillar_MT.xkmat new file mode 100644 index 0000000..fc2d38e --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/LargePillar/LargePillar_MT.xkmat @@ -0,0 +1,62 @@ +!MaterialAsset +Id: 8297fec7-c06b-4a9e-8579-aa22792a18fb +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: f7c7db74-edf3-4e91-89a7-eff818ae6c8e:Environment/Platforms/Materials/LargePillar/LargePillar_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 9958a370-0ae2-4be6-ba32-92c2bf728bfa:Environment/Platforms/Materials/LargePillar/LargePillar_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 6769bcea-6b61-4524-b853-e3c3d8fff1f3:Environment/Platforms/Materials/LargePillar/LargePillar_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: bc05ad70-d8e3-49c8-9236-cf5a6ca0b80c:Environment/Platforms/Materials/LargePillar/LargePillar_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 7e6a760d-56bb-4c6a-8cc2-5d7fbd36de7c:Environment/Platforms/Materials/LargePillar/LargePillar_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Materials/LargePillar/LargePillar_N.xktex b/Starbreach/Assets/Shared/Environment/Platforms/Materials/LargePillar/LargePillar_N.xktex new file mode 100644 index 0000000..a71e10c --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Materials/LargePillar/LargePillar_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: f7c7db74-edf3-4e91-89a7-eff818ae6c8e +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Platforms/LargePillar/LargePillar_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Models/Border_in_corner_90.xkm3d b/Starbreach/Assets/Shared/Environment/Platforms/Models/Border_in_corner_90.xkm3d new file mode 100644 index 0000000..46f5339 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Models/Border_in_corner_90.xkm3d @@ -0,0 +1,18 @@ +!Model +Id: 1c9753bc-679d-4677-8f9f-9c88dd878d10 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Platforms/Borders/Border_in_corner_90.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + c4c0e5dba66aa6e6f413cf3c5bb6a9bc: + Name: Border + MaterialInstance: + Material: dade43d9-ff9b-456f-a9e7-78f5a26afb39:Environment/Platforms/Materials/Borders/Border_MT + 2ffda72cbd3f5a4177d8366cdef26070: + Name: Ledge + MaterialInstance: + Material: 9e3f4553-c2c6-4b3c-8bbe-99e49d11c87b:Environment/Platforms/Materials/Borders/Ledge_Rusted_MT +Skeleton: null +~SourceHashes: + a63bb9bd379498eceeb0d246de59fbdf~../../../../../Resources/Platforms/Borders/Border_in_corner_90.fbx: c0c0d4f4216f0c6f8bfbd247e5149f07 diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Models/Border_out_corner_90.xkm3d b/Starbreach/Assets/Shared/Environment/Platforms/Models/Border_out_corner_90.xkm3d new file mode 100644 index 0000000..498c4c4 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Models/Border_out_corner_90.xkm3d @@ -0,0 +1,18 @@ +!Model +Id: e2199908-ce19-4e35-843e-6ade71089032 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Platforms/Borders/Border_out_corner_90.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + a35b5dbd088a7628d9122d5d51e70688: + Name: Ledge + MaterialInstance: + Material: 9e3f4553-c2c6-4b3c-8bbe-99e49d11c87b:Environment/Platforms/Materials/Borders/Ledge_Rusted_MT + fe5ff525de41bfeff0a17ddd12db3c2c: + Name: Border + MaterialInstance: + Material: dade43d9-ff9b-456f-a9e7-78f5a26afb39:Environment/Platforms/Materials/Borders/Border_MT +Skeleton: null +~SourceHashes: + 1f693d358b5c37b42cca75a002de56ff~../../../../../Resources/Platforms/Borders/Border_out_corner_90.fbx: 63ae439e4b7a079f2e52f39c4bec43aa diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Models/Border_straight.xkm3d b/Starbreach/Assets/Shared/Environment/Platforms/Models/Border_straight.xkm3d new file mode 100644 index 0000000..34467c1 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Models/Border_straight.xkm3d @@ -0,0 +1,18 @@ +!Model +Id: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Platforms/Borders/Border_straight.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + b8a55f36f4d41085fec71413453ec411: + Name: Ledge + MaterialInstance: + Material: 9e3f4553-c2c6-4b3c-8bbe-99e49d11c87b:Environment/Platforms/Materials/Borders/Ledge_Rusted_MT + f0339ede06cdfb2cd98cf3fc433d15f5: + Name: Border + MaterialInstance: + Material: dade43d9-ff9b-456f-a9e7-78f5a26afb39:Environment/Platforms/Materials/Borders/Border_MT +Skeleton: null +~SourceHashes: + dc6feb091cb6f86e199893285e70f9a5~../../../../../Resources/Platforms/Borders/Border_straight.fbx: 9c1da2c7c1f357295fcbde9331d8b936 diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Models/Cell.xkm3d b/Starbreach/Assets/Shared/Environment/Platforms/Models/Cell.xkm3d new file mode 100644 index 0000000..8dec595 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Models/Cell.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: df909dcd-5cb2-482b-bab3-c0a0c15cc493 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Platforms/Cells/Cell.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + a4d67cb02c433e8c274b9ecfd3be4875: + Name: cell2_baked + MaterialInstance: + Material: 5b71fbf1-4d81-4e03-b5fe-dd21f0953c87:Environment/Platforms/Materials/Cells/Cell1_MT +Skeleton: null +~SourceHashes: + 9cb853ce781cb347e4edc96c1e1b9b02~../../../../../Resources/Platforms/Cells/Cell.fbx: bd8d1eea784590f5a523e67f94c33a9f diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Models/Cell_1x1_1.xkm3d b/Starbreach/Assets/Shared/Environment/Platforms/Models/Cell_1x1_1.xkm3d new file mode 100644 index 0000000..de5e1ca --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Models/Cell_1x1_1.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: bb6a39ce-e5a0-48b5-a3ce-b43a85495c32 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Platforms/Cells/Cell_1x1_1.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 0d00e78540a2729ccad6150f924be8fe: + Name: cell2_baked + MaterialInstance: + Material: 0d944493-c89b-44fe-8cfe-92ca28c16657:Environment/Platforms/Materials/Cells/Cell1_Rust_MT +Skeleton: null +~SourceHashes: + b7f5acdc61aa52883a8ecaa1b7747a1d~../../../../../Resources/Platforms/Cells/Cell_1x1_1.fbx: 5ef4ea6ff91c0c3dc1219006168df3bc diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Models/Cell_1x1_2.xkm3d b/Starbreach/Assets/Shared/Environment/Platforms/Models/Cell_1x1_2.xkm3d new file mode 100644 index 0000000..f4b4096 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Models/Cell_1x1_2.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 6c822cd3-2464-4ad5-8018-cb563b715034 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Platforms/Cells/Cell_1x1_2.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 8f421ce324422d2d8a69e91660d4a4c9: + Name: cell2_baked.002 + MaterialInstance: + Material: 0d944493-c89b-44fe-8cfe-92ca28c16657:Environment/Platforms/Materials/Cells/Cell1_Rust_MT +Skeleton: null +~SourceHashes: + 4e9e5b6064c5be1a0db19530e66fc4a2~../../../../../Resources/Platforms/Cells/Cell_1x1_2.fbx: 6b5fa509f953f02f7620aa6dc60b55f9 diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Models/Cell_Loop.xkm3d b/Starbreach/Assets/Shared/Environment/Platforms/Models/Cell_Loop.xkm3d new file mode 100644 index 0000000..3b68254 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Models/Cell_Loop.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Platforms/Cells/Cell_Loop.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 0d00e78540a2729ccad6150f924be8fe: + Name: cell2_baked + MaterialInstance: + Material: 0d944493-c89b-44fe-8cfe-92ca28c16657:Environment/Platforms/Materials/Cells/Cell1_Rust_MT +Skeleton: null +~SourceHashes: + b0077a2d470ea1214008cf3edee2a941~../../../../../Resources/Platforms/Cells/Cell_Loop.fbx: f253873a629ec2950028931d9db18aa6 diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Models/Cell_loop_half.xkm3d b/Starbreach/Assets/Shared/Environment/Platforms/Models/Cell_loop_half.xkm3d new file mode 100644 index 0000000..462cb1b --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Models/Cell_loop_half.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 37fe538d-f8a5-4516-9d2e-5f86ac23eac5 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Platforms/Cells/Cell_loop_half.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + ff6858cd0372e66a2b1b859fce7424b0: + Name: cell2_baked + MaterialInstance: + Material: 0d944493-c89b-44fe-8cfe-92ca28c16657:Environment/Platforms/Materials/Cells/Cell1_Rust_MT +Skeleton: null +~SourceHashes: + c598541841b8d8e51e6b63961e942b8d~../../../../../Resources/Platforms/Cells/Cell_loop_half.fbx: 8627045108aeae58f946cf572b53502e diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Models/Cell_loop_half2.xkm3d b/Starbreach/Assets/Shared/Environment/Platforms/Models/Cell_loop_half2.xkm3d new file mode 100644 index 0000000..d11a205 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Models/Cell_loop_half2.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 0be1523c-3992-4b69-82f5-7351e8cc6f87 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Platforms/Cells/Cell_loop_half2.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + eb70007a32b4964abfac871f1b83b4dd: + Name: cell2_baked + MaterialInstance: + Material: 0d944493-c89b-44fe-8cfe-92ca28c16657:Environment/Platforms/Materials/Cells/Cell1_Rust_MT +Skeleton: null +~SourceHashes: + c52900a83e12200fa4b3133072689626~../../../../../Resources/Platforms/Cells/Cell_loop_half2.fbx: e6cbbd59deb8673c67b0ade78775ac55 diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Models/LargePillar.xkm3d b/Starbreach/Assets/Shared/Environment/Platforms/Models/LargePillar.xkm3d new file mode 100644 index 0000000..2c93729 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Models/LargePillar.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 258dfd07-ef55-4f3e-a0a8-afc05e4ca37b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Platforms/LargePillar/LargePillar.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 71494202e953f5cdf8496cc1d0443b40: + Name: Material + MaterialInstance: + Material: 8297fec7-c06b-4a9e-8579-aa22792a18fb:Environment/Platforms/Materials/LargePillar/LargePillar_MT +Skeleton: null +~SourceHashes: + c855d3a5a2b2bb652b2b6778306aa29e~../../../../../Resources/Platforms/LargePillar/LargePillar.FBX: 890e1c863965a9865542d320801fcb0f diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Prefabs/Border_corner_in.xkprefab b/Starbreach/Assets/Shared/Environment/Platforms/Prefabs/Border_corner_in.xkprefab new file mode 100644 index 0000000..bb20122 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Prefabs/Border_corner_in.xkprefab @@ -0,0 +1,22 @@ +!PrefabAsset +Id: 21ebc8de-2500-440f-9e0f-d399cc3e5896 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 4bb90be4-e7c6-4e5e-b845-2c84f915a3d9 + Parts: + - Entity: + Id: 4bb90be4-e7c6-4e5e-b845-2c84f915a3d9 + Name: Border_in_corner_90 + Components: + 8dd5441a9e0f7cc9cdac7e64be0bcc32: !TransformComponent + Id: 1b317662-a8ff-49ad-bc68-ed13825d4d8c + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 21e6c7c4ce05ff264d998193015bbbbe: !ModelComponent + Id: 53ff143b-8f73-446f-913e-e184eb6784e1 + Model: 1c9753bc-679d-4677-8f9f-9c88dd878d10:Environment/Platforms/Models/Border_in_corner_90 + Materials: {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Prefabs/Border_corner_out.xkprefab b/Starbreach/Assets/Shared/Environment/Platforms/Prefabs/Border_corner_out.xkprefab new file mode 100644 index 0000000..b63ab3e --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Prefabs/Border_corner_out.xkprefab @@ -0,0 +1,22 @@ +!PrefabAsset +Id: efe073eb-d2bd-4eb9-a065-4a103cc52d7c +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! a08bbac9-bc4d-404a-84b2-5093fedf0e77 + Parts: + - Entity: + Id: a08bbac9-bc4d-404a-84b2-5093fedf0e77 + Name: Border_out_corner_90 + Components: + b923f0caab27e8703f9f8ee1a8dd1d18: !TransformComponent + Id: eb1f7db1-b009-45d5-809f-697574fd8a47 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6098c87ff6246e074f03b48bd2941bf8: !ModelComponent + Id: 5d30085c-f624-4289-a7b1-7da0e5156084 + Model: e2199908-ce19-4e35-843e-6ade71089032:Environment/Platforms/Models/Border_out_corner_90 + Materials: {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Prefabs/Border_diagonal.xkprefab b/Starbreach/Assets/Shared/Environment/Platforms/Prefabs/Border_diagonal.xkprefab new file mode 100644 index 0000000..52a6195 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Prefabs/Border_diagonal.xkprefab @@ -0,0 +1,53 @@ +!PrefabAsset +Id: 17d2fd46-1f8b-4415-9955-2620377cec2a +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 41993cd2-35cc-4a8b-856f-6ab318c0c8a7 + - ref!! 0663d136-77ec-4fc3-baff-c423c2a8eddc + - ref!! df7821c8-1a37-41d0-8dce-664124afb3c4 + Parts: + - Folder: null + Entity: + Id: 0663d136-77ec-4fc3-baff-c423c2a8eddc + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: fd089401-3e2e-472f-998f-8c801a41dc25 + Position: {X: 1.49187136, Y: 0.0, Z: 1.1622473} + Rotation: {X: 0.0, Y: -0.4265582, Z: 0.0, W: -0.9044601} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 64650ae7-e9f4-4502-bb2e-dcbb4f8b2946 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + - Entity: + Id: 41993cd2-35cc-4a8b-856f-6ab318c0c8a7 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 108601ab-c041-426d-be0b-8134cb0278f6 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 9b21acc7-dd54-4ffd-8fb9-936279731be7 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + - Entity: + Id: df7821c8-1a37-41d0-8dce-664124afb3c4 + Name: Barrel + Components: + 731dd1607c1b5b9b20db92e64b29cee1: !TransformComponent + Id: eba653c7-6860-4ab7-b0d6-f7e40ab5bc6a + Position: {X: 0.500426233, Y: -2.007827, Z: -0.288386434} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 0.75, Y: 1.0, Z: 0.75} + Children: {} + d25273223350333c71feb4c8b9d6d50c: !ModelComponent + Id: 5a04e562-2cef-4ea0-a054-a31356d31e59 + Model: 3a09548e-eda3-49bd-8b7e-49c653eb1c04:Environment/Props/Models/Barrel + Materials: {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Prefabs/Border_straight.xkprefab b/Starbreach/Assets/Shared/Environment/Platforms/Prefabs/Border_straight.xkprefab new file mode 100644 index 0000000..454d666 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Prefabs/Border_straight.xkprefab @@ -0,0 +1,22 @@ +!PrefabAsset +Id: 3c0d6833-c7dc-488f-84aa-c8713c5aa044 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 4edddb7b-eeae-427d-9304-aef95b0ce699 + Parts: + - Entity: + Id: 4edddb7b-eeae-427d-9304-aef95b0ce699 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 108601ab-c041-426d-be0b-8134cb0278f6 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 9b21acc7-dd54-4ffd-8fb9-936279731be7 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Prefabs/CornerA.xkprefab b/Starbreach/Assets/Shared/Environment/Platforms/Prefabs/CornerA.xkprefab new file mode 100644 index 0000000..92b7bbf --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Prefabs/CornerA.xkprefab @@ -0,0 +1,82 @@ +!PrefabAsset +Id: fceb0fe2-2759-4e59-80f9-ed87a1c78542 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 7c93854f-7730-487e-981f-d1c6a7278dc4 + - ref!! f9cf91b0-4067-4ea2-b1fc-b6ad9dc29b2b + - ref!! 8933eda2-04ae-439c-a263-4a2ef6609e6b + - ref!! 5eaddd35-347f-4bb2-821f-7d205091787d + - ref!! 580666a4-cce3-49ae-88b8-58dca730b485 + Parts: + - Entity: + Id: 580666a4-cce3-49ae-88b8-58dca730b485 + Name: Cell_Loop + Components: + 6dfdbd3820916d45fdeb5364ba2787f6: !TransformComponent + Id: a372e997-c53f-4bf8-ab9f-657326c2b275 + Position: {X: 4.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d8426bc9166246f0e76ad053cf6fb178: !ModelComponent + Id: d8f00172-fcfc-4b16-92cc-c2803a561d19 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Entity: + Id: 5eaddd35-347f-4bb2-821f-7d205091787d + Name: Cell_Loop + Components: + 6dfdbd3820916d45fdeb5364ba2787f6: !TransformComponent + Id: 5a3d1c94-afb3-4d52-ba6f-ba739927d8e7 + Position: {X: 2.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d8426bc9166246f0e76ad053cf6fb178: !ModelComponent + Id: 69cdb389-e27a-419a-903e-5be34df6e013 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Entity: + Id: 7c93854f-7730-487e-981f-d1c6a7278dc4 + Name: Border_out_corner_90 + Components: + d92625d9413ae03df8181498a8cf4674: !TransformComponent + Id: 91e3ab68-9303-44f5-95c8-a8fc84301f69 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 760a05589dffad867d432877d98a6c15: !ModelComponent + Id: c473f617-0b1c-4d68-9d8b-55b8ab9de6d8 + Model: e2199908-ce19-4e35-843e-6ade71089032:Environment/Platforms/Models/Border_out_corner_90 + Materials: {} + - Entity: + Id: 8933eda2-04ae-439c-a263-4a2ef6609e6b + Name: Cell_Loop + Components: + 65032974c4209fbde409581abc609fd8: !TransformComponent + Id: bfbfeadf-ac60-4c92-8590-10e34303f680 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 4f5edb7399687f868fff55dd3868471c: !ModelComponent + Id: 6fad6b96-4b3e-483e-b6ef-2d2c961f3a24 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Entity: + Id: f9cf91b0-4067-4ea2-b1fc-b6ad9dc29b2b + Name: Border_straight + Components: + cd837ec50926bfc187677c460c159e34: !TransformComponent + Id: 33887b8d-0f77-4410-b1e9-b7e5f1b0f8f6 + Position: {X: 6.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + 3477222ec8de7d51be389ae5a1944040: !ModelComponent + Id: 8e612dd3-6e91-4151-b222-45e218e26b98 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} diff --git a/Starbreach/Assets/Shared/Environment/Platforms/Prefabs/CornerB.xkprefab b/Starbreach/Assets/Shared/Environment/Platforms/Prefabs/CornerB.xkprefab new file mode 100644 index 0000000..b4c4328 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Platforms/Prefabs/CornerB.xkprefab @@ -0,0 +1,82 @@ +!PrefabAsset +Id: a256c5de-e536-45ef-9d2a-dafaa93a090d +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! ddda814c-e7bb-40fa-80b2-f7a764564fb8 + - ref!! 7e37144f-f331-4d55-9ed8-20fb4993549c + - ref!! 9339346a-3959-496f-8ac2-d044847984ad + - ref!! 6c548c94-1449-4620-9c32-707ef864c792 + - ref!! 5ab57600-4fea-4b7a-ad5f-951d2413da0d + Parts: + - Entity: + Id: 5ab57600-4fea-4b7a-ad5f-951d2413da0d + Name: Cell_Loop + Components: + 5672b406e128d4f0364adab62a8d4be2: !TransformComponent + Id: e0dc6a67-cb3a-4ce7-ae6d-6955dd00dcb1 + Position: {X: 4.0, Y: 0.0, Z: 2.99999976} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8bf5336455d743056586643ca66f8557: !ModelComponent + Id: c8249d6a-e763-4c65-9254-39396f652ac2 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Entity: + Id: 6c548c94-1449-4620-9c32-707ef864c792 + Name: Cell_Loop + Components: + ee37a3e3676472490a9e4784e5469a8d: !TransformComponent + Id: b5e2e7c7-d3e7-418d-8b52-fccd09289028 + Position: {X: 2.0, Y: 0.0, Z: 2.99999976} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + ee7786d3b19911580b16cef11d6cd646: !ModelComponent + Id: 5ce6d21a-3fac-4b77-8463-f8916974732f + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Entity: + Id: 7e37144f-f331-4d55-9ed8-20fb4993549c + Name: Border_straight + Components: + 0f11b45a2d23376f78bc95537d04dcef: !TransformComponent + Id: bbd69d06-6b1c-4ee8-b0d8-23cc2784bb6d + Position: {X: 3.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + 354f8b12468a04645df3f0c4591225f6: !ModelComponent + Id: 7be06eff-3851-4b73-a6cb-3d66269f4796 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + - Entity: + Id: 9339346a-3959-496f-8ac2-d044847984ad + Name: Cell_Loop + Components: + f2030c687a9df6ca8bb78b0f1be17a23: !TransformComponent + Id: eb43fcba-8992-4788-a19d-4fe07d85192b + Position: {X: 0.0, Y: 0.0, Z: 2.99999976} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + bc322b2d0ac8b32a566efb9b30feba2d: !ModelComponent + Id: 9753c86d-3a5a-4f54-8178-d78250b12df9 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Entity: + Id: ddda814c-e7bb-40fa-80b2-f7a764564fb8 + Name: Border_out_corner_90 + Components: + 5f61ae2971be7ec8c828a00db3c14b47: !TransformComponent + Id: 5c31161a-9793-4fdf-a030-2b740c9af7f6 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f7432897a46d1bd3d15b3d5960d445ca: !ModelComponent + Id: 5ed030a4-8a81-4ce0-a780-f76189c645bd + Model: e2199908-ce19-4e35-843e-6ade71089032:Environment/Platforms/Models/Border_out_corner_90 + Materials: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Barrel/Barell_AO.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Barrel/Barell_AO.xktex new file mode 100644 index 0000000..dca28f1 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Barrel/Barell_AO.xktex @@ -0,0 +1,8 @@ +!Texture +Id: aca64675-5ae8-4d18-a3e4-098f7154965a +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Barrel/Barrel_AO.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Barrel/Barrel_D.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Barrel/Barrel_D.xktex new file mode 100644 index 0000000..89ab880 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Barrel/Barrel_D.xktex @@ -0,0 +1,11 @@ +!Texture +Id: d01b168a-9796-4964-99bb-341bcacd0b4f +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Barrel/Barrel_D.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} + Alpha: None + PremultiplyAlpha: false diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Barrel/Barrel_G.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Barrel/Barrel_G.xktex new file mode 100644 index 0000000..fea90da --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Barrel/Barrel_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 68217cae-d810-4e03-935b-b816578e4561 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Barrel/Barrel_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Barrel/Barrel_M.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Barrel/Barrel_M.xktex new file mode 100644 index 0000000..1241eef --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Barrel/Barrel_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 8b54f1fa-fce4-4340-b78a-b13842d54bfa +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Barrel/Barrel_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Barrel/Barrel_MT.xkmat b/Starbreach/Assets/Shared/Environment/Props/Materials/Barrel/Barrel_MT.xkmat new file mode 100644 index 0000000..dcfb8c3 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Barrel/Barrel_MT.xkmat @@ -0,0 +1,62 @@ +!MaterialAsset +Id: 199874d6-47b5-4a3a-8f3f-0051947d2b0a +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: b56653e9-9cb2-4aa8-a104-b7f5f44f1f19:Environment/Props/Materials/Barrel/Barrel_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 68217cae-d810-4e03-935b-b816578e4561:Environment/Props/Materials/Barrel/Barrel_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: d01b168a-9796-4964-99bb-341bcacd0b4f:Environment/Props/Materials/Barrel/Barrel_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 8b54f1fa-fce4-4340-b78a-b13842d54bfa:Environment/Props/Materials/Barrel/Barrel_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: aca64675-5ae8-4d18-a3e4-098f7154965a:Environment/Props/Materials/Barrel/Barell_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Barrel/Barrel_N.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Barrel/Barrel_N.xktex new file mode 100644 index 0000000..7d22b20 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Barrel/Barrel_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: b56653e9-9cb2-4aa8-a104-b7f5f44f1f19 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Barrel/Barrel_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box1_AO.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box1_AO.xktex new file mode 100644 index 0000000..85f17cc --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box1_AO.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 2d5bbbbe-a88c-47d2-a0da-ecdb44a3dedf +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Boxes/Box1_AO.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box1_D.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box1_D.xktex new file mode 100644 index 0000000..e93e5ee --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box1_D.xktex @@ -0,0 +1,11 @@ +!Texture +Id: e2779b95-efb4-4109-8346-39c856016ff8 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Boxes/Box1_D.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} + Alpha: None + PremultiplyAlpha: false diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box1_G.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box1_G.xktex new file mode 100644 index 0000000..2d2e40d --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box1_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 3d8772ac-0afe-42f1-8e12-5ed1beb837b4 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Boxes/Box1_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box1_M.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box1_M.xktex new file mode 100644 index 0000000..f54d1a6 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box1_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 684fc6e4-9eff-44dc-b6f9-8a45f22afcef +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Boxes/Box1_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box1_MT.xkmat b/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box1_MT.xkmat new file mode 100644 index 0000000..fdc883a --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box1_MT.xkmat @@ -0,0 +1,62 @@ +!MaterialAsset +Id: f3165b56-a18b-4cac-8e09-96f2da350f71 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: b2f11431-9c9c-4f5d-b1ba-9520517e8dd3:Environment/Props/Materials/Boxes/Box1_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 3d8772ac-0afe-42f1-8e12-5ed1beb837b4:Environment/Props/Materials/Boxes/Box1_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: e2779b95-efb4-4109-8346-39c856016ff8:Environment/Props/Materials/Boxes/Box1_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 684fc6e4-9eff-44dc-b6f9-8a45f22afcef:Environment/Props/Materials/Boxes/Box1_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 2d5bbbbe-a88c-47d2-a0da-ecdb44a3dedf:Environment/Props/Materials/Boxes/Box1_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box1_N.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box1_N.xktex new file mode 100644 index 0000000..03c0b9c --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box1_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: b2f11431-9c9c-4f5d-b1ba-9520517e8dd3 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Boxes/Box1_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box2_AO.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box2_AO.xktex new file mode 100644 index 0000000..0ffaace --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box2_AO.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 6b04ebb2-3212-4c1c-b16c-d33732de1c72 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Boxes/Box2_AO.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box2_D.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box2_D.xktex new file mode 100644 index 0000000..f209851 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box2_D.xktex @@ -0,0 +1,11 @@ +!Texture +Id: 6247435f-c8c3-4105-8c55-7026c5274696 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Boxes/Box2_D.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} + Alpha: None + PremultiplyAlpha: false diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box2_G.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box2_G.xktex new file mode 100644 index 0000000..d70358e --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box2_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 49fc5df4-5458-4ac0-aa51-def934ef3b05 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Boxes/Box2_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box2_M.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box2_M.xktex new file mode 100644 index 0000000..303e1ee --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box2_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 616f0d17-7c39-4b99-bc1f-c4202a62f9ed +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Boxes/Box2_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box2_MT.xkmat b/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box2_MT.xkmat new file mode 100644 index 0000000..7e3c349 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box2_MT.xkmat @@ -0,0 +1,62 @@ +!MaterialAsset +Id: df2dd57e-7884-41f9-90c7-6fc9ba52fce2 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: d3620f37-0e7e-4285-8aea-fb72145b8427:Environment/Props/Materials/Boxes/Box2_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 49fc5df4-5458-4ac0-aa51-def934ef3b05:Environment/Props/Materials/Boxes/Box2_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 6247435f-c8c3-4105-8c55-7026c5274696:Environment/Props/Materials/Boxes/Box2_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 616f0d17-7c39-4b99-bc1f-c4202a62f9ed:Environment/Props/Materials/Boxes/Box2_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 6b04ebb2-3212-4c1c-b16c-d33732de1c72:Environment/Props/Materials/Boxes/Box2_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box2_N.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box2_N.xktex new file mode 100644 index 0000000..743cbce --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Boxes/Box2_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: d3620f37-0e7e-4285-8aea-fb72145b8427 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Boxes/Box2_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/ChargerBox/ChargerBox_AO.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/ChargerBox/ChargerBox_AO.xktex new file mode 100644 index 0000000..1915c32 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/ChargerBox/ChargerBox_AO.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 2621ce13-81d7-42b7-8258-4d0919ff2ff6 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/ChargerBox/ChargerBox_AO.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/ChargerBox/ChargerBox_D.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/ChargerBox/ChargerBox_D.xktex new file mode 100644 index 0000000..80bee91 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/ChargerBox/ChargerBox_D.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 497747c0-0130-4bb6-a598-c6690ea85d87 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/ChargerBox/ChargerBox_D.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/ChargerBox/ChargerBox_E.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/ChargerBox/ChargerBox_E.xktex new file mode 100644 index 0000000..0c85b36 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/ChargerBox/ChargerBox_E.xktex @@ -0,0 +1,9 @@ +!Texture +Id: e578ff96-e636-441b-b03a-1c852c81139b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/ChargerBox/ChargerBox_E.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/ChargerBox/ChargerBox_G.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/ChargerBox/ChargerBox_G.xktex new file mode 100644 index 0000000..941c440 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/ChargerBox/ChargerBox_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 87a434a9-4b32-4553-bb19-41ce3dc0971b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/ChargerBox/ChargerBox_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/ChargerBox/ChargerBox_M.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/ChargerBox/ChargerBox_M.xktex new file mode 100644 index 0000000..f2b966a --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/ChargerBox/ChargerBox_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 913a50ec-d9e7-41b5-8040-1a56202c5049 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/ChargerBox/ChargerBox_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/ChargerBox/ChargerBox_MT.xkmat b/Starbreach/Assets/Shared/Environment/Props/Materials/ChargerBox/ChargerBox_MT.xkmat new file mode 100644 index 0000000..d02d49b --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/ChargerBox/ChargerBox_MT.xkmat @@ -0,0 +1,72 @@ +!MaterialAsset +Id: 1f4591d2-0b07-40c2-bb2b-3cdb6200354d +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 00253f37-456a-4aad-ba29-159825c76782:Environment/Props/Materials/ChargerBox/ChargerBox_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 87a434a9-4b32-4553-bb19-41ce3dc0971b:Environment/Props/Materials/ChargerBox/ChargerBox_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 497747c0-0130-4bb6-a598-c6690ea85d87:Environment/Props/Materials/ChargerBox/ChargerBox_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 913a50ec-d9e7-41b5-8040-1a56202c5049:Environment/Props/Materials/ChargerBox/ChargerBox_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 2621ce13-81d7-42b7-8258-4d0919ff2ff6:Environment/Props/Materials/ChargerBox/ChargerBox_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: e578ff96-e636-441b-b03a-1c852c81139b:Environment/Props/Materials/ChargerBox/ChargerBox_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 4.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/ChargerBox/ChargerBox_N.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/ChargerBox/ChargerBox_N.xktex new file mode 100644 index 0000000..187096c --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/ChargerBox/ChargerBox_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 00253f37-456a-4aad-ba29-159825c76782 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/ChargerBox/ChargerBox_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Column/Column_AO.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Column/Column_AO.xktex new file mode 100644 index 0000000..6f1b5ac --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Column/Column_AO.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 953b097e-ef70-4056-b834-a53840e7a537 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Column/Column_AO.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Column/Column_D.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Column/Column_D.xktex new file mode 100644 index 0000000..95166fd --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Column/Column_D.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 4a0089eb-b333-4f2b-a6aa-b6384b0b18b9 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Column/Column_D.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Column/Column_E.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Column/Column_E.xktex new file mode 100644 index 0000000..0f34d95 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Column/Column_E.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 56569c59-7477-42b1-aa6f-445d1b9d8249 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Column/Column_E.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Column/Column_G.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Column/Column_G.xktex new file mode 100644 index 0000000..12f42c3 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Column/Column_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: dddfdfed-1422-47e8-a260-80d0faf83075 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Column/Column_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Column/Column_M.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Column/Column_M.xktex new file mode 100644 index 0000000..c5eab5c --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Column/Column_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: ce5731f6-bed9-40e4-bb74-a15753a346b6 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Column/Column_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Column/Column_MT.xkmat b/Starbreach/Assets/Shared/Environment/Props/Materials/Column/Column_MT.xkmat new file mode 100644 index 0000000..d1e1d30 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Column/Column_MT.xkmat @@ -0,0 +1,72 @@ +!MaterialAsset +Id: 83304125-270c-48ae-a0b7-38986bf28e08 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 66ec87ad-f905-415f-80d3-7ad6cc3d55ad:Environment/Props/Materials/Column/Column_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: dddfdfed-1422-47e8-a260-80d0faf83075:Environment/Props/Materials/Column/Column_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 4a0089eb-b333-4f2b-a6aa-b6384b0b18b9:Environment/Props/Materials/Column/Column_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: ce5731f6-bed9-40e4-bb74-a15753a346b6:Environment/Props/Materials/Column/Column_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 953b097e-ef70-4056-b834-a53840e7a537:Environment/Props/Materials/Column/Column_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: 56569c59-7477-42b1-aa6f-445d1b9d8249:Environment/Props/Materials/Column/Column_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 100.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Column/Column_N.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Column/Column_N.xktex new file mode 100644 index 0000000..74a9990 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Column/Column_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 66ec87ad-f905-415f-80d3-7ad6cc3d55ad +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Column/Column_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Crane/Crane_AO.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Crane/Crane_AO.xktex new file mode 100644 index 0000000..f5a1825 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Crane/Crane_AO.xktex @@ -0,0 +1,8 @@ +!Texture +Id: c8e72b5a-f0c5-4464-9601-51e2f3491064 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Crane/Crane_AO.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Crane/Crane_D.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Crane/Crane_D.xktex new file mode 100644 index 0000000..cf6c6e4 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Crane/Crane_D.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 79a5ef8e-3e2b-452f-9df2-df1c8487a988 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Crane/Crane_D.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Crane/Crane_E.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Crane/Crane_E.xktex new file mode 100644 index 0000000..4ff3184 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Crane/Crane_E.xktex @@ -0,0 +1,9 @@ +!Texture +Id: e0b44761-ea34-4867-9379-6c82fada7331 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Crane/Crane_E.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Crane/Crane_G.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Crane/Crane_G.xktex new file mode 100644 index 0000000..75e3f2a --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Crane/Crane_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 9846a9ae-7587-4571-969d-004d0064c758 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Crane/Crane_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Crane/Crane_M.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Crane/Crane_M.xktex new file mode 100644 index 0000000..f0114fa --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Crane/Crane_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: d9b7ca52-00a2-49a0-9662-7e8632657131 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Crane/Crane_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Crane/Crane_MT.xkmat b/Starbreach/Assets/Shared/Environment/Props/Materials/Crane/Crane_MT.xkmat new file mode 100644 index 0000000..ee4181a --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Crane/Crane_MT.xkmat @@ -0,0 +1,72 @@ +!MaterialAsset +Id: 69a82a65-317c-412c-bee3-78b819d91d22 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: a9bbbf59-277c-42ad-8ea1-c07c47d32893:Environment/Props/Materials/Crane/Crane_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 9846a9ae-7587-4571-969d-004d0064c758:Environment/Props/Materials/Crane/Crane_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 79a5ef8e-3e2b-452f-9df2-df1c8487a988:Environment/Props/Materials/Crane/Crane_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: d9b7ca52-00a2-49a0-9662-7e8632657131:Environment/Props/Materials/Crane/Crane_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: c8e72b5a-f0c5-4464-9601-51e2f3491064:Environment/Props/Materials/Crane/Crane_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: e0b44761-ea34-4867-9379-6c82fada7331:Environment/Props/Materials/Crane/Crane_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 4.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Crane/Crane_N.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Crane/Crane_N.xktex new file mode 100644 index 0000000..ed0bf04 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Crane/Crane_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: a9bbbf59-277c-42ad-8ea1-c07c47d32893 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Crane/Crane_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_AO.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_AO.xktex new file mode 100644 index 0000000..afed893 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_AO.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 03c5e838-069b-4827-86ef-0c498b44815b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/DPU/DPU1_AO.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_D.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_D.xktex new file mode 100644 index 0000000..19bc0bb --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_D.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 5f737b88-b251-4342-81d5-024e6f16b3c8 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/DPU/DPU1_D.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_E.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_E.xktex new file mode 100644 index 0000000..6862f06 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_E.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 18b55f78-7f51-4d4e-aa23-1c3a432096ae +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/DPU/DPU1_E.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_G.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_G.xktex new file mode 100644 index 0000000..72d8ca6 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 5e307b91-fe1b-4cd9-837e-a53f6c4e2e0e +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/DPU/DPU1_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_M.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_M.xktex new file mode 100644 index 0000000..c05db55 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 6ddeb75e-6514-4cbc-a93d-bc4e32cabf13 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/DPU/DPU1_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_MT.xkmat b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_MT.xkmat new file mode 100644 index 0000000..fee275a --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_MT.xkmat @@ -0,0 +1,72 @@ +!MaterialAsset +Id: 57fdc5a6-3f21-479b-9809-4e6a9b20b226 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 2c4b6083-4755-4158-bec8-0d554350f500:Environment/Props/Materials/DPU/DPU1_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 5e307b91-fe1b-4cd9-837e-a53f6c4e2e0e:Environment/Props/Materials/DPU/DPU1_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 5f737b88-b251-4342-81d5-024e6f16b3c8:Environment/Props/Materials/DPU/DPU1_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 6ddeb75e-6514-4cbc-a93d-bc4e32cabf13:Environment/Props/Materials/DPU/DPU1_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 03c5e838-069b-4827-86ef-0c498b44815b:Environment/Props/Materials/DPU/DPU1_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: 18b55f78-7f51-4d4e-aa23-1c3a432096ae:Environment/Props/Materials/DPU/DPU1_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 4.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_N.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_N.xktex new file mode 100644 index 0000000..554461d --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 2c4b6083-4755-4158-bec8-0d554350f500 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/DPU/DPU1_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_Rust_D.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_Rust_D.xktex new file mode 100644 index 0000000..546a099 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_Rust_D.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 50ea10e9-13cd-46fd-975e-86b36653fd8a +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/DPU/DPU1_Rust_D.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_Rust_G.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_Rust_G.xktex new file mode 100644 index 0000000..acd26f5 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_Rust_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 5d189ea9-c619-4c32-aa26-6a019d88ebff +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/DPU/DPU1_Rust_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_Rust_M.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_Rust_M.xktex new file mode 100644 index 0000000..878b3f3 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_Rust_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: cbae3d90-65cf-4243-87ff-fac265e7887e +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/DPU/DPU1_Rust_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_Rust_MT.xkmat b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_Rust_MT.xkmat new file mode 100644 index 0000000..7af4550 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_Rust_MT.xkmat @@ -0,0 +1,72 @@ +!MaterialAsset +Id: 80b2d5b7-035e-4ace-890c-402e15d2adc0 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 87684e31-dd09-4ddd-b7b8-d61a1b9bf599:Environment/Props/Materials/DPU/DPU1_Rust_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 5d189ea9-c619-4c32-aa26-6a019d88ebff:Environment/Props/Materials/DPU/DPU1_Rust_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 50ea10e9-13cd-46fd-975e-86b36653fd8a:Environment/Props/Materials/DPU/DPU1_Rust_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: cbae3d90-65cf-4243-87ff-fac265e7887e:Environment/Props/Materials/DPU/DPU1_Rust_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 03c5e838-069b-4827-86ef-0c498b44815b:Environment/Props/Materials/DPU/DPU1_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: 18b55f78-7f51-4d4e-aa23-1c3a432096ae:Environment/Props/Materials/DPU/DPU1_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 4.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_Rust_N.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_Rust_N.xktex new file mode 100644 index 0000000..38bd7d2 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU1_Rust_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 87684e31-dd09-4ddd-b7b8-d61a1b9bf599 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/DPU/DPU1_Rust_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_AO.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_AO.xktex new file mode 100644 index 0000000..0d0f8dc --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_AO.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 1b28aebd-2db6-4ddd-ab0e-15f724ba58d5 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/DPU/DPU2_AO.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_D.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_D.xktex new file mode 100644 index 0000000..b486403 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_D.xktex @@ -0,0 +1,9 @@ +!Texture +Id: b8d72a5b-f459-4cb0-9ac4-d49794970d8e +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/DPU/DPU2_D.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_E.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_E.xktex new file mode 100644 index 0000000..4794572 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_E.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 1f0b056d-d430-4be0-9984-79efa59e509b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/DPU/DPU2_E.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_G.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_G.xktex new file mode 100644 index 0000000..0a64b47 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 7b5d55d0-a368-4f94-b91b-f63d42f23981 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/DPU/DPU2_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_M.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_M.xktex new file mode 100644 index 0000000..995ab62 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: a3827a2f-3819-4ac5-b34c-1990f01ef4b9 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/DPU/DPU2_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_MT.xkmat b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_MT.xkmat new file mode 100644 index 0000000..f4dc3a0 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_MT.xkmat @@ -0,0 +1,72 @@ +!MaterialAsset +Id: 1d4c7b40-46d0-417e-80e5-e90d99ae11a3 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: fe8454ae-71af-491e-8cc2-73ef474b4745:Environment/Props/Materials/DPU/DPU2_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 7b5d55d0-a368-4f94-b91b-f63d42f23981:Environment/Props/Materials/DPU/DPU2_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: b8d72a5b-f459-4cb0-9ac4-d49794970d8e:Environment/Props/Materials/DPU/DPU2_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: a3827a2f-3819-4ac5-b34c-1990f01ef4b9:Environment/Props/Materials/DPU/DPU2_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 1b28aebd-2db6-4ddd-ab0e-15f724ba58d5:Environment/Props/Materials/DPU/DPU2_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: 1f0b056d-d430-4be0-9984-79efa59e509b:Environment/Props/Materials/DPU/DPU2_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 4.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_N.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_N.xktex new file mode 100644 index 0000000..ec2af8f --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: fe8454ae-71af-491e-8cc2-73ef474b4745 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/DPU/DPU2_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_Rust_D.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_Rust_D.xktex new file mode 100644 index 0000000..c22e179 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_Rust_D.xktex @@ -0,0 +1,9 @@ +!Texture +Id: e01a3ba7-904d-4f56-9456-a3f2bb88a066 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/DPU/DPU2_Rust_D.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_Rust_G.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_Rust_G.xktex new file mode 100644 index 0000000..a464efb --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_Rust_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 9b0baed7-cace-4ead-9bb9-59706415245b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/DPU/DPU2_Rust_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_Rust_M.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_Rust_M.xktex new file mode 100644 index 0000000..b6c0a91 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_Rust_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 1c386eef-5e7e-40b9-a1a7-195e96c07ee1 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/DPU/DPU2_Rust_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_Rust_MT.xkmat b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_Rust_MT.xkmat new file mode 100644 index 0000000..a4c3d25 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_Rust_MT.xkmat @@ -0,0 +1,72 @@ +!MaterialAsset +Id: 4a7c1fe9-8d67-42a4-b682-d311414e2c68 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 5dd29117-daeb-4cda-8df0-7351cebb7988:Environment/Props/Materials/DPU/DPU2_Rust_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 9b0baed7-cace-4ead-9bb9-59706415245b:Environment/Props/Materials/DPU/DPU2_Rust_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: e01a3ba7-904d-4f56-9456-a3f2bb88a066:Environment/Props/Materials/DPU/DPU2_Rust_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 1c386eef-5e7e-40b9-a1a7-195e96c07ee1:Environment/Props/Materials/DPU/DPU2_Rust_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 1b28aebd-2db6-4ddd-ab0e-15f724ba58d5:Environment/Props/Materials/DPU/DPU2_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: 1f0b056d-d430-4be0-9984-79efa59e509b:Environment/Props/Materials/DPU/DPU2_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 4.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_Rust_N.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_Rust_N.xktex new file mode 100644 index 0000000..3daa456 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DPU/DPU2_Rust_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 5dd29117-daeb-4cda-8df0-7351cebb7988 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/DPU/DPU2_Rust_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DataPad/DataPad_AO.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/DataPad/DataPad_AO.xktex new file mode 100644 index 0000000..fb537d3 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DataPad/DataPad_AO.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 6a4ce41c-d2f2-4602-92d6-2f8a28452155 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/DataPad/DataPad_AO.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DataPad/DataPad_D.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/DataPad/DataPad_D.xktex new file mode 100644 index 0000000..4584395 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DataPad/DataPad_D.xktex @@ -0,0 +1,9 @@ +!Texture +Id: d38b99b6-109c-40eb-8cb4-4e0ffd632b14 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/DataPad/DataPad_D.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DataPad/DataPad_E.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/DataPad/DataPad_E.xktex new file mode 100644 index 0000000..59d55fa --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DataPad/DataPad_E.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 16a428ae-5786-47e1-b1e1-4bfc89b9f90b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/DataPad/DataPad_E.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DataPad/DataPad_G.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/DataPad/DataPad_G.xktex new file mode 100644 index 0000000..189190a --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DataPad/DataPad_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: dd505c9d-dfc3-4242-a92c-e5a58e5defa8 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/DataPad/DataPad_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DataPad/DataPad_M.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/DataPad/DataPad_M.xktex new file mode 100644 index 0000000..dab311c --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DataPad/DataPad_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: c8da55ab-a6a3-4042-a733-4f1b12a9a416 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/DataPad/DataPad_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DataPad/DataPad_MT.xkmat b/Starbreach/Assets/Shared/Environment/Props/Materials/DataPad/DataPad_MT.xkmat new file mode 100644 index 0000000..42e885d --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DataPad/DataPad_MT.xkmat @@ -0,0 +1,72 @@ +!MaterialAsset +Id: 022d3724-3b8f-4912-b8ed-261f47300b45 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 1d515f14-9527-46c8-8fa1-3629b1039cc7:Environment/Props/Materials/DataPad/DataPad_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: dd505c9d-dfc3-4242-a92c-e5a58e5defa8:Environment/Props/Materials/DataPad/DataPad_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: d38b99b6-109c-40eb-8cb4-4e0ffd632b14:Environment/Props/Materials/DataPad/DataPad_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: c8da55ab-a6a3-4042-a733-4f1b12a9a416:Environment/Props/Materials/DataPad/DataPad_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 6a4ce41c-d2f2-4602-92d6-2f8a28452155:Environment/Props/Materials/DataPad/DataPad_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: 16a428ae-5786-47e1-b1e1-4bfc89b9f90b:Environment/Props/Materials/DataPad/DataPad_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 4.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DataPad/DataPad_N.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/DataPad/DataPad_N.xktex new file mode 100644 index 0000000..1563909 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DataPad/DataPad_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 1d515f14-9527-46c8-8fa1-3629b1039cc7 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/DataPad/DataPad_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DataSwitcher/DataSwitcher_AO.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/DataSwitcher/DataSwitcher_AO.xktex new file mode 100644 index 0000000..9b77764 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DataSwitcher/DataSwitcher_AO.xktex @@ -0,0 +1,8 @@ +!Texture +Id: ffaa549f-cace-4ea8-9dd4-56e5fab1fb3b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/DataSwitcher/DataSwitcher_AO.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DataSwitcher/DataSwitcher_D.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/DataSwitcher/DataSwitcher_D.xktex new file mode 100644 index 0000000..240faef --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DataSwitcher/DataSwitcher_D.xktex @@ -0,0 +1,9 @@ +!Texture +Id: c506b612-8387-4cca-ab4d-4c6ac05cad19 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/DataSwitcher/DataSwitcher_D.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DataSwitcher/DataSwitcher_E.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/DataSwitcher/DataSwitcher_E.xktex new file mode 100644 index 0000000..a9a3dc6 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DataSwitcher/DataSwitcher_E.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 5b128407-d505-4c91-90e2-072ee4958f45 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/DataSwitcher/DataSwitcher_E.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DataSwitcher/DataSwitcher_G.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/DataSwitcher/DataSwitcher_G.xktex new file mode 100644 index 0000000..801404b --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DataSwitcher/DataSwitcher_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: d54aeef2-1b5a-4b59-95db-548372e2a09d +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/DataSwitcher/DataSwitcher_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DataSwitcher/DataSwitcher_M.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/DataSwitcher/DataSwitcher_M.xktex new file mode 100644 index 0000000..83eb784 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DataSwitcher/DataSwitcher_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 26b0da25-728f-45e4-a274-3bb91481663a +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/DataSwitcher/DataSwitcher_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DataSwitcher/DataSwitcher_MT.xkmat b/Starbreach/Assets/Shared/Environment/Props/Materials/DataSwitcher/DataSwitcher_MT.xkmat new file mode 100644 index 0000000..267534f --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DataSwitcher/DataSwitcher_MT.xkmat @@ -0,0 +1,72 @@ +!MaterialAsset +Id: 3967af78-1f53-4383-898f-f8451c92176e +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 1d87050f-d0fe-413f-8780-7539cacd6c53:Environment/Props/Materials/DataSwitcher/DataSwitcher_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: d54aeef2-1b5a-4b59-95db-548372e2a09d:Environment/Props/Materials/DataSwitcher/DataSwitcher_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: c506b612-8387-4cca-ab4d-4c6ac05cad19:Environment/Props/Materials/DataSwitcher/DataSwitcher_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 26b0da25-728f-45e4-a274-3bb91481663a:Environment/Props/Materials/DataSwitcher/DataSwitcher_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: ffaa549f-cace-4ea8-9dd4-56e5fab1fb3b:Environment/Props/Materials/DataSwitcher/DataSwitcher_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: 5b128407-d505-4c91-90e2-072ee4958f45:Environment/Props/Materials/DataSwitcher/DataSwitcher_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 4.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/DataSwitcher/DataSwitcher_N.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/DataSwitcher/DataSwitcher_N.xktex new file mode 100644 index 0000000..915807d --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/DataSwitcher/DataSwitcher_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 1d87050f-d0fe-413f-8780-7539cacd6c53 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/DataSwitcher/DataSwitcher_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Cell_damaged_MT.xkmat b/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Cell_damaged_MT.xkmat new file mode 100644 index 0000000..bbd7135 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Cell_damaged_MT.xkmat @@ -0,0 +1,54 @@ +!MaterialAsset +Id: 3a922f93-7650-41ca-8496-af249ea4a417 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 0bbe7033-757c-44a1-89e8-bf53e467b33c:Environment/Props/Materials/ExplosedCells/Cells_damaged_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 9f037bc9-5239-4d2b-b4b8-7079ab7118f9:Environment/Props/Materials/ExplosedCells/Cells_damaged_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: f2243abd-7809-430e-a571-7da28defa546:Environment/Props/Materials/ExplosedCells/Cells_damaged_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: a1cd4f3c-2623-444a-8873-fb667d37ebc7:Environment/Props/Materials/ExplosedCells/Cells_damaged_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: d5628ae8-17c2-47d0-baa5-7358cd229d01:Environment/Props/Materials/ExplosedCells/Cells_damaged_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 4.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Cells_damaged_D.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Cells_damaged_D.xktex new file mode 100644 index 0000000..4084a2c --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Cells_damaged_D.xktex @@ -0,0 +1,9 @@ +!Texture +Id: f2243abd-7809-430e-a571-7da28defa546 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/ExplosedCells/Cells_damaged_D.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Cells_damaged_E.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Cells_damaged_E.xktex new file mode 100644 index 0000000..86ea5af --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Cells_damaged_E.xktex @@ -0,0 +1,9 @@ +!Texture +Id: d5628ae8-17c2-47d0-baa5-7358cd229d01 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/ExplosedCells/Cells_damaged_E.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Cells_damaged_G.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Cells_damaged_G.xktex new file mode 100644 index 0000000..1a3f922 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Cells_damaged_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 9f037bc9-5239-4d2b-b4b8-7079ab7118f9 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/ExplosedCells/Cells_damaged_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Cells_damaged_M.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Cells_damaged_M.xktex new file mode 100644 index 0000000..0e2aee0 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Cells_damaged_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: a1cd4f3c-2623-444a-8873-fb667d37ebc7 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/ExplosedCells/Cells_damaged_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Cells_damaged_N.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Cells_damaged_N.xktex new file mode 100644 index 0000000..e916ff4 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Cells_damaged_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 0bbe7033-757c-44a1-89e8-bf53e467b33c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/ExplosedCells/Cells_damaged_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Pipes_damage_AO.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Pipes_damage_AO.xktex new file mode 100644 index 0000000..a10aafc --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Pipes_damage_AO.xktex @@ -0,0 +1,8 @@ +!Texture +Id: f60e8c56-2558-4323-aefe-ca0074048251 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/ExplosedCells/Pipes_damage_AO.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Pipes_damage_D.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Pipes_damage_D.xktex new file mode 100644 index 0000000..2ad3f83 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Pipes_damage_D.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 351f44e2-b2fa-460a-8b3b-61075a69bcaa +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/ExplosedCells/Pipes_damage_D.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Pipes_damage_E.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Pipes_damage_E.xktex new file mode 100644 index 0000000..4a40b70 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Pipes_damage_E.xktex @@ -0,0 +1,9 @@ +!Texture +Id: a2d8ce89-060d-47ed-bb1d-7f82b461b4af +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/ExplosedCells/Pipes_damage_E.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Pipes_damage_G.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Pipes_damage_G.xktex new file mode 100644 index 0000000..475ed49 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Pipes_damage_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 385f9d1e-26f3-4e9c-b06f-82f03601c8a7 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/ExplosedCells/Pipes_damage_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Pipes_damage_M.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Pipes_damage_M.xktex new file mode 100644 index 0000000..8755857 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Pipes_damage_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 3daff7e0-4c6d-4720-bdcc-5f95e10660ce +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/ExplosedCells/Pipes_damage_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Pipes_damage_N.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Pipes_damage_N.xktex new file mode 100644 index 0000000..6ccbaf6 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Pipes_damage_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 00edf65c-4db7-4e3b-ab7f-c0176d8836fd +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/ExplosedCells/Pipes_damage_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Pipes_damaged_MT.xkmat b/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Pipes_damaged_MT.xkmat new file mode 100644 index 0000000..a6e5571 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/ExplosedCells/Pipes_damaged_MT.xkmat @@ -0,0 +1,72 @@ +!MaterialAsset +Id: b02a69a8-5502-443c-906a-15a8d36ca35c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 00edf65c-4db7-4e3b-ab7f-c0176d8836fd:Environment/Props/Materials/ExplosedCells/Pipes_damage_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 385f9d1e-26f3-4e9c-b06f-82f03601c8a7:Environment/Props/Materials/ExplosedCells/Pipes_damage_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 351f44e2-b2fa-460a-8b3b-61075a69bcaa:Environment/Props/Materials/ExplosedCells/Pipes_damage_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 3daff7e0-4c6d-4720-bdcc-5f95e10660ce:Environment/Props/Materials/ExplosedCells/Pipes_damage_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: f60e8c56-2558-4323-aefe-ca0074048251:Environment/Props/Materials/ExplosedCells/Pipes_damage_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: a2d8ce89-060d-47ed-bb1d-7f82b461b4af:Environment/Props/Materials/ExplosedCells/Pipes_damage_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 4.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/FloorRocks/FloorRock_AO.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/FloorRocks/FloorRock_AO.xktex new file mode 100644 index 0000000..bbab4ca --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/FloorRocks/FloorRock_AO.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 7e0d129a-3f7b-4225-b735-2d93808d24b0 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/FloorRocks/FloorRock_AO.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/FloorRocks/FloorRock_D.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/FloorRocks/FloorRock_D.xktex new file mode 100644 index 0000000..ce63485 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/FloorRocks/FloorRock_D.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 59a27bc0-34f7-4508-9ee5-b766711720b6 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/FloorRocks/FloorRock_D.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/FloorRocks/FloorRock_G.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/FloorRocks/FloorRock_G.xktex new file mode 100644 index 0000000..ff5e396 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/FloorRocks/FloorRock_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: c57570aa-d081-49b9-9935-5b703b438878 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/FloorRocks/FloorRock_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/FloorRocks/FloorRock_M.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/FloorRocks/FloorRock_M.xktex new file mode 100644 index 0000000..7fbaa09 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/FloorRocks/FloorRock_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 169d0c44-fd25-4d29-8bf8-6ab98d8ec758 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/FloorRocks/FloorRock_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/FloorRocks/FloorRock_MT.xkmat b/Starbreach/Assets/Shared/Environment/Props/Materials/FloorRocks/FloorRock_MT.xkmat new file mode 100644 index 0000000..eb52a80 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/FloorRocks/FloorRock_MT.xkmat @@ -0,0 +1,62 @@ +!MaterialAsset +Id: a480503f-0b1d-4a11-9251-af668f22d365 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 9f527cab-3262-4a2d-b8ac-76feb4fc3a31:Environment/Props/Materials/FloorRocks/FloorRock_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: c57570aa-d081-49b9-9935-5b703b438878:Environment/Props/Materials/FloorRocks/FloorRock_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 59a27bc0-34f7-4508-9ee5-b766711720b6:Environment/Props/Materials/FloorRocks/FloorRock_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 169d0c44-fd25-4d29-8bf8-6ab98d8ec758:Environment/Props/Materials/FloorRocks/FloorRock_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 7e0d129a-3f7b-4225-b735-2d93808d24b0:Environment/Props/Materials/FloorRocks/FloorRock_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/FloorRocks/FloorRock_N.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/FloorRocks/FloorRock_N.xktex new file mode 100644 index 0000000..f22f9c8 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/FloorRocks/FloorRock_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 9f527cab-3262-4a2d-b8ac-76feb4fc3a31 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/FloorRocks/FloorRock_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/GasPump/GasPump_AO.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/GasPump/GasPump_AO.xktex new file mode 100644 index 0000000..4c65f47 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/GasPump/GasPump_AO.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 67d28730-9ad1-4162-b610-b5190e3496f8 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/GasPump/GasPump_AO.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/GasPump/GasPump_D.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/GasPump/GasPump_D.xktex new file mode 100644 index 0000000..6fdb128 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/GasPump/GasPump_D.xktex @@ -0,0 +1,11 @@ +!Texture +Id: 4722d1b6-7932-4af6-bc13-f5ebd5b23f82 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/GasPump/GasPump_D.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} + Alpha: None + PremultiplyAlpha: false diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/GasPump/GasPump_G.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/GasPump/GasPump_G.xktex new file mode 100644 index 0000000..ea9b2e8 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/GasPump/GasPump_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 1a6cb278-a32e-44b3-a26d-d4e8cb82997a +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/GasPump/GasPump_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/GasPump/GasPump_M.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/GasPump/GasPump_M.xktex new file mode 100644 index 0000000..b3017bf --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/GasPump/GasPump_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: db8b098e-43fe-43bf-a336-19eef84ff5cd +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/GasPump/GasPump_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/GasPump/GasPump_MT.xkmat b/Starbreach/Assets/Shared/Environment/Props/Materials/GasPump/GasPump_MT.xkmat new file mode 100644 index 0000000..0eb6343 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/GasPump/GasPump_MT.xkmat @@ -0,0 +1,62 @@ +!MaterialAsset +Id: f5c8377d-bce8-40d3-a337-200fc95a6d7d +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 72092071-d96f-4acd-a140-069f9b47120c:Environment/Props/Materials/GasPump/GasPump_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 1a6cb278-a32e-44b3-a26d-d4e8cb82997a:Environment/Props/Materials/GasPump/GasPump_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 4722d1b6-7932-4af6-bc13-f5ebd5b23f82:Environment/Props/Materials/GasPump/GasPump_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: db8b098e-43fe-43bf-a336-19eef84ff5cd:Environment/Props/Materials/GasPump/GasPump_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 67d28730-9ad1-4162-b610-b5190e3496f8:Environment/Props/Materials/GasPump/GasPump_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/GasPump/GasPump_N.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/GasPump/GasPump_N.xktex new file mode 100644 index 0000000..4b4a12c --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/GasPump/GasPump_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 72092071-d96f-4acd-a140-069f9b47120c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/GasPump/GasPump_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Generator/Generator_AO.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Generator/Generator_AO.xktex new file mode 100644 index 0000000..e8d0018 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Generator/Generator_AO.xktex @@ -0,0 +1,8 @@ +!Texture +Id: cde796a3-4c46-4d56-8e27-fc7064003269 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Generator/Generator_AO.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Generator/Generator_D.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Generator/Generator_D.xktex new file mode 100644 index 0000000..4dee74b --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Generator/Generator_D.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 1416be63-6473-426d-9a5a-d7081f5d2b52 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Generator/Generator_D.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Generator/Generator_E.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Generator/Generator_E.xktex new file mode 100644 index 0000000..cdb90c6 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Generator/Generator_E.xktex @@ -0,0 +1,9 @@ +!Texture +Id: b9bc7147-be71-4a86-81d9-5823f58ee7df +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Generator/Generator_E.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Generator/Generator_G.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Generator/Generator_G.xktex new file mode 100644 index 0000000..4214472 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Generator/Generator_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 96774340-7e49-4c39-894e-67fab440fd48 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Generator/Generator_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Generator/Generator_M.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Generator/Generator_M.xktex new file mode 100644 index 0000000..ac9f8e7 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Generator/Generator_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 69b766d6-9260-42f7-8121-9564d09c8b91 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Generator/Generator_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Generator/Generator_MT.xkmat b/Starbreach/Assets/Shared/Environment/Props/Materials/Generator/Generator_MT.xkmat new file mode 100644 index 0000000..f4a4229 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Generator/Generator_MT.xkmat @@ -0,0 +1,72 @@ +!MaterialAsset +Id: 038d4e18-53d0-4206-968a-ea77631fdc8c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 84aff4dd-ea7e-4b8e-9432-f2f5db457f33:Environment/Props/Materials/Generator/Generator_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 96774340-7e49-4c39-894e-67fab440fd48:Environment/Props/Materials/Generator/Generator_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 1416be63-6473-426d-9a5a-d7081f5d2b52:Environment/Props/Materials/Generator/Generator_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 69b766d6-9260-42f7-8121-9564d09c8b91:Environment/Props/Materials/Generator/Generator_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: cde796a3-4c46-4d56-8e27-fc7064003269:Environment/Props/Materials/Generator/Generator_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: b9bc7147-be71-4a86-81d9-5823f58ee7df:Environment/Props/Materials/Generator/Generator_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 4.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Generator/Generator_N.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Generator/Generator_N.xktex new file mode 100644 index 0000000..baac7b8 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Generator/Generator_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 84aff4dd-ea7e-4b8e-9432-f2f5db457f33 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Generator/Generator_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/OilPump/OilPump_AO.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/OilPump/OilPump_AO.xktex new file mode 100644 index 0000000..19b0ddd --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/OilPump/OilPump_AO.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 3ef89101-9c0c-4932-b73e-dd47124a2308 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/OilPump/OilPump_AO.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/OilPump/OilPump_D.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/OilPump/OilPump_D.xktex new file mode 100644 index 0000000..c0d4f25 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/OilPump/OilPump_D.xktex @@ -0,0 +1,9 @@ +!Texture +Id: eff63b2f-26c4-4602-9637-7a20b1a33ffc +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/OilPump/OilPump_D.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/OilPump/OilPump_G.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/OilPump/OilPump_G.xktex new file mode 100644 index 0000000..42e16c8 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/OilPump/OilPump_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: ff7f3f39-3291-4f18-8281-9c5c2ed41834 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/OilPump/OilPump_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/OilPump/OilPump_M.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/OilPump/OilPump_M.xktex new file mode 100644 index 0000000..240fd8c --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/OilPump/OilPump_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 320a1a79-f698-41f5-9f44-ebe49382e067 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/OilPump/OilPump_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/OilPump/OilPump_MT.xkmat b/Starbreach/Assets/Shared/Environment/Props/Materials/OilPump/OilPump_MT.xkmat new file mode 100644 index 0000000..d0d2395 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/OilPump/OilPump_MT.xkmat @@ -0,0 +1,62 @@ +!MaterialAsset +Id: f3c98e0d-c712-4ad0-adfe-77622605e370 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 599bff8a-6271-4e69-81e4-77bf13648cf0:Environment/Props/Materials/OilPump/OilPump_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: ff7f3f39-3291-4f18-8281-9c5c2ed41834:Environment/Props/Materials/OilPump/OilPump_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: eff63b2f-26c4-4602-9637-7a20b1a33ffc:Environment/Props/Materials/OilPump/OilPump_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 320a1a79-f698-41f5-9f44-ebe49382e067:Environment/Props/Materials/OilPump/OilPump_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 3ef89101-9c0c-4932-b73e-dd47124a2308:Environment/Props/Materials/OilPump/OilPump_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/OilPump/OilPump_N.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/OilPump/OilPump_N.xktex new file mode 100644 index 0000000..eae7f38 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/OilPump/OilPump_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 599bff8a-6271-4e69-81e4-77bf13648cf0 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/OilPump/OilPump_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_ E.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_ E.xktex new file mode 100644 index 0000000..56437fa --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_ E.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 5bae57a2-88f2-408e-a00a-783e8e1b9919 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Pillar1/Pillar1_ E.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_ M.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_ M.xktex new file mode 100644 index 0000000..b99814b --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_ M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 776cc2d0-2460-49c9-9336-9f220db60252 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Pillar1/Pillar1_ M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_AO.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_AO.xktex new file mode 100644 index 0000000..43ba307 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_AO.xktex @@ -0,0 +1,8 @@ +!Texture +Id: fa4c2da4-5877-48d8-8d64-f639fbed3317 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Pillar1/Pillar1_AO.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_D.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_D.xktex new file mode 100644 index 0000000..e1fb010 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_D.xktex @@ -0,0 +1,9 @@ +!Texture +Id: d155203d-d4fa-43a3-905b-3f56a39eef30 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Pillar1/Pillar1_D.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_G.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_G.xktex new file mode 100644 index 0000000..ef7bf03 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 34254a83-6898-4e56-81a5-14904895e65e +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Pillar1/Pillar1_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_MT.xkmat b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_MT.xkmat new file mode 100644 index 0000000..833b848 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_MT.xkmat @@ -0,0 +1,72 @@ +!MaterialAsset +Id: 2cb66488-a1b5-45ba-96ac-eacbf78e7852 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: bb994af5-a59f-4257-beca-530b6ebdf882:Environment/Props/Materials/Pillar1/Pillar1_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 34254a83-6898-4e56-81a5-14904895e65e:Environment/Props/Materials/Pillar1/Pillar1_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: d155203d-d4fa-43a3-905b-3f56a39eef30:Environment/Props/Materials/Pillar1/Pillar1_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 776cc2d0-2460-49c9-9336-9f220db60252:Environment/Props/Materials/Pillar1/Pillar1_ M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: fa4c2da4-5877-48d8-8d64-f639fbed3317:Environment/Props/Materials/Pillar1/Pillar1_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: 5bae57a2-88f2-408e-a00a-783e8e1b9919:Environment/Props/Materials/Pillar1/Pillar1_ E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 4.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_N.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_N.xktex new file mode 100644 index 0000000..bc743a6 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: bb994af5-a59f-4257-beca-530b6ebdf882 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Pillar1/Pillar1_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_Rust_D.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_Rust_D.xktex new file mode 100644 index 0000000..ffb74ac --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_Rust_D.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 28469d12-25c2-407f-bff8-8e1d81ab9326 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Pillar1/Pillar1_Rust_D.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_Rust_G.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_Rust_G.xktex new file mode 100644 index 0000000..c5c9962 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_Rust_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 8f02128f-ebc4-4222-a698-9a2efa793350 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Pillar1/Pillar1_Rust_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_Rust_M.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_Rust_M.xktex new file mode 100644 index 0000000..ed8dd0b --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_Rust_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: b500dac9-a900-4d19-bfe9-b0d3b766e25f +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Pillar1/Pillar1_Rust_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_Rust_MT.xkmat b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_Rust_MT.xkmat new file mode 100644 index 0000000..4ed533c --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_Rust_MT.xkmat @@ -0,0 +1,72 @@ +!MaterialAsset +Id: dc5e6eef-1583-43ef-92b7-1cbf9f239573 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 95646de9-2700-435b-b325-39506662ab70:Environment/Props/Materials/Pillar1/Pillar1_Rust_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 8f02128f-ebc4-4222-a698-9a2efa793350:Environment/Props/Materials/Pillar1/Pillar1_Rust_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 28469d12-25c2-407f-bff8-8e1d81ab9326:Environment/Props/Materials/Pillar1/Pillar1_Rust_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: b500dac9-a900-4d19-bfe9-b0d3b766e25f:Environment/Props/Materials/Pillar1/Pillar1_Rust_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: fa4c2da4-5877-48d8-8d64-f639fbed3317:Environment/Props/Materials/Pillar1/Pillar1_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: 5bae57a2-88f2-408e-a00a-783e8e1b9919:Environment/Props/Materials/Pillar1/Pillar1_ E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 4.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_Rust_N.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_Rust_N.xktex new file mode 100644 index 0000000..0a382d6 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar1/Pillar1_Rust_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 95646de9-2700-435b-b325-39506662ab70 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Pillar1/Pillar1_Rust_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar2/Pillar2_AO.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar2/Pillar2_AO.xktex new file mode 100644 index 0000000..8913c3c --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar2/Pillar2_AO.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 53df71e2-df7f-4f84-b9a3-2090d7082c8b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Pillar2/Pillar2_AO.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar2/Pillar2_D.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar2/Pillar2_D.xktex new file mode 100644 index 0000000..1296154 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar2/Pillar2_D.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 1a7b73a2-20cc-4852-b874-9c464ecef00d +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Pillar2/Pillar2_D.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar2/Pillar2_E.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar2/Pillar2_E.xktex new file mode 100644 index 0000000..87dd297 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar2/Pillar2_E.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 36aa401e-f183-4432-896d-de502737aabf +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Pillar2/Pillar2_E.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar2/Pillar2_G.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar2/Pillar2_G.xktex new file mode 100644 index 0000000..3ba1528 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar2/Pillar2_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 9ae3183f-9b85-4624-a15d-c5610f0a8be7 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Pillar2/Pillar2_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar2/Pillar2_M.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar2/Pillar2_M.xktex new file mode 100644 index 0000000..33e6c35 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar2/Pillar2_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: db13238b-220a-4465-a78d-bc4257993609 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Pillar2/Pillar2_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar2/Pillar2_MT.xkmat b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar2/Pillar2_MT.xkmat new file mode 100644 index 0000000..1a4234a --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar2/Pillar2_MT.xkmat @@ -0,0 +1,76 @@ +!MaterialAsset +Id: fb8ea9cc-502d-4319-bb67-5ef1ebc2d8ce +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 3debc723-784e-404d-b52b-22fce4a7d9e6:Environment/Props/Materials/Pillar2/Pillar2_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 9ae3183f-9b85-4624-a15d-c5610f0a8be7:Environment/Props/Materials/Pillar2/Pillar2_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 1a7b73a2-20cc-4852-b874-9c464ecef00d:Environment/Props/Materials/Pillar2/Pillar2_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: db13238b-220a-4465-a78d-bc4257993609:Environment/Props/Materials/Pillar2/Pillar2_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 53df71e2-df7f-4f84-b9a3-2090d7082c8b:Environment/Props/Materials/Pillar2/Pillar2_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 36aa401e-f183-4432-896d-de502737aabf:Environment/Props/Materials/Pillar2/Pillar2_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeColor + Value: {R: 1.0, G: 0.5019608, B: 0.5019608, A: 1.0} + Intensity: !ComputeFloat + Value: 20.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar2/Pillar2_N.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar2/Pillar2_N.xktex new file mode 100644 index 0000000..02501d7 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Pillar2/Pillar2_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 3debc723-784e-404d-b52b-22fce4a7d9e6 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Pillar2/Pillar2_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/QuadBarrels/QuadBarrels_AO.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/QuadBarrels/QuadBarrels_AO.xktex new file mode 100644 index 0000000..540f443 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/QuadBarrels/QuadBarrels_AO.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 74236956-2cb6-4b6b-872c-8bb8d1a393e8 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/QuadBarrels/QuadBarrels_AO.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/QuadBarrels/QuadBarrels_D.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/QuadBarrels/QuadBarrels_D.xktex new file mode 100644 index 0000000..3f1594d --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/QuadBarrels/QuadBarrels_D.xktex @@ -0,0 +1,11 @@ +!Texture +Id: 3a814465-93d7-4953-a5d2-f903efc4bcdb +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/QuadBarrels/QuadBarrels_D.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} + Alpha: None + PremultiplyAlpha: false diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/QuadBarrels/QuadBarrels_G.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/QuadBarrels/QuadBarrels_G.xktex new file mode 100644 index 0000000..5aa9857 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/QuadBarrels/QuadBarrels_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 99561b07-5029-4afc-b97f-4e8f9c052ab2 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/QuadBarrels/QuadBarrels_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/QuadBarrels/QuadBarrels_M.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/QuadBarrels/QuadBarrels_M.xktex new file mode 100644 index 0000000..03b016f --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/QuadBarrels/QuadBarrels_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 2afa9da4-f91d-4d5b-a16b-7106e5b61bb8 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/QuadBarrels/QuadBarrels_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/QuadBarrels/QuadBarrels_MT.xkmat b/Starbreach/Assets/Shared/Environment/Props/Materials/QuadBarrels/QuadBarrels_MT.xkmat new file mode 100644 index 0000000..1ad0a3d --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/QuadBarrels/QuadBarrels_MT.xkmat @@ -0,0 +1,62 @@ +!MaterialAsset +Id: 213f7b7b-2499-4f3c-9953-5d9db9d07e9a +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 120e72fd-16e8-417f-bf57-7af6226d2238:Environment/Props/Materials/QuadBarrels/QuadBarrels_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 99561b07-5029-4afc-b97f-4e8f9c052ab2:Environment/Props/Materials/QuadBarrels/QuadBarrels_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 3a814465-93d7-4953-a5d2-f903efc4bcdb:Environment/Props/Materials/QuadBarrels/QuadBarrels_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 2afa9da4-f91d-4d5b-a16b-7106e5b61bb8:Environment/Props/Materials/QuadBarrels/QuadBarrels_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 74236956-2cb6-4b6b-872c-8bb8d1a393e8:Environment/Props/Materials/QuadBarrels/QuadBarrels_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/QuadBarrels/QuadBarrels_N.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/QuadBarrels/QuadBarrels_N.xktex new file mode 100644 index 0000000..9e384bc --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/QuadBarrels/QuadBarrels_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 120e72fd-16e8-417f-bf57-7af6226d2238 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/QuadBarrels/QuadBarrels_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Satellite/Satellite_AO.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Satellite/Satellite_AO.xktex new file mode 100644 index 0000000..9e2bfc6 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Satellite/Satellite_AO.xktex @@ -0,0 +1,8 @@ +!Texture +Id: dd6bf093-f94f-4265-acd8-33e47bff47db +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Satellite/Satellite_AO.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Satellite/Satellite_D.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Satellite/Satellite_D.xktex new file mode 100644 index 0000000..819c838 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Satellite/Satellite_D.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 2f61af68-b972-4fe3-8eae-163a2927ad9b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Satellite/Satellite_D.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Satellite/Satellite_E.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Satellite/Satellite_E.xktex new file mode 100644 index 0000000..3f63209 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Satellite/Satellite_E.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 69f6805a-ec86-4a2c-9760-32963eb7716b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Satellite/Satellite_E.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Satellite/Satellite_G.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Satellite/Satellite_G.xktex new file mode 100644 index 0000000..6ff53d2 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Satellite/Satellite_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: e8933804-4954-4986-bc4d-804c5f452f7b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Satellite/Satellite_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Satellite/Satellite_M.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Satellite/Satellite_M.xktex new file mode 100644 index 0000000..9b4e6ec --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Satellite/Satellite_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 44973a2f-98ea-4c30-b571-21d4560e033e +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Satellite/Satellite_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Satellite/Satellite_MT.xkmat b/Starbreach/Assets/Shared/Environment/Props/Materials/Satellite/Satellite_MT.xkmat new file mode 100644 index 0000000..1486382 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Satellite/Satellite_MT.xkmat @@ -0,0 +1,72 @@ +!MaterialAsset +Id: fcac7f82-0c02-475b-95f4-8fd1c88908bb +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 162f36ab-cacf-4aae-88cc-78503ceb9814:Environment/Props/Materials/Satellite/Satellite_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: e8933804-4954-4986-bc4d-804c5f452f7b:Environment/Props/Materials/Satellite/Satellite_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 2f61af68-b972-4fe3-8eae-163a2927ad9b:Environment/Props/Materials/Satellite/Satellite_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 44973a2f-98ea-4c30-b571-21d4560e033e:Environment/Props/Materials/Satellite/Satellite_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: dd6bf093-f94f-4265-acd8-33e47bff47db:Environment/Props/Materials/Satellite/Satellite_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: 69f6805a-ec86-4a2c-9760-32963eb7716b:Environment/Props/Materials/Satellite/Satellite_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 4.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Satellite/Satellite_N.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Satellite/Satellite_N.xktex new file mode 100644 index 0000000..a05a95e --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Satellite/Satellite_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 162f36ab-cacf-4aae-88cc-78503ceb9814 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Satellite/Satellite_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_AO.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_AO.xktex new file mode 100644 index 0000000..f0f6bb1 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_AO.xktex @@ -0,0 +1,8 @@ +!Texture +Id: e8ece04f-2e09-48c7-bb70-be8d90acd064 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/ServerPad/ServerPad_AO.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_E.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_E.xktex new file mode 100644 index 0000000..fdf83c4 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_E.xktex @@ -0,0 +1,9 @@ +!Texture +Id: ab61e482-390a-4f8f-9eaa-d350b5f00966 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/ServerPad/ServerPad_E.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_v1_D.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_v1_D.xktex new file mode 100644 index 0000000..a2a69a3 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_v1_D.xktex @@ -0,0 +1,9 @@ +!Texture +Id: e1615cfa-223c-4eee-a975-2774c33bb85b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/ServerPad/ServerPad_v1_D.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_v1_G.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_v1_G.xktex new file mode 100644 index 0000000..65ca672 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_v1_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 05ffdcb9-2f49-4ab6-935e-a0c1f0cf21fc +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/ServerPad/ServerPad_v1_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_v1_M.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_v1_M.xktex new file mode 100644 index 0000000..231aea4 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_v1_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 0fb275b6-2b36-4357-aadb-000967804107 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/ServerPad/ServerPad_v1_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_v1_MT.xkmat b/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_v1_MT.xkmat new file mode 100644 index 0000000..57124d6 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_v1_MT.xkmat @@ -0,0 +1,72 @@ +!MaterialAsset +Id: 029f2897-8b1c-49c1-a19c-e131f0c6abcc +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: b9a33d0b-2295-474d-9ee9-85c59ef07f6c:Environment/Props/Materials/ServerPad/ServerPad_v1_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 05ffdcb9-2f49-4ab6-935e-a0c1f0cf21fc:Environment/Props/Materials/ServerPad/ServerPad_v1_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: e1615cfa-223c-4eee-a975-2774c33bb85b:Environment/Props/Materials/ServerPad/ServerPad_v1_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 0fb275b6-2b36-4357-aadb-000967804107:Environment/Props/Materials/ServerPad/ServerPad_v1_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: e8ece04f-2e09-48c7-bb70-be8d90acd064:Environment/Props/Materials/ServerPad/ServerPad_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: ab61e482-390a-4f8f-9eaa-d350b5f00966:Environment/Props/Materials/ServerPad/ServerPad_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 4.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_v1_N.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_v1_N.xktex new file mode 100644 index 0000000..80153a0 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_v1_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: b9a33d0b-2295-474d-9ee9-85c59ef07f6c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/ServerPad/ServerPad_v1_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_v2_D.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_v2_D.xktex new file mode 100644 index 0000000..78da07e --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_v2_D.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 53f909ca-eea4-4636-8954-bafe13f3fde8 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/ServerPad/ServerPad_v2_D.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_v2_G.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_v2_G.xktex new file mode 100644 index 0000000..eceb8e7 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_v2_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: ce8e8bdb-8cc8-45ac-b885-2bfbdbe90a0c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/ServerPad/ServerPad_v2_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_v2_M.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_v2_M.xktex new file mode 100644 index 0000000..ffbca62 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_v2_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 36793aae-a542-46e8-bebd-b6f08e86b6cf +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/ServerPad/ServerPad_v2_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_v2_MT.xkmat b/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_v2_MT.xkmat new file mode 100644 index 0000000..43f43d9 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_v2_MT.xkmat @@ -0,0 +1,72 @@ +!MaterialAsset +Id: 73967223-8432-4913-ae5d-469e416f556f +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: b713bca0-8773-4fe6-8ec3-9037c098ff7d:Environment/Props/Materials/ServerPad/ServerPad_v2_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: ce8e8bdb-8cc8-45ac-b885-2bfbdbe90a0c:Environment/Props/Materials/ServerPad/ServerPad_v2_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 53f909ca-eea4-4636-8954-bafe13f3fde8:Environment/Props/Materials/ServerPad/ServerPad_v2_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 36793aae-a542-46e8-bebd-b6f08e86b6cf:Environment/Props/Materials/ServerPad/ServerPad_v2_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: e8ece04f-2e09-48c7-bb70-be8d90acd064:Environment/Props/Materials/ServerPad/ServerPad_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: ab61e482-390a-4f8f-9eaa-d350b5f00966:Environment/Props/Materials/ServerPad/ServerPad_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 4.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_v2_N.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_v2_N.xktex new file mode 100644 index 0000000..fe371d7 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/ServerPad/ServerPad_v2_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: b713bca0-8773-4fe6-8ec3-9037c098ff7d +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/ServerPad/ServerPad_v2_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Teleport/Teleport_AO.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Teleport/Teleport_AO.xktex new file mode 100644 index 0000000..3e2b833 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Teleport/Teleport_AO.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 1a40a19d-391f-47ea-83f8-1033f307da14 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Teleport/Teleport_AO.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Teleport/Teleport_D.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Teleport/Teleport_D.xktex new file mode 100644 index 0000000..2b34891 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Teleport/Teleport_D.xktex @@ -0,0 +1,11 @@ +!Texture +Id: f85cce76-cb33-4381-92b1-1b8a9af43782 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Teleport/Teleport_D.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} + Alpha: None + PremultiplyAlpha: false diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Teleport/Teleport_E.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Teleport/Teleport_E.xktex new file mode 100644 index 0000000..19c4184 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Teleport/Teleport_E.xktex @@ -0,0 +1,11 @@ +!Texture +Id: 5e88413b-3f0f-470c-ac15-c8b4011ccef1 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Teleport/Teleport_E.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} + Alpha: None + PremultiplyAlpha: false diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Teleport/Teleport_G.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Teleport/Teleport_G.xktex new file mode 100644 index 0000000..578d415 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Teleport/Teleport_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 8142cadb-a823-4fe1-8d2b-268d701181c0 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Teleport/Teleport_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Teleport/Teleport_M.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Teleport/Teleport_M.xktex new file mode 100644 index 0000000..5d02c7f --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Teleport/Teleport_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: a13a0ace-3359-46d9-95c9-fd55606a687c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Teleport/Teleport_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Teleport/Teleport_MT.xkmat b/Starbreach/Assets/Shared/Environment/Props/Materials/Teleport/Teleport_MT.xkmat new file mode 100644 index 0000000..fbc99dd --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Teleport/Teleport_MT.xkmat @@ -0,0 +1,72 @@ +!MaterialAsset +Id: 9a29e76a-0ee8-4437-bc3e-3a022bb56760 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: ffdfeebd-0daa-4aab-a81c-fd9dcd8fd1cd:Environment/Props/Materials/Teleport/Teleport_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 8142cadb-a823-4fe1-8d2b-268d701181c0:Environment/Props/Materials/Teleport/Teleport_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: f85cce76-cb33-4381-92b1-1b8a9af43782:Environment/Props/Materials/Teleport/Teleport_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: a13a0ace-3359-46d9-95c9-fd55606a687c:Environment/Props/Materials/Teleport/Teleport_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 1a40a19d-391f-47ea-83f8-1033f307da14:Environment/Props/Materials/Teleport/Teleport_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: 5e88413b-3f0f-470c-ac15-c8b4011ccef1:Environment/Props/Materials/Teleport/Teleport_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 10.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Teleport/Teleport_N.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Teleport/Teleport_N.xktex new file mode 100644 index 0000000..222d4da --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Teleport/Teleport_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: ffdfeebd-0daa-4aab-a81c-fd9dcd8fd1cd +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Teleport/Teleport_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_AO.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_AO.xktex new file mode 100644 index 0000000..0845f44 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_AO.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 1d8e851a-402d-4ae5-b526-289b3d13af8c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Tube/Tube_AO.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_D.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_D.xktex new file mode 100644 index 0000000..624a2f3 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_D.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 2657c7af-6273-4758-948f-a8bfe651fc7f +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Tube/Tube_D.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_E.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_E.xktex new file mode 100644 index 0000000..bf1bde2 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_E.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 199d5f31-8f7e-4ca3-969e-0572b1170ff1 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Tube/Tube_E.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_G.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_G.xktex new file mode 100644 index 0000000..672d900 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: c0e47ff3-fea3-4c3d-ba90-221626d0cb7b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Tube/Tube_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_M.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_M.xktex new file mode 100644 index 0000000..1c236bb --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 32bceb50-1050-4731-8253-c85186c07eef +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Tube/Tube_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_MT.xkmat b/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_MT.xkmat new file mode 100644 index 0000000..b901a71 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_MT.xkmat @@ -0,0 +1,72 @@ +!MaterialAsset +Id: 030cd707-87a5-445d-84ae-41df4bb1db76 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 90feb342-5960-4aca-9c45-0dfc8227cc7d:Environment/Props/Materials/Tubes/Tube_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: c0e47ff3-fea3-4c3d-ba90-221626d0cb7b:Environment/Props/Materials/Tubes/Tube_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 2657c7af-6273-4758-948f-a8bfe651fc7f:Environment/Props/Materials/Tubes/Tube_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 32bceb50-1050-4731-8253-c85186c07eef:Environment/Props/Materials/Tubes/Tube_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 1d8e851a-402d-4ae5-b526-289b3d13af8c:Environment/Props/Materials/Tubes/Tube_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: 199d5f31-8f7e-4ca3-969e-0572b1170ff1:Environment/Props/Materials/Tubes/Tube_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 1.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_N.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_N.xktex new file mode 100644 index 0000000..8f32b74 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 90feb342-5960-4aca-9c45-0dfc8227cc7d +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Tube/Tube_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_Rust_D.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_Rust_D.xktex new file mode 100644 index 0000000..fcc1fba --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_Rust_D.xktex @@ -0,0 +1,9 @@ +!Texture +Id: dd78174f-00af-48fa-9572-6bea616d8d61 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Tube/Tube_Rust_D.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_Rust_G.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_Rust_G.xktex new file mode 100644 index 0000000..8c05097 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_Rust_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: effc1095-d8d7-4795-ba81-a36a21f21fba +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Tube/Tube_Rust_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_Rust_M.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_Rust_M.xktex new file mode 100644 index 0000000..f0b72f9 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_Rust_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 6dc49aff-167c-4de8-9fc9-bf2f8050b565 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Tube/Tube_Rust_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_Rust_MT.xkmat b/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_Rust_MT.xkmat new file mode 100644 index 0000000..3e8f6fd --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_Rust_MT.xkmat @@ -0,0 +1,73 @@ +!MaterialAsset +Id: 188a97f9-627c-493b-a493-4be39c63676e +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Archetype: 030cd707-87a5-445d-84ae-41df4bb1db76:Environment/Props/Materials/Tubes/Tube_MT +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture*: 4248cda5-f7b3-4cc3-b7eb-6d44adbc3d14:Environment/Props/Materials/Tubes/Tube_Rust_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture*: effc1095-d8d7-4795-ba81-a36a21f21fba:Environment/Props/Materials/Tubes/Tube_Rust_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture*: dd78174f-00af-48fa-9572-6bea616d8d61:Environment/Props/Materials/Tubes/Tube_Rust_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture*: 6dc49aff-167c-4de8-9fc9-bf2f8050b565:Environment/Props/Materials/Tubes/Tube_Rust_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 1d8e851a-402d-4ae5-b526-289b3d13af8c:Environment/Props/Materials/Tubes/Tube_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: 199d5f31-8f7e-4ca3-969e-0572b1170ff1:Environment/Props/Materials/Tubes/Tube_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 1.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_Rust_N.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_Rust_N.xktex new file mode 100644 index 0000000..67a17ff --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Tubes/Tube_Rust_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 4248cda5-f7b3-4cc3-b7eb-6d44adbc3d14 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Tube/Tube_Rust_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Vent/Vent_AO.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Vent/Vent_AO.xktex new file mode 100644 index 0000000..c765aed --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Vent/Vent_AO.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 97099769-6928-465c-896a-2172706ec42e +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Vent/Vent_AO.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Vent/Vent_D.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Vent/Vent_D.xktex new file mode 100644 index 0000000..bf8850a --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Vent/Vent_D.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 57ebc3ca-d584-4603-9869-b517f5b2279c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Vent/Vent_D.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Vent/Vent_G.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Vent/Vent_G.xktex new file mode 100644 index 0000000..c709e9c --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Vent/Vent_G.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 6a7fd7fc-4c06-4168-869a-5481cdb18438 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Vent/Vent_G.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Vent/Vent_Light_MT.xkmat b/Starbreach/Assets/Shared/Environment/Props/Materials/Vent/Vent_Light_MT.xkmat new file mode 100644 index 0000000..a743b12 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Vent/Vent_Light_MT.xkmat @@ -0,0 +1,53 @@ +!MaterialAsset +Id: 26a50488-433a-44a3-b0ea-a389b26d9b45 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeFloat + Value: 0.0 + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 0df4e18e-d326-4e08-8e1d-fba508efadbf:Environment/Props/Materials/Vent/Vent_Light_base + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeFloat + Value: 0.0 + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 0df4e18e-d326-4e08-8e1d-fba508efadbf:Environment/Props/Materials/Vent/Vent_Light_base + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 1.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeShaderClassColor + MixinReference: ComputeColorTextureScrollParam + Generics: {} + CompositionNodes: {} + Intensity: !ComputeFloat + Value: 10.0 + UseAlpha: true + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Vent/Vent_Light_base.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Vent/Vent_Light_base.xktex new file mode 100644 index 0000000..cff4f8c --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Vent/Vent_Light_base.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 0df4e18e-d326-4e08-8e1d-fba508efadbf +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Vent/Vent_Light_base.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Vent/Vent_M.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Vent/Vent_M.xktex new file mode 100644 index 0000000..0485bf3 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Vent/Vent_M.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 8acb8fc9-a74d-4bca-9e0f-883a4e5380b3 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Vent/Vent_M.png +Width: 50.0 +Height: 50.0 +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Vent/Vent_MT.xkmat b/Starbreach/Assets/Shared/Environment/Props/Materials/Vent/Vent_MT.xkmat new file mode 100644 index 0000000..b6c9c07 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Vent/Vent_MT.xkmat @@ -0,0 +1,72 @@ +!MaterialAsset +Id: a81d0fe4-44d1-4ff2-bbba-ee744dc32d08 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 067589c4-36c3-424e-8666-de02804a08ba:Environment/Props/Materials/Vent/Vent_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 6a7fd7fc-4c06-4168-869a-5481cdb18438:Environment/Props/Materials/Vent/Vent_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 57ebc3ca-d584-4603-9869-b517f5b2279c:Environment/Props/Materials/Vent/Vent_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 8acb8fc9-a74d-4bca-9e0f-883a4e5380b3:Environment/Props/Materials/Vent/Vent_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 97099769-6928-465c-896a-2172706ec42e:Environment/Props/Materials/Vent/Vent_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: b8f3733c-0a5b-4cbe-b7fc-7ce0aea774c2:Environment/Props/Materials/Vent/Vent_base_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 10.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Vent/Vent_N.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Vent/Vent_N.xktex new file mode 100644 index 0000000..dd53fdb --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Vent/Vent_N.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 067589c4-36c3-424e-8666-de02804a08ba +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Vent/Vent_N.png +Width: 50.0 +Height: 50.0 +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Vent/Vent_base_E.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Vent/Vent_base_E.xktex new file mode 100644 index 0000000..d936f3b --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Vent/Vent_base_E.xktex @@ -0,0 +1,9 @@ +!Texture +Id: b8f3733c-0a5b-4cbe-b7fc-7ce0aea774c2 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Vent/Vent_base_E.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Materials/Vent/Vent_inner_E.xktex b/Starbreach/Assets/Shared/Environment/Props/Materials/Vent/Vent_inner_E.xktex new file mode 100644 index 0000000..28095f5 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Materials/Vent/Vent_inner_E.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 2ed2808b-0693-4a27-8cd8-4cccd2d48a70 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../../Resources/Props/Vent/Vent_inner_E.png +Width: 50.0 +Height: 50.0 +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/Barrel.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/Barrel.xkm3d new file mode 100644 index 0000000..5e42df9 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/Barrel.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 3a09548e-eda3-49bd-8b7e-49c653eb1c04 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/Barrel/Barrel.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + eb03cd17ff3ee8dd056b65c9d0fd9d57: + Name: Material + MaterialInstance: + Material: 199874d6-47b5-4a3a-8f3f-0051947d2b0a:Environment/Props/Materials/Barrel/Barrel_MT +Skeleton: null +~SourceHashes: + 6b05b08912b61a681f5fd2e796a2a7ca~../../../../../Resources/Props/Barrel/Barrel.FBX: 2f6b62af644bfada5fbed0496fa9bec6 diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/Box1.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/Box1.xkm3d new file mode 100644 index 0000000..43ad935 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/Box1.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 46441ab3-67fb-40d4-8b72-8dd1db5d988e +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/Boxes/Box1.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 341b31c252351cb9c6e8cdb67d4baaf7: + Name: _boxyUnwrapChecker + MaterialInstance: + Material: f3165b56-a18b-4cac-8e09-96f2da350f71:Environment/Props/Materials/Boxes/Box1_MT +Skeleton: null +~SourceHashes: + a011615a684db7aaeec48c5da417d5f5~../../../../../Resources/Props/Boxes/Box1.FBX: 80319752f8649c18b086bb09f1c791f1 diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/Box2.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/Box2.xkm3d new file mode 100644 index 0000000..1949892 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/Box2.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 41fc6c99-792b-46fe-942c-ef3763a2407a +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/Boxes/Box2.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 6d8f3f4d1b0c4683e08c23e28ff2de11: + Name: _Lowpoly_9Material + MaterialInstance: + Material: df2dd57e-7884-41f9-90c7-6fc9ba52fce2:Environment/Props/Materials/Boxes/Box2_MT +Skeleton: null +~SourceHashes: + f364dbee5f4b1be15b40508677f4fa97~../../../../../Resources/Props/Boxes/Box2.FBX: b39978853d03d0a5cddf8201f6ed4f80 diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/ChargerBox.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/ChargerBox.xkm3d new file mode 100644 index 0000000..9fec095 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/ChargerBox.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 2b86e7b1-e218-412d-b66e-e0dc401dc02c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/ChargerBox/ChargerBox.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + bdea7334af620133b01a0801e68e28ab: + Name: default + MaterialInstance: + Material: 1f4591d2-0b07-40c2-bb2b-3cdb6200354d:Environment/Props/Materials/ChargerBox/ChargerBox_MT +Skeleton: null +~SourceHashes: + 24de1d24dce5d700a8f31ea478ad9c0e~../../../../../Resources/Props/ChargerBox/ChargerBox.FBX: 5a7ab6020773d0823aeb5c17f621e36e diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/Column.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/Column.xkm3d new file mode 100644 index 0000000..ca408a9 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/Column.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 153687de-2b93-4509-b567-93852598694b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/Column/Column.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 58485108a34bd77bdc622b5e7de40eda: + Name: Phong + MaterialInstance: + Material: 83304125-270c-48ae-a0b7-38986bf28e08:Environment/Props/Materials/Column/Column_MT +Skeleton: null +~SourceHashes: + 1c7a5fc59f2062f523be074a6f141922~../../../../../Resources/Props/Column/Column.fbx: 08c69193b727a0e1b35c667c1e56ff81 diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/Crane_large.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/Crane_large.xkm3d new file mode 100644 index 0000000..3c51f00 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/Crane_large.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 821a1210-f5e0-4389-9e42-72886ebccaf5 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/Crane/Crane_v2.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 3048d14b16e8eb8e18b94acd80ce68ee: + Name: default + MaterialInstance: + Material: 69a82a65-317c-412c-bee3-78b819d91d22:Environment/Props/Materials/Crane/Crane_MT +Skeleton: null +~SourceHashes: + fe6945ebcf926cc63ab1a42c3d607a7a~../../../../../Resources/Props/Crane/Crane_v2.FBX: 2ab033f7b8141e1a00cc5d2407c4a32f diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/Crane_small.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/Crane_small.xkm3d new file mode 100644 index 0000000..d0017c5 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/Crane_small.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 6265c534-4bfd-45a2-879b-15aa84659e82 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/Crane/Crane_v1.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + fbc7162a78720ba8b9e40a6ae6551cff: + Name: Material + MaterialInstance: + Material: 69a82a65-317c-412c-bee3-78b819d91d22:Environment/Props/Materials/Crane/Crane_MT +Skeleton: null +~SourceHashes: + 8a0353965db5e5fee0f1d3fecd8fe632~../../../../../Resources/Props/Crane/Crane_v1.FBX: dfd009580ea19ccdd2d5d72a8f9a8413 diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/DPU1.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/DPU1.xkm3d new file mode 100644 index 0000000..8a41018 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/DPU1.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 209893ec-48c7-4c36-ab47-d4f177f58bf6 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/DPU/DPU1.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 4d39d19b2b369f5fba223a672d36e52d: + Name: DPU1 + MaterialInstance: + Material: 80b2d5b7-035e-4ace-890c-402e15d2adc0:Environment/Props/Materials/DPU/DPU1_Rust_MT +Skeleton: null +~SourceHashes: + 9b5b99e4279c70417e99a1213f2e90e3~../../../../../Resources/Props/DPU/DPU1.FBX: 3b805f7bf323f463ab34427fe96ec8bd diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/DPU2.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/DPU2.xkm3d new file mode 100644 index 0000000..2eb368d --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/DPU2.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: e62da4ac-0fbd-43f0-86a2-3c36a1f69f96 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/DPU/DPU2.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 3e73883ab1af160661fd67cee4b55f6f: + Name: DPU2 + MaterialInstance: + Material: 4a7c1fe9-8d67-42a4-b682-d311414e2c68:Environment/Props/Materials/DPU/DPU2_Rust_MT +Skeleton: null +~SourceHashes: + 81538f3c7da44dfb760c5567cbc08ad7~../../../../../Resources/Props/DPU/DPU2.FBX: c96fc62ecb04a2562b77dc7675dd5a9b diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/DataPad.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/DataPad.xkm3d new file mode 100644 index 0000000..563685f --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/DataPad.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: f5f8e1be-4e17-41c5-bf92-41e912b85697 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/DataPad/DataPad.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 21f50d657928b444bfbe6425b76ee217: + Name: default + MaterialInstance: + Material: 022d3724-3b8f-4912-b8ed-261f47300b45:Environment/Props/Materials/DataPad/DataPad_MT +Skeleton: null +~SourceHashes: + d728a9269fb87ac2ca14637b035ed7fc~../../../../../Resources/Props/DataPad/DataPad.FBX: 719ff0820399735e59206d88fef77078 diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/DataSwitcher.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/DataSwitcher.xkm3d new file mode 100644 index 0000000..b90a6bf --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/DataSwitcher.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 87c540c8-80aa-4d46-a28f-6f99109347f6 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/DataSwitcher/DataSwitcher.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 9ac10bd4db467f5db18bf551cccb8b66: + Name: Material + MaterialInstance: + Material: 3967af78-1f53-4383-898f-f8451c92176e:Environment/Props/Materials/DataSwitcher/DataSwitcher_MT +Skeleton: null +~SourceHashes: + a2eaa94ce80786e8cac47a01a556f0e7~../../../../../Resources/Props/DataSwitcher/DataSwitcher.FBX: ed097928e0fff9948758e693597055b3 diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/ExplosedCells.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/ExplosedCells.xkm3d new file mode 100644 index 0000000..1856628 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/ExplosedCells.xkm3d @@ -0,0 +1,18 @@ +!Model +Id: c01825b3-7045-423b-8bae-e41ad8ef1e07 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/ExplosedCells/Cells_damage.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + ffafa5f8e28c744db0e9da2fa78d5f71: + Name: PIPES + MaterialInstance: + Material: b02a69a8-5502-443c-906a-15a8d36ca35c:Environment/Props/Materials/ExplosedCells/Pipes_damaged_MT + 94a1e9b2edb37296e92d99469e59bc26: + Name: CELLS + MaterialInstance: + Material: 3a922f93-7650-41ca-8496-af249ea4a417:Environment/Props/Materials/ExplosedCells/Cell_damaged_MT +Skeleton: null +~SourceHashes: + fae578d625769e48a9cd605ad3d338d1~../../../../../Resources/Props/ExplosedCells/Cells_damage.FBX: a04c2fc48ef1c31ecf43ac2dc7e2586d diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/FloorRock_1.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/FloorRock_1.xkm3d new file mode 100644 index 0000000..93a1c30 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/FloorRock_1.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 2d77c29d-be73-4a4f-a7b5-7e68e0ce3453 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/FloorRocks/FloorRock.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 198673e87110568298f208b5d261aaed: + Name: Material + MaterialInstance: + Material: a480503f-0b1d-4a11-9251-af668f22d365:Environment/Props/Materials/FloorRocks/FloorRock_MT +Skeleton: null +~SourceHashes: + 98de1248820043649aa649c5b82b1a7a~../../../../../Resources/Props/FloorRocks/FloorRock.FBX: 1282fc120d513f49b50d96a274c07df0 diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/FloorRock_2.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/FloorRock_2.xkm3d new file mode 100644 index 0000000..5995619 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/FloorRock_2.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 1cbe9f48-9b2a-4ffa-9247-5295373b9315 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/FloorRocks/FloorRock_2.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 3fe1a6958f8d1bc1a0bf126b36d9869c: + Name: Material + MaterialInstance: + Material: a480503f-0b1d-4a11-9251-af668f22d365:Environment/Props/Materials/FloorRocks/FloorRock_MT +Skeleton: null +~SourceHashes: + e9fed163b3d0944d7665a62be13d20ac~../../../../../Resources/Props/FloorRocks/FloorRock_2.FBX: a4812b3758ae8d6d5270d46ae8abf40e diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/FloorRock_3.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/FloorRock_3.xkm3d new file mode 100644 index 0000000..2dcd8b3 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/FloorRock_3.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 3f42899b-c1f3-47df-873d-b7f6632ca0bd +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/FloorRocks/FloorRock_3.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + a38327cd52661d5902e59fe511a8e54a: + Name: Material + MaterialInstance: + Material: a480503f-0b1d-4a11-9251-af668f22d365:Environment/Props/Materials/FloorRocks/FloorRock_MT +Skeleton: null +~SourceHashes: + 0ea86c0681fe9f0a4019f6f3399e3aba~../../../../../Resources/Props/FloorRocks/FloorRock_3.FBX: d619ebe99620854ba199dbffd149dd30 diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/FloorRock_4.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/FloorRock_4.xkm3d new file mode 100644 index 0000000..1353e7f --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/FloorRock_4.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 641ed9f1-eb2e-4c42-bd34-c5dba0faaac0 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/FloorRocks/FloorRock_4.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + ef33d1387d6be92dcce5d57d23385ed3: + Name: Material + MaterialInstance: + Material: a480503f-0b1d-4a11-9251-af668f22d365:Environment/Props/Materials/FloorRocks/FloorRock_MT +Skeleton: null +~SourceHashes: + d817afc071b32828e484ca3ed3b6d82b~../../../../../Resources/Props/FloorRocks/FloorRock_4.FBX: 55da59c421e0e559b6100b61b632f571 diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/FloorRock_5.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/FloorRock_5.xkm3d new file mode 100644 index 0000000..b00ab07 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/FloorRock_5.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 3261b983-a96f-475b-b386-5e63feadf6aa +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/FloorRocks/FloorRock_5.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 6a7ac40e84ead4b82731bd018e7e70d0: + Name: Material + MaterialInstance: + Material: a480503f-0b1d-4a11-9251-af668f22d365:Environment/Props/Materials/FloorRocks/FloorRock_MT +Skeleton: null +~SourceHashes: + a2a0fad8458d77e1a129e81f360ddf90~../../../../../Resources/Props/FloorRocks/FloorRock_5.FBX: 24318a3cf9feb4ecd9033c205900540d diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/FloorRock_6.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/FloorRock_6.xkm3d new file mode 100644 index 0000000..e1c6cf8 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/FloorRock_6.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 3b4c6ecd-707c-47e0-98c6-ad1da6cd4aeb +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/FloorRocks/FloorRock_6.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 814dd6a4c3a65aec4f5ca2274b8c6d98: + Name: Material + MaterialInstance: + Material: a480503f-0b1d-4a11-9251-af668f22d365:Environment/Props/Materials/FloorRocks/FloorRock_MT +Skeleton: null +~SourceHashes: + a6f4ff7d3712b19e7edd23038b7970f6~../../../../../Resources/Props/FloorRocks/FloorRock_6.FBX: 02ea71cf537d771b7639df195cb10d36 diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/GasPump.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/GasPump.xkm3d new file mode 100644 index 0000000..c021674 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/GasPump.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 83bd9601-ccff-4c98-b01a-f02691a402f0 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/GasPump/GasPump.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + b62947da96510417a1c982b3efb6bcb2: + Name: GasPump + MaterialInstance: + Material: f5c8377d-bce8-40d3-a337-200fc95a6d7d:Environment/Props/Materials/GasPump/GasPump_MT +Skeleton: null +~SourceHashes: + 1ec4503ec1b2789e2456e9b50d16e65f~../../../../../Resources/Props/GasPump/GasPump.FBX: efea6fc8d2a222868cd1be1be32b907d diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/Generator.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/Generator.xkm3d new file mode 100644 index 0000000..69785ad --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/Generator.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 05ea29a9-fd0d-4b79-89c6-a2c1a305ceb1 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/Generator/Generator.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + f2257d13dc7db63cfae2eac3fce67191: + Name: Generator + MaterialInstance: + Material: 038d4e18-53d0-4206-968a-ea77631fdc8c:Environment/Props/Materials/Generator/Generator_MT +Skeleton: null +~SourceHashes: + 01d74f021b716c75b9d234d1fff3ad18~../../../../../Resources/Props/Generator/Generator.FBX: b8ae07279e7dd6d38577bbeace3f5ee8 diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/OilPump.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/OilPump.xkm3d new file mode 100644 index 0000000..07150b3 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/OilPump.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 3cb8df31-ea42-4f2e-91b1-1039224a533e +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/OilPump/OilPump.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 6c5537c88ac8c480ac28a0c8ae462edb: + Name: _8_COMPLETEdefault + MaterialInstance: + Material: f3c98e0d-c712-4ad0-adfe-77622605e370:Environment/Props/Materials/OilPump/OilPump_MT +Skeleton: null +~SourceHashes: + b0f07c44a6fd1fb147525c3064830061~../../../../../Resources/Props/OilPump/OilPump.FBX: 475cce5ea607c2bf71e51d4c7637e29e diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/Pillar1.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/Pillar1.xkm3d new file mode 100644 index 0000000..5dbd19b --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/Pillar1.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: cf64cebf-e975-4b41-904d-3160bb54127f +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/Pillar1/Pillar1.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + e87dd54641642a7556196219f3ae597a: + Name: _Pillar01_LPdefault + MaterialInstance: + Material: dc5e6eef-1583-43ef-92b7-1cbf9f239573:Environment/Props/Materials/Pillar1/Pillar1_Rust_MT +Skeleton: null +~SourceHashes: + 6321565937099aae32cd5732d28b3062~../../../../../Resources/Props/Pillar1/Pillar1.FBX: b5b878206646cd7174e920c328c4341e diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/Pillar2_curved.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/Pillar2_curved.xkm3d new file mode 100644 index 0000000..483bdfa --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/Pillar2_curved.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: c508cb22-457d-4f5e-943f-ce97efd5c854 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/Pillar2/Pillar2_2.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 6daa991f878d0d201fd90e1b9f6f7a20: + Name: Material + MaterialInstance: + Material: fb8ea9cc-502d-4319-bb67-5ef1ebc2d8ce:Environment/Props/Materials/Pillar2/Pillar2_MT +Skeleton: null +~SourceHashes: + 7fea74ecee92107979d6dce4d79c1886~../../../../../Resources/Props/Pillar2/Pillar2_2.FBX: c0dbe4ac37d59127876df5c030b6b894 diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/Pillar2_flat.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/Pillar2_flat.xkm3d new file mode 100644 index 0000000..2f92710 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/Pillar2_flat.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 41f2c63a-dcec-4143-a665-bbc9f616a21e +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/Pillar2/Pillar2.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + fd6dbc96db46c804891b3c6a1d7a44ef: + Name: default + MaterialInstance: + Material: fb8ea9cc-502d-4319-bb67-5ef1ebc2d8ce:Environment/Props/Materials/Pillar2/Pillar2_MT +Skeleton: null +~SourceHashes: + da9eb6c9d7fea3747814fface7e11c11~../../../../../Resources/Props/Pillar2/Pillar2.FBX: 77fdb2cb272c9984ed02a265d3cc249c diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/QuadBarrels.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/QuadBarrels.xkm3d new file mode 100644 index 0000000..25d22fe --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/QuadBarrels.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: bd5c8df1-b6f8-4ae3-9099-b063300bc184 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/QuadBarrels/QuadBarrels.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + c83c43adfc6230b7d3d00c17f32a9a5c: + Name: Material + MaterialInstance: + Material: 213f7b7b-2499-4f3c-9953-5d9db9d07e9a:Environment/Props/Materials/QuadBarrels/QuadBarrels_MT +Skeleton: null +~SourceHashes: + 793ea2c10b81b4a5422dfa14f4805383~../../../../../Resources/Props/QuadBarrels/QuadBarrels.FBX: 52d7e3e4d23633415518ae91a9cac82f diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/Satellite.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/Satellite.xkm3d new file mode 100644 index 0000000..d4c03ae --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/Satellite.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 37c6e2d9-877b-4052-b885-d05735ee40b2 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/Satellite/Satellite.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 729e16b823d6c71b085c091c2a540eee: + Name: 19-Default + MaterialInstance: + Material: fcac7f82-0c02-475b-95f4-8fd1c88908bb:Environment/Props/Materials/Satellite/Satellite_MT +Skeleton: null +~SourceHashes: + e32bb43c2ceed6805a4f4b2970e0f36d~../../../../../Resources/Props/Satellite/Satellite.FBX: 3c1ada1e1f65cfc6b851f466106cb51a diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/Satellite_base.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/Satellite_base.xkm3d new file mode 100644 index 0000000..267a593 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/Satellite_base.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: dd67fffa-abb2-4d8b-917c-13ba8da3ae60 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/Satellite/Satellite_base.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + a9c3d29c9021aa51508c065244a7aee2: + Name: 19-Default + MaterialInstance: + Material: fcac7f82-0c02-475b-95f4-8fd1c88908bb:Environment/Props/Materials/Satellite/Satellite_MT +Skeleton: null +~SourceHashes: + 2e47277f67d2079ae65ff7e1b0350358~../../../../../Resources/Props/Satellite/Satellite_base.FBX: f01668878ed1aa355b08f9fb2c65ce69 diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/Satellite_dish.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/Satellite_dish.xkm3d new file mode 100644 index 0000000..cd3a6ef --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/Satellite_dish.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: e554b48a-fc71-4ba3-94cb-a6112a000237 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/Satellite/Satellite_plate.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 4c040270f03ea1ec06740505bc41cf55: + Name: 19-Default + MaterialInstance: + Material: fcac7f82-0c02-475b-95f4-8fd1c88908bb:Environment/Props/Materials/Satellite/Satellite_MT +Skeleton: null +~SourceHashes: + 66f9ccddd3fc6b5adf2b89155f49897c~../../../../../Resources/Props/Satellite/Satellite_plate.FBX: d5e3e95d717a807b0737c864d2271d55 diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/ServerPad.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/ServerPad.xkm3d new file mode 100644 index 0000000..3cce3c7 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/ServerPad.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 5059af3d-ea9e-4027-8ccb-8f23dad0c063 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/ServerPad/ServerPad.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 40bfe2ba15d614318820f8f1257f8b65: + Name: Material + MaterialInstance: + Material: 029f2897-8b1c-49c1-a19c-e131f0c6abcc:Environment/Props/Materials/ServerPad/ServerPad_v1_MT +Skeleton: null +~SourceHashes: + 4ac7a944be15aee9905119c23f7fe15d~../../../../../Resources/Props/ServerPad/ServerPad.FBX: 9954f4f41ff81d45f144e87b64af8b27 diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/Teleport.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/Teleport.xkm3d new file mode 100644 index 0000000..e5cdace --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/Teleport.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 74ed18b5-f993-49d7-8d3e-170411c88201 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/Teleport/Teleport.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + c6cd6a74d01a29387cf5b5a3c136116b: + Name: default + MaterialInstance: + Material: 9a29e76a-0ee8-4437-bc3e-3a022bb56760:Environment/Props/Materials/Teleport/Teleport_MT +Skeleton: null +~SourceHashes: + 6c5c2a3bdb74ed1689c542aedc761970~../../../../../Resources/Props/Teleport/Teleport.FBX: 0e990db0efd376fe0c9082a256a8661e diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/Tubes.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/Tubes.xkm3d new file mode 100644 index 0000000..e5ac525 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/Tubes.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: b71a38c2-5460-4a2e-8abf-77a0acec5aeb +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/Tube/tube_eng01.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 0b23a310958345c78824aaaa5a9eb617: + Name: wire_143224087 + MaterialInstance: + Material: 030cd707-87a5-445d-84ae-41df4bb1db76:Environment/Props/Materials/Tubes/Tube_MT +Skeleton: null +~SourceHashes: + ba5530dde08498c631ecb3d153a8e224~../../../../../Resources/Props/Tube/tube_eng01.FBX: de30eab106217a4cf70c8e84e75b5664 diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/Tubes_base.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/Tubes_base.xkm3d new file mode 100644 index 0000000..d05a401 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/Tubes_base.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 734077ff-795c-4d1b-9f8c-688d142c4007 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/Tube/tube_eng03.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + d8bb6c69d173505c3066b0bfc4df5989: + Name: Generic + MaterialInstance: + Material: 030cd707-87a5-445d-84ae-41df4bb1db76:Environment/Props/Materials/Tubes/Tube_MT +Skeleton: null +~SourceHashes: + f0a0cd4fef27d685902e5f41108c8b64~../../../../../Resources/Props/Tube/tube_eng03.FBX: 94fb0c5b104194bb8c7b46d6a723afd5 diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/Vent.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/Vent.xkm3d new file mode 100644 index 0000000..fd5aabb --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/Vent.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 9ba50f3a-f535-4ad4-982d-ff342c69fce4 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/Vent/Vent.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 6668c012237de0ee6d0882d8574ab9f2: + Name: 02-Default + MaterialInstance: + Material: a81d0fe4-44d1-4ff2-bbba-ee744dc32d08:Environment/Props/Materials/Vent/Vent_MT +Skeleton: null +~SourceHashes: + fd4a5d1a926cd1df5a5e49d11f2b51d5~../../../../../Resources/Props/Vent/Vent.FBX: a25ed16a02502ccbe75e59b1d0cfc559 diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/Vent_base.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/Vent_base.xkm3d new file mode 100644 index 0000000..6b27ab9 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/Vent_base.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 9fb440c2-5c68-4b4c-a1c1-fe92481dc4d4 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/Vent/Vent_base.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + eb24764f7aab82ce0b7efe295927c011: + Name: 02-Default + MaterialInstance: + Material: a81d0fe4-44d1-4ff2-bbba-ee744dc32d08:Environment/Props/Materials/Vent/Vent_MT +Skeleton: null +~SourceHashes: + f14b557f5fc97f1ce75b7a339034d373~../../../../../Resources/Props/Vent/Vent_base.FBX: 62f4de52e8432c70f807f6881a2f5394 diff --git a/Starbreach/Assets/Shared/Environment/Props/Models/Vent_light_mesh.xkm3d b/Starbreach/Assets/Shared/Environment/Props/Models/Vent_light_mesh.xkm3d new file mode 100644 index 0000000..dc607f5 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Models/Vent_light_mesh.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: bcf6e9e7-0e5d-45f3-ba1b-0b2025d17e1c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Props/Vent/Vent_light_mesh.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + ddef966550c977356693b1e785ebb218: + Name: 02-Default + MaterialInstance: + Material: 26a50488-433a-44a3-b0ea-a389b26d9b45:Environment/Props/Materials/Vent/Vent_Light_MT +Skeleton: null +~SourceHashes: + 0ac60c5a48b7b29d9c240fbd50a93131~../../../../../Resources/Props/Vent/Vent_light_mesh.FBX: 3958d396a54bee06f54c8a0d6023aaad diff --git a/Starbreach/Assets/Shared/Environment/Props/PhysicsShapes/ColliderHull.xkphy b/Starbreach/Assets/Shared/Environment/Props/PhysicsShapes/ColliderHull.xkphy new file mode 100644 index 0000000..3f23d4e --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/PhysicsShapes/ColliderHull.xkphy @@ -0,0 +1,21 @@ +!ColliderShapeAsset +Id: 1d05e126-a446-4c47-a888-63fd75971c50 +SerializedVersion: {Xenko: 3.0.0.0} +Tags: [] +ColliderShapes: + c8fb100aba48e14de2cea35c921d2800: !ConvexHullColliderShapeDesc + ConvexHulls: null + ConvexHullsIndices: null + Model: 734077ff-795c-4d1b-9f8c-688d142c4007:Environment/Props/Models/Tubes_base + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scaling: {X: 1.0, Y: 1.0, Z: 1.0} + Decomposition: + Depth: 10 + PosSampling: 10 + AngleSampling: 10 + PosRefine: 5 + AngleRefine: 5 + Alpha: 0.01 + Threshold: 0.01 + Enabled: false diff --git a/Starbreach/Assets/Shared/Environment/Props/Prefabs/Barrel.xkprefab b/Starbreach/Assets/Shared/Environment/Props/Prefabs/Barrel.xkprefab new file mode 100644 index 0000000..ac8fd55 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Prefabs/Barrel.xkprefab @@ -0,0 +1,22 @@ +!PrefabAsset +Id: 9640bd56-865b-463e-9e64-823cd9b58b75 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 412fc240-6fda-45a6-8e2c-85ca43ecf8cd + Parts: + - Entity: + Id: 412fc240-6fda-45a6-8e2c-85ca43ecf8cd + Name: Barrel + Components: + 18a17b06a7e048f7bbd9f06b7f42b7c6: !TransformComponent + Id: 72fe5666-1539-4972-95fe-040bf0a3d502 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8150b5fc127dd878932e86d28a5d1692: !ModelComponent + Id: db0f82a4-d1c2-4f93-b71f-6903d1f7d9d1 + Model: 3a09548e-eda3-49bd-8b7e-49c653eb1c04:Environment/Props/Models/Barrel + Materials: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Prefabs/Box1.xkprefab b/Starbreach/Assets/Shared/Environment/Props/Prefabs/Box1.xkprefab new file mode 100644 index 0000000..3471767 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Prefabs/Box1.xkprefab @@ -0,0 +1,37 @@ +!PrefabAsset +Id: b23b46aa-4d3f-45a8-ab4b-7c5a9e4d9d99 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! e8b2a223-8164-4e20-8309-f81a90ca09cc + Parts: + - Entity: + Id: e8b2a223-8164-4e20-8309-f81a90ca09cc + Name: box_1 + Components: + 809778ee97de74479d46b2b89cf3fd55: !TransformComponent + Id: ee789780-de97-4774-9d46-b2b89cf3fd55 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 46d65c287ed37b419febba3f2fc9e168: !ModelComponent + Id: 285cd646-d37e-417b-9feb-ba3f2fc9e168 + Model: 46441ab3-67fb-40d4-8b72-8dd1db5d988e:Environment/Props/Models/Box1 + Materials: {} + 97af1ceb4c685740b019dc46621ca5bd: !StaticColliderComponent + Id: eb1caf97-684c-4057-b019-dc46621ca5bd + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 30ff71837d20084985383f3411cf2ed8: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.95, Y: 0.95, Z: 0.95} + LocalOffset: {X: 0.0, Y: 0.475, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} diff --git a/Starbreach/Assets/Shared/Environment/Props/Prefabs/Box2.xkprefab b/Starbreach/Assets/Shared/Environment/Props/Prefabs/Box2.xkprefab new file mode 100644 index 0000000..02534c4 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Prefabs/Box2.xkprefab @@ -0,0 +1,37 @@ +!PrefabAsset +Id: 5246c639-719c-4380-a886-7bdfb16f5cbd +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! f0b73707-1f65-435f-a5ba-5c09ec4ef144 + Parts: + - Entity: + Id: f0b73707-1f65-435f-a5ba-5c09ec4ef144 + Name: box_2 + Components: + a4a1352c38d8d946adbd0a9eb22ecf7a: !TransformComponent + Id: 2c35a1a4-d838-46d9-adbd-0a9eb22ecf7a + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 7a4dfc02f3a9234aa72a05fb7a824816: !ModelComponent + Id: 02fc4d7a-a9f3-4a23-a72a-05fb7a824816 + Model: 41fc6c99-792b-46fe-942c-ef3763a2407a:Environment/Props/Models/Box2 + Materials: {} + d4b4d5f2d8369d46845444c61c1e61ec: !StaticColliderComponent + Id: f2d5b4d4-36d8-469d-8454-44c61c1e61ec + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 82ea61f172e46a4aab7ce970e3a3f887: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.9, Y: 0.9, Z: 0.95} + LocalOffset: {X: 0.0, Y: 0.45, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} diff --git a/Starbreach/Assets/Shared/Environment/Props/Prefabs/ChargerBox.xkprefab b/Starbreach/Assets/Shared/Environment/Props/Prefabs/ChargerBox.xkprefab new file mode 100644 index 0000000..e22e8b0 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Prefabs/ChargerBox.xkprefab @@ -0,0 +1,37 @@ +!PrefabAsset +Id: 08fcbc00-0585-4d76-a76e-3aba715b89a2 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 7801a3c6-6f59-4e5d-917d-5f838ed9f781 + Parts: + - Entity: + Id: 7801a3c6-6f59-4e5d-917d-5f838ed9f781 + Name: ChargerBox + Components: + 6233de1d3246d8ee443a7cc14154fede: !TransformComponent + Id: efabc2ea-7627-41e5-addd-f86885a8e709 + Position: {X: 0.0, Y: 0.42466414, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + cc93fdaf96eee4a153bf4a38f4c86e0d: !ModelComponent + Id: cb8a28b2-ebc4-4818-8fbe-646a4a2cce74 + Model: 2b86e7b1-e218-412d-b66e-e0dc401dc02c:Environment/Props/Models/ChargerBox + Materials: {} + acc1f332e3f43a39559966a76640088e: !StaticColliderComponent + Id: d589a7c8-4b72-4c03-9da2-4e5f0af644cc + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + d0fa990451422fe1b046a66deb9e749d: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.2, Y: 0.85, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} diff --git a/Starbreach/Assets/Shared/Environment/Props/Prefabs/Column.xkprefab b/Starbreach/Assets/Shared/Environment/Props/Prefabs/Column.xkprefab new file mode 100644 index 0000000..df96fbd --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Prefabs/Column.xkprefab @@ -0,0 +1,66 @@ +!PrefabAsset +Id: ba3c136a-df3a-4f13-8171-5099a1dd3899 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 34b78f82-3799-4830-900b-e9455fb561a2 + Parts: + - Entity: + Id: 34b78f82-3799-4830-900b-e9455fb561a2 + Name: Column + Components: + ae874bae5a72d2388b68ae806e484e5d: !TransformComponent + Id: 84ba6717-39ee-472d-a9c4-4b386ca9bf41 + Position: {X: 0.0, Y: 1.7647059, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + dfdc9bac4fb7b9696b9fa68f7cb87122: ref!! ff91f653-03c0-4c74-b29b-e865738723a1 + a81d8f29faac04d87c1b6468b4115fdf: !ModelComponent + Id: 6f110a83-603b-449a-bd40-0376e9eb0e4b + Model: 153687de-2b93-4509-b567-93852598694b:Environment/Props/Models/Column + Materials: {} + a5c7ed4e4ed33cdc6fd350223aec48e8: !StaticColliderComponent + Id: 7976005f-1805-4b93-ab45-d59adffced60 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 91dcaff8c24c3dcc4c6c422b0c46a843: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 4.0, Z: 2.0} + LocalOffset: {X: 0.0, Y: 0.245, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + e83aa97f296f06c3c4b52601861900a0: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 4.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 4.245, Z: 0.25} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + - Entity: + Id: e2df8049-7d03-46bd-8171-1134c17d6980 + Name: Spot light + Components: + 081b800a6c87b2180231d487b3777aa2: !TransformComponent + Id: ff91f653-03c0-4c74-b29b-e865738723a1 + Position: {X: 0.0, Y: 5.07600927, Z: -1.60325944} + Rotation: {X: -0.5616586, Y: 0.0, Z: 0.0, W: 0.8273691} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + badeae4de086452296f096b28cee789e: !LightComponent + Id: 519d01e0-bfc5-4deb-a6e5-6b5138f77c9a + Type: !LightSpot + Color: !ColorRgbProvider + Value: {R: 1.0, G: 1.0, B: 1.0} + Range: 300.0 + AngleOuter: 90.0 + UVScale: {X: 1.0, Y: 1.0} + UVOffset: {X: 0.0, Y: 0.0} + Shadow: + BiasParameters: + DepthBias: 0.001 + Intensity: 100.0 diff --git a/Starbreach/Assets/Shared/Environment/Props/Prefabs/Crane_large.xkprefab b/Starbreach/Assets/Shared/Environment/Props/Prefabs/Crane_large.xkprefab new file mode 100644 index 0000000..8633973 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Prefabs/Crane_large.xkprefab @@ -0,0 +1,22 @@ +!PrefabAsset +Id: 0b0338a0-a2d1-487c-8af2-c96ff530e3c6 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 21276485-acdb-4d9d-9fb2-6c55c029fe0d + Parts: + - Entity: + Id: 21276485-acdb-4d9d-9fb2-6c55c029fe0d + Name: Crane_large + Components: + b59ade46cd2ad91766675fcde40267d3: !TransformComponent + Id: 33c67571-d5f6-451e-8d77-14d0c00ccb00 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e0f5d721ab947932f380a7867f7e9af3: !ModelComponent + Id: ab348f1f-b76c-455f-ad68-e1fe65c058eb + Model: 821a1210-f5e0-4389-9e42-72886ebccaf5:Environment/Props/Models/Crane_large + Materials: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Prefabs/Crane_small.xkprefab b/Starbreach/Assets/Shared/Environment/Props/Prefabs/Crane_small.xkprefab new file mode 100644 index 0000000..8c45512 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Prefabs/Crane_small.xkprefab @@ -0,0 +1,41 @@ +!PrefabAsset +Id: 00eb9a22-6040-4b56-936b-aef09a483897 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! a8c3a236-cfd6-4880-a196-a0dd2a27cbee + Parts: + - Entity: + Id: a8c3a236-cfd6-4880-a196-a0dd2a27cbee + Name: Crane_small + Components: + 0c58a93ff0b68a3b56e86f6ce23dcce2: !TransformComponent + Id: 630af0c9-1b21-4cfe-83aa-ad5f4d189bec + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a77dc0a106dbb00f08f57927becc8e32: !ModelComponent + Id: 7aa12a78-b467-4923-938a-f47248cbda21 + Model: 6265c534-4bfd-45a2-879b-15aa84659e82:Environment/Props/Models/Crane_small + Materials: {} + 1b3a638d4d756e78a09cd85c91a67ded: !StaticColliderComponent + Id: 71e2275f-b75c-46dc-bb14-f68357dcd6a7 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 8b852c3813cdeaaeebd7fa29686a6d8e: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 3.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 965145a08bbd93aa5abf3fb115c7c6dc: !CylinderColliderShapeDesc + Height: 4.0 + LocalOffset: {X: -0.5, Y: 5.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} diff --git a/Starbreach/Assets/Shared/Environment/Props/Prefabs/DPU.xkprefab b/Starbreach/Assets/Shared/Environment/Props/Prefabs/DPU.xkprefab new file mode 100644 index 0000000..fb5e9b4 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Prefabs/DPU.xkprefab @@ -0,0 +1,37 @@ +!PrefabAsset +Id: db3e294c-5700-4c32-8d75-3730adc148a6 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 3a57c1b4-5986-43bd-8f7b-5abcd6147f10 + - ref!! 9ab5c1e7-58e3-45cc-a82e-6b1854f8e569 + Parts: + - Entity: + Id: 3a57c1b4-5986-43bd-8f7b-5abcd6147f10 + Name: DPU1 + Components: + a47bbbe0c3bdbe991ee2b8dbb211e84a: !TransformComponent + Id: cd0dc27b-fcd3-42e8-949a-561a5e770ccf + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 07d88e01b901439d7f2ef8928e8a6716: !ModelComponent + Id: 7c5006a3-7ce3-4c9c-a32a-ef9a9aa14c5b + Model: 209893ec-48c7-4c36-ab47-d4f177f58bf6:Environment/Props/Models/DPU1 + Materials: {} + - Entity: + Id: 9ab5c1e7-58e3-45cc-a82e-6b1854f8e569 + Name: DPU2 + Components: + a719dc29f5e97bb535a855843cc57283: !TransformComponent + Id: 206a65e2-ff7b-48a7-a7e5-e568b63ec293 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 343072a94d7efea6c3c792bf38ad290f: !ModelComponent + Id: cfcfe6a7-1c99-4e02-a1c7-f7294a5a7d66 + Model: e62da4ac-0fbd-43f0-86a2-3c36a1f69f96:Environment/Props/Models/DPU2 + Materials: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Prefabs/DataPad.xkprefab b/Starbreach/Assets/Shared/Environment/Props/Prefabs/DataPad.xkprefab new file mode 100644 index 0000000..bb9a547 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Prefabs/DataPad.xkprefab @@ -0,0 +1,37 @@ +!PrefabAsset +Id: 0fd37ae2-d4e3-4040-8f2b-291c3175e41c +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 5b110e2d-a241-454b-b4e7-83bcbde36f41 + Parts: + - Entity: + Id: 5b110e2d-a241-454b-b4e7-83bcbde36f41 + Name: DataPad + Components: + 2f9ddeb934fea48b1c73e0b38a3375a2: !TransformComponent + Id: c5ea17ca-7b90-4628-9c1b-803d3c42996d + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 2e3ff6e03d10cf3dc77d70ed0a476b89: !ModelComponent + Id: d619b0d2-1b8a-4035-817f-beb05da018d2 + Model: f5f8e1be-4e17-41c5-bf92-41e912b85697:Environment/Props/Models/DataPad + Materials: {} + 349e286a76808eaf7a2d392bb9c4461f: !StaticColliderComponent + Id: edb608bb-3be8-4b1e-85db-41cdf34d5c19 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + c06917f3e482c09bde03c9bfce95e46e: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 1.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} diff --git a/Starbreach/Assets/Shared/Environment/Props/Prefabs/DataSwitcher.xkprefab b/Starbreach/Assets/Shared/Environment/Props/Prefabs/DataSwitcher.xkprefab new file mode 100644 index 0000000..46b0aeb --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Prefabs/DataSwitcher.xkprefab @@ -0,0 +1,41 @@ +!PrefabAsset +Id: 18a16e3d-5140-4db4-85a5-cd34e4fe1640 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! bde5e4a6-c956-4cfd-9fa5-4f689c001ab2 + Parts: + - Entity: + Id: bde5e4a6-c956-4cfd-9fa5-4f689c001ab2 + Name: DataSwitcher + Components: + ec3ee182ea7a0c1b20b9962a69b81666: !TransformComponent + Id: e2868b41-a96f-42f8-af81-249ba393e8a2 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 30a5b8bb417210df31819b03c22e9bb4: !ModelComponent + Id: f09d4b11-a506-4e03-ab4d-04f9fa6cd2b0 + Model: 87c540c8-80aa-4d46-a28f-6f99109347f6:Environment/Props/Models/DataSwitcher + Materials: {} + 726c862c3e01529c1975b308e9ee07f4: !StaticColliderComponent + Id: 733c11ff-7f48-4529-9529-557bc4ed4984 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 3c185efd0ffe017392955bb13e2b575c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 7.0, Z: 2.0} + LocalOffset: {X: 0.0, Y: 3.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + a3452e015314c275217bf6b46bc100a4: !CylinderColliderShapeDesc + Radius: 1.0 + LocalOffset: {X: 0.0, Y: 0.5, Z: -2.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} diff --git a/Starbreach/Assets/Shared/Environment/Props/Prefabs/ExplosedCells.xkprefab b/Starbreach/Assets/Shared/Environment/Props/Prefabs/ExplosedCells.xkprefab new file mode 100644 index 0000000..3e4cf65 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Prefabs/ExplosedCells.xkprefab @@ -0,0 +1,22 @@ +!PrefabAsset +Id: 0008f3de-f75a-48c8-82f5-32f2cc6bef8a +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! f32129e7-4e98-4b33-9103-6e4f994d7326 + Parts: + - Entity: + Id: f32129e7-4e98-4b33-9103-6e4f994d7326 + Name: ExplosedCells + Components: + 1061813f3637113cd8ccd2647344b792: !TransformComponent + Id: 47692dbe-d6e7-40c0-93fa-c281133d6513 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 0.6, Y: 1.0, Z: 0.7} + Children: {} + bc5e15c42183b993b70b60d1fadd778c: !ModelComponent + Id: 5f6f4917-9085-43f2-b918-97777d6be5ec + Model: c01825b3-7045-423b-8bae-e41ad8ef1e07:Environment/Props/Models/ExplosedCells + Materials: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Prefabs/FloorRock_1.xkprefab b/Starbreach/Assets/Shared/Environment/Props/Prefabs/FloorRock_1.xkprefab new file mode 100644 index 0000000..0cb6005 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Prefabs/FloorRock_1.xkprefab @@ -0,0 +1,22 @@ +!PrefabAsset +Id: d2cbf9e2-a94c-4e52-ac93-63e675b95937 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 5ca3ff24-e2b2-43c8-b718-ae47472e2500 + Parts: + - Entity: + Id: 5ca3ff24-e2b2-43c8-b718-ae47472e2500 + Name: FloorRock_1 + Components: + 3259a3cec1df5c9703800ac98af9cae4: !TransformComponent + Id: f5054eff-2e66-4de2-9188-8458cd9dfe91 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f981478ff0f286d79e08ad377b3fdb91: !ModelComponent + Id: 742a2ba0-ef2c-43c4-901a-72c55a42fb3f + Model: 2d77c29d-be73-4a4f-a7b5-7e68e0ce3453:Environment/Props/Models/FloorRock_1 + Materials: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Prefabs/FloorRock_2.xkprefab b/Starbreach/Assets/Shared/Environment/Props/Prefabs/FloorRock_2.xkprefab new file mode 100644 index 0000000..47cae5b --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Prefabs/FloorRock_2.xkprefab @@ -0,0 +1,22 @@ +!PrefabAsset +Id: cbbd86c4-cb0d-4f6d-ae3c-e862223411cc +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 44ab4ca8-1844-4589-b1c1-d09ab32d0eae + Parts: + - Entity: + Id: 44ab4ca8-1844-4589-b1c1-d09ab32d0eae + Name: FloorRock_2 + Components: + e4b86247ad2fae183c070ab5297ac2c4: !TransformComponent + Id: 69d62d63-fee8-4c5e-a6f2-d36c91bb0eb8 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c8f4c5bab19682b003ccfa636f439a63: !ModelComponent + Id: 4c5d70ca-48e1-4037-98cd-375b3518dea1 + Model: 1cbe9f48-9b2a-4ffa-9247-5295373b9315:Environment/Props/Models/FloorRock_2 + Materials: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Prefabs/FloorRock_3.xkprefab b/Starbreach/Assets/Shared/Environment/Props/Prefabs/FloorRock_3.xkprefab new file mode 100644 index 0000000..029799c --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Prefabs/FloorRock_3.xkprefab @@ -0,0 +1,22 @@ +!PrefabAsset +Id: 040c9f7d-8fa7-4aae-a883-8e00a23e193e +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! bf163bd5-dbc2-49ad-9df3-6f56d2d1f412 + Parts: + - Entity: + Id: bf163bd5-dbc2-49ad-9df3-6f56d2d1f412 + Name: FloorRock_3 + Components: + b6ef46d466f2840c661e6810c768a8ec: !TransformComponent + Id: d98d3144-da56-40f5-96d1-ee9d1c0ab78b + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3dc72465a71bad26eb29043ae2b4c83e: !ModelComponent + Id: fb4ca4b9-b11b-4e02-b778-29bcc49eaafb + Model: 3f42899b-c1f3-47df-873d-b7f6632ca0bd:Environment/Props/Models/FloorRock_3 + Materials: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Prefabs/FloorRock_4.xkprefab b/Starbreach/Assets/Shared/Environment/Props/Prefabs/FloorRock_4.xkprefab new file mode 100644 index 0000000..e1c7f42 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Prefabs/FloorRock_4.xkprefab @@ -0,0 +1,22 @@ +!PrefabAsset +Id: a48fb0fc-4790-4868-9014-8f6ca025834b +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! de33f53d-ec16-4671-8859-011f4bc51843 + Parts: + - Entity: + Id: de33f53d-ec16-4671-8859-011f4bc51843 + Name: FloorRock_4 + Components: + 955ba27aa32fc8eb521305064f5d0413: !TransformComponent + Id: 0c9a480c-4024-45e1-8752-f365f182a63f + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e4143c8a05832151b9fdf1e7cbd63180: !ModelComponent + Id: 44b79b06-fb4c-438f-8001-cbcafb43e1ac + Model: 641ed9f1-eb2e-4c42-bd34-c5dba0faaac0:Environment/Props/Models/FloorRock_4 + Materials: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Prefabs/FloorRock_5.xkprefab b/Starbreach/Assets/Shared/Environment/Props/Prefabs/FloorRock_5.xkprefab new file mode 100644 index 0000000..6a85b36 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Prefabs/FloorRock_5.xkprefab @@ -0,0 +1,22 @@ +!PrefabAsset +Id: b8a3faed-bff3-4774-8a81-a65762fcce28 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! baf4362e-5be8-43a6-8fc7-839f3294e2e0 + Parts: + - Entity: + Id: baf4362e-5be8-43a6-8fc7-839f3294e2e0 + Name: FloorRock_5 + Components: + 3f3b59ce55cdbde4de2ab9e426f065a0: !TransformComponent + Id: b46e0a57-c4c6-4c54-8ae2-e19d8126e216 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d089a16952eebcd3ef67096a7956fbbb: !ModelComponent + Id: 532b2f06-e177-4d78-9f44-546dc93373ea + Model: 3261b983-a96f-475b-b386-5e63feadf6aa:Environment/Props/Models/FloorRock_5 + Materials: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Prefabs/FloorRock_6.xkprefab b/Starbreach/Assets/Shared/Environment/Props/Prefabs/FloorRock_6.xkprefab new file mode 100644 index 0000000..89301eb --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Prefabs/FloorRock_6.xkprefab @@ -0,0 +1,22 @@ +!PrefabAsset +Id: c63a4dc3-3bfa-4bb2-9de7-4de6b12ede9f +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 25f68214-ad00-434a-9a55-7fd4582545f8 + Parts: + - Entity: + Id: 25f68214-ad00-434a-9a55-7fd4582545f8 + Name: FloorRock_6 + Components: + cd22e36665ac389cfa20feb30b37b77a: !TransformComponent + Id: df3b3f89-cc6f-4ea4-95f4-e41c7ed5e1c8 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 9c6ea659ff858b56e81933305912325d: !ModelComponent + Id: 9a97a768-b5cf-47f0-91c8-32ed67936abc + Model: 3b4c6ecd-707c-47e0-98c6-ad1da6cd4aeb:Environment/Props/Models/FloorRock_6 + Materials: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Prefabs/GasPump.xkprefab b/Starbreach/Assets/Shared/Environment/Props/Prefabs/GasPump.xkprefab new file mode 100644 index 0000000..6ce503d --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Prefabs/GasPump.xkprefab @@ -0,0 +1,37 @@ +!PrefabAsset +Id: c18756a2-9133-4046-9e4c-c267e063b021 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 200140b7-8b11-43e8-bd95-b8ab5d0c57da + Parts: + - Entity: + Id: 200140b7-8b11-43e8-bd95-b8ab5d0c57da + Name: GasPump + Components: + d547e8a3f1c2213a7ef3000c9e9dcd82: !TransformComponent + Id: c4da5c54-1f63-44ef-a9e5-b8ecf86a78b2 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3d7cef951a17c6ce8a6c46b67b395120: !ModelComponent + Id: 3d9e2b50-2a27-4e13-9a33-c0a559c7a1c1 + Model: 83bd9601-ccff-4c98-b01a-f02691a402f0:Environment/Props/Models/GasPump + Materials: {} + a744edf4c69d852f6eb77a0c7a97200e: !StaticColliderComponent + Id: 7f2f93a9-8115-4112-a0f0-88ee04fc4c5e + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 3d6e4b33be85f99a428d29df41ace1a0: !CylinderColliderShapeDesc + Height: 5.3 + Radius: 1.1 + LocalOffset: {X: 0.0, Y: 2.65, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} diff --git a/Starbreach/Assets/Shared/Environment/Props/Prefabs/Generator.xkprefab b/Starbreach/Assets/Shared/Environment/Props/Prefabs/Generator.xkprefab new file mode 100644 index 0000000..8b52394 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Prefabs/Generator.xkprefab @@ -0,0 +1,57 @@ +!PrefabAsset +Id: bc63beb7-eb2f-4ddf-ada3-01dc3afb050e +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 6220a143-e8d6-4b49-aa8a-272b12a476d2 + Parts: + - Entity: + Id: 6220a143-e8d6-4b49-aa8a-272b12a476d2 + Name: Generator + Components: + de0fb3707925efe900b58efb81c7ad0d: !TransformComponent + Id: abc9e67e-8f11-4164-8ac4-906126f0bb56 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 72403a3895b890f417b3890cc8f18086: !ModelComponent + Id: 34f878c7-37f4-47f1-b155-38eef90fde44 + Model: 05ea29a9-fd0d-4b79-89c6-a2c1a305ceb1:Environment/Props/Models/Generator + Materials: {} + 987e2c0ee5606415e82190e656805745: !StaticColliderComponent + Id: ae8188a7-c2da-4aef-bcbb-5d622b6940d6 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 88599be37ebd4432d96d2d5886eab5ae: !CylinderColliderShapeDesc + Height: 6.0 + Radius: 2.0 + LocalOffset: {X: 0.0, Y: 3.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 6abfaba9bfb1775b361586d416b46ce9: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.2, Y: 0.5, Z: 1.25} + LocalOffset: {X: 0.0, Y: 0.25, Z: 2.625} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 12effa6c2bcdd1cb0a0d53cdb420a1aa: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.2, Y: 0.5, Z: 1.25} + LocalOffset: {X: 0.0, Y: 0.25, Z: -2.625} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 8e11d64a5d6c77764c2ed990d7cd5d58: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.25, Y: 0.5, Z: 0.2} + LocalOffset: {X: 2.625, Y: 0.25, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 1d9d570accf3112d0547dd60e94f27e2: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.25, Y: 0.5, Z: 0.2} + LocalOffset: {X: -2.625, Y: 0.25, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} diff --git a/Starbreach/Assets/Shared/Environment/Props/Prefabs/OilPump.xkprefab b/Starbreach/Assets/Shared/Environment/Props/Prefabs/OilPump.xkprefab new file mode 100644 index 0000000..4d62f12 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Prefabs/OilPump.xkprefab @@ -0,0 +1,42 @@ +!PrefabAsset +Id: 3c61102a-5dc0-471f-a335-3867cce63a58 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 8c5d250c-4fa1-4f19-ad6d-0b45f1a170da + Parts: + - Entity: + Id: 8c5d250c-4fa1-4f19-ad6d-0b45f1a170da + Name: OilPump + Components: + 1e1dbb8ad45c1000b406d2c95a67fe88: !TransformComponent + Id: 01561b0b-69df-456e-932d-416cc7ae28bd + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 9e5be4c29b440208b1403c78726c5be4: !ModelComponent + Id: db72cb5e-9646-4603-8f88-24acafa70d00 + Model: 3cb8df31-ea42-4f2e-91b1-1039224a533e:Environment/Props/Models/OilPump + Materials: {} + e68190618f2d000e1d116af97f48ccfe: !StaticColliderComponent + Id: fb680528-8c39-4fa7-ad75-dbe0163c27c5 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 39e080c9500338f09ef88c62b2722b4c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.5, Y: 2.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 1.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + b17e1d474b1370727693a6ebe1daddeb: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.5, Y: 0.2, Z: 1.5} + LocalOffset: {X: -0.25, Y: 0.1, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} diff --git a/Starbreach/Assets/Shared/Environment/Props/Prefabs/Pillar1.xkprefab b/Starbreach/Assets/Shared/Environment/Props/Prefabs/Pillar1.xkprefab new file mode 100644 index 0000000..fb64f19 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Prefabs/Pillar1.xkprefab @@ -0,0 +1,42 @@ +!PrefabAsset +Id: 22e9dad3-d3c8-4e99-a60f-03e52029874e +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 09ec4e12-8aa4-48f4-ad5f-fa4bbdc60ea8 + Parts: + - Entity: + Id: 09ec4e12-8aa4-48f4-ad5f-fa4bbdc60ea8 + Name: Pillar1 + Components: + d2ecfd3949a7e4d5c5de0918cbf8d6bb: !TransformComponent + Id: 965df04a-1e5e-48ba-aac2-63b57e41d8d4 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 0.5, Y: 0.5, Z: 0.5} + Children: {} + f36058d7fd850c8a967d320a21f59efc: !ModelComponent + Id: 7ed228ea-2a5c-4eb5-8cae-0db7bf44f7f9 + Model: cf64cebf-e975-4b41-904d-3160bb54127f:Environment/Props/Models/Pillar1 + Materials: {} + c450fe5c75d529fe51b0c495a32b91b3: !StaticColliderComponent + Id: 85567b99-0252-4468-be71-dc2c71ae7557 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 1d67cc52a11e0847caf11de57e6ad84e: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 14.0, Z: 1.2} + LocalOffset: {X: 0.0, Y: 7.0, Z: -0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + ec18f000c860aedb1c7c2d1839b956d8: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 3.0, Z: 2.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} diff --git a/Starbreach/Assets/Shared/Environment/Props/Prefabs/Pillar2_curved.xkprefab b/Starbreach/Assets/Shared/Environment/Props/Prefabs/Pillar2_curved.xkprefab new file mode 100644 index 0000000..ab2c387 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Prefabs/Pillar2_curved.xkprefab @@ -0,0 +1,47 @@ +!PrefabAsset +Id: 30719772-588f-43d9-8fbf-4c95890b45c5 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! ebe39ff9-e539-434c-aceb-a4e2b5d43168 + Parts: + - Entity: + Id: d2d61d5d-b01b-44d9-9689-3e1776ba65ae + Name: Spot light + Components: + aec05779d34a67a67d8bf31c750df76a: !TransformComponent + Id: 1f191629-7fee-4438-afba-4a6294254c2b + Position: {X: 0.0, Y: 5.82179832, Z: 1.01816416} + Rotation: {X: 0.819152057, Y: -1.05148075E-07, Z: -1.05148075E-07, W: -0.57357645} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c4c2f44797d398d8ebd83d42c062f1ed: !LightComponent + Id: 94eee3ac-735a-4339-b0c6-e0c1797479cd + Type: !LightSpot + Color: !ColorRgbProvider + Value: {R: 1.0, G: 1.0, B: 1.0} + Range: 100.0 + AngleInner: 45.0 + AngleOuter: 60.0 + UVScale: {X: 1.0, Y: 1.0} + UVOffset: {X: 0.0, Y: 0.0} + Shadow: + BiasParameters: + DepthBias: 0.001 + Intensity: 100.0 + - Entity: + Id: ebe39ff9-e539-434c-aceb-a4e2b5d43168 + Name: Pillar2_curved + Components: + 2e5abe373ee89c6d2e730ca3612768af: !TransformComponent + Id: a6a30510-01db-415d-bf29-628308fe0752 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 0d44961a60843e49c90a40dfb70ca55d: ref!! 1f191629-7fee-4438-afba-4a6294254c2b + 1ee1208ed5119f8545bbdde55af7c382: !ModelComponent + Id: 0f921523-c76c-49bd-968c-f3f4525371d9 + Model: c508cb22-457d-4f5e-943f-ce97efd5c854:Environment/Props/Models/Pillar2_curved + Materials: {} diff --git a/Starbreach/Assets/Shared/Environment/Props/Prefabs/Pillar2_flat.xkprefab b/Starbreach/Assets/Shared/Environment/Props/Prefabs/Pillar2_flat.xkprefab new file mode 100644 index 0000000..5c5bd95 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Prefabs/Pillar2_flat.xkprefab @@ -0,0 +1,62 @@ +!PrefabAsset +Id: 33f4eacf-6067-4a00-9e0d-3ed6ae1bd500 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 25173063-4403-4736-8dc0-64d750dc171b + Parts: + - Entity: + Id: 25173063-4403-4736-8dc0-64d750dc171b + Name: Pillar2_flat + Components: + da7a4adb847246609d33226bfd434f6d: !TransformComponent + Id: 1e23db26-b1a9-49f0-9fed-cda136253bf4 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + b562b38cac55869a74c5ff4cc5bf9e45: ref!! 5b24209f-84ae-49a8-85ae-e9fa0b618422 + ca93a075a4312c733f6220297af4b308: !ModelComponent + Id: 49077108-42d6-4fb9-b06e-e30c4305d954 + Model: 41f2c63a-dcec-4143-a665-bbc9f616a21e:Environment/Props/Models/Pillar2_flat + Materials: {} + 9e593e77343fc9ec938194c13e10f499: !StaticColliderComponent + Id: f3fae390-5a1b-44e9-be19-56a90031e276 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + e9d57103d93cc1430a186f89f84bf0cc: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.7, Y: 6.5, Z: 0.3} + LocalOffset: {X: 0.0, Y: 3.25, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + - Entity: + Id: 52061793-f7a6-44da-94e5-53e2f2a36c2b + Name: Spot light + Components: + d12c9da95ecea194d3ecac5fbc5b9a13: !TransformComponent + Id: 5b24209f-84ae-49a8-85ae-e9fa0b618422 + Position: {X: 0.0, Y: 6.00139236, Z: 0.9119271} + Rotation: {X: 0.839381635, Y: -1.18654448E-07, Z: -9.245355E-08, W: -0.5435425} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 000af01f78b250ef4d83359d57b9aeee: !LightComponent + Id: dcfb9580-890b-4539-9224-588de9d44f49 + Type: !LightSpot + Color: !ColorRgbProvider + Value: {R: 0.5019609, G: 1.0, B: 0.831911743} + Range: 100.0 + AngleInner: 45.0 + AngleOuter: 60.0 + UVScale: {X: 1.0, Y: 1.0} + UVOffset: {X: 0.0, Y: 0.0} + Shadow: + BiasParameters: + DepthBias: 0.001 + Intensity: 150.0 diff --git a/Starbreach/Assets/Shared/Environment/Props/Prefabs/QuadBarrels.xkprefab b/Starbreach/Assets/Shared/Environment/Props/Prefabs/QuadBarrels.xkprefab new file mode 100644 index 0000000..8549949 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Prefabs/QuadBarrels.xkprefab @@ -0,0 +1,37 @@ +!PrefabAsset +Id: bceccb3f-3666-4864-aded-2230c759cbaf +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! ae3cd2c6-ef7d-4ebb-9bf1-01ff9c1b034c + Parts: + - Entity: + Id: ae3cd2c6-ef7d-4ebb-9bf1-01ff9c1b034c + Name: QuadBarrels + Components: + 6cba76ddfd1ccfe65a4c5a140756c8d4: !TransformComponent + Id: 581c15d8-e0e7-4136-b656-3bff42e5dfa2 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3280e516b6ce697916b6f1c0823acd38: !ModelComponent + Id: 36147c94-74a3-48af-bb70-0292d789032a + Model: bd5c8df1-b6f8-4ae3-9099-b063300bc184:Environment/Props/Models/QuadBarrels + Materials: {} + a0046f2ff924d533f457904736235306: !StaticColliderComponent + Id: 5a3e4633-3b44-47ac-ad8e-07857d167edd + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 73a42be32d471fc220f6ebc55d725e77: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 3.0, Z: 2.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} diff --git a/Starbreach/Assets/Shared/Environment/Props/Prefabs/Satellite_spinning.xkprefab b/Starbreach/Assets/Shared/Environment/Props/Prefabs/Satellite_spinning.xkprefab new file mode 100644 index 0000000..5a5036a --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Prefabs/Satellite_spinning.xkprefab @@ -0,0 +1,55 @@ +!PrefabAsset +Id: 208c0dab-6c53-4535-b0e9-7b27658aed0d +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 19b4400e-9003-47dd-a724-86bc8c09c96b + - ref!! 13fa0d4d-6c70-423a-a463-33195d3ae793 + Parts: + - Entity: + Id: 13fa0d4d-6c70-423a-a463-33195d3ae793 + Name: Satellite_dish + Components: + 0f8725c156532fc81f5e016477d17c39: !TransformComponent + Id: 4bcbb4a8-b3ef-4f54-b4c2-e13950eddb8a + Position: {X: -0.443379432, Y: 1.59516716, Z: -0.4901473} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 79d849f104142d4ba2b605eeb57c5c34: !ModelComponent + Id: dd53cf94-c3b8-43c7-86d7-b93d66c77cf9 + Model: e554b48a-fc71-4ba3-94cb-a6112a000237:Environment/Props/Models/Satellite_dish + Materials: {} + 6fd63941ed6b372565409c190442e87d: !Starbreach.Environment.SpinModel,Starbreach + Id: 934902f5-d24d-44b0-ad4f-e07334b2d518 + TurnPerSecond: 0.25 + - Entity: + Id: 19b4400e-9003-47dd-a724-86bc8c09c96b + Name: Satellite_base + Components: + e08c46afdfd0782fc35ec4aee21c1509: !TransformComponent + Id: 41c338c1-42c1-4390-be05-b83b11fe26d8 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 7092850f3cdb96fe6050dd9f6f7a2344: !ModelComponent + Id: 6f250cdc-8537-4a10-9127-35f202ac8902 + Model: dd67fffa-abb2-4d8b-917c-13ba8da3ae60:Environment/Props/Models/Satellite_base + Materials: {} + 6d22954a9e7e0e24d7ee9098bc106fcf: !StaticColliderComponent + Id: 1707590f-ee90-4086-ab59-10aeb0e52e7c + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 40ee7ddde5e60f8c314a36175b8b8dbe: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.25, Y: 1.5, Z: 2.0} + LocalOffset: {X: 0.125, Y: 0.75, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} diff --git a/Starbreach/Assets/Shared/Environment/Props/Prefabs/Satellite_static.xkprefab b/Starbreach/Assets/Shared/Environment/Props/Prefabs/Satellite_static.xkprefab new file mode 100644 index 0000000..622d938 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Prefabs/Satellite_static.xkprefab @@ -0,0 +1,37 @@ +!PrefabAsset +Id: 3e14998f-4ec4-4b41-b1b8-79cd0b6d73df +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! e8845556-0a90-4935-b2cf-577deac772ab + Parts: + - Entity: + Id: e8845556-0a90-4935-b2cf-577deac772ab + Name: Satellite + Components: + 32d38d0e6a3c93392922fce7391b6c3d: !TransformComponent + Id: 25137f31-e12e-4777-9e86-a34fc52eba91 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3100c3f42cf1257477d69978435187f8: !ModelComponent + Id: b02cf125-6b10-4b37-9759-d47080a70c59 + Model: 37c6e2d9-877b-4052-b885-d05735ee40b2:Environment/Props/Models/Satellite + Materials: {} + 8e62bc692cfaad2856e128a60b779ea6: !StaticColliderComponent + Id: 600e22b2-8ed8-4fc2-9431-65ada95353fe + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 95434af2e0cb69b67b20283b391b9e4f: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.5, Y: 1.4, Z: 2.0} + LocalOffset: {X: 0.1, Y: 0.7, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} diff --git a/Starbreach/Assets/Shared/Environment/Props/Prefabs/ServerPad.xkprefab b/Starbreach/Assets/Shared/Environment/Props/Prefabs/ServerPad.xkprefab new file mode 100644 index 0000000..f2a1de5 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Prefabs/ServerPad.xkprefab @@ -0,0 +1,42 @@ +!PrefabAsset +Id: 62552c0d-5f92-4a04-9cd7-fec7ca5d6e86 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 2f1b551e-174d-4545-890c-6dde16d947e2 + Parts: + - Entity: + Id: 2f1b551e-174d-4545-890c-6dde16d947e2 + Name: ServerPad + Components: + 9cc2e85e539696db12c68eee89b22975: !TransformComponent + Id: 56e74019-bc46-4494-9e09-da33717957ac + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 5e41d1a6d51058f29a5a3bc92598c523: !ModelComponent + Id: 4aeb705e-8ac4-43a8-96fb-48ebf0beb935 + Model: 5059af3d-ea9e-4027-8ccb-8f23dad0c063:Environment/Props/Models/ServerPad + Materials: {} + 14379b4b0534be9caba30c328363f241: !StaticColliderComponent + Id: ca432a80-0d24-4fcd-a8c7-9325a8f4c349 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 8715a3e62d75b1239fcd97f6036f90b4: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 1.0, Z: 1.6} + LocalOffset: {X: 0.0, Y: 0.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 4934e6045e93c470ed778353f6e18052: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.8, Y: 0.8, Z: 0.6} + LocalOffset: {X: 0.0, Y: 1.4, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} diff --git a/Starbreach/Assets/Shared/Environment/Props/Prefabs/Teleport.xkprefab b/Starbreach/Assets/Shared/Environment/Props/Prefabs/Teleport.xkprefab new file mode 100644 index 0000000..050bf90 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Prefabs/Teleport.xkprefab @@ -0,0 +1,57 @@ +!PrefabAsset +Id: d45cc866-3bbb-407e-84aa-52ad3ab6446a +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! df056d3a-bcae-4fb5-ba2e-61dc239fe17c + Parts: + - Entity: + Id: df056d3a-bcae-4fb5-ba2e-61dc239fe17c + Name: Teleport + Components: + 8954766badcc7aefa23c04e3693487f4: !TransformComponent + Id: 6696f414-de55-4e7e-b9a0-05259dfb4000 + Position: {X: 0.0, Y: -0.116503835, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 5aff464ea6197c41081788a1ee01b850: !ModelComponent + Id: 48e80804-3573-4a5a-b7ee-bbe7ffa177b6 + Model: 74ed18b5-f993-49d7-8d3e-170411c88201:Environment/Props/Models/Teleport + Materials: {} + fb452f16718eee0a0701c893d6248fc6: !StaticColliderComponent + Id: 51f4a3b4-d2d6-4920-998e-665e172e0857 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 95d55168ece39fce6c45fb238bb81ddd: !CylinderColliderShapeDesc + Height: 0.5 + Radius: 2.7 + LocalOffset: {X: 0.0, Y: 0.225, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 2b5e579dc9d3fb215280cb3eddbf2e60: !CylinderColliderShapeDesc + Height: 0.6 + Radius: 1.8 + LocalOffset: {X: 0.0, Y: 0.275, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + e041fdcf8ad2beb11c6df6e835526292: !CylinderColliderShapeDesc + Height: 0.275 + Radius: 2.9 + LocalOffset: {X: 0.0, Y: 0.15, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + e390ae9b92ae19edfd91c178b3ea6597: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.75, Y: 5.0, Z: 1.2} + LocalOffset: {X: 2.45, Y: 2.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 2642c26812a542f2ef3c8201ed5ad4da: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.75, Y: 5.0, Z: 1.2} + LocalOffset: {X: -2.45, Y: 2.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} diff --git a/Starbreach/Assets/Shared/Environment/Props/Prefabs/Tubes.xkprefab b/Starbreach/Assets/Shared/Environment/Props/Prefabs/Tubes.xkprefab new file mode 100644 index 0000000..78bd606 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Prefabs/Tubes.xkprefab @@ -0,0 +1,121 @@ +!PrefabAsset +Id: 62e87c0b-15d8-4628-95c9-7880f4cf2fe1 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 20f03481-611c-470f-b5ca-0917bf52f59a + Parts: + - Entity: + Id: 20f03481-611c-470f-b5ca-0917bf52f59a + Name: Tubes + Components: + 8afe5b76881b508b37d688f2116c5186: !TransformComponent + Id: 1d669e58-0c84-448f-a595-ec9a0d303309 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + f8136fdaf53a03054ebf4cbb0c271085: ref!! b69de5fc-9b02-4723-ac7f-39b15af58e1b + 4384a3450aa69829ac2eafc573047c67: ref!! fae64ec9-fc37-4981-9b9e-5c644a080a33 + d0526db95b412f4714f97c9e1e008f44: !ModelComponent + Id: 5c4ec356-0af5-417f-97bd-78be8db40f75 + Model: b71a38c2-5460-4a2e-8abf-77a0acec5aeb:Environment/Props/Models/Tubes + Materials: {} + - Entity: + Id: 33533809-4477-4c1f-90e3-f7c190afa66a + Name: Tubes_base + Components: + 7cdd3b1a1396bae0df8d315686b47524: !TransformComponent + Id: b69de5fc-9b02-4723-ac7f-39b15af58e1b + Position*: {X: 0.0, Y: 0.0, Z: -3.15} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 14c6a602fe3acc99031df8e58a62d2c8: !StaticColliderComponent + Id: ed7e4fe9-f5cd-4940-add5-a979651ee514 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 2f121f88c1f6896ca79a2939aa8a095c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.25, Z: 1.2} + LocalOffset: {X: 0.0, Y: 0.625, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 9a70c79d932274ae3d789c1b8e505eed: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 0.7, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.35, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + c693012fa2a7a493118f8d327a097904: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.6, Z: -0.3} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + ec075d7b9a08dd03f4591017a4bce1a2: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: -0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 7742036734daf5a2f5497973ad25733f: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: 0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 4d4296f2a30a764d9d8fe6bea949fb8e: ~(Deleted) + Base: + BasePartAsset: a9eaf641-84b9-4fe0-bb15-bc2c8a67319b:Environment/Props/Prefabs/Tubes_base + BasePartId: e5249e5a-b18b-46fe-96f1-6f11a587b647 + InstanceId: f9d24825-fd5b-4d2f-a45e-15a024417f69 + - Folder: null + Entity: + Id: 6b5a24fa-0d02-4afd-abf9-40cf450e9674 + Name: Tubes_base + Components: + 7cdd3b1a1396bae0df8d315686b47524: !TransformComponent + Id: fae64ec9-fc37-4981-9b9e-5c644a080a33 + Position*: {X: 0.0, Y: 0.0, Z: 3.15} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: -1.0} + Children: {} + 14c6a602fe3acc99031df8e58a62d2c8: !StaticColliderComponent + Id: 324ef74a-8b1a-429c-8429-533855a97ff1 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 2f121f88c1f6896ca79a2939aa8a095c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.25, Z: 1.2} + LocalOffset: {X: 0.0, Y: 0.625, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 9a70c79d932274ae3d789c1b8e505eed: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 0.7, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.35, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + c693012fa2a7a493118f8d327a097904: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.6, Z: -0.3} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + ec075d7b9a08dd03f4591017a4bce1a2: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: -0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 7742036734daf5a2f5497973ad25733f: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: 0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 4d4296f2a30a764d9d8fe6bea949fb8e: ~(Deleted) + Base: + BasePartAsset: a9eaf641-84b9-4fe0-bb15-bc2c8a67319b:Environment/Props/Prefabs/Tubes_base + BasePartId: e5249e5a-b18b-46fe-96f1-6f11a587b647 + InstanceId: 8ea27756-23fe-45bb-9ec0-d72b187ee23b diff --git a/Starbreach/Assets/Shared/Environment/Props/Prefabs/Tubes_base.xkprefab b/Starbreach/Assets/Shared/Environment/Props/Prefabs/Tubes_base.xkprefab new file mode 100644 index 0000000..7dd4496 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Prefabs/Tubes_base.xkprefab @@ -0,0 +1,55 @@ +!PrefabAsset +Id: a9eaf641-84b9-4fe0-bb15-bc2c8a67319b +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! e5249e5a-b18b-46fe-96f1-6f11a587b647 + Parts: + - Entity: + Id: e5249e5a-b18b-46fe-96f1-6f11a587b647 + Name: Tubes_base + Components: + 7cdd3b1a1396bae0df8d315686b47524: !TransformComponent + Id: cc2d1d25-48ee-4fec-96ae-2557559eed43 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 4d4296f2a30a764d9d8fe6bea949fb8e: !ModelComponent + Id: 3d679303-ca1d-4a06-8e50-1c7b9fc022aa + Model: 734077ff-795c-4d1b-9f8c-688d142c4007:Environment/Props/Models/Tubes_base + Materials: {} + 14c6a602fe3acc99031df8e58a62d2c8: !StaticColliderComponent + Id: 41b92af8-4d01-46d7-88fa-10f32866da50 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 2f121f88c1f6896ca79a2939aa8a095c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.25, Z: 1.2} + LocalOffset: {X: 0.0, Y: 0.625, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 9a70c79d932274ae3d789c1b8e505eed: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 0.7, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.35, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + c693012fa2a7a493118f8d327a097904: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.6, Z: -0.3} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + ec075d7b9a08dd03f4591017a4bce1a2: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: -0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 7742036734daf5a2f5497973ad25733f: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: 0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} diff --git a/Starbreach/Assets/Shared/Environment/Props/Prefabs/Vent.xkprefab b/Starbreach/Assets/Shared/Environment/Props/Prefabs/Vent.xkprefab new file mode 100644 index 0000000..e9ff98d --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Props/Prefabs/Vent.xkprefab @@ -0,0 +1,83 @@ +!PrefabAsset +Id: b5275603-ec75-4bf7-b9cd-6613fe69d2b9 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 5c398975-e1e7-4877-af93-881930263e94 + Parts: + - Entity: + Id: 08e72601-63eb-4dcb-989d-5c65552896e8 + Name: Vent + Components: + 649d145b5cd2d2498d83796837ab2e4c: !TransformComponent + Id: 5b149d64-d25c-49d2-8d83-796837ab2e4c + Position: {X: 0.0, Y: 0.6601438, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.258819, W: 0.9659258} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 51f9a88cd6a06144a9c30a8efc81f0d6: !ModelComponent + Id: 8ca8f951-a0d6-4461-a9c3-0a8efc81f0d6 + Model: 9ba50f3a-f535-4ad4-982d-ff342c69fce4:Environment/Props/Models/Vent + Materials: {} + 557237ad44bd2e4a9a6adfa72a07f828: !Starbreach.VFX.Fan,Starbreach + Id: ad377255-bd44-4a2e-9a6a-dfa72a07f828 + RotationSpeed: 0.5 + VentLightModelComponent: ref!! 32816f6f-3bf0-4d9c-b90f-22a935e18733 + LightTexture: 2ed2808b-0693-4a27-8cd8-4cccd2d48a70:Environment/Props/Materials/Vent/Vent_inner_E + - Entity: + Id: 5c398975-e1e7-4877-af93-881930263e94 + Name: Vent + Components: + 9385595b1d62aa4bb2b4c469cfe0c781: !TransformComponent + Id: 5b598593-621d-4baa-b2b4-c469cfe0c781 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + fef582b5ce88153fe16e0207caff2767: ref!! 1cf3bec2-0cda-4385-946d-5092d2cc4382 + ad7e16aa5036ddb39dd344dbe2453ee0: ref!! a095af54-a1dc-4308-911d-079ccfaa0cfd + 1200685bbff2fe1e5c49bf133a5e169b: ref!! 5b149d64-d25c-49d2-8d83-796837ab2e4c + - Entity: + Id: 94fd4929-dc17-406a-b101-7d999144f384 + Name: Vent_base + Components: + c2bef31cda0c8543946d5092d2cc4382: !TransformComponent + Id: 1cf3bec2-0cda-4385-946d-5092d2cc4382 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 74a44ff7b53fd347b1bc0108f4e39f53: !ModelComponent + Id: f74fa474-3fb5-47d3-b1bc-0108f4e39f53 + Model: 9fb440c2-5c68-4b4c-a1c1-fe92481dc4d4:Environment/Props/Models/Vent_base + Materials: {} + 06cf1aa272609644a75ae1164968be17: !StaticColliderComponent + Id: a21acf06-6072-4496-a75a-e1164968be17 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 18cf11ad3eabc040ac2705991dacfea7: !CylinderColliderShapeDesc + Height: 1.4 + Radius: 0.9 + LocalOffset: {X: 0.0, Y: 0.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + - Entity: + Id: 9b350f50-f364-4653-8b82-1b0bf30e2f23 + Name: Vent_light_mesh + Components: + 54af95a0dca10843911d079ccfaa0cfd: !TransformComponent + Id: a095af54-a1dc-4308-911d-079ccfaa0cfd + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6f6f8132f03b9c4db90f22a935e18733: !ModelComponent + Id: 32816f6f-3bf0-4d9c-b90f-22a935e18733 + Model: bcf6e9e7-0e5d-45f3-ba1b-0b2025d17e1c:Environment/Props/Models/Vent_light_mesh + Materials: {} diff --git a/Starbreach/Assets/Shared/Environment/SkyBox_Try_04.xktex b/Starbreach/Assets/Shared/Environment/SkyBox_Try_04.xktex new file mode 100644 index 0000000..13531f1 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/SkyBox_Try_04.xktex @@ -0,0 +1,7 @@ +!Texture +Id: fe3f653b-46e9-4a79-8140-94d9dcc1eda7 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/SkyBox_Try_04.dds +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Environment/Skybox.xksky b/Starbreach/Assets/Shared/Environment/Skybox.xksky new file mode 100644 index 0000000..05c743c --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Skybox.xksky @@ -0,0 +1,5 @@ +!SkyboxAsset +Id: cc4a543b-c042-480d-b174-3257cb336b15 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +CubeMap: 47179bd7-ee99-43df-a944-bb572838c0c9:Environment/EnvironmentMap diff --git a/Starbreach/Assets/Shared/Environment/Walls/Materials/Wall1_AO.xktex b/Starbreach/Assets/Shared/Environment/Walls/Materials/Wall1_AO.xktex new file mode 100644 index 0000000..edf2737 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Walls/Materials/Wall1_AO.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 7ba77b68-b850-46e5-8cd9-0fbf23e434ce +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Walls/Wall1/Wall1_AO.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Walls/Materials/Wall1_D.xktex b/Starbreach/Assets/Shared/Environment/Walls/Materials/Wall1_D.xktex new file mode 100644 index 0000000..fc0c58d --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Walls/Materials/Wall1_D.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 48c68375-a097-48b2-bcd3-a28968ad1b2c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Walls/Wall1/Wall1_D.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} + Alpha: None + PremultiplyAlpha: false diff --git a/Starbreach/Assets/Shared/Environment/Walls/Materials/Wall1_G.xktex b/Starbreach/Assets/Shared/Environment/Walls/Materials/Wall1_G.xktex new file mode 100644 index 0000000..9c67f96 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Walls/Materials/Wall1_G.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 8f44f202-a786-489f-b85c-8b8b74dc24e9 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Walls/Wall1/Wall1_G.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Walls/Materials/Wall1_M.xktex b/Starbreach/Assets/Shared/Environment/Walls/Materials/Wall1_M.xktex new file mode 100644 index 0000000..999b81d --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Walls/Materials/Wall1_M.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 22ceebd2-3f4b-47a2-b00f-af5813bff222 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Walls/Wall1/Wall1_M.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Walls/Materials/Wall1_MT.xkmat b/Starbreach/Assets/Shared/Environment/Walls/Materials/Wall1_MT.xkmat new file mode 100644 index 0000000..65d87ee --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Walls/Materials/Wall1_MT.xkmat @@ -0,0 +1,62 @@ +!MaterialAsset +Id: dd07cb2f-c7c1-4cf1-881b-eabed2cea906 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 5962c543-0b84-426a-85c8-560044e52583:Environment/Walls/Materials/Wall1_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 8f44f202-a786-489f-b85c-8b8b74dc24e9:Environment/Walls/Materials/Wall1_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 48c68375-a097-48b2-bcd3-a28968ad1b2c:Environment/Walls/Materials/Wall1_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 22ceebd2-3f4b-47a2-b00f-af5813bff222:Environment/Walls/Materials/Wall1_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 7ba77b68-b850-46e5-8cd9-0fbf23e434ce:Environment/Walls/Materials/Wall1_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Walls/Materials/Wall1_N.xktex b/Starbreach/Assets/Shared/Environment/Walls/Materials/Wall1_N.xktex new file mode 100644 index 0000000..8ed80c0 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Walls/Materials/Wall1_N.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 5962c543-0b84-426a-85c8-560044e52583 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Walls/Wall1/Wall1_N.png +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Walls/Materials/Wall1_Rust_D.xktex b/Starbreach/Assets/Shared/Environment/Walls/Materials/Wall1_Rust_D.xktex new file mode 100644 index 0000000..87b82ae --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Walls/Materials/Wall1_Rust_D.xktex @@ -0,0 +1,9 @@ +!Texture +Id: c90a8172-e5f6-4618-b7b4-72c2ea19aebd +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Walls/Wall1/Wall1_Rust_D.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} + Alpha: None + PremultiplyAlpha: false diff --git a/Starbreach/Assets/Shared/Environment/Walls/Materials/Wall1_Rust_G.xktex b/Starbreach/Assets/Shared/Environment/Walls/Materials/Wall1_Rust_G.xktex new file mode 100644 index 0000000..3066efd --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Walls/Materials/Wall1_Rust_G.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 9da64ac8-cf2b-4151-a8f7-354dbea57c53 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Walls/Wall1/Wall1_Rust_G.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Walls/Materials/Wall1_Rust_M.xktex b/Starbreach/Assets/Shared/Environment/Walls/Materials/Wall1_Rust_M.xktex new file mode 100644 index 0000000..163540f --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Walls/Materials/Wall1_Rust_M.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 9a2cbb70-451a-4135-931e-4ec470e9309b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Walls/Wall1/Wall1_Rust_M.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Walls/Materials/Wall1_Rust_MT.xkmat b/Starbreach/Assets/Shared/Environment/Walls/Materials/Wall1_Rust_MT.xkmat new file mode 100644 index 0000000..4827f09 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Walls/Materials/Wall1_Rust_MT.xkmat @@ -0,0 +1,62 @@ +!MaterialAsset +Id: 30c692fb-2c3c-418b-a11d-1a33055e56fc +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 73ea530d-a858-4db2-a3d8-510eea31d6d5:Environment/Walls/Materials/Wall1_Rust_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 9da64ac8-cf2b-4151-a8f7-354dbea57c53:Environment/Walls/Materials/Wall1_Rust_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: c90a8172-e5f6-4618-b7b4-72c2ea19aebd:Environment/Walls/Materials/Wall1_Rust_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 9a2cbb70-451a-4135-931e-4ec470e9309b:Environment/Walls/Materials/Wall1_Rust_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 7ba77b68-b850-46e5-8cd9-0fbf23e434ce:Environment/Walls/Materials/Wall1_AO + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Environment/Walls/Materials/Wall1_Rust_N.xktex b/Starbreach/Assets/Shared/Environment/Walls/Materials/Wall1_Rust_N.xktex new file mode 100644 index 0000000..f4c24bc --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Walls/Materials/Wall1_Rust_N.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 73ea530d-a858-4db2-a3d8-510eea31d6d5 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Walls/Wall1/Wall1_Rust_N.png +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Environment/Walls/Models/Wall_I.xkm3d b/Starbreach/Assets/Shared/Environment/Walls/Models/Wall_I.xkm3d new file mode 100644 index 0000000..d65a7bb --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Walls/Models/Wall_I.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 0e97b32d-5d02-4681-b6bd-ddc7e81a0cae +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Walls/Wall1/Wall_I.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 26fe19ed27308e84bfa6c9b302747124: + Name: Material + MaterialInstance: + Material: 30c692fb-2c3c-418b-a11d-1a33055e56fc:Environment/Walls/Materials/Wall1_Rust_MT +Skeleton: null +~SourceHashes: + 41fa5edafa15a570c76688d73af7553c~../../../../../Resources/Walls/Wall1/Wall_I.fbx: 43da4acf439f670c17587074f7840014 diff --git a/Starbreach/Assets/Shared/Environment/Walls/Models/Wall_L.xkm3d b/Starbreach/Assets/Shared/Environment/Walls/Models/Wall_L.xkm3d new file mode 100644 index 0000000..4f813ab --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Walls/Models/Wall_L.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 03b2d1c9-c632-4225-a1e2-508c734daf93 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Walls/Wall1/Wall_L.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 07fa602b820978dcb53e9dc2f3dd7dbb: + Name: Material + MaterialInstance: + Material: 30c692fb-2c3c-418b-a11d-1a33055e56fc:Environment/Walls/Materials/Wall1_Rust_MT +Skeleton: null +~SourceHashes: + 9afed4ec9163db0f8e5096f7659b7332~../../../../../Resources/Walls/Wall1/Wall_L.fbx: b0fd46730686eeb2b38b903770083833 diff --git a/Starbreach/Assets/Shared/Environment/Walls/Models/Wall_T.xkm3d b/Starbreach/Assets/Shared/Environment/Walls/Models/Wall_T.xkm3d new file mode 100644 index 0000000..b34c037 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Walls/Models/Wall_T.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 04fb4026-855e-452a-8823-1b0faf958684 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Walls/Wall1/Wall_T.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + a74e9679d43648ee78b763e88f276663: + Name: Material + MaterialInstance: + Material: 30c692fb-2c3c-418b-a11d-1a33055e56fc:Environment/Walls/Materials/Wall1_Rust_MT +Skeleton: null +~SourceHashes: + 4f0961c8238b60f74382eb8bb1e4fd84~../../../../../Resources/Walls/Wall1/Wall_T.fbx: fd9d65acf00bcdaa00860b229781763c diff --git a/Starbreach/Assets/Shared/Environment/Walls/Models/Wall_X.xkm3d b/Starbreach/Assets/Shared/Environment/Walls/Models/Wall_X.xkm3d new file mode 100644 index 0000000..a103575 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Walls/Models/Wall_X.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 61ef8616-c9b8-4cee-9b46-a8aef0fd7a3b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Walls/Wall1/Wall_X.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 7c35c02436ee7a13d0a816e79db1e582: + Name: Material + MaterialInstance: + Material: 30c692fb-2c3c-418b-a11d-1a33055e56fc:Environment/Walls/Materials/Wall1_Rust_MT +Skeleton: null +~SourceHashes: + 9eee744d3e5e7025d409d7f2216bc91b~../../../../../Resources/Walls/Wall1/Wall_X.fbx: 66637399e7e25751c4c60a9345d805c2 diff --git a/Starbreach/Assets/Shared/Environment/Walls/Models/Wall_end_A.xkm3d b/Starbreach/Assets/Shared/Environment/Walls/Models/Wall_end_A.xkm3d new file mode 100644 index 0000000..cd1727c --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Walls/Models/Wall_end_A.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: cef17e07-d24e-443c-af5b-06972f1d8a29 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Walls/Wall1/Wall_endA.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 51133079c3a9ad585e60a6125b6649b2: + Name: Material + MaterialInstance: + Material: 30c692fb-2c3c-418b-a11d-1a33055e56fc:Environment/Walls/Materials/Wall1_Rust_MT +Skeleton: null +~SourceHashes: + 654563960389a4ba4a3da21e61f0324c~../../../../../Resources/Walls/Wall1/Wall_endA.fbx: c319661502d5aebae825e93d86769c05 diff --git a/Starbreach/Assets/Shared/Environment/Walls/Models/Wall_end_B.xkm3d b/Starbreach/Assets/Shared/Environment/Walls/Models/Wall_end_B.xkm3d new file mode 100644 index 0000000..03c882d --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Walls/Models/Wall_end_B.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: d367f375-e134-4ce7-9060-cdf4fb960698 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Walls/Wall1/Wall_endB.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 3be5300a4d9f8e0f1f4c19559a92898e: + Name: Material + MaterialInstance: + Material: 30c692fb-2c3c-418b-a11d-1a33055e56fc:Environment/Walls/Materials/Wall1_Rust_MT +Skeleton: null +~SourceHashes: + 5c425fca45532b681fee1378e8f94baf~../../../../../Resources/Walls/Wall1/Wall_endB.fbx: aa29b04bb433b860dbbaa1818c8f842e diff --git a/Starbreach/Assets/Shared/Environment/Walls/Models/Wall_seg.xkm3d b/Starbreach/Assets/Shared/Environment/Walls/Models/Wall_seg.xkm3d new file mode 100644 index 0000000..27d4251 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Walls/Models/Wall_seg.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 5c20dc3d-d465-4fd3-ab8f-dc4e9e441ecd +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Walls/Wall1/Wall_seg.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + b455127b0c5e6c86520668c55bd8d6fc: + Name: Material + MaterialInstance: + Material: 30c692fb-2c3c-418b-a11d-1a33055e56fc:Environment/Walls/Materials/Wall1_Rust_MT +Skeleton: null +~SourceHashes: + 840666d3babb44fda45fd3f2279dd066~../../../../../Resources/Walls/Wall1/Wall_seg.fbx: 5e65ddf0bf2bef377d46bcf6ab1353ec diff --git a/Starbreach/Assets/Shared/Environment/Walls/PrefabModels/Small_Angle.xkprefabmodel b/Starbreach/Assets/Shared/Environment/Walls/PrefabModels/Small_Angle.xkprefabmodel new file mode 100644 index 0000000..7319b59 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Walls/PrefabModels/Small_Angle.xkprefabmodel @@ -0,0 +1,6 @@ +!PrefabModelAsset +Id: 26958e5a-54e8-4c78-915b-ff9b33a6e742 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Materials: {} +Prefab: 06e8089a-4920-466d-82f0-85412d5326f4:Environment/Walls/Prefabs/Small_Angle diff --git a/Starbreach/Assets/Shared/Environment/Walls/PrefabModels/Small_Wall.xkprefabmodel b/Starbreach/Assets/Shared/Environment/Walls/PrefabModels/Small_Wall.xkprefabmodel new file mode 100644 index 0000000..c801710 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Walls/PrefabModels/Small_Wall.xkprefabmodel @@ -0,0 +1,6 @@ +!PrefabModelAsset +Id: 5d139f33-5b0c-4e35-ab70-78b928020552 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Materials: {} +Prefab: 8a024eda-a607-4207-bad9-b3c353e02600:Environment/Walls/Prefabs/Small_Wall diff --git a/Starbreach/Assets/Shared/Environment/Walls/Prefabs/Small_Angle.xkprefab b/Starbreach/Assets/Shared/Environment/Walls/Prefabs/Small_Angle.xkprefab new file mode 100644 index 0000000..8d4a775 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Walls/Prefabs/Small_Angle.xkprefab @@ -0,0 +1,83 @@ +!PrefabAsset +Id: 06e8089a-4920-466d-82f0-85412d5326f4 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 6ab286d2-5121-47be-be37-898332db4bb1 + - ref!! 0ad18bdc-8a1d-4479-95b4-16951a667f59 + - ref!! 33a96197-6a7c-4e2f-b94c-dd9c6f58195e + - ref!! cd4328b3-cc1f-4e8c-a5f0-e83a986647d1 + Parts: + - Entity: + Id: 0ad18bdc-8a1d-4479-95b4-16951a667f59 + Name: Wall_end_B + Components: + 30205b6ed13438d5333e4ddd34ee9e39: !TransformComponent + Id: f59802ff-494c-4577-9963-2ea5b3875eb6 + Position*: {X: 0.99999994, Y: 0.0, Z: -0.9999998} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: -1.0, Y: 1.0, Z: 1.0} + Children: {} + 2372e7c593bb48b37a3d1d2cf5fade99: !ModelComponent + Id: 259c8e58-354f-4feb-bbd0-9418f8560a83 + Model: d367f375-e134-4ce7-9060-cdf4fb960698:Environment/Walls/Models/Wall_end_B + Materials: {} + Base: + BasePartAsset: 8be6d68d-7fac-4a71-b0f5-9cf97cfb7339:Environment/Walls/Prefabs/Wall_end_B + BasePartId: bad2cc9a-192b-4c91-ab37-76f4d80c8558 + InstanceId: 1b0338e9-9e68-4983-8227-9fc56f7c1d8c + - Entity: + Id: 33a96197-6a7c-4e2f-b94c-dd9c6f58195e + Name: Wall_end_B + Components: + 30205b6ed13438d5333e4ddd34ee9e39: !TransformComponent + Id: 1773966e-43c8-4269-acc6-6ca25154ae3f + Position*: {X: 2.0, Y: 0.0, Z: 0.0} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 2372e7c593bb48b37a3d1d2cf5fade99: !ModelComponent + Id: 88188b04-d9b4-4cbd-8e3d-0af3dc06e08b + Model: d367f375-e134-4ce7-9060-cdf4fb960698:Environment/Walls/Models/Wall_end_B + Materials: {} + Base: + BasePartAsset: 8be6d68d-7fac-4a71-b0f5-9cf97cfb7339:Environment/Walls/Prefabs/Wall_end_B + BasePartId: bad2cc9a-192b-4c91-ab37-76f4d80c8558 + InstanceId: d23b76f7-1a6e-46c9-842c-0f1ab7b826be + - Entity: + Id: 6ab286d2-5121-47be-be37-898332db4bb1 + Name: Wall_L + Components: + 54a679dfa359cc4a2b15407138dde2c8: !TransformComponent + Id: 23dab2e9-49dd-4d97-8bb6-3ea18c64558a + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d0df8eb39efa1d4dba98cc4aaa4153b3: !ModelComponent + Id: 5769ef1d-d4ee-4b3a-a03c-99ed12ecfac0 + Model: 03b2d1c9-c632-4225-a1e2-508c734daf93:Environment/Walls/Models/Wall_L + Materials: {} + Base: + BasePartAsset: 8cd4778b-3f9d-4962-b5c9-9e3ebd56a227:Environment/Walls/Prefabs/Wall_L + BasePartId: af21c6dc-412b-4021-af48-4e0f55992c1f + InstanceId: 416bf81a-232d-4fd7-a9b4-cd51f0351197 + - Entity: + Id: cd4328b3-cc1f-4e8c-a5f0-e83a986647d1 + Name: Wall_seg + Components: + e7195b6693c22b2a7c0ca80883c9fda7: !TransformComponent + Id: 03e9c34f-43d5-4c36-9ed2-20cec94c4af8 + Position*: {X: 1.0, Y: 0.0, Z: -1.0} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 26b4f26bd3b3da82ae838e7ec4d009f7: !ModelComponent + Id: 40133987-7dd7-4c35-a53b-dbe4c6eea1ae + Model: 5c20dc3d-d465-4fd3-ab8f-dc4e9e441ecd:Environment/Walls/Models/Wall_seg + Materials: {} + Base: + BasePartAsset: 592dedcc-96f2-4d68-9dbb-69498b1d375a:Environment/Walls/Prefabs/Wall_seg + BasePartId: 81d1c139-d895-46be-a8a1-d6d1a1e4ff15 + InstanceId: 11383b73-3caa-4bf5-8cfd-d31e934411cd diff --git a/Starbreach/Assets/Shared/Environment/Walls/Prefabs/Small_Angle_Grouped.xkprefab b/Starbreach/Assets/Shared/Environment/Walls/Prefabs/Small_Angle_Grouped.xkprefab new file mode 100644 index 0000000..22c3f98 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Walls/Prefabs/Small_Angle_Grouped.xkprefab @@ -0,0 +1,47 @@ +!PrefabAsset +Id: bdf4ab4d-73bd-4722-9158-c7d19b5a4602 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 1f8be153-d7e6-4961-880b-44efc358b7cb + Parts: + - Entity: + Id: 1f8be153-d7e6-4961-880b-44efc358b7cb + Name: Small_Angle + Components: + f59e2ade343b886c0ca1f125a2504c1c: !TransformComponent + Id: 064248f8-8097-4a3f-9b7c-1a39949d7846 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 55d6ee3d08a260c07fdcbe9efb9741fe: !ModelComponent + Id: 542883d0-ff9a-40e5-b829-bdfb8ecbb377 + Model: 26958e5a-54e8-4c78-915b-ff9b33a6e742:Environment/Walls/PrefabModels/Small_Angle + Materials: {} + d9656997474c6f7b8bbd23de2fa86f31: !StaticColliderComponent + Id: 5287dbed-ba2b-4827-a3e9-0fdd0d8a20eb + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + c222d643bda9467ac12372fe4e854a41: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 1.0, Y: 1.0, Z: 0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 5ac88fde6f08e8fabb87c9bd14c8f2b7: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 0.5, Y: 1.0, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 11f45f58b26e798879e9e2b7a3c6160b: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 0.5, Y: 0.0, Z: -1.0} + LocalRotation: {X: 0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} diff --git a/Starbreach/Assets/Shared/Environment/Walls/Prefabs/Small_Wall.xkprefab b/Starbreach/Assets/Shared/Environment/Walls/Prefabs/Small_Wall.xkprefab new file mode 100644 index 0000000..f2d7429 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Walls/Prefabs/Small_Wall.xkprefab @@ -0,0 +1,112 @@ +!PrefabAsset +Id: 8a024eda-a607-4207-bad9-b3c353e02600 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 9f308573-f8ac-4c42-ad45-ae9b95cb02c6 + - ref!! 861c51e3-cf41-4033-a7d4-00ced0cfe1be + - ref!! eaa6dedb-ba2b-41b8-94db-08a5f40b85eb + - ref!! 88a0ed64-f694-400f-bcf1-4fe7dc6f4106 + - ref!! 892b2dc6-a42e-4c7c-bc29-1597cb48f3b7 + Parts: + - Entity: + Id: 861c51e3-cf41-4033-a7d4-00ced0cfe1be + Name: Wall_I + Components: + 4210535a1f0aea37724547aa0d92f0ea: !TransformComponent + Id: c50f5f85-1689-4df2-8152-40d50a0c7df0 + Position*: {X: 2.0, Y: 0.0, Z: -1.0} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 313286d40b7a094fbe3b8c6b3b7edafd: !ModelComponent + Id: ae1c4861-7c66-4fe2-b210-387425972170 + Model: 0e97b32d-5d02-4681-b6bd-ddc7e81a0cae:Environment/Walls/Models/Wall_I + Materials: {} + Base: + BasePartAsset: 7e25e231-774f-421a-9885-4c22d5aad1cd:Environment/Walls/Prefabs/Wall_I + BasePartId: 7e92c051-cb83-4e8e-bbcc-7ed71a997dbb + InstanceId: 13449fc1-7a3d-41dc-b4e3-3332b5c500d7 + - Entity: + Id: 88a0ed64-f694-400f-bcf1-4fe7dc6f4106 + Name: Wall_seg + Components: + e7195b6693c22b2a7c0ca80883c9fda7: !TransformComponent + Id: 03e9c34f-43d5-4c36-9ed2-20cec94c4af8 + Position*: {X: 2.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 26b4f26bd3b3da82ae838e7ec4d009f7: !ModelComponent + Id: 40133987-7dd7-4c35-a53b-dbe4c6eea1ae + Model: 5c20dc3d-d465-4fd3-ab8f-dc4e9e441ecd:Environment/Walls/Models/Wall_seg + Materials: {} + 2a153c0879e5c170f87aacd69d2966b8*: !StaticColliderComponent + Id: 899e41da-f3f3-4df6-b52e-41c7495c328d + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: {} + Base: + BasePartAsset: 592dedcc-96f2-4d68-9dbb-69498b1d375a:Environment/Walls/Prefabs/Wall_seg + BasePartId: 81d1c139-d895-46be-a8a1-d6d1a1e4ff15 + InstanceId: 99644e30-d00b-4b95-90f5-5e6733872b8c + - Entity: + Id: 892b2dc6-a42e-4c7c-bc29-1597cb48f3b7 + Name: Wall_seg + Components: + e7195b6693c22b2a7c0ca80883c9fda7: !TransformComponent + Id: cf09f28f-ad14-4105-b56a-0b4c22f3b1ad + Position*: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 26b4f26bd3b3da82ae838e7ec4d009f7: !ModelComponent + Id: cf830460-69c5-4ea2-bf2f-e56cbf1e7f83 + Model: 5c20dc3d-d465-4fd3-ab8f-dc4e9e441ecd:Environment/Walls/Models/Wall_seg + Materials: {} + Base: + BasePartAsset: 592dedcc-96f2-4d68-9dbb-69498b1d375a:Environment/Walls/Prefabs/Wall_seg + BasePartId: 81d1c139-d895-46be-a8a1-d6d1a1e4ff15 + InstanceId: 5176102a-3b30-440b-b7ff-ec52c8a55d86 + - Entity: + Id: 9f308573-f8ac-4c42-ad45-ae9b95cb02c6 + Name: Wall_end_B + Components: + 30205b6ed13438d5333e4ddd34ee9e39: !TransformComponent + Id: f59802ff-494c-4577-9963-2ea5b3875eb6 + Position*: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 2372e7c593bb48b37a3d1d2cf5fade99: !ModelComponent + Id: 259c8e58-354f-4feb-bbd0-9418f8560a83 + Model: d367f375-e134-4ce7-9060-cdf4fb960698:Environment/Walls/Models/Wall_end_B + Materials: {} + Base: + BasePartAsset: 8be6d68d-7fac-4a71-b0f5-9cf97cfb7339:Environment/Walls/Prefabs/Wall_end_B + BasePartId: bad2cc9a-192b-4c91-ab37-76f4d80c8558 + InstanceId: ca7e9426-98fc-4f89-8f12-e73dfaa04009 + - Entity: + Id: eaa6dedb-ba2b-41b8-94db-08a5f40b85eb + Name: Wall_end_B + Components: + 30205b6ed13438d5333e4ddd34ee9e39: !TransformComponent + Id: c68c9f84-4334-4d35-a891-4f3febe64887 + Position*: {X: 3.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: -1.0, Y: 1.0, Z: 1.0} + Children: {} + 2372e7c593bb48b37a3d1d2cf5fade99: !ModelComponent + Id: 82f7a6a3-19c5-4bc7-ae5f-1d84932e5b7f + Model: d367f375-e134-4ce7-9060-cdf4fb960698:Environment/Walls/Models/Wall_end_B + Materials: {} + Base: + BasePartAsset: 8be6d68d-7fac-4a71-b0f5-9cf97cfb7339:Environment/Walls/Prefabs/Wall_end_B + BasePartId: bad2cc9a-192b-4c91-ab37-76f4d80c8558 + InstanceId: 674b922e-b80b-45c7-9f0e-e3e16ed8e985 diff --git a/Starbreach/Assets/Shared/Environment/Walls/Prefabs/Small_Wall_Grouped.xkprefab b/Starbreach/Assets/Shared/Environment/Walls/Prefabs/Small_Wall_Grouped.xkprefab new file mode 100644 index 0000000..8ecb882 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Walls/Prefabs/Small_Wall_Grouped.xkprefab @@ -0,0 +1,47 @@ +!PrefabAsset +Id: 35e9585d-5854-46bb-806b-d343b98a6b93 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! cfe6176c-8d73-4ab9-8cd5-43229726c1ff + Parts: + - Entity: + Id: cfe6176c-8d73-4ab9-8cd5-43229726c1ff + Name: Small_Wall + Components: + b169bb0a28fc365afeac43ee8f183ee6: !TransformComponent + Id: 3950ec8c-8cd2-4b35-a845-bdf678c018f6 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 07ce1731b5c55346319dfe8de1941a66: !ModelComponent + Id: ab0985b4-364d-4818-8f2c-232623a1b4f4 + Model: 5d139f33-5b0c-4e35-ab70-78b928020552:Environment/Walls/PrefabModels/Small_Wall + Materials: {} + f67e43e13ee3fb89abc0bbaba3837c37: !StaticColliderComponent + Id: 5afdca39-b4b3-4ef7-b812-f0db2732372c + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + c40463507837835195777deb473f14de: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 1.5, Y: 1.0, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 76617c83803d5680acec68f22ab9ee48: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 0.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + a6227beb392d58cacc21431aa494be07: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 2.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} diff --git a/Starbreach/Assets/Shared/Environment/Walls/Prefabs/Wall_I.xkprefab b/Starbreach/Assets/Shared/Environment/Walls/Prefabs/Wall_I.xkprefab new file mode 100644 index 0000000..12ba51e --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Walls/Prefabs/Wall_I.xkprefab @@ -0,0 +1,22 @@ +!PrefabAsset +Id: 7e25e231-774f-421a-9885-4c22d5aad1cd +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 7e92c051-cb83-4e8e-bbcc-7ed71a997dbb + Parts: + - Entity: + Id: 7e92c051-cb83-4e8e-bbcc-7ed71a997dbb + Name: Wall_I + Components: + 4210535a1f0aea37724547aa0d92f0ea: !TransformComponent + Id: c50f5f85-1689-4df2-8152-40d50a0c7df0 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 313286d40b7a094fbe3b8c6b3b7edafd: !ModelComponent + Id: ae1c4861-7c66-4fe2-b210-387425972170 + Model: 0e97b32d-5d02-4681-b6bd-ddc7e81a0cae:Environment/Walls/Models/Wall_I + Materials: {} diff --git a/Starbreach/Assets/Shared/Environment/Walls/Prefabs/Wall_L.xkprefab b/Starbreach/Assets/Shared/Environment/Walls/Prefabs/Wall_L.xkprefab new file mode 100644 index 0000000..19fb285 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Walls/Prefabs/Wall_L.xkprefab @@ -0,0 +1,22 @@ +!PrefabAsset +Id: 8cd4778b-3f9d-4962-b5c9-9e3ebd56a227 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! af21c6dc-412b-4021-af48-4e0f55992c1f + Parts: + - Entity: + Id: af21c6dc-412b-4021-af48-4e0f55992c1f + Name: Wall_L + Components: + 54a679dfa359cc4a2b15407138dde2c8: !TransformComponent + Id: 23dab2e9-49dd-4d97-8bb6-3ea18c64558a + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d0df8eb39efa1d4dba98cc4aaa4153b3: !ModelComponent + Id: 5769ef1d-d4ee-4b3a-a03c-99ed12ecfac0 + Model: 03b2d1c9-c632-4225-a1e2-508c734daf93:Environment/Walls/Models/Wall_L + Materials: {} diff --git a/Starbreach/Assets/Shared/Environment/Walls/Prefabs/Wall_T.xkprefab b/Starbreach/Assets/Shared/Environment/Walls/Prefabs/Wall_T.xkprefab new file mode 100644 index 0000000..ebfce93 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Walls/Prefabs/Wall_T.xkprefab @@ -0,0 +1,22 @@ +!PrefabAsset +Id: f4eb7cd9-993e-42ff-9cc3-a43f95d3cb26 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! ea6ac8d2-2e7e-4b41-a5cb-38f0f2ea203f + Parts: + - Entity: + Id: ea6ac8d2-2e7e-4b41-a5cb-38f0f2ea203f + Name: Wall_T + Components: + f44f16ca7569b497bd974772ca0c003b: !TransformComponent + Id: fc52cae6-6496-4693-9b3d-dd5a6fa796de + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 47853ef5e3ff3e0a1f9c4ca0bd6f3082: !ModelComponent + Id: 2e095c10-c589-4405-a7e6-bb95482304ba + Model: 04fb4026-855e-452a-8823-1b0faf958684:Environment/Walls/Models/Wall_T + Materials: {} diff --git a/Starbreach/Assets/Shared/Environment/Walls/Prefabs/Wall_X.xkprefab b/Starbreach/Assets/Shared/Environment/Walls/Prefabs/Wall_X.xkprefab new file mode 100644 index 0000000..8f98d2e --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Walls/Prefabs/Wall_X.xkprefab @@ -0,0 +1,22 @@ +!PrefabAsset +Id: a01273ae-b20c-4dce-a4d6-b5eb307ddb11 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 8f172a30-8562-42e7-8d12-6d40538db318 + Parts: + - Entity: + Id: 8f172a30-8562-42e7-8d12-6d40538db318 + Name: Wall_X + Components: + 8bf10938185aa34da347e6aafe2d73eb: !TransformComponent + Id: 192323da-bae2-4644-ab67-4cb84f34ab07 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 50dfc1ed35d06f0bac68082fca9c95e7: !ModelComponent + Id: e8455dff-8a43-4de2-909e-9c4689abcd69 + Model: 61ef8616-c9b8-4cee-9b46-a8aef0fd7a3b:Environment/Walls/Models/Wall_X + Materials: {} diff --git a/Starbreach/Assets/Shared/Environment/Walls/Prefabs/Wall_end_A.xkprefab b/Starbreach/Assets/Shared/Environment/Walls/Prefabs/Wall_end_A.xkprefab new file mode 100644 index 0000000..b5ed33e --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Walls/Prefabs/Wall_end_A.xkprefab @@ -0,0 +1,22 @@ +!PrefabAsset +Id: b17481bc-9eda-40f6-807d-3b9762ab0a10 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 6de5d75c-013b-40c7-b579-14878b4268e5 + Parts: + - Entity: + Id: 6de5d75c-013b-40c7-b579-14878b4268e5 + Name: Wall_end_A + Components: + 027068d46a5325e37db8cb0489583ae5: !TransformComponent + Id: 2926b4f5-2453-4bee-b51d-f57a1d7f2893 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 77dc57da3ca1d67589017e2a9b4af1d7: !ModelComponent + Id: 58bb3483-2bef-42a1-bc8f-a7151df5cf12 + Model: cef17e07-d24e-443c-af5b-06972f1d8a29:Environment/Walls/Models/Wall_end_A + Materials: {} diff --git a/Starbreach/Assets/Shared/Environment/Walls/Prefabs/Wall_end_B.xkprefab b/Starbreach/Assets/Shared/Environment/Walls/Prefabs/Wall_end_B.xkprefab new file mode 100644 index 0000000..04dd425 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Walls/Prefabs/Wall_end_B.xkprefab @@ -0,0 +1,22 @@ +!PrefabAsset +Id: 8be6d68d-7fac-4a71-b0f5-9cf97cfb7339 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! bad2cc9a-192b-4c91-ab37-76f4d80c8558 + Parts: + - Entity: + Id: bad2cc9a-192b-4c91-ab37-76f4d80c8558 + Name: Wall_end_B + Components: + 30205b6ed13438d5333e4ddd34ee9e39: !TransformComponent + Id: f59802ff-494c-4577-9963-2ea5b3875eb6 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 2372e7c593bb48b37a3d1d2cf5fade99: !ModelComponent + Id: 259c8e58-354f-4feb-bbd0-9418f8560a83 + Model: d367f375-e134-4ce7-9060-cdf4fb960698:Environment/Walls/Models/Wall_end_B + Materials: {} diff --git a/Starbreach/Assets/Shared/Environment/Walls/Prefabs/Wall_seg.xkprefab b/Starbreach/Assets/Shared/Environment/Walls/Prefabs/Wall_seg.xkprefab new file mode 100644 index 0000000..cf4f956 --- /dev/null +++ b/Starbreach/Assets/Shared/Environment/Walls/Prefabs/Wall_seg.xkprefab @@ -0,0 +1,22 @@ +!PrefabAsset +Id: 592dedcc-96f2-4d68-9dbb-69498b1d375a +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 81d1c139-d895-46be-a8a1-d6d1a1e4ff15 + Parts: + - Entity: + Id: 81d1c139-d895-46be-a8a1-d6d1a1e4ff15 + Name: Wall_seg + Components: + e7195b6693c22b2a7c0ca80883c9fda7: !TransformComponent + Id: 03e9c34f-43d5-4c36-9ed2-20cec94c4af8 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 26b4f26bd3b3da82ae838e7ec4d009f7: !ModelComponent + Id: 40133987-7dd7-4c35-a53b-dbe4c6eea1ae + Model: 5c20dc3d-d465-4fd3-ab8f-dc4e9e441ecd:Environment/Walls/Models/Wall_seg + Materials: {} diff --git a/Starbreach/Assets/Shared/EnvironmentCapture.xktex b/Starbreach/Assets/Shared/EnvironmentCapture.xktex new file mode 100644 index 0000000..b56f751 --- /dev/null +++ b/Starbreach/Assets/Shared/EnvironmentCapture.xktex @@ -0,0 +1,7 @@ +!Texture +Id: cfb26cc1-3a00-477f-8293-851206281ecf +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Resources/EnvironmentCapture.dds +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/GameSettings.xkgamesettings b/Starbreach/Assets/Shared/GameSettings.xkgamesettings new file mode 100644 index 0000000..a59bd2d --- /dev/null +++ b/Starbreach/Assets/Shared/GameSettings.xkgamesettings @@ -0,0 +1,59 @@ +!GameSettingsAsset +Id: 08dc4e7f-ac77-4d78-8589-0cf7ecee854b +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +DefaultScene: 6224d747-48a6-4736-a199-27785b9b7c3b:Levels/MainScene +GraphicsCompositor: 25ba6790-1bea-4921-a62e-6cf18e677ed9:GraphicsCompositor +Defaults: + - !Xenko.Graphics.RenderingSettings,Xenko.Graphics + DefaultBackBufferWidth: 1920 + DefaultBackBufferHeight: 1080 + AdaptBackBufferToScreen: false + DefaultGraphicsProfile: Level_10_0 + ColorSpace: Linear + DisplayOrientation: LandscapeRight + - !Xenko.Assets.EditorSettings,Xenko.Assets + RenderingMode: HDR + - !Xenko.Assets.Textures.TextureSettings,Xenko.Assets + TextureQuality: Fast + - !Xenko.Physics.PhysicsSettings,Xenko.Physics + Flags: ContinuosCollisionDetection + MaxSubSteps: 4 + FixedTimeStep: 0.0166666675 + - !Xenko.Audio.AudioEngineSettings,Xenko.Audio + HrtfSupport: false + - !Xenko.Navigation.NavigationSettings,Xenko.Navigation + EnableDynamicNavigationMesh: false + IncludedCollisionGroups: AllFilter + BuildSettings: + CellHeight: 0.2 + CellSize: 0.3 + TileSize: 32 + MinRegionArea: 2 + RegionMergeArea: 20 + MaxEdgeLen: 12.0 + MaxEdgeError: 1.3 + DetailSamplingDistance: 6.0 + MaxDetailSamplingError: 1.0 + Groups: + - Id: 665dbfaa-d91a-ee40-d176-a5eaed1268bc + Name: Group 0 + AgentSettings: + Height: 1.0 + MaxClimb: 0.25 + MaxSlope: {Radians: 0.7853982} + Radius: 0.9 +Overrides: [] +PlatformFilters: + - PowerVR SGX 54[0-9] + - Adreno \(TM\) 2[0-9][0-9] + - Adreno (TM) 320 + - Adreno (TM) 330 + - Adreno \(TM\) 4[0-9][0-9] + - NVIDIA Tegra + - Intel(R) HD Graphics + - ^Mali\-4 + - ^Mali\-T6 + - ^Mali\-T7 +SplashScreenTexture: null +SplashScreenColor: {R: 0, G: 0, B: 0, A: 255} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/LaserWall/HotLaserMaterial.xkmat b/Starbreach/Assets/Shared/Gameplay/Materials/LaserWall/HotLaserMaterial.xkmat new file mode 100644 index 0000000..717b39e --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/LaserWall/HotLaserMaterial.xkmat @@ -0,0 +1,13 @@ +!MaterialAsset +Id: 4ef4c751-78ae-4c83-bfa3-f71a4bbd85de +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeColor + Value: {R: 1.0, G: 0.121568628, B: 0.121568628, A: 1.0} + Intensity: !ComputeFloat + Value: 100.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/LaserWall/LaserWall_E.xktex b/Starbreach/Assets/Shared/Gameplay/Materials/LaserWall/LaserWall_E.xktex new file mode 100644 index 0000000..ddc4e26 --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/LaserWall/LaserWall_E.xktex @@ -0,0 +1,7 @@ +!Texture +Id: a3eae4fc-05e4-433a-a1ea-b1692b43b006 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Gameplay/LaserFence/LaserWall.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/LaserWall/LaserWall_MT.xkmat b/Starbreach/Assets/Shared/Gameplay/Materials/LaserWall/LaserWall_MT.xkmat new file mode 100644 index 0000000..11e0958 --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/LaserWall/LaserWall_MT.xkmat @@ -0,0 +1,23 @@ +!MaterialAsset +Id: c8f9bd79-a393-4e4c-9bab-05096c4f32d8 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: a3eae4fc-05e4-433a-a1ea-b1692b43b006:Gameplay/Materials/LaserWall/LaserWall_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 5.0 + Transparency: !MaterialTransparencyBlendFeature + Alpha: !ComputeFloat + Value: 0.0 + Tint: !ComputeColor + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate1.xkmat b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate1.xkmat new file mode 100644 index 0000000..fad06f1 --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate1.xkmat @@ -0,0 +1,44 @@ +!MaterialAsset +Id: 7aec8c24-e8c3-4b17-ac0b-e5a0fc2f51ca +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: e57da635-e20c-4a29-bd0a-a69b143b3c2b:Gameplay/Materials/Plates/Plate1_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 1af02094-68b8-481b-97a9-cc484c439e0c:Gameplay/Materials/Plates/Plate1_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 302ca18f-7f68-4d26-8f31-7d663dd96fff:Gameplay/Materials/Plates/Plate1_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 78298a48-cf76-46aa-8801-086d0d4fe77d:Gameplay/Materials/Plates/Plate1_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate1R_D.xktex b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate1R_D.xktex new file mode 100644 index 0000000..1ba9be2 --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate1R_D.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 470d23d9-e59b-499d-9d20-c50b226ed0e5 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Gameplay/Plate/Plate1R_D.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate1R_G.xktex b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate1R_G.xktex new file mode 100644 index 0000000..2f5517c --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate1R_G.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 8c882aa4-15fe-4a07-8256-0af1c90cf6bd +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Gameplay/Plate/Plate1R_G.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate1R_M.xktex b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate1R_M.xktex new file mode 100644 index 0000000..32ddb48 --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate1R_M.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 876aadd3-c688-4c04-8b00-9a079c185b26 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Gameplay/Plate/Plate1R_M.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate1R_N.xktex b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate1R_N.xktex new file mode 100644 index 0000000..d64e91c --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate1R_N.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 5c7dedf3-7627-4797-8208-be82322903fa +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Gameplay/Plate/Plate1R_N.png +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate1_D.xktex b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate1_D.xktex new file mode 100644 index 0000000..6495d66 --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate1_D.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 302ca18f-7f68-4d26-8f31-7d663dd96fff +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Gameplay/Plate/Plate1_D.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate1_G.xktex b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate1_G.xktex new file mode 100644 index 0000000..2fe7aab --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate1_G.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 1af02094-68b8-481b-97a9-cc484c439e0c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Gameplay/Plate/Plate1_G.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate1_M.xktex b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate1_M.xktex new file mode 100644 index 0000000..e9d3c9f --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate1_M.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 78298a48-cf76-46aa-8801-086d0d4fe77d +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Gameplay/Plate/Plate1_M.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate1_N.xktex b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate1_N.xktex new file mode 100644 index 0000000..1cb9ba1 --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate1_N.xktex @@ -0,0 +1,6 @@ +!Texture +Id: e57da635-e20c-4a29-bd0a-a69b143b3c2b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Gameplay/Plate/Plate1_N.png +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2R_A.xktex b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2R_A.xktex new file mode 100644 index 0000000..b162776 --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2R_A.xktex @@ -0,0 +1,7 @@ +!Texture +Id: be085c8c-b33e-4282-85b6-d829415707df +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Gameplay/Plate/Plate2R_A.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2R_G.xktex b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2R_G.xktex new file mode 100644 index 0000000..8af09d8 --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2R_G.xktex @@ -0,0 +1,6 @@ +!Texture +Id: aaa543ef-bcfd-4d81-b7df-162d1e028dd3 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Gameplay/Plate/Plate2R_G.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2R_M.xktex b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2R_M.xktex new file mode 100644 index 0000000..b4585f8 --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2R_M.xktex @@ -0,0 +1,6 @@ +!Texture +Id: b1951089-ec29-4e32-b9a7-b14db6a3ca0b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Gameplay/Plate/Plate2R_M.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2R_N.xktex b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2R_N.xktex new file mode 100644 index 0000000..132bde2 --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2R_N.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 1ab4438c-2f32-4ad5-bb97-37c290b0b11c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Gameplay/Plate/Plate2R_N.png +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2_D.xktex b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2_D.xktex new file mode 100644 index 0000000..3cf27f6 --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2_D.xktex @@ -0,0 +1,7 @@ +!Texture +Id: da8a95ec-fcc4-4903-94a4-72547bc5aec8 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Gameplay/Plate/Plate2_D.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2_Disabled_Off.xkmat b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2_Disabled_Off.xkmat new file mode 100644 index 0000000..d3c7354 --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2_Disabled_Off.xkmat @@ -0,0 +1,44 @@ +!MaterialAsset +Id: e74abd75-804a-4de0-acf7-924aa5bb3a20 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: e13cdb6d-a5f8-4be9-a45e-9992eee591ab:Gameplay/Materials/Plates/Plate2_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 251c1a44-516f-4862-aac4-919e111be7c7:Gameplay/Materials/Plates/Plate2_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: da8a95ec-fcc4-4903-94a4-72547bc5aec8:Gameplay/Materials/Plates/Plate2_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: d75c8ad8-3e4b-459d-aef6-ab04889a8829:Gameplay/Materials/Plates/Plate2_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2_Disabled_On.xkmat b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2_Disabled_On.xkmat new file mode 100644 index 0000000..604103d --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2_Disabled_On.xkmat @@ -0,0 +1,63 @@ +!MaterialAsset +Id: eff5f692-9337-4d7b-8cd8-531e3e06b852 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Archetype: e74abd75-804a-4de0-acf7-924aa5bb3a20:Gameplay/Materials/Plates/Plate2_Disabled_Off +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: e13cdb6d-a5f8-4be9-a45e-9992eee591ab:Gameplay/Materials/Plates/Plate2_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 251c1a44-516f-4862-aac4-919e111be7c7:Gameplay/Materials/Plates/Plate2_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: da8a95ec-fcc4-4903-94a4-72547bc5aec8:Gameplay/Materials/Plates/Plate2_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: d75c8ad8-3e4b-459d-aef6-ab04889a8829:Gameplay/Materials/Plates/Plate2_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Emissive*: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: eedef891-c0e2-4d32-b694-0832309148b5:Gameplay/Materials/Plates/Plate2_On_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeColor + Value: {R: 0.9411765, G: 1.0, B: 0.5019608, A: 1.0} + RightChild: !ComputeFloat4 + Value: {X: 3.0, Y: 3.0, Z: 3.0, W: 3.0} + Intensity: !ComputeFloat + Value: 30.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2_E.xktex b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2_E.xktex new file mode 100644 index 0000000..4daaf3e --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2_E.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 2d205f11-3087-4287-9d46-ba0ad2809573 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Gameplay/Plate/Plate2_E.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2_Enabled_Off.xkmat b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2_Enabled_Off.xkmat new file mode 100644 index 0000000..2b38493 --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2_Enabled_Off.xkmat @@ -0,0 +1,59 @@ +!MaterialAsset +Id: 0347eda8-4648-4983-a223-713b43cea1d9 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Archetype: e74abd75-804a-4de0-acf7-924aa5bb3a20:Gameplay/Materials/Plates/Plate2_Disabled_Off +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: e13cdb6d-a5f8-4be9-a45e-9992eee591ab:Gameplay/Materials/Plates/Plate2_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 251c1a44-516f-4862-aac4-919e111be7c7:Gameplay/Materials/Plates/Plate2_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: da8a95ec-fcc4-4903-94a4-72547bc5aec8:Gameplay/Materials/Plates/Plate2_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: d75c8ad8-3e4b-459d-aef6-ab04889a8829:Gameplay/Materials/Plates/Plate2_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Emissive*: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 2d205f11-3087-4287-9d46-ba0ad2809573:Gameplay/Materials/Plates/Plate2_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeColor + Value: {R: 0.5019608, G: 1.0, B: 0.5019608, A: 1.0} + Intensity: !ComputeFloat + Value: 30.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2_Enabled_On.xkmat b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2_Enabled_On.xkmat new file mode 100644 index 0000000..f9d9c89 --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2_Enabled_On.xkmat @@ -0,0 +1,76 @@ +!MaterialAsset +Id: 903888ae-b297-487a-a708-5fd6cd38c7c7 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Archetype: e74abd75-804a-4de0-acf7-924aa5bb3a20:Gameplay/Materials/Plates/Plate2_Disabled_Off +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: e13cdb6d-a5f8-4be9-a45e-9992eee591ab:Gameplay/Materials/Plates/Plate2_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 251c1a44-516f-4862-aac4-919e111be7c7:Gameplay/Materials/Plates/Plate2_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: da8a95ec-fcc4-4903-94a4-72547bc5aec8:Gameplay/Materials/Plates/Plate2_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: d75c8ad8-3e4b-459d-aef6-ab04889a8829:Gameplay/Materials/Plates/Plate2_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Emissive*: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeBinaryColor + Operator: Add + LeftChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 2d205f11-3087-4287-9d46-ba0ad2809573:Gameplay/Materials/Plates/Plate2_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeColor + Value: {R: 0.5019608, G: 1.0, B: 0.5019608, A: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: eedef891-c0e2-4d32-b694-0832309148b5:Gameplay/Materials/Plates/Plate2_On_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeColor + Value: {R: 0.9411765, G: 1.0, B: 0.5019608, A: 1.0} + RightChild: !ComputeFloat4 + Value: {X: 3.0, Y: 3.0, Z: 3.0, W: 3.0} + Intensity: !ComputeFloat + Value: 30.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2_G.xktex b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2_G.xktex new file mode 100644 index 0000000..c3aec0e --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2_G.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 251c1a44-516f-4862-aac4-919e111be7c7 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Gameplay/Plate/Plate2_G.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2_M.xktex b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2_M.xktex new file mode 100644 index 0000000..e89d79a --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2_M.xktex @@ -0,0 +1,6 @@ +!Texture +Id: d75c8ad8-3e4b-459d-aef6-ab04889a8829 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Gameplay/Plate/Plate2_M.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2_N.xktex b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2_N.xktex new file mode 100644 index 0000000..f4708be --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2_N.xktex @@ -0,0 +1,6 @@ +!Texture +Id: e13cdb6d-a5f8-4be9-a45e-9992eee591ab +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Gameplay/Plate/Plate2_N.png +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2_On_E.xktex b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2_On_E.xktex new file mode 100644 index 0000000..17be1ef --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate2_On_E.xktex @@ -0,0 +1,7 @@ +!Texture +Id: eedef891-c0e2-4d32-b694-0832309148b5 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Gameplay/Plate/Plate2_On_E.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3R_D.xktex b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3R_D.xktex new file mode 100644 index 0000000..15c9caa --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3R_D.xktex @@ -0,0 +1,7 @@ +!Texture +Id: e8e429a8-28b4-427e-85b4-e2358e18ef2e +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Gameplay/Plate/Plate3R_D.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3R_G.xktex b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3R_G.xktex new file mode 100644 index 0000000..63ff253 --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3R_G.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 94647c78-9d1e-4baa-a367-e590d269ccbf +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Gameplay/Plate/Plate3R_G.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3R_M.xktex b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3R_M.xktex new file mode 100644 index 0000000..c5a0bf3 --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3R_M.xktex @@ -0,0 +1,6 @@ +!Texture +Id: fce78776-b266-419e-80fd-3b0a7b7a6609 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Gameplay/Plate/Plate3R_M.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3R_N.xktex b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3R_N.xktex new file mode 100644 index 0000000..f641f05 --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3R_N.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 45a351c4-cb4a-4498-8fce-5b5721931928 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Gameplay/Plate/Plate3R_N.png +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3_D.xktex b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3_D.xktex new file mode 100644 index 0000000..9eed5d8 --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3_D.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 587d193c-21ee-4558-a7f0-ec0c1a4086f2 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Gameplay/Plate/Plate3_D.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3_Disabled_Off.xkmat b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3_Disabled_Off.xkmat new file mode 100644 index 0000000..b06924d --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3_Disabled_Off.xkmat @@ -0,0 +1,44 @@ +!MaterialAsset +Id: d02e7fcd-9f9e-450f-bc56-6e50e9970ec2 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 5f3ec056-3084-414c-b903-cb52bb69b003:Gameplay/Materials/Plates/Plate3_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 7b0e3add-ba66-41ca-98bd-6b6909f882b2:Gameplay/Materials/Plates/Plate3_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 587d193c-21ee-4558-a7f0-ec0c1a4086f2:Gameplay/Materials/Plates/Plate3_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 97ab178e-e5ad-49a2-8f70-3a1cc47cf028:Gameplay/Materials/Plates/Plate3_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3_Disabled_On.xkmat b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3_Disabled_On.xkmat new file mode 100644 index 0000000..8d5c5c6 --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3_Disabled_On.xkmat @@ -0,0 +1,63 @@ +!MaterialAsset +Id: 2746f702-7dd5-4ef5-9e93-d5e758da2800 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Archetype: d02e7fcd-9f9e-450f-bc56-6e50e9970ec2:Gameplay/Materials/Plates/Plate3_Disabled_Off +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 5f3ec056-3084-414c-b903-cb52bb69b003:Gameplay/Materials/Plates/Plate3_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 7b0e3add-ba66-41ca-98bd-6b6909f882b2:Gameplay/Materials/Plates/Plate3_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 587d193c-21ee-4558-a7f0-ec0c1a4086f2:Gameplay/Materials/Plates/Plate3_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 97ab178e-e5ad-49a2-8f70-3a1cc47cf028:Gameplay/Materials/Plates/Plate3_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Emissive*: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: d4962e2d-309d-42e4-b689-ec829e0b6c09:Gameplay/Materials/Plates/Plate3_On_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeColor + Value: {R: 0.9411765, G: 1.0, B: 0.5019608, A: 1.0} + RightChild: !ComputeFloat4 + Value: {X: 3.0, Y: 3.0, Z: 3.0, W: 3.0} + Intensity: !ComputeFloat + Value: 30.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3_E.xktex b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3_E.xktex new file mode 100644 index 0000000..af26bb8 --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3_E.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 23538a46-17de-4ebe-beff-480b1d78ac54 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Gameplay/Plate/Plate3_E.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3_Enabled_Off.xkmat b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3_Enabled_Off.xkmat new file mode 100644 index 0000000..b7e2eb8 --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3_Enabled_Off.xkmat @@ -0,0 +1,59 @@ +!MaterialAsset +Id: ba76b6f1-63f6-44d9-ad48-aca96fbe79a3 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Archetype: d02e7fcd-9f9e-450f-bc56-6e50e9970ec2:Gameplay/Materials/Plates/Plate3_Disabled_Off +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 5f3ec056-3084-414c-b903-cb52bb69b003:Gameplay/Materials/Plates/Plate3_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 7b0e3add-ba66-41ca-98bd-6b6909f882b2:Gameplay/Materials/Plates/Plate3_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 587d193c-21ee-4558-a7f0-ec0c1a4086f2:Gameplay/Materials/Plates/Plate3_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 97ab178e-e5ad-49a2-8f70-3a1cc47cf028:Gameplay/Materials/Plates/Plate3_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Emissive*: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 23538a46-17de-4ebe-beff-480b1d78ac54:Gameplay/Materials/Plates/Plate3_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeColor + Value: {R: 0.5019608, G: 1.0, B: 0.5019608, A: 1.0} + Intensity: !ComputeFloat + Value: 30.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3_Enabled_On.xkmat b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3_Enabled_On.xkmat new file mode 100644 index 0000000..9ed014a --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3_Enabled_On.xkmat @@ -0,0 +1,76 @@ +!MaterialAsset +Id: 1163e435-4f1b-4b16-8834-da23869292b4 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Archetype: d02e7fcd-9f9e-450f-bc56-6e50e9970ec2:Gameplay/Materials/Plates/Plate3_Disabled_Off +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 5f3ec056-3084-414c-b903-cb52bb69b003:Gameplay/Materials/Plates/Plate3_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + IsXYNormal: true + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 7b0e3add-ba66-41ca-98bd-6b6909f882b2:Gameplay/Materials/Plates/Plate3_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 587d193c-21ee-4558-a7f0-ec0c1a4086f2:Gameplay/Materials/Plates/Plate3_D + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 97ab178e-e5ad-49a2-8f70-3a1cc47cf028:Gameplay/Materials/Plates/Plate3_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Emissive*: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeBinaryColor + Operator: Add + LeftChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 23538a46-17de-4ebe-beff-480b1d78ac54:Gameplay/Materials/Plates/Plate3_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeColor + Value: {R: 0.5019608, G: 1.0, B: 0.5019608, A: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: d4962e2d-309d-42e4-b689-ec829e0b6c09:Gameplay/Materials/Plates/Plate3_On_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeColor + Value: {R: 0.9411765, G: 1.0, B: 0.5019608, A: 1.0} + RightChild: !ComputeFloat4 + Value: {X: 3.0, Y: 3.0, Z: 3.0, W: 3.0} + Intensity: !ComputeFloat + Value: 30.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3_G.xktex b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3_G.xktex new file mode 100644 index 0000000..2e0af60 --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3_G.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 7b0e3add-ba66-41ca-98bd-6b6909f882b2 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Gameplay/Plate/Plate3_G.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3_M.xktex b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3_M.xktex new file mode 100644 index 0000000..826f694 --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3_M.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 97ab178e-e5ad-49a2-8f70-3a1cc47cf028 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Gameplay/Plate/Plate3_M.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3_N.xktex b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3_N.xktex new file mode 100644 index 0000000..5f1699c --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3_N.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 5f3ec056-3084-414c-b903-cb52bb69b003 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Gameplay/Plate/Plate3_N.png +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3_On_E.xktex b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3_On_E.xktex new file mode 100644 index 0000000..8ce3893 --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Materials/Plates/Plate3_On_E.xktex @@ -0,0 +1,7 @@ +!Texture +Id: d4962e2d-309d-42e4-b689-ec829e0b6c09 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../../Resources/Gameplay/Plate/Plate3_On_E.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Gameplay/Models/Cylinder.xkpromodel b/Starbreach/Assets/Shared/Gameplay/Models/Cylinder.xkpromodel new file mode 100644 index 0000000..b17d77d --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Models/Cylinder.xkpromodel @@ -0,0 +1,10 @@ +!ProceduralModelAsset +Id: c11da5de-520a-4bd5-a691-5476b2a812e0 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Type: !CylinderProceduralModel + Scale: {X: 0.1, Y: 1.0, Z: 0.1} + UvScale: {X: 1.0, Y: 1.0} + LocalOffset: {X: 0.0, Y: 0.5, Z: 0.0} + MaterialInstance: + Material: 4ef4c751-78ae-4c83-bfa3-f71a4bbd85de:Gameplay/Materials/LaserWall/HotLaserMaterial diff --git a/Starbreach/Assets/Shared/Gameplay/Models/FloorButton.xkm3d b/Starbreach/Assets/Shared/Gameplay/Models/FloorButton.xkm3d new file mode 100644 index 0000000..190c540 --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Models/FloorButton.xkm3d @@ -0,0 +1,18 @@ +!Model +Id: b08b5432-96b6-4259-8a89-303ff9bd12e2 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Gameplay/Plate/FloorButton.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 36269dd5dff9f24f6a00d2766c6dece4: + Name: Material_1 + MaterialInstance: + Material: e74abd75-804a-4de0-acf7-924aa5bb3a20:Gameplay/Materials/Plates/Plate2_Disabled_Off + 854d5dcfbbccaeb76ab6e3da793c43f5: + Name: Material_2 + MaterialInstance: + Material: d02e7fcd-9f9e-450f-bc56-6e50e9970ec2:Gameplay/Materials/Plates/Plate3_Disabled_Off +Skeleton: null +~SourceHashes: + 6dc3f925afb78bcbe48254eaba1cd727~../../../../Resources/Gameplay/Plate/FloorButton.FBX: 72bc3e468b0199abd959294b5e9bd321 diff --git a/Starbreach/Assets/Shared/Gameplay/Models/LaserFenceAnim.xkm3d b/Starbreach/Assets/Shared/Gameplay/Models/LaserFenceAnim.xkm3d new file mode 100644 index 0000000..f543a37 --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Models/LaserFenceAnim.xkm3d @@ -0,0 +1,18 @@ +!Model +Id: dbf4d217-7261-4460-b520-520c15b6d009 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Gameplay/LaserFence/LaserFenceAnim.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 5996446d805362ac6bc962936689e205: + Name: Material_1 + MaterialInstance: + Material: 3967af78-1f53-4383-898f-f8451c92176e:Environment/Props/Materials/DataSwitcher/DataSwitcher_MT + 662ff957d86dd4b889705aeba2fbcd97: + Name: Material_2 + MaterialInstance: + Material: 73967223-8432-4913-ae5d-469e416f556f:Environment/Props/Materials/ServerPad/ServerPad_v2_MT +Skeleton: null +~SourceHashes: + 90322384e255f293668ad6ed97c1fbcb~../../../../Resources/Gameplay/LaserFence/LaserFenceAnim.FBX: b25b2508453e5401598356c70c67806d diff --git a/Starbreach/Assets/Shared/Gameplay/Models/LaserFence_down.xkm3d b/Starbreach/Assets/Shared/Gameplay/Models/LaserFence_down.xkm3d new file mode 100644 index 0000000..513da7b --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Models/LaserFence_down.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 4658c1a9-b3b6-4481-b22c-ad61ea3c14d3 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Gameplay/LaserFence/LaserFence_down.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 761cbe4417d990437b3bb1de5d4b353d: + Name: Dawn + MaterialInstance: + Material: 3967af78-1f53-4383-898f-f8451c92176e:Environment/Props/Materials/DataSwitcher/DataSwitcher_MT +Skeleton: null +~SourceHashes: + 040dede5d57663736d66307ead6eb89f~../../../../Resources/Gameplay/LaserFence/LaserFence_down.FBX: ba5e41301e7809f903c8f48c5bb38a1d diff --git a/Starbreach/Assets/Shared/Gameplay/Models/LaserFence_up Skeleton.xkskel b/Starbreach/Assets/Shared/Gameplay/Models/LaserFence_up Skeleton.xkskel new file mode 100644 index 0000000..71b0b29 --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Models/LaserFence_up Skeleton.xkskel @@ -0,0 +1,11 @@ +!Skeleton +Id: ca5ec736-b429-496e-8f56-f6c3b066dd27 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Gameplay/LaserFence/LaserFence_up.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Nodes: + f9ba0174f07e5c3469fdcfa969fcd2a7: {Name: RootNode, Depth: 0} + 4b02b24ed41a2175af34245fe983b105: {Name: Up, Depth: 1} +~SourceHashes: + b75aa1b1447efd210d246454e656a5bb~../../../../Resources/Gameplay/LaserFence/LaserFence_up.FBX: 26f0b76ab9b5584f663e158317168919 diff --git a/Starbreach/Assets/Shared/Gameplay/Models/LaserFence_up.xkm3d b/Starbreach/Assets/Shared/Gameplay/Models/LaserFence_up.xkm3d new file mode 100644 index 0000000..4bb1115 --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Models/LaserFence_up.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: ca14aec1-3989-485c-84c0-5d0cbf5858f4 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Gameplay/LaserFence/LaserFence_up.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 25aa2d0e5cba3e0061d240b4b6f12ed1: + Name: UP + MaterialInstance: + Material: 73967223-8432-4913-ae5d-469e416f556f:Environment/Props/Materials/ServerPad/ServerPad_v2_MT +Skeleton: ca5ec736-b429-496e-8f56-f6c3b066dd27:Gameplay/Models/LaserFence_up Skeleton +~SourceHashes: + f494826a2485d639ae6f8964060afefb~../../../../Resources/Gameplay/LaserFence/LaserFence_up.FBX: 26f0b76ab9b5584f663e158317168919 diff --git a/Starbreach/Assets/Shared/Gameplay/Models/LaserWall.xkm3d b/Starbreach/Assets/Shared/Gameplay/Models/LaserWall.xkm3d new file mode 100644 index 0000000..89e0eda --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Models/LaserWall.xkm3d @@ -0,0 +1,22 @@ +!Model +Id: b499ae00-250f-48fa-816c-c771ea16d449 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Gameplay/LaserFence/LaserWall.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + c73febab5d96b36d930ef20a376dde8d: + Name: UP + MaterialInstance: + Material: 73967223-8432-4913-ae5d-469e416f556f:Environment/Props/Materials/ServerPad/ServerPad_v2_MT + e4723c6135d3423564fdd1582fef349c: + Name: Dawn + MaterialInstance: + Material: 3967af78-1f53-4383-898f-f8451c92176e:Environment/Props/Materials/DataSwitcher/DataSwitcher_MT + fc755617f1ddc3f5f6dc4f894d7d17ff: + Name: Material + MaterialInstance: + Material: 8297fec7-c06b-4a9e-8579-aa22792a18fb:Environment/Platforms/Materials/LargePillar/LargePillar_MT +Skeleton: null +~SourceHashes: + cdcda350f6f81b3d21db7feabc5f9074~../../../../Resources/Gameplay/LaserFence/LaserWall.FBX: c54b75ed49aeb5e562ce960a9bd2203d diff --git a/Starbreach/Assets/Shared/Gameplay/Models/Plane.xkpromodel b/Starbreach/Assets/Shared/Gameplay/Models/Plane.xkpromodel new file mode 100644 index 0000000..b1ef132 --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Models/Plane.xkpromodel @@ -0,0 +1,13 @@ +!ProceduralModelAsset +Id: a1a2ed8b-15d7-42ce-861c-8e3f05556f2d +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Type: !PlaneProceduralModel + Size: {X: 1.0, Y: 1.0} + Tessellation: {X: 1, Y: 1} + Normal: UpY + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + UvScale: {X: 1.0, Y: 1.0} + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + MaterialInstance: + Material: c8f9bd79-a393-4e4c-9bab-05096c4f32d8:Gameplay/Materials/LaserWall/LaserWall_MT diff --git a/Starbreach/Assets/Shared/Gameplay/Prefabs/LaserFence_Barrier.xkprefab b/Starbreach/Assets/Shared/Gameplay/Prefabs/LaserFence_Barrier.xkprefab new file mode 100644 index 0000000..04f9b8f --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Prefabs/LaserFence_Barrier.xkprefab @@ -0,0 +1,670 @@ +!PrefabAsset +Id: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 945727d1-98d0-4a00-b29c-98f78daa9839 + Parts: + - Entity: + Id: 16d23f36-f4be-4509-9d47-60cb574be928 + Name: LaserFence_Static (2) + Components: + f08afbc357f5790406844c92d0539513: !TransformComponent + Id: d755f963-c931-4c99-97e4-b973c10b0d37 + Position: {X: 3.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: -0.6, Y: 0.6, Z: 0.6} + Children: + 78f46892dc105a369fcd202c189df608: ref!! 2fa4c9a4-d424-43c4-bad3-060f61018c7f + 5255162075021a6f951970991ca6608e: ref!! e333c6c8-d720-4699-8ba2-a8e339362d2d + 536240f8fb1df6f999ea4a5d4ba7f1c1: ref!! e97c6f33-1882-4429-8239-55cce7f2b5ee + 75e86890a45d2bdc1ba0006f7998e13e: ref!! 40df8315-9a02-468f-ab3c-a0d3453ff167 + 20f48c676e388f5f82ad7dda1063ae2d: !StaticColliderComponent + Id: f9d90e32-1564-4387-b9c1-867054f98057 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 368adb9e6793798169337ef4de98022b: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 3.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + - Entity: + Id: 2051137f-5c3e-4877-b418-d6730043e667 + Name: LaserFence_up + Components: + c8c633e320d799468ba2a8e339362d2d: !TransformComponent + Id: e333c6c8-d720-4699-8ba2-a8e339362d2d + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3e4e674bd6ad2f439da54f92a29a7eec: !ModelComponent + Id: 4b674e3e-add6-432f-9da5-4f92a29a7eec + Model: ca14aec1-3989-485c-84c0-5d0cbf5858f4:Gameplay/Models/LaserFence_up + Materials: {} + Base: + BasePartAsset: 04190d25-799d-4690-96a3-fa6f92129950:Gameplay/Prefabs/LaserFence_Static + BasePartId: 17b0e199-5d3f-4edc-9900-41f40432c0bd + InstanceId: 28f6557f-0f19-4a95-a3c8-73adac09b07c + - Entity: + Id: 28b6b224-b4bb-48a9-bccb-71f0e16cf1be + Name: LaserArc + Components: + 336f7ce982182944823955cce7f2b5ee: !TransformComponent + Id: 40df8315-9a02-468f-ab3c-a0d3453ff167 + Position*: {X: 0.5, Y: 2.5, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + Base: + BasePartAsset: 8a4fed52-02c4-46fa-9f41-bee3decdc3d1:VFXPrefabs/vfx-LaserBeam + BasePartId: 6e00cd87-867f-4039-ae08-a2fcfdcf6e89 + InstanceId: a4980687-b174-49a0-8e90-1651f1184482 + - Entity: + Id: 30a095c2-8c9f-4cd2-9784-1ba35cc22331 + Name: LaserCylinder + Components: + 6565f891cdba2236dd5dbf1888a0f6e0: !TransformComponent + Id: e0bd1232-30cf-402f-a659-169701c6bca6 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: -0.707106769, W: 0.707106769} + Scale: {X: 1.0, Y: 10.0, Z: 1.0} + Children: {} + cec4407060699b5ddb4eeb6f5f980024: !ModelComponent + Id: cd13ccdb-9dc7-4ff0-8ad0-c22fa7317ff2 + Model: c11da5de-520a-4bd5-a691-5476b2a812e0:Gameplay/Models/Cylinder + Materials: {} + - Entity: + Id: 6022993f-f245-4b95-ae81-8a6e80860cd7 + Name: LaserFence_Static + Components: + fb9b8e052602e60735334f7419c9e54a: !TransformComponent + Id: 3929b428-ffad-4566-8d64-ab7eda71a220 + Position: {X: -3.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 0.6, Y: 0.6, Z: 0.6} + Children: + 72f98f4652f07969b02387bf80f44bb6: ref!! 81f6231f-d97e-48d4-bcde-57482ee4bd23 + ac54ba65908c8e57e9e7d04aaa225e10: ref!! a1b35f42-13ab-429e-b4ca-6b2b03425645 + c9f4bf3456ad38e4294e8f90e4bc16ba: ref!! c91aa6c2-a3cc-4c30-949c-26193b0945c4 + 985fa8fdb9571299e3e7f9b8b1f090f1: ref!! e7df7230-8eb2-42a3-ac83-b3c34d07ec76 + eebd194cebc9a12cf0aa06c693e971b7: !StaticColliderComponent + Id: e2a2517d-aa4f-4d08-8d2f-b9ef23a49427 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 7e00afee3484d23f207fe6d6fac12d9a: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 3.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + - Entity: + Id: 6072d1ec-0d92-4855-a83a-bacfa7acc501 + Name: LaserCylinder + Components: + 6565f891cdba2236dd5dbf1888a0f6e0: !TransformComponent + Id: 206a42eb-ee64-48ed-9269-f0ddc1ce4a92 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: -0.707106769, W: 0.707106769} + Scale: {X: 1.0, Y: 10.0, Z: 1.0} + Children: {} + cec4407060699b5ddb4eeb6f5f980024: !ModelComponent + Id: 18f579ce-3fc3-4c54-b929-bce22f6af2b2 + Model: c11da5de-520a-4bd5-a691-5476b2a812e0:Gameplay/Models/Cylinder + Materials: {} + - Entity: + Id: 6127bf25-0b62-4e22-863f-5009c2f77592 + Name: LaserArc + Components: + 336f7ce982182944823955cce7f2b5ee: !TransformComponent + Id: e97c6f33-1882-4429-8239-55cce7f2b5ee + Position*: {X: 0.5, Y: 1.75, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + Base: + BasePartAsset: 8a4fed52-02c4-46fa-9f41-bee3decdc3d1:VFXPrefabs/vfx-LaserBeam + BasePartId: 6e00cd87-867f-4039-ae08-a2fcfdcf6e89 + InstanceId: 8faec7b8-7a9c-41fc-8848-2539ecb9f5f2 + - Entity: + Id: 8512ce3d-9fb8-400b-bf88-7186abe432d8 + Name*: LaserBeam + Components: + c2a61ac9cca3304c949c26193b0945c4: !TransformComponent + Id: c91aa6c2-a3cc-4c30-949c-26193b0945c4 + Position*: {X: 0.5, Y: 1.75, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + fe89fc524a7b9ae686e1c8c7bf6e603c: ref!! e0bd1232-30cf-402f-a659-169701c6bca6 + 5ee7f85c3fbac746b5c31e169615a5c7: !ParticleSystemComponent + Id: 5cf8e75e-ba3f-46c7-b5c3-1e169615a5c7 + Control: + ResetSeconds: 0.0 + Control: Play + Color*: {R: 1.0, G: 0.125490189, B: 0.125490189, A: 1.0} + Speed: 6.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + f239db465dd7354bbc55100bd300b151: + EmitterName: sparks + ParticleLifetime: {X: 1.0, Y: 5.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + ba54a1971cd84340b5ba37f508a3bd2c: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 881873fa3d3a744db46ae3db16b7d133: + Key: 1.0 + Value: 0.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value*: {X: 150.0, Y: 150.0, Z: 150.0, W: 1.0} + RightChild*: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: null + ForceTexCoords: false + Spawners: + 946a1b5e1895434284c7dbdaa728c786: !SpawnerBurst + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount*: 100 + Initializers: + 581d30af2592fb41a520efcb0f64656c: !InitialPositionParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: true + ParentName*: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: true + ParentControlFlag: Group00 + SeedOffset: 0 + PositionMin*: {X: -0.5, Y: -0.1, Z: -0.1} + PositionMax*: {X: 0.5, Y: 0.1, Z: 0.1} + 0460848851abf642879131d04c839872: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.3 + SeedOffset: 24 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize*: {X: 0.05, Y: 0.2} + cd410cf87ddf07449ea894f8b8cb5238: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.02, Y: -0.01, Z: -0.02} + VelocityMax*: {X: 0.02, Y: 0.04, Z: 0.02} + 855cafaded1b164dab92516ac877abf5: !InitialColorParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + ParentName*: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ParentControlFlag: Group00 + SeedOffset*: 0 + ColorMin: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + ColorMax: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Updaters: {} + eabed859a30c6f409b30f3e5fa9295b2: + EmitterName: LaserEmitter02 + MaxParticlesOverride: 10 + ParticleLifetime: {X: 0.2, Y: 0.2} + ShapeBuilder: !ShapeBuilderRibbon + SmoothingPolicy: None + Segments*: 5 + TextureCoordinatePolicy: AsIs + TexCoordsFactor: 1.0 + UVRotate: + FlipX: false + FlipY: false + UVClockwise: Degree0 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 100.0, Y: 100.0, Z: 100.0, W: 1.0} + RightChild*: !ComputeTextureColor + Texture: da9b119e-ce87-4f7b-a4cc-2e93b158f137:Textures/Gradation01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: !UVBuilderScroll + StartFrame: {X: 0.0, Y: 0.0, Z: 1.0, W: 1.0} + EndFrame: {X: 0.0, Y: 1.0, Z: 1.0, W: 2.0} + ForceTexCoords: false + Spawners: + 771c66d89d336449959f8c37915bdb0e: !SpawnerPerFrame + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 10.0 + Framerate: 60.0 + Initializers: + af1eef0c052b814ab025d0cbeb5ef838: !InitialPositionArc + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + Target: ref!! e97c6f33-1882-4429-8239-55cce7f2b5ee + DisplayParticleRotation: true + DisplayParticleScale: false + FallbackTarget: {X: 0.0, Y: 0.0, Z: -1.0} + DisplayParticleScaleUniform: false + ArcHeight*: 0.0 + Sequential: true + FixedLength: 0 + PositionMin*: {X: 0.0, Y: 0.0, Z: 0.0} + PositionMax*: {X: 0.0, Y: 0.0, Z: 0.0} + SeedOffset: 0 + 6d09f593db786145af6ba89f386f9b48: !InitialSpawnOrder + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + d1dbc13de4fdfd44a592f202d7bed600: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale*: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.5 + SeedOffset*: 1 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize*: {X: 0.5, Y: 0.6} + 6271b4d5a12e85478df35d9f6ee7f89b: ~(Deleted) + Updaters: {} + 2170ccaa483ed447ae1e60edebcc0f3b: ~(Deleted) + 2801c9087775c2ecc9518fa0f801c79c*: !StaticColliderComponent + Id: 752fc503-5df9-47e8-addc-e2ee9d70ff6d + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + d9c023df8272c6145711f00ef8160b74: !BoxColliderShapeDesc + Is2D: false + Size: {X: 10.0, Y: 3.0, Z: 2.0} + LocalOffset: {X: 4.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 8a4fed52-02c4-46fa-9f41-bee3decdc3d1:VFXPrefabs/vfx-LaserBeam + BasePartId: ce106045-4e8e-423f-959c-180ca5a81f04 + InstanceId: 8faec7b8-7a9c-41fc-8848-2539ecb9f5f2 + - Entity: + Id: 945727d1-98d0-4a00-b29c-98f78daa9839 + Name: LaserFence + Components: + fb5e18952f86407dad838d0b5bc40bef: !TransformComponent + Id: c20f4816-794a-4fd3-b2b5-521d96340c0c + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + f94a04d4dd9ca249d275be383b123cc7: ref!! 3929b428-ffad-4566-8d64-ab7eda71a220 + e8af797a2f73bec8e5b3b407c77a04b3: ref!! d755f963-c931-4c99-97e4-b973c10b0d37 + c4e1eb951c333060077478fec3e6f721: !Starbreach.Gameplay.LaserFence,Starbreach + Id: d1671b0d-5ca7-4b76-ad51-509b72570f9b + ParticleSystemComponents: + d4e1b67fd72a014591445d886fdbd013: ref!! 5cf8e75e-ba3f-46c7-b5c3-1e169615a5c7 + 99ad129b17a7400624a0fdde856096e0: ref!! b5fb81ae-9af0-4cad-9d22-c99fdc143c54 + ModelComponents: + 1e0b1119a150cc02dddd2f91b8f2f386: ref!! cd13ccdb-9dc7-4ff0-8ad0-c22fa7317ff2 + dd30ed9dc650b5d60c314f45e5431622: ref!! 18f579ce-3fc3-4c54-b929-bce22f6af2b2 + LasetBlockade: + 23ae30509c9fbe5fb438d52a1b33c4c0: ref!! 752fc503-5df9-47e8-addc-e2ee9d70ff6d + Triggers: + CombinationMode: Disjunction + Inverted: false + Activators: {} + Enabled: true + - Entity: + Id: b070b742-1285-4948-a158-2800ee11f5e7 + Name: LaserFence_down + Components: + a4c9a42f24d4c443bad3060f61018c7f: !TransformComponent + Id: 2fa4c9a4-d424-43c4-bad3-060f61018c7f + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e52519dff8a1534c8d3d763ba4d4e83e: !ModelComponent + Id: df1925e5-a1f8-4c53-8d3d-763ba4d4e83e + Model: 4658c1a9-b3b6-4481-b22c-ad61ea3c14d3:Gameplay/Models/LaserFence_down + Materials: {} + Base: + BasePartAsset: 04190d25-799d-4690-96a3-fa6f92129950:Gameplay/Prefabs/LaserFence_Static + BasePartId: 466cf94d-9bd3-41b5-8ff0-3a288834f5eb + InstanceId: 28f6557f-0f19-4a95-a3c8-73adac09b07c + - Entity: + Id: d0b8df39-fac2-48ce-bd8f-a2f847d3157d + Name*: LaserBeam + Components: + c2a61ac9cca3304c949c26193b0945c4: !TransformComponent + Id: e7df7230-8eb2-42a3-ac83-b3c34d07ec76 + Position*: {X: 0.5, Y: 2.5, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 9406e2b7130bca40c2c768f5946242ff: ref!! 206a42eb-ee64-48ed-9269-f0ddc1ce4a92 + 5ee7f85c3fbac746b5c31e169615a5c7: !ParticleSystemComponent + Id: b5fb81ae-9af0-4cad-9d22-c99fdc143c54 + Control: + ResetSeconds: 0.0 + Control: Play + Color*: {R: 1.0, G: 0.121568628, B: 0.121568628, A: 1.0} + Speed: 6.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + f239db465dd7354bbc55100bd300b151: + EmitterName: sparks + ParticleLifetime: {X: 1.0, Y: 5.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + ba54a1971cd84340b5ba37f508a3bd2c: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 881873fa3d3a744db46ae3db16b7d133: + Key: 1.0 + Value: 0.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value*: {X: 150.0, Y: 150.0, Z: 150.0, W: 1.0} + RightChild*: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: null + ForceTexCoords: false + Spawners: + 946a1b5e1895434284c7dbdaa728c786: !SpawnerBurst + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount*: 100 + Initializers: + 581d30af2592fb41a520efcb0f64656c: !InitialPositionParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: true + ParentName*: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: true + ParentControlFlag: Group00 + SeedOffset: 0 + PositionMin*: {X: -0.5, Y: -0.1, Z: -0.1} + PositionMax*: {X: 0.5, Y: 0.1, Z: 0.1} + 0460848851abf642879131d04c839872: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.3 + SeedOffset: 24 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize*: {X: 0.05, Y: 0.2} + cd410cf87ddf07449ea894f8b8cb5238: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.02, Y: -0.01, Z: -0.02} + VelocityMax*: {X: 0.02, Y: 0.04, Z: 0.02} + 855cafaded1b164dab92516ac877abf5: !InitialColorParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + ParentName*: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ParentControlFlag: Group00 + SeedOffset*: 0 + ColorMin: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + ColorMax: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Updaters: {} + eabed859a30c6f409b30f3e5fa9295b2: + EmitterName: LaserEmitter02 + MaxParticlesOverride: 10 + ParticleLifetime: {X: 0.2, Y: 0.2} + ShapeBuilder: !ShapeBuilderRibbon + SmoothingPolicy: None + Segments*: 5 + TextureCoordinatePolicy: AsIs + TexCoordsFactor: 1.0 + UVRotate: + FlipX: false + FlipY: false + UVClockwise: Degree0 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 100.0, Y: 100.0, Z: 100.0, W: 1.0} + RightChild*: !ComputeTextureColor + Texture: da9b119e-ce87-4f7b-a4cc-2e93b158f137:Textures/Gradation01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: !UVBuilderScroll + StartFrame: {X: 0.0, Y: 0.0, Z: 1.0, W: 1.0} + EndFrame: {X: 0.0, Y: 1.0, Z: 1.0, W: 2.0} + ForceTexCoords: false + Spawners: + 771c66d89d336449959f8c37915bdb0e: !SpawnerPerFrame + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 10.0 + Framerate: 60.0 + Initializers: + af1eef0c052b814ab025d0cbeb5ef838: !InitialPositionArc + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + Target*: ref!! 40df8315-9a02-468f-ab3c-a0d3453ff167 + DisplayParticleRotation: true + DisplayParticleScale: false + FallbackTarget: {X: 0.0, Y: 0.0, Z: -1.0} + DisplayParticleScaleUniform: false + ArcHeight*: 0.0 + Sequential: true + FixedLength: 0 + PositionMin*: {X: 0.0, Y: 0.0, Z: 0.0} + PositionMax*: {X: 0.0, Y: 0.0, Z: 0.0} + SeedOffset: 0 + 6d09f593db786145af6ba89f386f9b48: !InitialSpawnOrder + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + d1dbc13de4fdfd44a592f202d7bed600: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale*: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.5 + SeedOffset*: 1 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize*: {X: 0.5, Y: 0.6} + 6271b4d5a12e85478df35d9f6ee7f89b: ~(Deleted) + Updaters: {} + 2170ccaa483ed447ae1e60edebcc0f3b: ~(Deleted) + Base: + BasePartAsset: 8a4fed52-02c4-46fa-9f41-bee3decdc3d1:VFXPrefabs/vfx-LaserBeam + BasePartId: ce106045-4e8e-423f-959c-180ca5a81f04 + InstanceId: 22720498-40d6-41e9-80dc-79aede4e3624 + - Entity: + Id: e88381a2-6f10-476d-853f-56ea6884859f + Name: LaserFence_up + Components: + c8c633e320d799468ba2a8e339362d2d: !TransformComponent + Id: a1b35f42-13ab-429e-b4ca-6b2b03425645 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3e4e674bd6ad2f439da54f92a29a7eec: !ModelComponent + Id: f71e0367-cba8-42ba-a7de-0e1368c8acad + Model: ca14aec1-3989-485c-84c0-5d0cbf5858f4:Gameplay/Models/LaserFence_up + Materials: {} + Base: + BasePartAsset: 04190d25-799d-4690-96a3-fa6f92129950:Gameplay/Prefabs/LaserFence_Static + BasePartId: 17b0e199-5d3f-4edc-9900-41f40432c0bd + InstanceId: 76170909-ea71-4291-a2d5-111a2c072cb6 + - Entity: + Id: fea06acd-bec3-4873-8a99-eeb324c05565 + Name: LaserFence_down + Components: + a4c9a42f24d4c443bad3060f61018c7f: !TransformComponent + Id: 81f6231f-d97e-48d4-bcde-57482ee4bd23 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e52519dff8a1534c8d3d763ba4d4e83e: !ModelComponent + Id: 7ea8171c-6eda-4994-a67b-340f0fff6d18 + Model: 4658c1a9-b3b6-4481-b22c-ad61ea3c14d3:Gameplay/Models/LaserFence_down + Materials: {} + Base: + BasePartAsset: 04190d25-799d-4690-96a3-fa6f92129950:Gameplay/Prefabs/LaserFence_Static + BasePartId: 466cf94d-9bd3-41b5-8ff0-3a288834f5eb + InstanceId: 76170909-ea71-4291-a2d5-111a2c072cb6 diff --git a/Starbreach/Assets/Shared/Gameplay/Prefabs/LaserFence_Moveable.xkprefab b/Starbreach/Assets/Shared/Gameplay/Prefabs/LaserFence_Moveable.xkprefab new file mode 100644 index 0000000..e75b10c --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Prefabs/LaserFence_Moveable.xkprefab @@ -0,0 +1,22 @@ +!PrefabAsset +Id: ce8c6e94-42d1-4c4c-b75b-5415da3f55da +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 445b5748-e6af-4719-9b31-e5ab3f075d49 + Parts: + - Entity: + Id: 445b5748-e6af-4719-9b31-e5ab3f075d49 + Name: LaserFenceAnim + Components: + fe231674333bf0409ea512d91cbdd733: !TransformComponent + Id: 741623fe-3b33-40f0-9ea5-12d91cbdd733 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 9dbddd1d29fc5a45bcffa274851d0228: !ModelComponent + Id: 1dddbd9d-fc29-455a-bcff-a274851d0228 + Model: dbf4d217-7261-4460-b520-520c15b6d009:Gameplay/Models/LaserFenceAnim + Materials: {} diff --git a/Starbreach/Assets/Shared/Gameplay/Prefabs/LaserFence_Static.xkprefab b/Starbreach/Assets/Shared/Gameplay/Prefabs/LaserFence_Static.xkprefab new file mode 100644 index 0000000..3c5d99a --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Prefabs/LaserFence_Static.xkprefab @@ -0,0 +1,37 @@ +!PrefabAsset +Id: 04190d25-799d-4690-96a3-fa6f92129950 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 466cf94d-9bd3-41b5-8ff0-3a288834f5eb + - ref!! 17b0e199-5d3f-4edc-9900-41f40432c0bd + Parts: + - Entity: + Id: 17b0e199-5d3f-4edc-9900-41f40432c0bd + Name: LaserFence_up + Components: + c8c633e320d799468ba2a8e339362d2d: !TransformComponent + Id: e333c6c8-d720-4699-8ba2-a8e339362d2d + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3e4e674bd6ad2f439da54f92a29a7eec: !ModelComponent + Id: 4b674e3e-add6-432f-9da5-4f92a29a7eec + Model: ca14aec1-3989-485c-84c0-5d0cbf5858f4:Gameplay/Models/LaserFence_up + Materials: {} + - Entity: + Id: 466cf94d-9bd3-41b5-8ff0-3a288834f5eb + Name: LaserFence_down + Components: + a4c9a42f24d4c443bad3060f61018c7f: !TransformComponent + Id: 2fa4c9a4-d424-43c4-bad3-060f61018c7f + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e52519dff8a1534c8d3d763ba4d4e83e: !ModelComponent + Id: df1925e5-a1f8-4c53-8d3d-763ba4d4e83e + Model: 4658c1a9-b3b6-4481-b22c-ad61ea3c14d3:Gameplay/Models/LaserFence_down + Materials: {} diff --git a/Starbreach/Assets/Shared/Gameplay/Prefabs/LaserWall.xkprefab b/Starbreach/Assets/Shared/Gameplay/Prefabs/LaserWall.xkprefab new file mode 100644 index 0000000..5688acb --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Prefabs/LaserWall.xkprefab @@ -0,0 +1,63 @@ +!PrefabAsset +Id: 030c10a7-3493-418c-a898-20b68599187c +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 8b8988b9-9b07-4b55-884c-3677f953ad2a + Parts: + - Entity: + Id: 1bae4cc3-3c2e-49bd-832b-4c9822020b1e + Name: Plane + Components: + 57cb1586f1f0c44b6fb990dfcbf45c78: !TransformComponent + Id: 7d598f49-924d-4076-89a0-513c6787d5b2 + Position: {X: 0.0, Y: 1.99999976, Z: 0.0} + Rotation: {X: 0.707106769, Y: 0.0, Z: 0.0, W: 0.707106769} + Scale: {X: 4.0, Y: 1.0, Z: 2.0} + Children: {} + 75dc807261754c60976de1590bc10ffa: !ModelComponent + Id: 2f36c7ff-f687-45f0-9e58-bd820071e66d + Model: a1a2ed8b-15d7-42ce-861c-8e3f05556f2d:Gameplay/Models/Plane + Materials: {} + - Entity: + Id: 74ed23a7-6433-44c4-8519-96ab4a730e85 + Name: LaserWall (2) + Components: + 5b452a81cc8b752aed9f673a11c3cfd3: !TransformComponent + Id: 29a1459b-7ff2-4392-99ee-06a7b72247fd + Position: {X: 2.5, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 94dc20993fcf2e2604f633278fc157f3: !ModelComponent + Id: 74377466-0cd2-4f3b-9a06-ea84c0ae5df0 + Model: b499ae00-250f-48fa-816c-c771ea16d449:Gameplay/Models/LaserWall + Materials: {} + - Entity: + Id: 8500ee4e-8ea7-400e-a1c3-97321ff4c703 + Name: LaserWall + Components: + 2d0c23e7926409b9612247352aa08bba: !TransformComponent + Id: 718ef7ae-2b52-4546-b849-76dc8f2e7683 + Position: {X: -2.5, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: -1.0, Y: 1.0, Z: 1.0} + Children: {} + 0a6e6211a0ab67f05833c708949aad2e: !ModelComponent + Id: c31e8c68-2d9b-4c46-b189-f1d883be9af2 + Model: b499ae00-250f-48fa-816c-c771ea16d449:Gameplay/Models/LaserWall + Materials: {} + - Entity: + Id: 8b8988b9-9b07-4b55-884c-3677f953ad2a + Name: LaserWall + Components: + a7666ce6f9820ff6e3033f336fedd82d: !TransformComponent + Id: 45acbb42-0c1f-49f6-9250-df0eae3bf007 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 7eb27dba381200122cb8f5403a7d7702: ref!! 718ef7ae-2b52-4546-b849-76dc8f2e7683 + 0327c1bfd074e98267a621c16e28b339: ref!! 29a1459b-7ff2-4392-99ee-06a7b72247fd + 69f828cadbc14ee9633f1aaa02981718: ref!! 7d598f49-924d-4076-89a0-513c6787d5b2 diff --git a/Starbreach/Assets/Shared/Gameplay/Prefabs/LaserWall_static.xkprefab b/Starbreach/Assets/Shared/Gameplay/Prefabs/LaserWall_static.xkprefab new file mode 100644 index 0000000..8e78cf7 --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Prefabs/LaserWall_static.xkprefab @@ -0,0 +1,22 @@ +!PrefabAsset +Id: 899476fe-dc16-47b0-bb34-e578583d45b7 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 23aceb46-54ef-4d2e-94e0-0a343ddc1d23 + Parts: + - Entity: + Id: 23aceb46-54ef-4d2e-94e0-0a343ddc1d23 + Name: LaserWall + Components: + 510e199c45458f46ba38163634aa7ab4: !TransformComponent + Id: 9c190e51-4545-468f-ba38-163634aa7ab4 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + b4b11b3239c74b4197854cabe0f558b3: !ModelComponent + Id: 321bb1b4-c739-414b-9785-4cabe0f558b3 + Model: b499ae00-250f-48fa-816c-c771ea16d449:Gameplay/Models/LaserWall + Materials: {} diff --git a/Starbreach/Assets/Shared/Gameplay/Prefabs/Plate.xkprefab b/Starbreach/Assets/Shared/Gameplay/Prefabs/Plate.xkprefab new file mode 100644 index 0000000..9f40ac4 --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Prefabs/Plate.xkprefab @@ -0,0 +1,76 @@ +!PrefabAsset +Id: 72f94a89-e47c-42ae-9264-b0c9881e3840 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! e4fdb89a-c2a0-4e83-a985-c4e087628455 + Parts: + - Entity: + Id: e4fdb89a-c2a0-4e83-a985-c4e087628455 + Name: FloorButton + Components: + 2bd9e5018fb815bd9e0ddf7b6c4f0377: !TransformComponent + Id: 0572b912-7228-4985-8129-600b21e8f721 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a6932a4059e46dc7459b958c79f50336: !ModelComponent + Id: de41b609-a408-4bb5-b310-9579f4b530fc + Model: b08b5432-96b6-4259-8a89-303ff9bd12e2:Gameplay/Models/FloorButton + Materials: + 1eb04cc22e2a20d26f26187814c7bdc3~0: 0347eda8-4648-4983-a223-713b43cea1d9:Gameplay/Materials/Plates/Plate2_Enabled_Off + daf84040e6ba39f4813001d91222a07f~1: ba76b6f1-63f6-44d9-ad48-aca96fbe79a3:Gameplay/Materials/Plates/Plate3_Enabled_Off + 2a52917f17e18564669f46063c397a81: !Starbreach.Gameplay.PressurePlate,Starbreach + Id: 48713fd1-913f-4c7a-a501-ee2427c043c8 + Material1EnabledOff: ba76b6f1-63f6-44d9-ad48-aca96fbe79a3:Gameplay/Materials/Plates/Plate3_Enabled_Off + Material1DisabledOn: 2746f702-7dd5-4ef5-9e93-d5e758da2800:Gameplay/Materials/Plates/Plate3_Disabled_On + Material1DisabledOff: d02e7fcd-9f9e-450f-bc56-6e50e9970ec2:Gameplay/Materials/Plates/Plate3_Disabled_Off + Material1EnabledOn: 1163e435-4f1b-4b16-8834-da23869292b4:Gameplay/Materials/Plates/Plate3_Enabled_On + Material0EnabledOff: 0347eda8-4648-4983-a223-713b43cea1d9:Gameplay/Materials/Plates/Plate2_Enabled_Off + Material0DisabledOn: eff5f692-9337-4d7b-8cd8-531e3e06b852:Gameplay/Materials/Plates/Plate2_Disabled_On + Material0DisabledOff: e74abd75-804a-4de0-acf7-924aa5bb3a20:Gameplay/Materials/Plates/Plate2_Disabled_Off + Material0EnabledOn: 903888ae-b297-487a-a708-5fd6cd38c7c7:Gameplay/Materials/Plates/Plate2_Enabled_On + Model: ref!! de41b609-a408-4bb5-b310-9579f4b530fc + Trigger: ref!! 925a6c45-0e0b-4a71-8478-efb81ae7d9b5 + AudioEmitter: ref!! 3340a80e-3f79-4808-b7de-c28d589cfd52 + Enabled: true + Toggle: false + SingleActivation: false + CurrentToggleState: false + TransitionTime: 0.15 + 48a3a1d7ea5c129742126bc8b4d7429c: !Starbreach.Gameplay.PressurePlateTrigger,Starbreach + Id: 925a6c45-0e0b-4a71-8478-efb81ae7d9b5 + CollisionFilterGroup: CharacterFilter + Trigger: ref!! d23cc4f5-5e22-4e54-a248-b68c54be0f59 + 03c59a6169956fba8a31fd1f758dc46f: !AudioEmitterComponent + Id: 3340a80e-3f79-4808-b7de-c28d589cfd52 + Sounds: + adc799987a8ff52a579d44583cb2cde7~Enable: 5163c935-fe14-4496-8f44-eb64e8482b31:Gameplay/Sounds/Plate_Enable + 732e4c030c0a74345f1aed380bdb8533~Disable: 730d9dfc-a657-4d5b-b5ea-8fc7e14cfa7d:Gameplay/Sounds/Plate_Disable + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + 9c600aa0b00e9640a384d3666fe41f14: !RigidbodyComponent + Id: d23cc4f5-5e22-4e54-a248-b68c54be0f59 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: true + IsKinematic: true + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 4c0292725ab565154826fa81493eec99: !CylinderColliderShapeDesc + Height: 0.4 + Radius: 0.8 + LocalOffset: {X: 0.0, Y: 0.2, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} diff --git a/Starbreach/Assets/Shared/Gameplay/Sounds/Plate_Disable.xksnd b/Starbreach/Assets/Shared/Gameplay/Sounds/Plate_Disable.xksnd new file mode 100644 index 0000000..283d8cc --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Sounds/Plate_Disable.xksnd @@ -0,0 +1,8 @@ +!Sound +Id: 730d9dfc-a657-4d5b-b5ea-8fc7e14cfa7d +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Gameplay/Plate/Disable.wav +CompressionRatio: 15 +StreamFromDisk: false +Spatialized: true diff --git a/Starbreach/Assets/Shared/Gameplay/Sounds/Plate_Enable.xksnd b/Starbreach/Assets/Shared/Gameplay/Sounds/Plate_Enable.xksnd new file mode 100644 index 0000000..73d57ee --- /dev/null +++ b/Starbreach/Assets/Shared/Gameplay/Sounds/Plate_Enable.xksnd @@ -0,0 +1,8 @@ +!Sound +Id: 5163c935-fe14-4496-8f44-eb64e8482b31 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Gameplay/Plate/Enable.wav +CompressionRatio: 15 +StreamFromDisk: false +Spatialized: true diff --git a/Starbreach/Assets/Shared/GraphicsCompositor.xkgfxcomp b/Starbreach/Assets/Shared/GraphicsCompositor.xkgfxcomp new file mode 100644 index 0000000..2f8da67 --- /dev/null +++ b/Starbreach/Assets/Shared/GraphicsCompositor.xkgfxcomp @@ -0,0 +1,213 @@ +!GraphicsCompositorAsset +Id: 25ba6790-1bea-4921-a62e-6cf18e677ed9 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Archetype: 823a81bf-bac0-4552-9267-aeed499c40df:DefaultGraphicsCompositorLevel10 +Cameras: + de2e75c3b2b23e54162686363f3f138e: + Id: 361499d7-0cf6-407b-8f59-034e1b80f4b4 + Name: Main +RenderStages: + 47116750c1a5d449b4ad3625f71439b3: + Id: 50671147-a5c1-49d4-b4ad-3625f71439b3 + Name: Opaque + EffectSlotName: Main + SortMode: !SortModeStateChange {} + 9105a30fee026d4893472b6aee83d035: + Id: 0fa30591-02ee-486d-9347-2b6aee83d035 + Name: Transparent + EffectSlotName: Main + SortMode: !BackToFrontSortMode {} + 554e52c061404d4684dd7c4c70f70e0e: + Id: c0524e55-4061-464d-84dd-7c4c70f70e0e + Name: ShadowMapCaster + EffectSlotName: ShadowMapCaster + SortMode: !FrontToBackSortMode {} + 5a50638f5c514dc490c8c4f57cc88b57: + Id: 369f44a1-7374-4406-99e6-b743e3204f27 + Name: ShadowMapCasterParaboloid + EffectSlotName: ShadowMapCasterParaboloid + SortMode: !FrontToBackSortMode {} + bc1a77d2ab254a6e920f86cff65cd75e: + Id: f84f2003-a57f-4441-a1bd-91c2df87ef26 + Name: ShadowMapCasterCubeMap + EffectSlotName: ShadowMapCasterCubeMap + SortMode: !FrontToBackSortMode {} + 33d9d311a1a65601da9ef56775477f95: + Id: e03bf72c-0da2-4354-adee-caaac3430f0f + Name: GBuffer + EffectSlotName: GBuffer + SortMode: !FrontToBackSortMode {} + 36c0e27136c90ea28d71cd26af954c3b*: + Id: a13c35f6-d979-4b63-8f57-5e667e0e5851 + Name: UI + EffectSlotName: Main +RenderFeatures: + d8fb80b0e7995140a46bca8dc36ee8a2: !Xenko.Rendering.MeshRenderFeature,Xenko.Rendering + RenderStageSelectors: + 44cf4a95ef82544e9ce3c6507d5569a9: !Xenko.Rendering.MeshTransparentRenderStageSelector,Xenko.Rendering + OpaqueRenderStage: ref!! 50671147-a5c1-49d4-b4ad-3625f71439b3 + TransparentRenderStage: ref!! 0fa30591-02ee-486d-9347-2b6aee83d035 + EffectName: XenkoForwardShadingEffect + 6f7224048750e7260ea87c444f74b32c: !Xenko.Rendering.Shadows.ShadowMapRenderStageSelector,Xenko.Rendering + ShadowMapRenderStage: ref!! c0524e55-4061-464d-84dd-7c4c70f70e0e + EffectName: XenkoForwardShadingEffect.ShadowMapCaster + b60663d7cb46417a94341a39c3bc1a12: !Xenko.Rendering.Shadows.ShadowMapRenderStageSelector,Xenko.Rendering + ShadowMapRenderStage: ref!! 369f44a1-7374-4406-99e6-b743e3204f27 + EffectName: XenkoForwardShadingEffect.ShadowMapCasterParaboloid + f5533b1249b942df8a8aba311cd79532: !Xenko.Rendering.Shadows.ShadowMapRenderStageSelector,Xenko.Rendering + ShadowMapRenderStage: ref!! f84f2003-a57f-4441-a1bd-91c2df87ef26 + EffectName: XenkoForwardShadingEffect.ShadowMapCasterCubeMap + 106341b76db9fcda6a033dad16aa708b: !Xenko.Rendering.MeshTransparentRenderStageSelector,Xenko.Rendering + OpaqueRenderStage: ref!! e03bf72c-0da2-4354-adee-caaac3430f0f + EffectName: XenkoForwardShadingEffect.ShadowMapCaster + PipelineProcessors: + d70f5aee0616e4ab25081ceaf643290c: !Xenko.Rendering.MeshPipelineProcessor,Xenko.Rendering + TransparentRenderStage: ref!! 0fa30591-02ee-486d-9347-2b6aee83d035 + 26c899b17f88c21ab13bf60a7220ccd1: !Xenko.Rendering.ShadowMeshPipelineProcessor,Xenko.Rendering + ShadowMapRenderStage: ref!! c0524e55-4061-464d-84dd-7c4c70f70e0e + ff51170a7d1a4761b73ef6a5c9f0cba2: !Xenko.Rendering.ShadowMeshPipelineProcessor,Xenko.Rendering + ShadowMapRenderStage: ref!! 369f44a1-7374-4406-99e6-b743e3204f27 + DepthClipping: true + ae4336b0a9514e8488e8e0ccbcef25f4: !Xenko.Rendering.ShadowMeshPipelineProcessor,Xenko.Rendering + ShadowMapRenderStage: ref!! f84f2003-a57f-4441-a1bd-91c2df87ef26 + DepthClipping: true + RenderFeatures: + 86b959cbdf51a1438d4973177c77c627: !Xenko.Rendering.TransformRenderFeature,Xenko.Rendering {} + 8e0351fee9883922648a11016224b195: !Xenko.Rendering.SkinningRenderFeature,Xenko.Rendering {} + f5a2017030ba4b28784e804807ce7628: !Xenko.Rendering.Materials.MaterialRenderFeature,Xenko.Rendering {} + 83fea7526ebe4893a5bad953d0502bfd: !Xenko.Rendering.Shadows.ShadowCasterRenderFeature,Xenko.Rendering {} + 65743b4380f4cc43b2b4bdc23cd0c07c: !Xenko.Rendering.Lights.ForwardLightingRenderFeature,Xenko.Rendering + LightRenderers: + 7ac2775468f53c4399b2f3f6357c85c9: !Xenko.Rendering.Lights.LightAmbientRenderer,Xenko.Rendering {} + 7b68f9cd17404a4ba9e5f7df72e3b48d: !Xenko.Rendering.Lights.LightDirectionalGroupRenderer,Xenko.Rendering {} + 411fdcfb9fc388449a0443173dfa3f27: !Xenko.Rendering.Lights.LightSkyboxRenderer,Xenko.Rendering {} + facdcd5b543cf1c6bdf2138aab6cc473: !Xenko.Rendering.Lights.LightClusteredPointSpotGroupRenderer,Xenko.Rendering {} + 79582329a9cf466e960f8920f579de9b: !Xenko.Rendering.Lights.LightPointGroupRenderer,Xenko.Rendering {} + cf0c6bd4198b4cc4aaaab5b54870bdfd: !Xenko.Rendering.Lights.LightSpotGroupRenderer,Xenko.Rendering {} + 451af18f3f5c4187cf3fe5f33feb46b1: !Xenko.Rendering.LightProbes.LightProbeRenderer,Xenko.Rendering {} + ShadowMapRenderer: !Xenko.Rendering.Shadows.ShadowMapRenderer,Xenko.Rendering + Renderers: + 7c3d3d4c86834c3551bacde2527b3836: !Xenko.Rendering.Shadows.LightDirectionalShadowMapRenderer,Xenko.Rendering + ShadowCasterRenderStage: ref!! c0524e55-4061-464d-84dd-7c4c70f70e0e + 1c204b09435636256a3fcfd6f9ddb347: !Xenko.Rendering.Shadows.LightSpotShadowMapRenderer,Xenko.Rendering + ShadowCasterRenderStage: ref!! c0524e55-4061-464d-84dd-7c4c70f70e0e + 7c8c69ce27034b4c8bbcab0bcdfe954b: !Xenko.Rendering.Shadows.LightPointShadowMapRendererParaboloid,Xenko.Rendering + ShadowCasterRenderStage: ref!! 369f44a1-7374-4406-99e6-b743e3204f27 + d59ef45dd99e49d3af3887763d153aa7: !Xenko.Rendering.Shadows.LightPointShadowMapRendererCubeMap,Xenko.Rendering + ShadowCasterRenderStage: ref!! f84f2003-a57f-4441-a1bd-91c2df87ef26 + 28e9bf54a5adbe063f59fb17acb2723e: !Xenko.Rendering.Sprites.SpriteRenderFeature,Xenko.Rendering + RenderStageSelectors: + d74665cff080638a2439c4422e542d85: !Xenko.Rendering.Sprites.SpriteTransparentRenderStageSelector,Xenko.Rendering + OpaqueRenderStage: ref!! 50671147-a5c1-49d4-b4ad-3625f71439b3 + TransparentRenderStage: ref!! 0fa30591-02ee-486d-9347-2b6aee83d035 + EffectName: Test + 60780391e205770513fdd53e07279a01: !Xenko.Rendering.Background.BackgroundRenderFeature,Xenko.Rendering + RenderStageSelectors: + 11c8b8ccb522e3cd1dd6688016062a6d: !Xenko.Rendering.SimpleGroupToRenderStageSelector,Xenko.Rendering + RenderStage: ref!! 50671147-a5c1-49d4-b4ad-3625f71439b3 + EffectName: Test + 93933ad00d0c357d4915ad462cbfd04c: !Xenko.Rendering.UI.UIRenderFeature,Xenko.UI + RenderStageSelectors: + 14a071694411235038a102ac3794bb4d: !Xenko.Rendering.SimpleGroupToRenderStageSelector,Xenko.Rendering + RenderGroup*: Group0 + RenderStage: ref!! 0fa30591-02ee-486d-9347-2b6aee83d035 + EffectName: Test + b00f483fc519276e77f47d66768faa88*: !Xenko.Rendering.SimpleGroupToRenderStageSelector,Xenko.Rendering + RenderGroup: Group1 + RenderStage: ref!! a13c35f6-d979-4b63-8f57-5e667e0e5851 + EffectName: Test + 9013eab3ea0ef6c98bf133b86c173d45: !Xenko.Particles.Rendering.ParticleEmitterRenderFeature,Xenko.Particles + RenderStageSelectors: + af1bd241305893ef8ff7952184e1cb0b: !Xenko.Particles.Rendering.ParticleEmitterTransparentRenderStageSelector,Xenko.Particles + OpaqueRenderStage: ref!! 50671147-a5c1-49d4-b4ad-3625f71439b3 + TransparentRenderStage: ref!! 0fa30591-02ee-486d-9347-2b6aee83d035 + EffectName: null + PipelineProcessors: {} +SharedRenderers: + 60459475d3a3adaf2d1ba5d99913ca75: !Xenko.Rendering.Compositing.ForwardRenderer,Xenko.Engine + Id: 73b3eaed-ecee-4f8c-9997-2225c89c150c + Clear: + Id: 4bc4b2ca-027e-4e4a-94cb-2912709bef5f + Color: {R: 0.40491876, G: 0.411895424, B: 0.43775, A: 1.0} + LightProbes: true + OpaqueRenderStage: ref!! 50671147-a5c1-49d4-b4ad-3625f71439b3 + TransparentRenderStage: ref!! 0fa30591-02ee-486d-9347-2b6aee83d035 + ShadowMapRenderStages: + fc4d1e0de5c2b0bbc27bcf96e9a848fd: ref!! c0524e55-4061-464d-84dd-7c4c70f70e0e + GBufferRenderStage: ref!! e03bf72c-0da2-4354-adee-caaac3430f0f + PostEffects: !PostProcessingEffects ref!! 608bf04d-8640-469d-b710-1ecf6a46f794 + LightShafts: null + VRSettings: + Enabled: false + RequiredApis: {} + Overlays: {} + SubsurfaceScatteringBlurEffect: null + MSAALevel: None + MSAAResolver: {} + d5b2e71c088247e21556decdce138d96: !Xenko.Rendering.Compositing.ForwardRenderer,Xenko.Engine + Id: 66e772c2-b882-44ca-a1cf-68e5b4da7a58 + Clear: + Id: 66a42307-1985-4316-871a-768449238c11 + Color: {R: 0.40491876, G: 0.411895424, B: 0.43775, A: 1.0} + LightProbes: true + OpaqueRenderStage: ref!! 50671147-a5c1-49d4-b4ad-3625f71439b3 + TransparentRenderStage: ref!! 0fa30591-02ee-486d-9347-2b6aee83d035 + ShadowMapRenderStages: + 2323a99a8a983e182f318e55604659b0: ref!! c0524e55-4061-464d-84dd-7c4c70f70e0e + GBufferRenderStage: ref!! e03bf72c-0da2-4354-adee-caaac3430f0f + PostEffects: null + LightShafts: null + VRSettings: + Enabled: false + RequiredApis: {} + Overlays: {} + SubsurfaceScatteringBlurEffect: null + MSAALevel: None + MSAAResolver: {} + 34ecb9b2633eacfc439ba8744fe05102: !PostProcessingEffects + Id: 608bf04d-8640-469d-b710-1ecf6a46f794 + AmbientOcclusion: + Enabled*: true + LocalReflections: + Enabled: false + ResolvePassResolution: Full + DepthResolution: Half + DepthOfField: + Enabled: false + DOFAreas: {X: 0.5, Y: 6.0, Z: 50.0, W: 200.0} + BrightFilter: + Color: {R: 1.0, G: 1.0, B: 1.0} + Bloom: + Distortion: {X: 1.0, Y: 1.0} + Afterimage: + Enabled: false + LightStreak: + Attenuation: 0.7 + LensFlare: {} + ColorTransforms: + Transforms: + 1e06f805f8b2e949a06c30d45fe413ef: !ToneMap + Operator: !ToneMapHejl2Operator {} + c57351444609d14ea258b3f511ec8a74: !FilmGrain + Enabled: false + e86e22e9a5d65545b8b55fca26e0afee: !Vignetting + Enabled: false + Color: {R: 0.0, G: 0.0, B: 0.0} + Antialiasing: !FXAAEffect {} + ee80a20a9bd99f2d70711114e15fe7ca: !Xenko.Rendering.Compositing.DebugRenderer,Xenko.Rendering + Id: 5d130887-1173-4873-bba9-d56041f6c11f + DebugRenderStages: {} +Game: !Xenko.Rendering.Compositing.SceneCameraRenderer,Xenko.Engine + Id: 76fe87cf-f574-4ad6-85b8-e9a9586be0e2 + Camera: ref!! 361499d7-0cf6-407b-8f59-034e1b80f4b4 + Child*: !Xenko.Rendering.Compositing.SceneRendererCollection,Xenko.Rendering + Id: 2d99ce10-f496-42e8-8ee7-76aa7c60dd78 + Enabled*: true + Children: + d39c5ddbf8b7d5ca02bafb6496b1cc3c: !Xenko.Rendering.Compositing.ForwardRenderer,Xenko.Engine ref!! 73b3eaed-ecee-4f8c-9997-2225c89c150c + 01d338078e9b21121ead0868932613dd: !Xenko.Rendering.Compositing.DebugRenderer,Xenko.Rendering ref!! 5d130887-1173-4873-bba9-d56041f6c11f + RenderMask: All +SingleView*: !Xenko.Rendering.Compositing.ForwardRenderer,Xenko.Engine ref!! 73b3eaed-ecee-4f8c-9997-2225c89c150c +Editor*: !Xenko.Rendering.Compositing.ForwardRenderer,Xenko.Engine ref!! 73b3eaed-ecee-4f8c-9997-2225c89c150c +BlockPositions: {} diff --git a/Starbreach/Assets/Shared/Levels/Bridge_1-1_to_1-2.xkscene b/Starbreach/Assets/Shared/Levels/Bridge_1-1_to_1-2.xkscene new file mode 100644 index 0000000..91287e9 --- /dev/null +++ b/Starbreach/Assets/Shared/Levels/Bridge_1-1_to_1-2.xkscene @@ -0,0 +1,45 @@ +!SceneAsset +Id: 22f13931-e267-4a3b-b7ff-a8d0f1411386 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +ChildrenIds: [] +Parent: 6224d747-48a6-4736-a199-27785b9b7c3b:Levels/MainScene +Offset: {X: -3.0, Y: 0.0, Z: -26.0} +Hierarchy: + RootParts: + - ref!! 6b43357b-7776-46e5-b74b-abe09e200ff3 + Parts: + - Entity: + Id: 6b43357b-7776-46e5-b74b-abe09e200ff3 + Name: Bridge_straight + Components: + 943534a1f9d5f56c1210a3bde50cb7e4: !TransformComponent + Id: 7c50e7e6-7168-4d87-9d34-b997b0238798 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + cb3b901201a65279830caf83c958e136: !ModelComponent + Id: 2c28bd67-d301-4d0f-b243-b9592301636c + Model: bf243266-fbbe-49dc-90c6-92fff60fadb3:Levels/PrefabModels/Bridge_straight_NS + Materials: {} + 72060ec4936f2a22883e7996d553143c: !StaticColliderComponent + Id: 74d65a98-81df-4517-aeb1-f0db4d7d0f0d + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + ff06259458ac62d3ba99db1c41a2f534: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 2.0, Z: 18.0} + LocalOffset: {X: 0.0, Y: 0.0, Z: -9.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + fd43889758ab64d853bcd6a11619ddce: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 2.0, Z: 18.0} + LocalOffset: {X: 6.0, Y: 0.0, Z: -9.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} diff --git a/Starbreach/Assets/Shared/Levels/Bridge_1-2_to_1-3.xkscene b/Starbreach/Assets/Shared/Levels/Bridge_1-2_to_1-3.xkscene new file mode 100644 index 0000000..85c7172 --- /dev/null +++ b/Starbreach/Assets/Shared/Levels/Bridge_1-2_to_1-3.xkscene @@ -0,0 +1,45 @@ +!SceneAsset +Id: c6a4ba7f-4488-4cdd-9373-8980d5139065 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +ChildrenIds: [] +Parent: 6224d747-48a6-4736-a199-27785b9b7c3b:Levels/MainScene +Offset: {X: -3.0, Y: 0.0, Z: -77.0} +Hierarchy: + RootParts: + - ref!! f650e03c-a060-4807-ace6-d02e5ecb9f00 + Parts: + - Entity: + Id: f650e03c-a060-4807-ace6-d02e5ecb9f00 + Name: Bridge_straight + Components: + 37dc29da7c3fdf0f684773e74664157f: !TransformComponent + Id: 52d65828-b8a2-4204-98bf-a955bdf85260 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 664ff7628d1862ee23c3ee23abd3f522: !ModelComponent + Id: d1d2b659-6225-468e-9be0-8e1cdf52dc49 + Model: bf243266-fbbe-49dc-90c6-92fff60fadb3:Levels/PrefabModels/Bridge_straight_NS + Materials: {} + 22a5eba9b93fbc6aab0b88ab77adb820: !StaticColliderComponent + Id: f77064f8-ca81-4384-a933-55cdcb4fbd0e + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + daa1a5a2261702d92851120e8c2c2085: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 2.0, Z: 18.0} + LocalOffset: {X: 0.0, Y: 0.0, Z: -9.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + b3eda8f1f489b899c934ff86382b7d46: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 2.0, Z: 18.0} + LocalOffset: {X: 6.0, Y: 0.0, Z: -9.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} diff --git a/Starbreach/Assets/Shared/Levels/Bridge_1-3_to_1-4.xkscene b/Starbreach/Assets/Shared/Levels/Bridge_1-3_to_1-4.xkscene new file mode 100644 index 0000000..d7d5537 --- /dev/null +++ b/Starbreach/Assets/Shared/Levels/Bridge_1-3_to_1-4.xkscene @@ -0,0 +1,45 @@ +!SceneAsset +Id: c2757ab9-1b26-4857-825b-74f39acb6f2d +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +ChildrenIds: [] +Parent: 6224d747-48a6-4736-a199-27785b9b7c3b:Levels/MainScene +Offset: {X: -55.0, Y: 0.0, Z: -128.5} +Hierarchy: + RootParts: + - ref!! c7296f9a-f9b8-418d-9c6e-089a159eeaf2 + Parts: + - Entity: + Id: c7296f9a-f9b8-418d-9c6e-089a159eeaf2 + Name: Bridge_straight_WE + Components: + 499cc57cfcea187529b49c8bb2ba6cde: !TransformComponent + Id: 43814c46-a68a-412b-bb67-c04f147d33c1 + Position: {X: 17.99581, Y: 0.0, Z: -5.98316336} + Rotation: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + afa68280b4bed0101f8a8b3d7962378d: !ModelComponent + Id: a7a833fb-74c6-4d62-ae16-268ceb0d6db6 + Model: 06c87220-6edf-4c6b-8c73-164f06fa11af:Levels/PrefabModels/Bridge_straight_WE + Materials: {} + 5a48c65860b1e5da446c45fdedc647f2: !StaticColliderComponent + Id: c2b864d2-7204-4c76-953e-0f4788ebe7a3 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 08210e739ee6c3455e45957fc8c92aae: !BoxColliderShapeDesc + Is2D: false + Size: {X: 20.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 9.0, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 5c3cbfe197bb10c358f07c72c7339663: !BoxColliderShapeDesc + Is2D: false + Size: {X: 20.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 9.0, Y: 0.0, Z: -6.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} diff --git a/Starbreach/Assets/Shared/Levels/Level_1-3_PlatformRocks.xkprefab b/Starbreach/Assets/Shared/Levels/Level_1-3_PlatformRocks.xkprefab new file mode 100644 index 0000000..96ac016 --- /dev/null +++ b/Starbreach/Assets/Shared/Levels/Level_1-3_PlatformRocks.xkprefab @@ -0,0 +1,1038 @@ +!PrefabAsset +Id: 004999bd-0369-4bae-9955-4821c850e829 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! fc9af7aa-ef94-43c0-a109-25096fb63efe + Parts: + - Folder: Vertical + Entity: + Id: 03a6037b-5f38-4284-9ada-c3b9c6a88e8b + Name: PlatformRocks2 (11) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: 90e864a9-9a87-4fc2-ad46-95a82e192ca5 + Position*: {X: -9.351666, Y: -3.03028631, Z: -49.7901} + Rotation: {X: 0.0, Y: 0.7596207, Z: 0.0, W: 0.6503663} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: ca3aae3c-5f0a-4e66-944b-e996e2eff233 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: abeba8d8-a87e-48a2-82c8-9c86bf803577 + InstanceId: 1ff0b213-7e2b-4332-a6be-bf0e214f87dd + - Folder: Vertical + Entity: + Id: 03e45166-043b-41a6-9343-cd2190b0fce5 + Name: PlatformRocks1 (3) + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: 39d0dd57-578e-4f23-a6c1-533b865288b7 + Position*: {X: 34.22132, Y: -1.15097463, Z: -15.4513664} + Rotation*: {X: 0.0, Y: -0.00362339616, Z: 0.0, W: 0.999993443} + Scale*: {X: 1.2, Y: 1.2, Z: 1.2} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: 6d5a5fa5-4a5d-49b3-a773-ea11e6980266 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: 8055f49e-ed5d-4eb7-bd50-23dd48d0628f + InstanceId: 1cd090b6-47d6-40b2-b686-1d3f7b36a2f5 + - Folder: Vertical + Entity: + Id: 05c7a6e2-b133-4c82-ab59-77898b87eed3 + Name: PlatformRocks2 (6) + Components: + d2f30a7d88eeff69a462a2384736cee9: !TransformComponent + Id: ed4f5e88-34d1-48cd-a524-6b5797a9a593 + Position*: {X: 0.9377556, Y: -2.21155667, Z: -33.285553} + Rotation: {X: 0.0, Y: -0.6292836, Z: 0.0, W: 0.7771758} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d16ca2c04fba1e70e8d3fbb933e6e2f0: !ModelComponent + Id: ef67b577-c6e0-49d1-b93e-1806b8d445a5 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: a403536e-c5ae-4139-8306-ad64d0c0419e + InstanceId: 1cd090b6-47d6-40b2-b686-1d3f7b36a2f5 + - Folder: Vertical + Entity: + Id: 08fccc05-121b-4f84-bc00-4bc410112e1d + Name: PlatformRocks1 + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: abe4fcb7-6fb8-4aea-81a1-acdaf71b8187 + Position*: {X: 30.4880924, Y: -2.869439, Z: -34.9111} + Rotation: {X: 0.0, Y: -0.372084469, Z: 0.0, W: 0.9281989} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: e11e5805-e4fa-4fde-98a8-aee17688df06 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: 952136ae-adcb-44e2-a1d8-52dea6aea30e + InstanceId: 1cd090b6-47d6-40b2-b686-1d3f7b36a2f5 + - Folder: Vertical + Entity: + Id: 1a9965df-61d2-494a-bbae-67a3bbae0afe + Name: PlatformRocks2 (5) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: dff26ab8-9674-4f48-9adc-d345f1d2c7d4 + Position*: {X: -9.336775, Y: -2.61242962, Z: -37.57435} + Rotation*: {X: 0.0, Y: -0.5558612, Z: 0.0, W: 0.8312751} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: 9efb6be1-6fbb-45c4-8f71-35dce0694edd + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: 1d21ed93-3193-4445-8aca-dd7f84bcdae9 + InstanceId: 1cd090b6-47d6-40b2-b686-1d3f7b36a2f5 + - Folder: Vertical + Entity: + Id: 1d7f226b-030f-414c-a89b-2bed92fe9f72 + Name: PlatformRocks2 (16) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: 44b5c8bb-ff54-4844-ba0f-7425db00300f + Position*: {X: -12.0228148, Y: -2.61242962, Z: -37.51326} + Rotation*: {X: 0.0, Y: -0.102625906, Z: 0.0, W: 0.99472} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: 5168ab27-1718-429d-ad3b-1cc6b6ec2f8c + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: 8dea363d-d1d4-4672-82fd-a5085eda7774 + InstanceId: 1cd090b6-47d6-40b2-b686-1d3f7b36a2f5 + - Folder: Vertical + Entity: + Id: 23363b2b-868b-494d-81c6-cbb97d8f3bc2 + Name: PlatformRocks2 (15) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: 472351f3-f15c-4405-94dd-28f4909f021a + Position*: {X: 30.2451153, Y: -2.8454268, Z: -27.6043987} + Rotation: {X: 0.0, Y: 0.5671285, Z: 0.0, W: 0.8236293} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: d59197b7-56c1-4b96-995c-42eedacd2019 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: 175c872b-3518-46c8-a2f6-046fb59f7c35 + InstanceId: 1cd090b6-47d6-40b2-b686-1d3f7b36a2f5 + - Folder: Vertical + Entity: + Id: 23499024-306e-4dbb-a924-42f7be262b4c + Name: PlatformRocks1 (4) + Components: + 1651bba9aeb3a47a09b36fa078093f26: !TransformComponent + Id: 9c1d9b5f-78de-483d-84a9-9599e73aa1d3 + Position*: {X: 13.4772911, Y: -3.294903, Z: -15.2224112} + Rotation: {X: 0.0, Y: -0.27981, Z: 0.0, W: 0.9600554} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + c31be1e87de87749efbb223612f277b6: !ModelComponent + Id: 4cf05467-ec70-415f-9887-f1cf40fee01a + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: 8145acf0-3993-4390-9a09-a6bcf3dd5de7 + InstanceId: 1cd090b6-47d6-40b2-b686-1d3f7b36a2f5 + - Folder: Vertical + Entity: + Id: 2956ab79-5c04-4ce2-b1f7-c5973b28d596 + Name: PlatformRocks1 (13) + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: 637f8ddc-b6a7-4d64-a777-845088a3cf27 + Position*: {X: 26.37322, Y: -2.52503467, Z: -40.6533852} + Rotation*: {X: 0.0, Y: -0.130451143, Z: 0.0, W: 0.9914547} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: 968e36f8-3c8b-4839-be30-b84211d92d80 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: c391b670-d56d-43e9-8a93-2f5e59748586 + InstanceId: 1cd090b6-47d6-40b2-b686-1d3f7b36a2f5 + - Folder: Vertical + Entity: + Id: 2e7f466e-f193-408a-944f-61426dbd6e5c + Name: PlatformRocks2 (11) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: 7f547b99-9a62-40bb-b0ff-8d851a360970 + Position*: {X: 24.7119617, Y: -2.41231084, Z: -44.296505} + Rotation*: {X: 0.0, Y: 0.8953648, Z: 0.0, W: 0.445333362} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: b066a43b-f0ac-417b-83dd-508e3ec727ed + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: abeba8d8-a87e-48a2-82c8-9c86bf803577 + InstanceId: 1cd090b6-47d6-40b2-b686-1d3f7b36a2f5 + - Folder: Vertical + Entity: + Id: 2e8e54dd-2322-4a60-99f2-3993df4db74d + Name: PlatformRocks2 (14) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: f5c308d0-474c-4036-a98d-8e37b3015fca + Position*: {X: 16.4990578, Y: -2.77072763, Z: -5.43958664} + Rotation: {X: 0.0, Y: -0.210367471, Z: 0.0, W: 0.97762233} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: 920dda95-32d4-4bc6-af3b-40e80e6b2265 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: 1b0aea3e-e5e7-4658-a83e-fd163605e6e0 + InstanceId: 1cd090b6-47d6-40b2-b686-1d3f7b36a2f5 + - Folder: Vertical + Entity: + Id: 31ee8e57-7d04-4a6a-9e49-a13a462b2e7f + Name: PlatformRocks1 (13) + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: 444d8a9b-8bcc-40e2-8277-6d6b873037ab + Position*: {X: -13.3466845, Y: -3.34440112, Z: -49.361763} + Rotation: {X: 0.0, Y: -0.621628761, Z: 0.0, W: 0.783311963} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: 67bb5607-b340-4460-9447-7b1d69c9bcb1 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: c391b670-d56d-43e9-8a93-2f5e59748586 + InstanceId: d56f4def-a766-4c0f-b8db-00ab0239a0ee + - Folder: Vertical + Entity: + Id: 31f3c087-93d0-447a-9a01-9ed5a496d313 + Name: PlatformRocks1 (6) + Components: + 1651bba9aeb3a47a09b36fa078093f26: !TransformComponent + Id: f4942e58-5171-4d57-abd1-6d3fd20e5353 + Position*: {X: -3.76838779, Y: -1.32146323, Z: -36.3767} + Rotation*: {X: 0.0, Y: 0.301600248, Z: 0.0, W: 0.953434467} + Scale*: {X: 2.0, Y: 1.0, Z: 2.0} + Children: {} + c31be1e87de87749efbb223612f277b6: !ModelComponent + Id: e957e76c-5bc3-46d7-8c7d-f0d219333fe0 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: 6d67b905-370e-43b2-a66c-ad0ac6e4ba70 + InstanceId: 1cd090b6-47d6-40b2-b686-1d3f7b36a2f5 + - Folder: Vertical + Entity: + Id: 37eadf73-f981-4db8-9392-8a51f9658e7f + Name: PlatformRocks1 (11) + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: 97fa3a14-11e7-4277-9a94-308196dad237 + Position*: {X: -14.6057024, Y: -3.306507, Z: -38.2551956} + Rotation*: {X: 0.0, Y: -0.7618533, Z: 0.0, W: 0.6477496} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: d2ed67be-f428-4a0d-9d62-0875931d2787 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: f49ff062-0417-4cf0-b4dd-c5bd01d0c67b + InstanceId: 1cd090b6-47d6-40b2-b686-1d3f7b36a2f5 + - Folder: Vertical + Entity: + Id: 38e57f95-bba8-42f5-9cd0-b1e3d0123560 + Name: PlatformRocks1 (10) + Components: + 1651bba9aeb3a47a09b36fa078093f26: !TransformComponent + Id: 00e377c7-bdee-4ca3-ab92-a7f240598a63 + Position*: {X: 7.836098, Y: -0.831927061, Z: -26.7677174} + Rotation*: {X: 0.0, Y: -0.193275243, Z: 0.0, W: 0.9811446} + Scale*: {X: 0.8, Y: 0.8, Z: 0.8} + Children: {} + c31be1e87de87749efbb223612f277b6: !ModelComponent + Id: 31fbb0b0-be80-4ef5-812c-c2973a6e5906 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: 776bc95b-94e3-453e-8ad2-ffe1c0040efd + InstanceId: be480e90-515a-407c-b1d5-b3b599f00068 + - Folder: Vertical + Entity: + Id: 39f91b46-05b0-4195-a5e3-4b0829723114 + Name: PlatformRocks2 (12) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: 86436c77-d2b2-46c8-bbe6-b5fcd4717603 + Position*: {X: -6.65006733, Y: -2.494851, Z: -49.8159561} + Rotation: {X: 0.0, Y: 0.894592345, Z: 0.0, W: 0.4468831} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: b5e06dab-66dd-49ea-812a-87745ef90b37 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: 7c8e5cc8-729d-4e03-b0d0-a9a68d4dc7f7 + InstanceId: 9a09b396-e19b-4138-924b-abc404b165f8 + - Folder: Vertical + Entity: + Id: 3b41e1ba-9612-4123-9da4-92f012afbafa + Name: PlatformRocks2 (12) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: 1efdcdba-0600-485c-a533-e15bd6787f70 + Position*: {X: 27.83737, Y: -2.40790915, Z: -37.49788} + Rotation*: {X: 0.0, Y: 0.9765998, Z: 0.0, W: 0.215064749} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: 04fba35f-211e-4f6a-9f15-6d544ffe26e8 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: 7c8e5cc8-729d-4e03-b0d0-a9a68d4dc7f7 + InstanceId: 1cd090b6-47d6-40b2-b686-1d3f7b36a2f5 + - Folder: Vertical + Entity: + Id: 3ce04051-a299-4a4d-9f0a-02be1154dea4 + Name: PlatformRocks1 (13) + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: 4d1bb8f9-bafa-4dd4-9fcd-0ce7575c64ff + Position*: {X: -3.39031124, Y: -2.869439, Z: -50.05829} + Rotation: {X: 0.0, Y: -0.621628761, Z: 0.0, W: 0.783311963} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: 87936424-e4ba-47d1-ac79-4ae173fed156 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: c391b670-d56d-43e9-8a93-2f5e59748586 + InstanceId: 052a0535-8ec3-4521-8bbb-5eab1ce63a21 + - Folder: Vertical + Entity: + Id: 42396577-456a-4441-95ab-4fd3c3dadeb5 + Name: PlatformRocks1 (5) + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: 6b2d0006-2564-437e-a622-0618fc8a6769 + Position*: {X: -6.76207256, Y: -3.306507, Z: -37.3799973} + Rotation*: {X: 0.0, Y: -0.11387372, Z: 0.0, W: -0.9934952} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: daf57bbb-286a-49ae-bcc3-81f3dbbf52d3 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: 8a1eb40a-7fa4-4c1a-b247-855b912fee1f + InstanceId: 1cd090b6-47d6-40b2-b686-1d3f7b36a2f5 + - Folder: Vertical + Entity: + Id: 4283db79-48dd-4750-a80f-72549626bc18 + Name: PlatformRocks1 (9) + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: 7080951b-82c7-4958-b2e9-d8a6d1a36be2 + Position*: {X: -15.8598642, Y: -3.18555117, Z: -47.1107635} + Rotation: {X: 0.0, Y: -0.2386237, Z: 0.0, W: 0.9711121} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: 14af8c70-3c85-497f-955b-43ee48ef5c7f + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: 0a43c427-a25c-438e-ad08-44cb03b6c8aa + InstanceId: 1cd090b6-47d6-40b2-b686-1d3f7b36a2f5 + - Folder: Vertical + Entity: + Id: 44eb2d16-5437-4f0c-8da5-fb163d2c3b01 + Name: PlatformRocks2 (11) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: ac41e4b0-2fa2-4b41-af21-5035a567b0ee + Position*: {X: 0.604706764, Y: -3.02234364, Z: -49.7901} + Rotation: {X: 0.0, Y: 0.7596207, Z: 0.0, W: 0.6503663} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: 02095c94-cd43-4633-b443-50e624634a07 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: abeba8d8-a87e-48a2-82c8-9c86bf803577 + InstanceId: 26cbfd4a-72d6-4f45-89dd-395d52c5e796 + - Folder: Vertical + Entity: + Id: 4613f4ce-678a-4cc9-a0bc-77ae65d72e3d + Name: PlatformRocks1 (10) + Components: + 1651bba9aeb3a47a09b36fa078093f26: !TransformComponent + Id: b2ebbfc3-b6a5-466f-82f3-b81ddeb7e2f8 + Position*: {X: 5.933956, Y: -2.77189445, Z: -26.5461731} + Rotation: {X: 0.0, Y: 0.838257432, Z: 0.0, W: 0.545274734} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + c31be1e87de87749efbb223612f277b6: !ModelComponent + Id: a18c5989-ba35-4971-b837-4a20ba71f53c + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: 776bc95b-94e3-453e-8ad2-ffe1c0040efd + InstanceId: 1cd090b6-47d6-40b2-b686-1d3f7b36a2f5 + - Folder: Vertical + Entity: + Id: 480b61ba-1fee-4b10-8ec0-58788550c9e9 + Name: PlatformRocks2 (10) + Components: + d2f30a7d88eeff69a462a2384736cee9: !TransformComponent + Id: 30d13567-e37b-40d8-a6af-cac91cdac8de + Position*: {X: 11.8803911, Y: -3.33082056, Z: -19.25405} + Rotation: {X: 0.0, Y: -0.6292836, Z: 0.0, W: 0.7771758} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d16ca2c04fba1e70e8d3fbb933e6e2f0: !ModelComponent + Id: 6222ae7e-3a59-49f2-bb4f-58af8ca43ba4 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: 36a05741-c745-45ab-b054-9d4ba5eca812 + InstanceId: 1cd090b6-47d6-40b2-b686-1d3f7b36a2f5 + - Folder: Vertical + Entity: + Id: 509fa76e-7f72-48f1-a692-20b426c8ef27 + Name: PlatformRocks2 (4) + Components: + d2f30a7d88eeff69a462a2384736cee9: !TransformComponent + Id: 329a9bbb-9d69-4a6e-9584-27c9234d5c9c + Position*: {X: 13.5314379, Y: -2.635712, Z: -12.0853863} + Rotation: {X: 0.0, Y: -0.6292836, Z: 0.0, W: 0.7771758} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d16ca2c04fba1e70e8d3fbb933e6e2f0: !ModelComponent + Id: 266640d3-27cd-4e52-8760-da3803da91d3 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: 0dc4ecef-ca0e-4d44-b9ef-4eed6c543fd7 + InstanceId: 1cd090b6-47d6-40b2-b686-1d3f7b36a2f5 + - Folder: Vertical + Entity: + Id: 56fd8a13-3510-4331-a86e-a8997532161a + Name: PlatformRocks2 (3) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: 4eb8f786-f6b2-4a3b-b1ce-164b9ee1f206 + Position*: {X: 32.8694878, Y: -1.77381039, Z: -17.3109779} + Rotation*: {X: 0.0, Y: 0.8308568, Z: 0.0, W: 0.556486249} + Scale*: {X: 0.7, Y: 0.8, Z: 0.9} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: c633e532-613d-4b1c-8f73-6e19e79f40ff + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: f51edc0f-a192-46d1-a3bf-19ca60b636c2 + InstanceId: 1cd090b6-47d6-40b2-b686-1d3f7b36a2f5 + - Folder: Vertical + Entity: + Id: 57522b5f-919d-4074-8f1b-58e194cf1183 + Name: PlatformRocks1 (12) + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: 542d6c37-5215-46da-8719-2ac8a251a396 + Position*: {X: 19.4948215, Y: -2.869439, Z: -49.71544} + Rotation*: {X: 0.0, Y: -0.5454658, Z: 0.0, W: -0.8381331} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: 9ca797cd-6830-4294-ad5e-e5ae9b2e4522 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: 2f233c8d-8eed-42db-baa4-02b307876518 + InstanceId: 32db0f12-fe3d-48b8-b191-1888cd457e83 + - Folder: Vertical + Entity: + Id: 5e5d8ab8-4bc7-4215-88b9-404238ffac54 + Name: PlatformRocks1 + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: f60707c8-b9dc-4b95-b49b-f65d9087eb4b + Position*: {X: 30.4880924, Y: -2.642834, Z: -32.0160446} + Rotation: {X: 0.0, Y: -0.372084469, Z: 0.0, W: 0.9281989} + Scale*: {X: 2.0, Y: 1.6, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: bd081955-6a9e-4238-89ed-09591f740dbb + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: 952136ae-adcb-44e2-a1d8-52dea6aea30e + InstanceId: 2801be3d-3132-4a33-b334-1f33a84fed0a + - Folder: Vertical + Entity: + Id: 5f985e6b-c759-4f98-8d17-51e986a49348 + Name: PlatformRocks2 (8) + Components: + d2f30a7d88eeff69a462a2384736cee9: !TransformComponent + Id: 0cd897cf-6f16-4ae7-9980-13bac46027d3 + Position*: {X: 9.045102, Y: -2.726308, Z: -24.7992115} + Rotation*: {X: 0.0, Y: -0.8934238, Z: 0.0, W: -0.449214876} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d16ca2c04fba1e70e8d3fbb933e6e2f0: !ModelComponent + Id: 961b3c15-ea92-45b9-9eeb-1aeb9f867064 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: ef604cfc-4567-414b-96ce-9e5e51065456 + InstanceId: 1cd090b6-47d6-40b2-b686-1d3f7b36a2f5 + - Folder: Vertical + Entity: + Id: 642176df-9ac7-473d-80a8-38eb82c4f6ae + Name: PlatformRocks1 (14) + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: eedc61ef-a9d1-41ee-a050-9d76247b1fb2 + Position*: {X: 29.4348049, Y: -4.18489933, Z: -7.50182962} + Rotation*: {X: 0.0, Y: 0.995497167, Z: 0.0, W: -0.09479168} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: dca37198-ac93-494f-96cc-7471941685bf + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: 290d0ce0-dfce-4f05-a938-5cc5c6e8b437 + InstanceId: ddc72ff1-ea6c-4e67-8f5f-8acb8294bd79 + - Folder: Vertical + Entity: + Id: 735b3164-80c1-4b25-9a1a-84bebe9ab1e1 + Name: PlatformRocks2 (13) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: 13d32cac-8aaa-4657-8d57-899407bf5603 + Position*: {X: 30.6239719, Y: -3.169036, Z: -25.4331455} + Rotation: {X: 0.0, Y: -0.245246142, Z: 0.0, W: 0.969460845} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: 3adacdeb-70cf-424c-8b8a-f45fe4cc2a2c + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: e1ded3bb-c9bd-43f8-8da8-d12bdca1871e + InstanceId: 1cd090b6-47d6-40b2-b686-1d3f7b36a2f5 + - Folder: Vertical + Entity: + Id: 74049817-548d-4c03-a06b-e0124e2b11b5 + Name: PlatformRocks1 (14) + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: fed31da2-d567-4f36-9b41-a1aeb9dfaee7 + Position*: {X: 26.97314, Y: -4.106456, Z: -6.19860554} + Rotation*: {X: 0.0, Y: -0.245029882, Z: 0.0, W: -0.9695155} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: 0090aa35-8204-481b-95dd-f33a9789d1cb + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: 290d0ce0-dfce-4f05-a938-5cc5c6e8b437 + InstanceId: 1cd090b6-47d6-40b2-b686-1d3f7b36a2f5 + - Folder: Horizontal + Entity: + Id: 75a0c111-4c27-42bb-9c80-05088069444f + Name: PlatformRocks4 (7) + Components: + dda0421a692758aa3b4880cdd14e5c6a: !TransformComponent + Id: 02109111-e809-451b-bad5-3a20be175371 + Position: {X: 7.905735, Y: -1.57620633, Z: -23.92832} + Rotation: {X: -0.15392381, Y: -0.6901504, Z: -0.690150261, W: -0.15392381} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + ab802be6b5ba2f017ed737c20f97155c: !ModelComponent + Id: 975aa990-9f01-42b8-8177-6a62ae04bcba + Model: 7c51860b-b28e-490f-90d1-b33e9167966f:Environment/Background/Models/PlatformRocks4 + Materials: {} + - Folder: Vertical + Entity: + Id: 7c2d84a8-a951-4977-b666-d56274967e0c + Name: PlatformRocks2 (13) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: db13fa96-f492-44fb-9260-f561b5f28488 + Position*: {X: 30.6239719, Y: -1.56069767, Z: -23.2865429} + Rotation: {X: 0.0, Y: -0.245246142, Z: 0.0, W: 0.969460845} + Scale*: {X: 0.5, Y: 0.5, Z: 0.5} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: 19254736-6a65-4dd6-bd5f-0b45995b1a32 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: e1ded3bb-c9bd-43f8-8da8-d12bdca1871e + InstanceId: f53e42e0-669c-4d71-9785-4cc1d2f19edd + - Folder: Vertical + Entity: + Id: 7f9571b2-9db5-48d3-a30a-9298e049cf3f + Name: PlatformRocks2 (7) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: 1132fc87-7b12-4d1b-910f-8b7d63dda3db + Position*: {X: 8.599807, Y: -2.17536139, Z: -21.7788944} + Rotation: {X: 0.0, Y: 0.42013818, Z: 0.0, W: 0.907460153} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: b5527bfb-8d42-458c-acd7-70a775024ce3 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: 5fc1637f-9598-41fa-8b57-bc97b87b04ec + InstanceId: 1cd090b6-47d6-40b2-b686-1d3f7b36a2f5 + - Folder: Vertical + Entity: + Id: 8c02a1c1-3221-476c-aed5-270a929c8350 + Name: PlatformRocks2 (12) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: 77ada06b-35d4-4d38-a116-93d95b832f6c + Position*: {X: 8.366489, Y: -2.60997987, Z: -50.0166} + Rotation*: {X: 0.0, Y: 0.315713733, Z: 0.0, W: 0.948854446} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: 302aaf57-034b-459c-ba59-d9ec292eb2af + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: 7c8e5cc8-729d-4e03-b0d0-a9a68d4dc7f7 + InstanceId: ed1d6d8c-367d-4897-9e18-83ae333019cc + - Folder: Vertical + Entity: + Id: 977f169a-ed74-4c1f-ad3a-82525c8c0f90 + Name: PlatformRocks2 (13) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: 05bea414-78e9-45f4-8f83-447ec57dbeee + Position*: {X: 33.31624, Y: -3.169036, Z: -11.75441} + Rotation: {X: 0.0, Y: -0.245246142, Z: 0.0, W: 0.969460845} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: bd6cca3b-197c-4725-b8fd-003738439741 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: e1ded3bb-c9bd-43f8-8da8-d12bdca1871e + InstanceId: 8b93fc56-b17a-436e-8f8d-eade4db9e4c8 + - Folder: Horizontal + Entity: + Id: 9dbac7d4-6c89-4bd3-911a-319d1c7f91a2 + Name: PlatformRocks3 (8) + Components: + b1fd7ac2dc026bc717d9914779fcbb86: !TransformComponent + Id: ef12ca31-98e7-4ca0-a29e-8006576b6980 + Position: {X: 12.5166035, Y: -0.189481258, Z: -18.7282085} + Rotation: {X: 0.707103, Y: 0.268845618, Z: -0.002290424, W: 0.654004633} + Scale: {X: 1.3, Y: 1.3, Z: 1.3} + Children: {} + 6d69e52ecad885cb8de3421a50667b9f: !ModelComponent + Id: 761d2062-e67a-40c4-862b-81d5be7a1cfb + Model: 28b26550-fec0-4807-b432-3a95fc153485:Environment/Background/Models/PlatformRocks3 + Materials: {} + - Folder: Vertical + Entity: + Id: a09f9e5e-e7e2-4bad-b57a-17908838a82c + Name: PlatformRocks1 (14) + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: 2f20618b-5c55-453e-86ff-5d6354f81f8c + Position*: {X: 34.68551, Y: -4.18489933, Z: -14.1527338} + Rotation*: {X: 0.0, Y: 0.9627135, Z: 0.0, W: 0.27052334} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: fa4aa9f1-e772-444b-8985-8d5577ba78cc + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: 290d0ce0-dfce-4f05-a938-5cc5c6e8b437 + InstanceId: c822ca93-8183-4989-bf98-d96f5f37c90b + - Folder: Vertical + Entity: + Id: a8578176-5fd7-42ed-a162-93389b0343fe + Name: PlatformRocks1 (12) + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: 85dc01e3-dec6-4725-afe6-cfe0d4567083 + Position*: {X: 4.478265, Y: -3.154423, Z: -49.71544} + Rotation: {X: 0.0, Y: -0.9785403, Z: 0.0, W: -0.206055388} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: 9af3bdf0-6904-484c-a437-3e566e4fa34b + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: 2f233c8d-8eed-42db-baa4-02b307876518 + InstanceId: 193d357b-08df-496c-9afc-369c554362ed + - Folder: Vertical + Entity: + Id: ac500491-acdb-4f06-bf51-8bdea5e43a7a + Name: PlatformRocks1 (12) + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: 8d4c3f75-090e-41ce-b55b-5902a77d2529 + Position*: {X: 22.9380817, Y: -2.869439, Z: -47.74082} + Rotation*: {X: 0.0, Y: -0.999240458, Z: 0.0, W: 0.03896804} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: ca107335-0a42-44d5-9538-a6cc74b36fc6 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: 2f233c8d-8eed-42db-baa4-02b307876518 + InstanceId: 1cd090b6-47d6-40b2-b686-1d3f7b36a2f5 + - Folder: Horizontal + Entity: + Id: b471d681-16cb-4570-bbef-25baa82b19ee + Name: PlatformRocks3 (10) + Components: + b1fd7ac2dc026bc717d9914779fcbb86: !TransformComponent + Id: f8161cb8-13e9-404e-bbf7-e37872a18897 + Position: {X: 6.42671967, Y: -1.84913015, Z: -26.1579952} + Rotation: {X: 0.499913663, Y: -0.499913663, Z: 0.5000863, W: 0.5000863} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6d69e52ecad885cb8de3421a50667b9f: !ModelComponent + Id: 7a86c92e-0ba8-46c5-9152-8b73f8b5a61d + Model: 28b26550-fec0-4807-b432-3a95fc153485:Environment/Background/Models/PlatformRocks3 + Materials: {} + - Folder: Horizontal + Entity: + Id: b9c22700-3793-48fd-b6e2-805e9fc7fba3 + Name: PlatformRocks4 (8) + Components: + dda0421a692758aa3b4880cdd14e5c6a: !TransformComponent + Id: a9ece033-26fa-48af-8080-e1af5e5f7ea1 + Position: {X: 13.33675, Y: -0.601162851, Z: -15.3293142} + Rotation: {X: 0.484417677, Y: 0.5087244, Z: -0.5154217, W: -0.490794778} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + ab802be6b5ba2f017ed737c20f97155c: !ModelComponent + Id: c166934e-92d3-4f67-ae5d-73f10bde40c8 + Model: 7c51860b-b28e-490f-90d1-b33e9167966f:Environment/Background/Models/PlatformRocks4 + Materials: {} + - Folder: Vertical + Entity: + Id: ba0a8a37-82ef-4c20-a288-b0f48e7b97c6 + Name: PlatformRocks2 + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: 950be29f-3f71-4968-81e7-e5db52cfcded + Position*: {X: 31.0980511, Y: -2.68307972, Z: -20.2108612} + Rotation*: {X: 0.0, Y: 0.7252401, Z: 0.0, W: 0.688495934} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: d845610b-2eee-4b29-9156-1b5db5803cfa + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: 850c6890-1ea3-4186-ab10-bd66a37c7104 + InstanceId: 1cd090b6-47d6-40b2-b686-1d3f7b36a2f5 + - Folder: Vertical + Entity: + Id: cf51c686-a3a7-4b02-b4b3-c74cc70bef90 + Name: PlatformRocks1 (13) + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: 6339b9f2-8fb0-4f4c-b4e2-5fb9fb8f5124 + Position*: {X: 11.6262455, Y: -2.869439, Z: -50.05829} + Rotation*: {X: 0.0, Y: -0.9935469, Z: 0.0, W: 0.113421984} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: 025b46d5-8397-4a7c-aafa-87127eb495c2 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: c391b670-d56d-43e9-8a93-2f5e59748586 + InstanceId: ee13eb94-76d9-4c13-b200-819110e81e73 + - Folder: Vertical + Entity: + Id: cf6e62e1-d7f1-472a-8684-557b731c42b8 + Name: PlatformRocks1 (8) + Components: + 1651bba9aeb3a47a09b36fa078093f26: !TransformComponent + Id: 99edad88-da3b-4371-8c29-409b9f3a633d + Position*: {X: 10.7561474, Y: -2.83322144, Z: -21.71265} + Rotation: {X: 0.0, Y: 0.9963041, Z: 0.0, W: -0.08589688} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + c31be1e87de87749efbb223612f277b6: !ModelComponent + Id: ee924d8e-40f1-49be-8572-4055649865f7 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: 602aaeca-e89b-4a99-8578-dfc79622221d + InstanceId: 1cd090b6-47d6-40b2-b686-1d3f7b36a2f5 + - Folder: Vertical + Entity: + Id: d1b1f2ce-da5e-41cf-abee-75ae3765fe53 + Name: PlatformRocks2 (2) + Components: + d2f30a7d88eeff69a462a2384736cee9: !TransformComponent + Id: 58ba8d3a-becb-4ef0-98fd-3b672761f078 + Position*: {X: 13.5678806, Y: -2.69484138, Z: -9.11631} + Rotation: {X: 0.0, Y: -0.6292836, Z: 0.0, W: 0.7771758} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d16ca2c04fba1e70e8d3fbb933e6e2f0: !ModelComponent + Id: d22b9f10-e60e-4366-8166-15d34825277f + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: 9a02e48c-eed8-4576-a4f4-041365c730c9 + InstanceId: 1cd090b6-47d6-40b2-b686-1d3f7b36a2f5 + - Folder: Vertical + Entity: + Id: d1b70b7f-b265-47ae-952e-ffafe8258792 + Name: PlatformRocks2 (9) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: 0ed47acc-c5c5-4f62-8893-35adb0931a8e + Position*: {X: 4.534949, Y: -2.58978367, Z: -30.32524} + Rotation*: {X: 0.0, Y: -0.5864345, Z: 0.0, W: 0.809996665} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: f91e566d-80ee-4c80-83e0-a4782522f545 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: a875aec1-353b-422e-a55d-d6ee382da241 + InstanceId: 1cd090b6-47d6-40b2-b686-1d3f7b36a2f5 + - Folder: Vertical + Entity: + Id: d6c6881c-b1e1-4731-a2cf-8320573be116 + Name: PlatformRocks2 (11) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: 69c1c013-14b8-4f57-a2c5-066902ac9a9a + Position*: {X: 15.6212635, Y: -2.50023222, Z: -49.7901} + Rotation*: {X: 0.0, Y: 0.0763459951, Z: 0.0, W: 0.997081339} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: 91f35d00-59d8-43fa-b448-e201fd28a85b + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: abeba8d8-a87e-48a2-82c8-9c86bf803577 + InstanceId: c07256da-4ff8-428b-bdce-ebbcfc9c7827 + - Folder: Vertical + Entity: + Id: db02f634-8f1a-4bf0-bbd5-87e4ee922790 + Name: PlatformRocks1 (2) + Components: + 1651bba9aeb3a47a09b36fa078093f26: !TransformComponent + Id: 318f463b-ed70-482e-8424-0e588e69ac15 + Position*: {X: 14.6021633, Y: -3.84115744, Z: -6.814848} + Rotation: {X: 0.0, Y: 0.838257432, Z: 0.0, W: 0.545274734} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + c31be1e87de87749efbb223612f277b6: !ModelComponent + Id: 06378972-ed1e-41b6-8dcd-d8fa7db8835c + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: 5a712b06-3e67-4c6a-a284-5cd2bada1a52 + InstanceId: 1cd090b6-47d6-40b2-b686-1d3f7b36a2f5 + - Folder: Vertical + Entity: + Id: f97efb49-3604-4f66-8bc7-ee0ef0dc915f + Name: PlatformRocks2 (10) + Components: + d2f30a7d88eeff69a462a2384736cee9: !TransformComponent + Id: 5d1881f4-b9d8-4cc7-88dc-054c8ebf5ec0 + Position*: {X: 31.0941086, Y: -3.33082056, Z: -9.686689} + Rotation: {X: 0.0, Y: -0.6292836, Z: 0.0, W: 0.7771758} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d16ca2c04fba1e70e8d3fbb933e6e2f0: !ModelComponent + Id: 1f250a70-8b1d-44f9-ac46-16d6fc9092c6 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: 36a05741-c745-45ab-b054-9d4ba5eca812 + InstanceId: 59af93e7-e1d0-48b0-90ae-56248f9223a8 + - Folder: Horizontal + Entity: + Id: f9959596-1b43-486a-919e-f32e40b6fbb3 + Name: PlatformRocks3 (6) + Components: + b1fd7ac2dc026bc717d9914779fcbb86: !TransformComponent + Id: 15ce694a-644e-42e5-8d43-e53c0662daea + Position: {X: 7.320587, Y: -1.77561438, Z: -20.5917683} + Rotation: {X: 0.707106769, Y: 0.0, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6d69e52ecad885cb8de3421a50667b9f: !ModelComponent + Id: 56760b11-4b13-42d7-bc39-de5511acc88d + Model: 28b26550-fec0-4807-b432-3a95fc153485:Environment/Background/Models/PlatformRocks3 + Materials: {} + - Entity: + Id: fc9af7aa-ef94-43c0-a109-25096fb63efe + Name: Level_1-1_PlatformRocks + Components: + 141c547091992fb9e5c70455eac6f450: !TransformComponent + Id: 1c318f98-dd5e-4032-b2d4-b6e67e54b83d + Position: {X: -22.20185, Y: 0.0, Z: 10.0378914} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + ba017b304eabfcef73da8decc64132a9: ref!! 02109111-e809-451b-bad5-3a20be175371 + 45fa9556c4b29a33aad9c8da481a3716: ref!! a9ece033-26fa-48af-8080-e1af5e5f7ea1 + 067fe1d7660c856209acde888a09227d: ref!! ef12ca31-98e7-4ca0-a29e-8006576b6980 + c4c6033071faeca2c8f623f94cd2016a: ref!! f8161cb8-13e9-404e-bbf7-e37872a18897 + 92bf364246639ea59992fe38bb301dd4: ref!! 15ce694a-644e-42e5-8d43-e53c0662daea + ec749fb9d18acb67c4ac33187cd5e02e: ref!! abe4fcb7-6fb8-4aea-81a1-acdaf71b8187 + 5e46bbae9368e1a46bebcd5a3b3f71d3: ref!! f60707c8-b9dc-4b95-b49b-f65d9087eb4b + b1b358a68c64215590521e2c5099f1c4: ref!! fed31da2-d567-4f36-9b41-a1aeb9dfaee7 + edc5071f1fa8f64fb907b90e24d8087f: ref!! eedc61ef-a9d1-41ee-a050-9d76247b1fb2 + 91603a246df363eb6b9a9dbe1a091670: ref!! 2f20618b-5c55-453e-86ff-5d6354f81f8c + 75f46e9f4b373f8f8a132d46b425a804: ref!! 39d0dd57-578e-4f23-a6c1-533b865288b7 + b48497876e50d58e7573d6b13956b4cd: ref!! 6b2d0006-2564-437e-a622-0618fc8a6769 + 07f7e3d54ba3a13f9515f489be61a62f: ref!! 97fa3a14-11e7-4277-9a94-308196dad237 + 5b0a2c65af26c8913348d1124b9dffe0: ref!! 8d4c3f75-090e-41ce-b55b-5902a77d2529 + 72f06f0a6a41c843e099a1a3e30c4ede: ref!! 542d6c37-5215-46da-8719-2ac8a251a396 + 6795999685880395c2e67705066905a8: ref!! 85dc01e3-dec6-4725-afe6-cfe0d4567083 + 1ac39d561984a61dd1a0ecc60d392112: ref!! 637f8ddc-b6a7-4d64-a777-845088a3cf27 + b6db206af83ad7c390a12914f6423990: ref!! 6339b9f2-8fb0-4f4c-b4e2-5fb9fb8f5124 + 32dc5151c9700794c16a4930710e7564: ref!! 4d1bb8f9-bafa-4dd4-9fcd-0ce7575c64ff + a6f6229c8eb7ee5d9a470b42309a5413: ref!! 444d8a9b-8bcc-40e2-8277-6d6b873037ab + a307bae47093252c249227dbdcf17a6e: ref!! 0fcc601e-8b6b-4903-84d9-924cab9c1999 + e208c8b5224e1908c58dece0a59c087e: ref!! 7080951b-82c7-4958-b2e9-d8a6d1a36be2 + 2aabb27dd93b94cbf6da56559925a0ab: ref!! 950be29f-3f71-4968-81e7-e5db52cfcded + 28cbed76bdda500344165dad2e6288fa: ref!! 4eb8f786-f6b2-4a3b-b1ce-164b9ee1f206 + 545dc320a59a69c2672748c7d89055a1: ref!! dff26ab8-9674-4f48-9adc-d345f1d2c7d4 + 4516562a459c819cc4a90da11f5b4c4a: ref!! 13d32cac-8aaa-4657-8d57-899407bf5603 + 3071c50e14cc82b476df3febd75c40ac: ref!! 05bea414-78e9-45f4-8f83-447ec57dbeee + 9b6cda8bc2aee143d45a38a1018c7718: ref!! db13fa96-f492-44fb-9260-f561b5f28488 + 1e84f1785e221bd0eaecc71ad8d47158: ref!! f5c308d0-474c-4036-a98d-8e37b3015fca + c56dbe0fefefc18255355ce880ebe147: ref!! 7f547b99-9a62-40bb-b0ff-8d851a360970 + 5bf2dafd8215431a5d09a2a033ad18b3: ref!! 69c1c013-14b8-4f57-a2c5-066902ac9a9a + cffba4c4f29f90ea3a5873aae45e711c: ref!! ac41e4b0-2fa2-4b41-af21-5035a567b0ee + cbdf34052f0d54df000d0a030ed3a06d: ref!! 90e864a9-9a87-4fc2-ad46-95a82e192ca5 + b17b45c8be65da9407099350b24a6433: ref!! 44b5c8bb-ff54-4844-ba0f-7425db00300f + 686146b298dfa6dfb380bc8cf2080e77: ref!! 1efdcdba-0600-485c-a533-e15bd6787f70 + 1fda1e95b546f1ca02012e07f34c64d3: ref!! 77ada06b-35d4-4d38-a116-93d95b832f6c + bc7bb18f25f53a1c6755019b801deafa: ref!! 86436c77-d2b2-46c8-bbe6-b5fcd4717603 + 03999d25bd2da73824565f21a66bbc63: ref!! 472351f3-f15c-4405-94dd-28f4909f021a + 632d7792176331ed5a8bf06a02bc4395: ref!! 1132fc87-7b12-4d1b-910f-8b7d63dda3db + 8521e5512bc06e38a2a76f0d83d82cc1: ref!! 0ed47acc-c5c5-4f62-8893-35adb0931a8e + eb288ca90f9e3465b32ed6888ff55716: ref!! 318f463b-ed70-482e-8424-0e588e69ac15 + 70cc557c80e1a455cf1f5018e7b48106: ref!! 9c1d9b5f-78de-483d-84a9-9599e73aa1d3 + 9bd98dda1a34b80985e398ce4a7916d3: ref!! f4942e58-5171-4d57-abd1-6d3fd20e5353 + 1cc17369bf4fb204eecd76a839cfca3c: ref!! 99edad88-da3b-4371-8c29-409b9f3a633d + 34cab484f807fd7924026d8d756a0f3c: ref!! b2ebbfc3-b6a5-466f-82f3-b81ddeb7e2f8 + 4e3b86c03c85de64adf0444c1c3a9773: ref!! 00e377c7-bdee-4ca3-ab92-a7f240598a63 + bd46cccc18dea54018c5dec41a897f61: ref!! 58ba8d3a-becb-4ef0-98fd-3b672761f078 + ef7ec116f37de01ed2b604ff40287626: ref!! 329a9bbb-9d69-4a6e-9584-27c9234d5c9c + 20cb89420ef0d8aee8765f36dcafb150: ref!! ed4f5e88-34d1-48cd-a524-6b5797a9a593 + 7a7685010ffbf26c486d28fe9b53aa21: ref!! 0cd897cf-6f16-4ae7-9980-13bac46027d3 + ad32b962c943427978b8e7ad8c74ac7a: ref!! 30d13567-e37b-40d8-a6af-cac91cdac8de + 6254ae472935194cdf061b7c13efc93a: ref!! 5d1881f4-b9d8-4cc7-88dc-054c8ebf5ec0 + - Folder: Vertical + Entity: + Id: fcc8a2dc-cebf-4db4-895e-cd0f4e7ebee1 + Name: PlatformRocks1 (7) + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: 0fcc601e-8b6b-4903-84d9-924cab9c1999 + Position*: {X: -1.43641, Y: -3.302644, Z: -34.73549} + Rotation: {X: 0.0, Y: -0.372084469, Z: 0.0, W: 0.9281989} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: 2447d003-abb3-41d0-8e6d-98f0cee82c91 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: dce5b120-1b3a-4d6f-b98c-08416594d757:Levels/PlatformRocks1 + BasePartId: c8fe73c0-00b3-4c18-92cd-80ac9f2ed4b8 + InstanceId: 1cd090b6-47d6-40b2-b686-1d3f7b36a2f5 diff --git a/Starbreach/Assets/Shared/Levels/MainScene.xkscene b/Starbreach/Assets/Shared/Levels/MainScene.xkscene new file mode 100644 index 0000000..bbbb284 --- /dev/null +++ b/Starbreach/Assets/Shared/Levels/MainScene.xkscene @@ -0,0 +1,2971 @@ +!SceneAsset +Id: 6224d747-48a6-4736-a199-27785b9b7c3b +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +ChildrenIds: + - 22f13931-e267-4a3b-b7ff-a8d0f1411386 + - c2757ab9-1b26-4857-825b-74f39acb6f2d + - c6a4ba7f-4488-4cdd-9373-8980d5139065 + - 9b7e53c9-752a-40f8-ae41-3a5e975085ad + - 9dede2cf-fbc3-4f47-b9e3-31cd2650e3e4 + - c19198c4-4894-4d04-bbad-e31a414da5d5 + - d84c90f8-5819-4d13-9da0-44e63ffe03b2 +Offset: {X: 0.0, Y: 0.0, Z: 0.0} +Hierarchy: + RootParts: + - ref!! d0bea871-d655-4cb9-b0bf-939057a09e31 + - ref!! de64cd52-5373-40ee-9f03-7a674d0896e1 + - ref!! 2d41588f-afac-4c88-9d3d-1949a1641239 + - ref!! f08e2a13-cd82-42cd-bb96-55fac63f8507 + - ref!! 76d95388-fa76-42ff-ab2f-9e49d373ffec + - ref!! cf490d3d-1fab-4318-976c-d7b58085f206 + - ref!! 69dc8b94-acd4-4c73-b722-57b83d8212ba + - ref!! ae28f72b-c17a-4c36-8baf-bd5a1d890dc9 + - ref!! 14a449a1-96f3-4560-984d-0ff26f11cb9f + - ref!! 1b7fda13-88fc-4625-a2e3-d4f381ef3c3e + - ref!! 99691010-3fcd-4212-a659-c5d94e2086e0 + - ref!! 5be1117b-c5e2-4e7e-b8e4-4d2fce40c3d1 + - ref!! 5e776b47-2f98-43f7-945a-e484f8440e0b + - ref!! 0948c832-4b22-4d1f-8fd8-8a10ad965294 + - ref!! 3197947a-5273-4d72-a5aa-b9d472cc82cc + - ref!! 542081b2-8add-4fc5-928e-1763dc88db25 + - ref!! 891a5211-4d25-427e-91ce-849381f19610 + - ref!! 77526c80-d7a7-40c5-abbc-d67a56fcbcf1 + - ref!! 58fc9f7d-a42c-4e13-ada6-0e9703c3d000 + - ref!! d5dd2d79-6297-4cb5-8146-c8224cf93052 + - ref!! 2a5cb840-8a6c-4a97-ad72-bd6619324da0 + - ref!! bb2c4829-c7a2-4947-8d0c-0c06847e09fc + - ref!! 4a9ee193-0eee-48ae-8260-b1e09fd3d5d0 + - ref!! 2b5a8929-e892-4818-8197-e500c712d4ff + - ref!! daea7006-902d-40fc-bf06-83a947288078 + - ref!! 8ac06286-28ef-4bb0-bc27-d367edf8146b + - ref!! 6ccf1d5f-0f1f-4928-856a-d3b6271d20fe + - ref!! 4fba0b3a-ebdb-4e51-a975-a7fe45255fe4 + - ref!! 070aa089-1ecb-457e-b713-698e49315a7d + - ref!! 9cbb0f72-1784-43f0-9d6b-43d89770698a + - ref!! 63ae9b8a-9684-4924-85fe-6dab1b4f255b + - ref!! 522bfb71-ee22-4823-a740-d352520c16ef + Parts: + - Folder: Streaming + Entity: + Id: 070aa089-1ecb-457e-b713-698e49315a7d + Name: Streaming-Platform_1-4 + Components: + 7e096aa4b1d74f76a44c7e7a73b69aa3: !TransformComponent + Id: ba86cab8-5b13-47d9-87d0-bb085a94dc3e + Position: {X: -46.0000038, Y: -30.0, Z: -110.638336} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 2fdd53a4526f7be1d7d05fb24255f5b7: !Starbreach.Core.Streaming,Starbreach + Id: c5911c54-ac82-4164-aff9-67e633a1fe3f + Triggers: ref!! 2d7038e6-c996-45e8-85dd-f270d4ae2361 + Target: !RigidbodyComponent ref!! 7774531d-af2e-4af2-8979-e8752e00aa0c + Offset: {X: -65.5, Y: 0.0, Z: -124.9} + SceneUrl: Levels/Platform_1-4 + f6b9cc20498ba855806fdef610c61968: !StaticColliderComponent + Id: 2d7038e6-c996-45e8-85dd-f270d4ae2361 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: true + ColliderShapes: + 019de756c697c9666be4ca6f21dab0bc: !BoxColliderShapeDesc + Is2D: false + Size: {X: 150.0, Y: 5.0, Z: 70.0} + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + - Folder: Background + Entity: + Id: 0948c832-4b22-4d1f-8fd8-8a10ad965294 + Name: Island2 + Components: + d294c86ee60d1ade38a0c733cad3d1bf: !TransformComponent + Id: de4aec85-91b5-4ea0-99f9-42439a4b2e65 + Position: {X: -62.0, Y: 17.5, Z: -56.5} + Rotation: {X: 0.0, Y: -0.819000661, Z: 0.0, W: 0.5737926} + Scale: {X: 0.8, Y: 0.8, Z: 0.8} + Children: {} + e845f2acf1593a4b6d82154d25cb0b57: !ModelComponent + Id: dbe32039-e52f-4dd7-836f-30f996c3eb55 + Model: 1cce311d-450b-4ec4-bff0-de67b74dfac0:Environment/Background/PrefabModels/Island2 + Materials: {} + - Folder: Background + Entity: + Id: 14a449a1-96f3-4560-984d-0ff26f11cb9f + Name: LargePillar + Components: + f428693ef25396e4bc6da05cb7715914: !TransformComponent + Id: e94bda8b-8305-4a5c-8b9e-c696390cafac + Position: {X: 7.5, Y: 3.0, Z: -3.99999857} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 4b9c0f8a1b9c20b9848d8a4189b935a8: !ModelComponent + Id: e5977a70-48fc-4362-a1b9-c8f6b6d792bf + Model: 258dfd07-ef55-4f3e-a0a8-afc05e4ca37b:Environment/Platforms/Models/LargePillar + Materials: {} + - Folder: Background + Entity: + Id: 1b7fda13-88fc-4625-a2e3-d4f381ef3c3e + Name: LargePillar + Components: + f428693ef25396e4bc6da05cb7715914: !TransformComponent + Id: 7442cfb7-37be-4f28-beb9-7adcff84ba84 + Position: {X: -9.499998, Y: 3.0, Z: -3.99999952} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 4b9c0f8a1b9c20b9848d8a4189b935a8: !ModelComponent + Id: b27b2818-9c52-4825-9492-627cb95123c2 + Model: 258dfd07-ef55-4f3e-a0a8-afc05e4ca37b:Environment/Platforms/Models/LargePillar + Materials: {} + - Entity: + Id: 1b833d51-27d5-46b6-9597-684342e4204e + Name: Bullettrail + Components: + f64803bed11dc146a051377a1f0dd811: !TransformComponent + Id: c8fd91e9-2b31-46ed-befc-8e6b9a5fba2d + Position: {X: 0.0, Y: 0.0, Z: 2.25952277E-07} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + b2e8f21fd1cd9f42a98b5df3285b58c1: !ParticleSystemComponent + Id: e2f26892-19e0-477e-9177-b38f1d55ce1e + Control: + ResetSeconds: 3.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + a69514f7e76a3947a388fab4b17b40e3: + EmitterName: trail + MaxParticlesOverride: 50 + ParticleLifetime: {X: 1.0, Y: 1.0} + SortingPolicy: ByOrder + ShapeBuilder: !ShapeBuilderRibbon + SmoothingPolicy: Best + Segments: 15 + TextureCoordinatePolicy: Stretched + TexCoordsFactor: 1.0 + UVRotate: + FlipX: false + FlipY: false + UVClockwise: Degree0 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 0.5 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 5.0, Y: 5.0, Z: 5.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 2c8e60e4-e070-4124-a1fa-f36cc74de76c:Textures/Bullettrail01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 49a593b25a626a4a9ae6abd1e6d80a01: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 50.0 + Initializers: + 77e504c4ae8c8b40b3e86fc2f2159927: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: false + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.1, Y: 0.4, Z: -0.1} + VelocityMax: {X: 0.1, Y: 0.4, Z: 0.1} + b81a1444d030c3418f4268a112f3495e: !InitialSpawnOrder + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + Updaters: + f5dcc863ffffb248a240f9a87c4986d4: !UpdaterSizeOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + a1df6c8fa767cc4c9256ed22cb99047e: + Key: 0.0 + Value: 0.1 + TangentType: Linear + 069b80707306b341902968bc4a16cff9: + Key: 0.9 + Value: 0.0 + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 4b4b8636d557404f89e237f792878df3: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 5ba51e26ba02014281f963a86f91993d: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.5} + TangentType: Linear + 772e3919fe5c9b41aa10618cb4e9abbc: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + Base: + BasePartAsset: 4d05b073-bd5f-46c4-849e-46acd1cd2224:Character/Character + BasePartId: d027d729-b19d-4341-bd0b-659defb5ec12 + InstanceId: 6bfb1ed5-c718-4bf5-ac6e-80ba51d68961 + - Entity: + Id: 24ac141a-e544-494b-9afe-b948f8b2fed7 + Name: Camera + Components: + 1af1a532aaf4154f902639470b8db618: !TransformComponent + Id: c1e3a6be-a52a-4357-9f3a-de26e64e99bb + Position*: {X: 0.0, Y: 0.0, Z: -10.0} + Rotation: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c83fb70052d47e4ea02a1380260714f1: !CameraComponent + Id: f75d5512-ae2c-457b-b5bb-9ce8900c928b + Name: null + Projection: Perspective + VerticalFieldOfView: 35.0 + Slot*: 361499d7-0cf6-407b-8f59-034e1b80f4b4 + 8be6ce55ffa71c4db44cb06ad2c8f89c: !AudioListenerComponent + Id: a8cb9615-6466-41a0-8b2f-118af32b2347 + Base: + BasePartAsset: 4d05b073-bd5f-46c4-849e-46acd1cd2224:Character/Character + BasePartId: e25b5619-be55-4aa9-bd0b-ffe7f26e6d14 + InstanceId: 6bfb1ed5-c718-4bf5-ac6e-80ba51d68961 + - Entity: + Id: 2a2d33f9-5502-42dc-b0c3-c03de5ca7e0f + Name: Model + Components: + 3b5227cf145ee145a29d7e5c5a0b0b10: !TransformComponent + Id: c9c9cb26-0164-4f55-bef2-4684399bc117 + Position: {X: 0.0, Y: 0.07, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + f0cda019ec4e5a45964644d63727a895: ref!! 8b959378-53ce-4502-b638-4ff702ffe60e + 61c797e51ae27e4ba5ef3d610cdcf3ab: ref!! 78eb09ca-47cb-4d29-b3c3-17204dab3834 + cb0d69e8c07b714c9a09efe316a9cdbd: !ModelComponent + Id: 00aae29c-7640-4f1e-b54e-14519539d97c + Model: 94618d74-a17c-486b-88e0-42a1b6c081f2:Character/Main_character_base + Materials: {} + 7f12c91daf83324d99bf6cf9fabf899b: !AnimationComponent + Id: c963fb63-be45-4abc-bcbd-0aa8dc36e3fe + Animations: + c5152d6b22ee324390ff0c894b2d5171~Additive_Draw_Weapon: 360c3467-1106-4b5f-b974-c2c8ad3edbf3:Character/Animations/Draw_Weapon + 08e23c02928a5e4cb29c077a4d8d9243~Additive_Fire_Weapon: cc8b125e-d3d4-4079-8431-0d58c4ad12d4:Character/Animations/Fire_Weapon + c74612385a717f43ac313b9b2afd75b1~Additive_Holster_Weapon: 3764c274-6c53-4af0-ae60-bdb369f72e37:Character/Animations/Holster_Weapon + bf86399fc4c6f741b09b80d41bd56d5f~Additive_Reload_Weapon: 25e8001e-af72-4363-a733-23e380c4b73f:Character/Animations/Reload_Weapon + 1eaef8d4170c4a4ab5731992a8a60542~Additive_Take_Damage: 0abbfd57-6fff-4ae6-a021-ced7004089a2:Character/Animations/Take_Damage + ce3716909f7f5d4a9950244383070704~Death: 7ff4ed25-a865-40df-9941-c12cfdc9ac45:Character/Animations/Death + f724895c05941a45b53d94e38fd2e269~Idle_Aim: f6e24254-da29-4b29-a983-5f47ee5502d8:Character/Animations/Idle_Aim + 4eb16fdf0b179e42811f70f0d313e8e2~Idle_Low: 2d7ebda1-b120-4688-aa46-fd4044c4893f:Character/Animations/Idle_Low + 7342e979e002cb49a546f7b20480ea72~Run_Aim: 1e7a8c41-9c80-416c-9115-2c82991d9751:Character/Animations/Run_Aim + 4b1c12356bb6fc43923abecc9bf56156~Run_Low: cd91c99b-6b66-48bb-b160-099c51e6f9ba:Character/Animations/Run_Low + 3df19239dc6bc041aa91362d627b896a~Walk_Backward: f71e3505-e1e1-40fb-9dca-270d124180ca:Character/Animations/Walk_Backward + 1267844a831e3f49ace15aa9e0c84763~Walk_Forward: d29a04c8-14f8-48b5-a70c-5a03ac98d80a:Character/Animations/Walk_Forward + b268e0f5feda7b49a426340c6b8da5b9~Walk_Left: 50c5f2cd-682a-4551-919b-6a597e71e55e:Character/Animations/Walk_Left + 9bf1b18631ee0942b2c86f9ea874426f~Walk_Right: 73ad5202-a904-4eab-b8d1-512111a72fa4:Character/Animations/Walk_Right + Base: + BasePartAsset: 4d05b073-bd5f-46c4-849e-46acd1cd2224:Character/Character + BasePartId: 7fcad025-b9ee-49ff-8680-d3047251411a + InstanceId: 6bfb1ed5-c718-4bf5-ac6e-80ba51d68961 + - Folder: Background + Entity: + Id: 2a5cb840-8a6c-4a97-ad72-bd6619324da0 + Name: Island1 + Components: + e57c0bf56cb9a8ce4ec8ab398cf91b1b: !TransformComponent + Id: 9eb43fec-ef23-4e99-a9ad-76df6b0fb6f4 + Position: {X: 9.85289, Y: 14.500001, Z: 48.3434525} + Rotation: {X: 0.0, Y: -0.9539921, Z: 0.0, W: -0.2998318} + Scale: {X: 0.5, Y: 0.5, Z: 0.5} + Children: {} + 96cb4ef44df7e2b167237109559a0471: !ModelComponent + Id: dd5b2bea-7763-437c-b95c-64f1998bdad4 + Model: f9ad343e-0f57-4c41-b3c0-bfc7ed28c9d7:Environment/Background/PrefabModels/Island1 + Materials: {} + - Folder: Streaming + Entity: + Id: 2b5a8929-e892-4818-8197-e500c712d4ff + Name: Streaming-Bridge_1-1_to_1-2 + Components: + 7e096aa4b1d74f76a44c7e7a73b69aa3: !TransformComponent + Id: 11247fc9-4148-41e5-8007-583ed9362ff9 + Position: {X: 0.0, Y: -30.0, Z: -67.91643} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 2fdd53a4526f7be1d7d05fb24255f5b7: !Starbreach.Core.Streaming,Starbreach + Id: 8b90121b-e1dc-4cde-a994-3a5b4d4c5bd2 + Triggers: ref!! 68a841c6-c258-404b-83c7-69a0c42d90e4 + Target: !RigidbodyComponent ref!! 7774531d-af2e-4af2-8979-e8752e00aa0c + Offset: {X: -3.0, Y: 0.0, Z: -26.0} + SceneUrl: Levels/Bridge_1-1_to_1-2 + f6b9cc20498ba855806fdef610c61968: !StaticColliderComponent + Id: 68a841c6-c258-404b-83c7-69a0c42d90e4 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: true + ColliderShapes: + 019de756c697c9666be4ca6f21dab0bc: !BoxColliderShapeDesc + Is2D: false + Size: {X: 40.0, Y: 5.0, Z: 150.0} + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + - Entity: + Id: 2c4fa124-dc09-4a0c-8723-1c7fe5cf826f + Name: MuzzleFlash + Components: + 1e49a7c9b0fb9243a6c8969764c516e5: !TransformComponent + Id: 90cb2582-677b-4a8c-b761-72109d899abe + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: -1.0900429E-07, Y: -1.19709057E-07, Z: -1.30488009E-14, W: 1.0} + Scale: {X: 1.738093, Y: 1.738093, Z: 1.738093} + Children: {} + 9da8f6cb5544c14a87c630b9fdc7706f: !ParticleSystemComponent + Id: 7ce31019-1bce-4386-9339-236d249b7e23 + Control: + ResetSeconds: 5.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + 16d5d9d86396824d94ceb3d7518fd6c2: + ParticleLifetime: {X: 0.1, Y: 0.15} + SimulationSpace: Local + ShapeBuilder: !ShapeBuilderQuad + SamplerPosition: null + SamplerSize: null + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeTextureColor + Texture: 0455ae16-c507-49ba-8b06-68cd747e0155:Textures/Muzzle_flash_NiX + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: !UVBuilderFlipbook + XDivisions: 3 + YDivisions: 3 + StartingFrame: 0 + AnimationSpeed: 9 + ForceTexCoords: false + Spawners: + 66a3a56abb70e7479895a7a916fa16ac: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.1, Y: 0.2} + Duration: {X: 0.1, Y: 0.2} + SpawnCount: 40.0 + Initializers: + 1c7d1a02bd5f844da871e583baffffcd: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.35, Y: 0.55} + 7f10f8fc21890b4594da108ba71daa71: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: 0.15, Y: 0.0, Z: 0.0} + PositionMax: {X: 0.25, Y: 0.0, Z: 0.0} + Interpolate: false + 28068111562f744daed35a7d7e640782: !Initial3DRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 1001 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: false + RotationQuaternionMin: {X: -0.675590158, Y: 0.0, Z: 0.0, W: 0.7372773} + RotationQuaternionMax: {X: 0.675590158, Y: 0.0, Z: 0.0, W: 0.7372773} + Updaters: {} + 86693d3ede99964b84987adfcb956eae: + ParticleLifetime: {X: 0.1, Y: 0.15} + SimulationSpace: Local + ShapeBuilder: !ShapeBuilderQuad + SamplerPosition: null + SamplerSize: null + SamplerRotation: null + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeTextureColor + Texture: e1f01f3a-44fa-4288-917a-d24692beb01f:Textures/Muzzleflash02 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: null + ForceTexCoords: false + Spawners: + 4cf35d84e2ea7f45a4175790ac406423: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.1, Y: 0.2} + Duration: {X: 0.1, Y: 0.2} + SpawnCount: 30.0 + Initializers: + 223774884ad9bb4693a9ba6d2a6b3436: !Initial3DRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: false + RotationQuaternionMin: {X: 0.0, Y: 0.0, Z: 0.707106769, W: 0.707106769} + RotationQuaternionMax: {X: 0.0, Y: 0.0, Z: 0.707106769, W: 0.707106769} + 6ab62e4e22b91a43a6d44a00f2094231: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.2, Y: 0.35} + f61e0a061a3d714fb1a862463ac46a49: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: 0.04, Y: 0.0, Z: 0.0} + PositionMax: {X: 0.04, Y: 0.0, Z: 0.0} + Interpolate: false + Updaters: {} + Base: + BasePartAsset: 4d05b073-bd5f-46c4-849e-46acd1cd2224:Character/Character + BasePartId: fd5f8eea-c26a-4a30-a046-0c5f7548644e + InstanceId: 6bfb1ed5-c718-4bf5-ac6e-80ba51d68961 + - Folder: Character + Entity: + Id: 2d41588f-afac-4c88-9d3d-1949a1641239 + Name: Character + Components: + 1d8f62a1aa670a409230bb04fa9d6f30: !TransformComponent + Id: fd6b1b39-4963-4ef2-a110-ae81f22aa2cf + Position*: {X: 0.0, Y: 0.75, Z: -1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 3b5227cf145ee145a29d7e5c5a0b0b10: ref!! c9c9cb26-0164-4f55-bef2-4684399bc117 + 42abb466d28c3041868491b8c5a85a3e: ref!! 8fdd509a-b745-4d37-809b-80c8ad656e84 + 59023ce7edbdb849ab031e66690377b1: ref!! 0e46c7f8-aa73-445f-98eb-da0beb089ba2 + 64346bb84885c522484cabc062cd7121: ref!! 7e376182-ec96-4094-a89d-98961b3cd1ab + 97e054717e943d43939af223f7d1612b: !CharacterComponent + Id: c456b1c1-c13c-4274-8c7b-400af7115fb9 + CollisionGroup: CharacterFilter + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + FallSpeed: 10.0 + MaxSlope: {Radians: 0.7853982} + JumpSpeed: 5.0 + Gravity: {X: 0.0, Y: -10.0, Z: 0.0} + ColliderShapes: + 06442cf5914e98cdc0d5c5a4a66e7098: !CapsuleColliderShapeDesc + Length: 1.0 + Radius: 0.5 + LocalOffset: {X: 0.0, Y: 1.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 1f1ad5780ddb344da1491f619b271405: !Starbreach.Camera.CameraController,Starbreach + Id: 560f4c1f-e389-47bb-a1a1-5a32193bcc12 + Camera: ref!! f75d5512-ae2c-457b-b5bb-9ce8900c928b + Pivot: ref!! ebc95b38-8517-428c-95df-98f875f88c34 + Model: ref!! 00aae29c-7640-4f1e-b54e-14519539d97c + SwitchDuration: 0.2 + Distance: + ValueAtRun: 3.5 + ValueAtAim: 1.5 + Fov: + ValueAtRun: 45.0 + ValueAtAim: 40.0 + Pan: + ValueAtRun: {X: 0.0, Y: 1.2} + ValueAtAim: {X: -0.6, Y: 1.4} + Pitch: 20.0 + Yaw*: 180.0 + PitchSpeed: 60.0 + YawSpeed: 180.0 + PitchRange: {X: 0.0, Y: 80.0} + b73787fb7505194fb6bb7884dfe525c6: !Starbreach.Soldier.SoldierController,Starbreach + Id: 99e4e771-f00a-41e3-b515-49cd91705115 + Input: ref!! a74ae755-5d87-49f6-981c-b1abf066fa75 + RunSpeed: 5.5 + WalkSpeed: 2.0 + RotationSpeed: 0.15 + YawSpeedDuringAim: 90.0 + Camera: ref!! f75d5512-ae2c-457b-b5bb-9ce8900c928b + AnimationComponent: ref!! c963fb63-be45-4abc-bcbd-0aa8dc36e3fe + CameraController: ref!! 560f4c1f-e389-47bb-a1a1-5a32193bcc12 + DroneCrosshair: ref!! bef0753b-a740-417a-8f66-555587f6936d + IsEnabled: false + 8e65ac297d16c543a5a492b71971e16b: !Starbreach.Soldier.SoldierAnimation,Starbreach + Id: dd469065-d6b1-42e3-a1d6-91bbedabe7ab + SoldierController: ref!! 99e4e771-f00a-41e3-b515-49cd91705115 + WalkAngleThreshold: {X: 67.5, Y: 112.5} + WalkCrossfadeDuration: 0.2 + Camera: ref!! f75d5512-ae2c-457b-b5bb-9ce8900c928b + AnimationComponent: ref!! c963fb63-be45-4abc-bcbd-0aa8dc36e3fe + fd41bc2ef3810c4e96e95fe891cb6701: !Starbreach.Soldier.SoldierWeapon,Starbreach + Id: 879ebadf-6fc5-4692-a634-dbba3a8d1e4c + Camera: ref!! 560f4c1f-e389-47bb-a1a1-5a32193bcc12 + ShootSource: ref!! 47c13d81-5cf7-42b4-9a61-c8a4c0ce98f7 + BulletPerSeconds: 10.0 + ShootingConeAngle: 2.0 + MaxAmmo: 20 + 368e5ff144e737429ec5da15ea0581d4: !Starbreach.Soldier.SoldierWeaponFireFeedback,Starbreach + Id: af694290-6bdf-4418-92ed-b6003a9e3c35 + ShootSource: ref!! 47c13d81-5cf7-42b4-9a61-c8a4c0ce98f7 + ShootTarget: ref!! f08e2a13-cd82-42cd-bb96-55fac63f8507 + Light: ref!! 30d063a9-af3f-40c7-85e8-cbc51322af71 + ShootTrail: ref!! e2f26892-19e0-477e-9177-b38f1d55ce1e + ShootImpact: ref!! 62509a41-8558-4ad0-bceb-8dac2bb81119 + BulletHole: ref!! 1c091a4e-ff6e-4dfa-b613-f89572e0fcd4 + 285184b573bcad4098cd46eaceaf3dcc: !AudioEmitterComponent + Id: 685b5328-6318-40e7-b2e5-c791aa48fa5c + Sounds: + 601715a995f0144599c48c3c0470eddd~Death: 7f5bdb0e-74d0-4789-b2b5-8bbc918ee2e2:Sounds/Soldier/death + 0704b4103b7cbb4caeb5674b8658a68d~Hit0: b2f2e90c-4bc1-44fb-91ad-eaf2ace40cb6:Sounds/Soldier/take_damage1 + 06134e5f27087f4983cbcad4366d86f9~Hit1: 96a6a59f-dec9-465d-9f01-e426b0eab295:Sounds/Soldier/take_damage2 + c0c39bc33617774c805d8475b8e996a7~Hit2: a9cf4143-d093-440d-98d6-b537d84a4b0b:Sounds/Soldier/take_damage3 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + 95e713431a08e9459528083db5f1662e: !Starbreach.Soldier.SoldierPlayerInput,Starbreach + Id: a74ae755-5d87-49f6-981c-b1abf066fa75 + Priority: -5 + InvertYAxis: false + InvertXAxis: false + MouseSensitivity: 100.0 + KeysLeft: + 2eb15dd13f3192f4f028c215faa9a83f: A + KeysRight: + e27f5c84eed81b1dfd6b162d157996ef: D + KeysUp: + 661d013d80747c2920e7cf51cdf34a15: W + KeysDown: + b11f90973c2acbfa460a4e8579cb3b16: S + KeysAim: {} + KeysShoot: {} + KeysReload: + 8dd7ab233e47a42259a46c2c90d02e13: R + KeysStart: {} + KeysInteract: + 47fc4aad9e33e502d841a6f5b3f6cbf4: E + ControllerIndex: 0 + DeadZone: 0.5 + Base: + BasePartAsset: 4d05b073-bd5f-46c4-849e-46acd1cd2224:Character/Character + BasePartId: 80b424e6-9284-4686-bdab-fd1ad9095382 + InstanceId: 6bfb1ed5-c718-4bf5-ac6e-80ba51d68961 + - Folder: Background + Entity: + Id: 3197947a-5273-4d72-a5aa-b9d472cc82cc + Name: Island1 + Components: + e57c0bf56cb9a8ce4ec8ab398cf91b1b: !TransformComponent + Id: 6ca0d0b8-7ac3-4410-b4ed-1ccddce289e3 + Position: {X: 56.0, Y: 16.5, Z: -106.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 0.5, Y: 0.5, Z: 0.5} + Children: {} + 96cb4ef44df7e2b167237109559a0471: !ModelComponent + Id: 2d05017b-008e-4f16-bd6f-b3b32cbf97a1 + Model: f9ad343e-0f57-4c41-b3c0-bfc7ed28c9d7:Environment/Background/PrefabModels/Island1 + Materials: {} + - Entity: + Id: 47c13d81-5cf7-42b4-9a61-c8a4c0ce98f7 + Name: ShootSource + Components: + f0cda019ec4e5a45964644d63727a895: !TransformComponent + Id: 8b959378-53ce-4502-b638-4ff702ffe60e + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + f64803bed11dc146a051377a1f0dd811: ref!! c8fd91e9-2b31-46ed-befc-8e6b9a5fba2d + 1e49a7c9b0fb9243a6c8969764c516e5: ref!! 90cb2582-677b-4a8c-b761-72109d899abe + f5599b1e4954624db3a69b99d1893a19: ref!! ec43b1d5-d1e0-4ba8-ab27-df76017fd690 + ba979b8c3b12af4384c2fbadd984e7fc: !ModelNodeLinkComponent + Id: a44e8f6d-27fd-4370-a985-e4e85cde275b + Target: null + NodeName: gun_barrel + 8edd11dc81504346b9807aebdc071b05: !AudioEmitterComponent + Id: 1cc37868-91a3-4b80-91a9-266d5ea8c0b4 + Sounds: + c742a725a890b8499b96c27135cbf760~Reload: d9f83c4b-b23e-4673-b6b1-109f0c8f4656:Sounds/Soldier/reload + 513f7c4a2226e446a1d0e20e8b60336b~Shoot0: 59256dc3-bb1f-441e-81e7-acb8f86c9530:Sounds/Soldier/bullet_fire_one_shot1 + 9216d643afcbce44b27e6b56357e5caa~Shoot1: e41eb073-4e7f-4aee-b365-6273e5afb42d:Sounds/Soldier/bullet_fire_one_shot2 + 4e012b6d7c668e4baf616222e37a245a~Shoot2: 6fe0476d-204f-4181-8484-f91741b605ce:Sounds/Soldier/bullet_fire_one_shot3 + 67de5883e712404fad5562ed671b0c76~Shoot3: 4239f814-6ec9-4417-bab9-5829a2f393ab:Sounds/Soldier/bullet_fire_one_shot4 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + Base: + BasePartAsset: 4d05b073-bd5f-46c4-849e-46acd1cd2224:Character/Character + BasePartId: b2fa0b1f-ce9f-49f9-a878-3828dbcbbe8f + InstanceId: 6bfb1ed5-c718-4bf5-ac6e-80ba51d68961 + - Folder: Streaming + Entity: + Id: 4a9ee193-0eee-48ae-8260-b1e09fd3d5d0 + Name: Streaming-Platform_1-1 + Components: + 7e096aa4b1d74f76a44c7e7a73b69aa3: !TransformComponent + Id: ad38ce91-e176-467a-8155-a298f67b96c4 + Position: {X: 0.0, Y: -30.0, Z: -43.8590164} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 2fdd53a4526f7be1d7d05fb24255f5b7: !Starbreach.Core.Streaming,Starbreach + Id: f7af6966-ae27-4dc6-a006-8f146d2f0982 + Triggers: ref!! ea3dd20e-87ee-4b64-950d-536592a7f2e4 + Target: !RigidbodyComponent ref!! 7774531d-af2e-4af2-8979-e8752e00aa0c + Offset: {X: 0.0, Y: 0.0, Z: 0.0} + SceneUrl: Levels/Platform_1-1 + f6b9cc20498ba855806fdef610c61968: !StaticColliderComponent + Id: ea3dd20e-87ee-4b64-950d-536592a7f2e4 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: true + ColliderShapes: + 019de756c697c9666be4ca6f21dab0bc: !BoxColliderShapeDesc + Is2D: false + Size: {X: 40.0, Y: 5.0, Z: 100.0} + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + - Entity: + Id: 4adced8b-e4a4-4135-858e-da446dea71f2 + Name: Point light + Components: + f5599b1e4954624db3a69b99d1893a19: !TransformComponent + Id: ec43b1d5-d1e0-4ba8-ab27-df76017fd690 + Position: {X: 0.2, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 99c736503f4f2542ac643e4ce04a6290: !LightComponent + Id: 30d063a9-af3f-40c7-85e8-cbc51322af71 + Type: !LightPoint + Color: !ColorRgbProvider + Value: {R: 0.98775, G: 0.8226877, B: 0.4136203} + Radius: 3.0 + Shadow: + Size: Small + BiasParameters: {} + Intensity: 10.0 + Base: + BasePartAsset: 4d05b073-bd5f-46c4-849e-46acd1cd2224:Character/Character + BasePartId: 2a599dcd-c782-4f30-b7b2-bf6155c0fe54 + InstanceId: 6bfb1ed5-c718-4bf5-ac6e-80ba51d68961 + - Folder: Streaming + Entity: + Id: 4fba0b3a-ebdb-4e51-a975-a7fe45255fe4 + Name: Streaming-Bridge_1-3_to_1-4 + Components: + 7e096aa4b1d74f76a44c7e7a73b69aa3: !TransformComponent + Id: 54c98d2d-1464-4d3e-9b66-7e7ffe323607 + Position: {X: -40.46754, Y: -30.0, Z: -102.99057} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 2fdd53a4526f7be1d7d05fb24255f5b7: !Starbreach.Core.Streaming,Starbreach + Id: e8712ff6-5b7e-4c56-990a-529f4d2de791 + Triggers: ref!! 4e920324-6a6c-4702-b55d-9201d98c4e21 + Target: !RigidbodyComponent ref!! 7774531d-af2e-4af2-8979-e8752e00aa0c + Offset: {X: -55.0, Y: 0.0, Z: -128.5} + SceneUrl: Levels/Bridge_1-3_to_1-4 + f6b9cc20498ba855806fdef610c61968: !StaticColliderComponent + Id: 4e920324-6a6c-4702-b55d-9201d98c4e21 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: true + ColliderShapes: + 019de756c697c9666be4ca6f21dab0bc: !BoxColliderShapeDesc + Is2D: false + Size: {X: 120.0, Y: 5.0, Z: 80.0} + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + - Entity: + Id: 522bfb71-ee22-4823-a740-d352520c16ef + Name: Profiler + Components: + 1fdd7a6b775e377f70fb3fda706fe69f: !TransformComponent + Id: 8eec9f9c-ce5f-4526-8988-b0449fae5848 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + fba81c60d1ce37c57e9ef35e78a2c47e: !Starbreach.GameProfiler,Starbreach + Id: 7fca1a96-10b4-4173-8083-70b500141517 + Enabled: true + TextColor: {R: 144, G: 238, B: 144, A: 255} + RefreshTime: 750.0 + SortingMode: ByTime + FilteringMode: Fps + ResultPage: 1 + - Folder: Background + Entity: + Id: 542081b2-8add-4fc5-928e-1763dc88db25 + Name: Island1 + Components: + e57c0bf56cb9a8ce4ec8ab398cf91b1b: !TransformComponent + Id: 1a61e96a-c990-47d3-84c5-7c6993b1395e + Position: {X: 46.5, Y: 6.32864857, Z: -32.3306046} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 0.5, Y: 0.5, Z: 0.5} + Children: {} + 96cb4ef44df7e2b167237109559a0471: !ModelComponent + Id: 39f09d28-514a-46e9-b0c7-5911f412919c + Model: f9ad343e-0f57-4c41-b3c0-bfc7ed28c9d7:Environment/Background/PrefabModels/Island1 + Materials: {} + - Folder: Background + Entity: + Id: 58fc9f7d-a42c-4e13-ada6-0e9703c3d000 + Name: Island1 + Components: + e57c0bf56cb9a8ce4ec8ab398cf91b1b: !TransformComponent + Id: 2e02b76a-b501-4558-b454-e30df105f6fd + Position: {X: 60.5108643, Y: 15.5, Z: 12.4227571} + Rotation: {X: 0.0, Y: -0.736311436, Z: 0.0, W: 0.6766428} + Scale: {X: 0.5, Y: 0.5, Z: 0.5} + Children: {} + 96cb4ef44df7e2b167237109559a0471: !ModelComponent + Id: c31c7213-ce20-4480-815a-e2d9841a669b + Model: f9ad343e-0f57-4c41-b3c0-bfc7ed28c9d7:Environment/Background/PrefabModels/Island1 + Materials: {} + - Folder: Background + Entity: + Id: 5be1117b-c5e2-4e7e-b8e4-4d2fce40c3d1 + Name: LargePillar + Components: + f428693ef25396e4bc6da05cb7715914: !TransformComponent + Id: 93a8c9ef-61c6-460f-ab36-7fb057496fa0 + Position: {X: -9.499997, Y: 3.0, Z: -19.5} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 4b9c0f8a1b9c20b9848d8a4189b935a8: !ModelComponent + Id: 5c52cbd8-26fd-4ed2-9636-43b838021173 + Model: 258dfd07-ef55-4f3e-a0a8-afc05e4ca37b:Environment/Platforms/Models/LargePillar + Materials: {} + - Folder: Background + Entity: + Id: 5e776b47-2f98-43f7-945a-e484f8440e0b + Name: FloatingRocksVideo + Components: + a0bcab9b73813d201a671765a481486b: !TransformComponent + Id: 927f090c-7dda-4739-afe2-d949e61e015d + Position: {X: -32.6796761, Y: -7.0, Z: -171.805939} + Rotation: {X: 0.0, Y: -0.6717918, Z: 0.0, W: 0.74074} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + aad26cbe5c0756153fa57a434dcaa08b: !ModelComponent + Id: a2410400-c920-49eb-ae4d-98317989ba0d + Model: 43dc3c3b-ef0d-4784-bb39-91cd6f55373b:Levels/PrefabModels/FloatingRocksVideo + Materials: {} + - Folder: Lighting + Entity: + Id: 63ae9b8a-9684-4924-85fe-6dab1b4f255b + Name: Background + Components: + ffe126978f654e6017fa5596b102fc69: !TransformComponent + Id: 2b5ca694-c3a5-4e98-a164-41b7870a6c32 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 1e0362adee2ef323792f5e6207bb4d0e: !BackgroundComponent + Id: a89ce7a3-0f0f-4acd-8d9a-8e0402666956 + Texture: 47179bd7-ee99-43df-a944-bb572838c0c9:Environment/EnvironmentMap + - Folder: Background + Entity: + Id: 69dc8b94-acd4-4c73-b722-57b83d8212ba + Name: FloatingRocksVideo + Components: + e654aa6e8ebc43d7cb6cf8301d30fa73: !TransformComponent + Id: 7dca34a1-10d6-4dfe-9eae-c4c3034cab6b + Position: {X: -8.05536652, Y: 0.0, Z: -42.51529} + Rotation: {X: 0.0, Y: -0.9980582, Z: 0.0, W: 0.0622883029} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 92769ad79e7dbd46ff0369e66ef000f7: !ModelComponent + Id: 6b28c3c4-ec82-4b6f-a1ba-1dad6a72e7a3 + Model: 43dc3c3b-ef0d-4784-bb39-91cd6f55373b:Levels/PrefabModels/FloatingRocksVideo + Materials: {} + - Entity: + Id: 6b538672-63e0-4e36-9074-81aa2e56f636 + Name: TeleportEmitter + Components: + 6395ef07f550744397dd3081cd4a79cb: !TransformComponent + Id: 197fd3e1-39e2-4f84-8633-4ceb60595293 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6669f00e3e069c40b07ce44ccf962a18: !ParticleSystemComponent + Id: 7b5132b7-ee37-4f46-a748-08b85e25d6cc + Enabled*: false + Control: + ResetSeconds: 3.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + 5040219717fd324093f1886466fda636: + ParticleLifetime: {X: 0.25, Y: 0.25} + DrawPriority: 5 + SortingPolicy: ByDepth + ShapeBuilder: !ShapeBuilderOrientedQuad + SamplerPosition: !ComputeCurveSamplerVector3 + Curve: !ComputeAnimationCurveVector3 + KeyFrames: + d4161c929ac69844a7083d46d80ca72d: + Key: 0.0 + Value: {X: 0.0, Y: -0.5, Z: 0.0} + TangentType: Linear + 9dfb29819652f943904a8794a2962457: + Key: 1.0 + Value: {X: 0.0, Y: 0.5, Z: 0.0} + TangentType: Linear + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + c4d7e1eb2866d8438f0f053da05de0ab: + Key: 2.220446E-16 + Value: 1.5 + TangentType: Linear + 0fbcd9f00ea7e04c812446849ba3c7b6: + Key: 0.05 + Value: 3.0 + TangentType: Linear + 50cbbf6311e2d04b9dd2ba0024c921d3: + Key: 0.5 + Value: 0.5 + TangentType: Linear + d0b72df5fdd2e448960e3267def415be: + Key: 1.0 + Value: 0.0 + TangentType: Linear + ScaleLength: false + LengthFactor: 5.0 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 100.0, Y: 100.0, Z: 100.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 163e7dce-4f33-419a-b03b-c592204a8a65:Textures/LensFlare01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 496e17e43727db46bdcde4f4bcc66dd1: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 1 + Initializers: + e1e472a3c24ac448921ec520f483204b: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.5, Y: 1.0} + 6165852bf4bbc743a07f29d28119d243: !InitialColorSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ColorMin: {R: 0.113725491, G: 0.172549024, B: 1.0, A: 1.0} + ColorMax: {R: 0.113725491, G: 0.172549024, B: 1.0, A: 1.0} + Updaters: {} + f738a7aee0e79e46bb75f702cf0b1691: + ParticleLifetime: {X: 0.5, Y: 1.5} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + e0b302699b821046add506e580a1f10d: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 7d1324b08263c949bc38f15855f48b48: + Key: 1.0 + Value: 0.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 50.0, Y: 50.0, Z: 50.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + aeffcc90d3662940a4aadd87175efcdd: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.1, Y: 0.1} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 50 + Initializers: + de19c0c802943e43b5bc16bf87710585: !InitialVelocityParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: true + ParentName: null + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: true + ParentControlFlag: Group00 + SeedOffset: 0 + ParentVelocityFactor: 0.5 + VelocityMin: {X: -0.2, Y: 0.0, Z: -0.2} + VelocityMax: {X: 0.2, Y: 0.2, Z: 0.2} + fffa6b4f3d3d71419258fec3c9df68f1: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.4 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.05, Y: 0.2} + b8e4f334269e834bae2ca058294c5379: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.1, Y: -1.5, Z: -0.1} + PositionMax: {X: 0.1, Y: 1.5, Z: 0.1} + Interpolate: false + 60a091975d1fcb46815576f1488c9c2e: !InitialColorSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ColorMin: {R: 0.0, G: 0.0235294122, B: 1.0, A: 1.0} + ColorMax: {R: 0.29375, G: 0.3103674, B: 1.0, A: 1.0} + Updaters: + dad1aef5ec8a2149ad5117fb3b07dddf: !UpdaterForceField + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: true + FieldShape: !FieldShapeCylinder + HalfHeight: 1.0 + Radius: 1.0 + DisplayParticleRotation: true + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 1.0 + FalloffStart: 0.1 + StrengthOutside: 0.0 + FalloffEnd: 0.9 + EnergyConservation: 0.5 + ForceDirected: 0.1 + ForceVortex: 0.3 + ForceRepulsive: 0.1 + ForceFixed: {X: 0.0, Y: 0.0, Z: 0.0} + 2367f1689883364ebc569283d9f78125: + ParticleLifetime: {X: 1.0, Y: 1.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 7d7327de46f348448de7aedbf5ad6e1c: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 000497e646e2a546ba4392d0c1b66575: + Key: 0.1 + Value: 2.0 + TangentType: Linear + 37cee8ea5a1f6a40bfbca8f78b33b718: + Key: 1.0 + Value: 3.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 2.0, Y: 2.0, Z: 2.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 91119660-137e-4be0-bcb9-32f8aeee6ca8:Textures/dota + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + f1342f4364f2c64a8e1109743226adda: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 1 + Initializers: {} + Updaters: + 92f14c2b239c804da91f87a452a7fae4: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 69cb6c275bacdc4081de7994e8aeab90: + Key: 0.0 + Value: {R: 0.2, G: 0.5, B: 1.0, A: 1.0} + TangentType: Linear + e2f4b5c3d6f82f41bdb30432bfddf8b1: + Key: 0.1 + Value: {R: 0.200000018, G: 0.5, B: 1.0, A: 0.2} + TangentType: Linear + 25f7523959ba7a4e8bb39921e9b1e993: + Key: 1.0 + Value: {R: 0.2, G: 0.5, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 8e789b11275a364fa866418228030b42: + ParticleLifetime: {X: 1.0, Y: 1.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 6ddde43e984e1a47bf567213c1119a99: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 9b61f57d88bb4a45a8ac0ccbb8005efe: + Key: 1.0 + Value: 0.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 50.0, Y: 50.0, Z: 50.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + eabe55d5cbc7454c836ec6c6ea3fa992: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 30 + Initializers: + 060b688c3079634fb2fcef4eeb738cf7: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.1, Y: -1.5, Z: -0.1} + PositionMax: {X: 0.1, Y: 1.5, Z: 0.1} + Interpolate: false + 458df8842fb51346bd3cd84fa0a3d048: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.1 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.1, Y: 0.5} + 1061bb81f346d14da70b57360377d87a: !InitialColorSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ColorMin: {R: 0.350000024, G: 0.683125, B: 1.0, A: 1.0} + ColorMax: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + 79628854ff680140b85d6011699fe4e7: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.05, Y: 0.0, Z: -0.05} + VelocityMax: {X: 0.05, Y: 0.25, Z: 0.05} + Updaters: {} + 841cf1cc6bea974fb72aeafc1e3b058b: + ParticleLifetime: {X: 0.5, Y: 2.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + cfc8cbfc5f7e80468f4658697a0dccfb: + Key: 0.0 + Value: 0.1 + TangentType: Linear + cec950b71d6b054cb0d52c4463cf843f: + Key: 1.0 + Value: 1.5 + TangentType: Linear + SamplerRotation: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 4f6a5597f95530449174ae84f03e5522: + Key: 0.0 + Value: 0.0 + TangentType: Linear + cf98f41d25d41c4a83ad36e1ec9746a2: + Key: 1.0 + Value: 60.0 + TangentType: Linear + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 20.0, Y: 20.0, Z: 20.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: ca6ebc41-c296-47ba-b009-4ed9429d2844:Textures/Aura01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 79df6107b22e334d8bca6b4960444b27: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 30 + Initializers: + 142e006d8e6b3a4dbbcb1926c73840f8: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.05, Y: 0.0, Z: -0.05} + VelocityMax: {X: 0.05, Y: 0.5, Z: 0.05} + f6eb4c7264821d4ab65350c123ab5be5: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + 46bdcf28870a6b458f932a8575859785: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.2, Y: -0.5, Z: -0.2} + PositionMax: {X: 0.2, Y: 0.5, Z: 0.2} + Interpolate: false + afa421dee27b89458bf03b8615bd730f: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 2.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.25, Y: 1.0} + Updaters: + db7c0011cf236a478829483fa06ce33e: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + e54f18a2ce59fd49ac1c52a0968ca7b5: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + 65d9881cc9902243a3f9561a1d617a34: + Key: 0.25 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.1} + TangentType: Linear + 050e06182d0dc149a97d6eee6edc869d: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 0c6d623373813b429d7c03b96d846da6: !UpdaterForceField + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 2.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: true + FieldShape: !FieldShapeCylinder + HalfHeight: 1.0 + Radius: 1.0 + DisplayParticleRotation: true + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 1.0 + FalloffStart: 0.1 + StrengthOutside: 0.0 + FalloffEnd: 0.9 + EnergyConservation: 0.5 + ForceDirected: 0.1 + ForceVortex: 0.7 + ForceRepulsive: 0.2 + ForceFixed: {X: 0.0, Y: 0.0, Z: 0.0} + d54f5f02b8fb784ca93dc56c42f1d31b: + MaxParticlesOverride: 3 + ParticleLifetime: {X: 0.2, Y: 0.2} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + f0279f2d9cd2c040ae63cfba0a277659: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 6faf63523fcdb14b9969d16a6dc927fa: + Key: 0.25 + Value: 2.0 + TangentType: Linear + ce867259d05680459a58feab8d883b77: + Key: 1.0 + Value: 2.5 + TangentType: Linear + SamplerRotation: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + ac96eaa5f5df674ba0b8864577cbbd22: + Key: 0.0 + Value: 45.0 + TangentType: Linear + ad95a725b3057a459f5521f45bf6a0bd: + Key: 1.0 + Value: 180.0 + TangentType: Linear + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 2.0, Y: 2.0, Z: 2.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 4ae36a31-e5f2-4cab-8143-e10f0ea7ab34:Textures/Ring01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 0a02d7d136d5304db330a2238551a554: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 1 + Initializers: {} + Updaters: + 01cc50267aaa1e4a8643cd7c75973809: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 53f065c2aa4c434aa5ad52c72076d5f4: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + TangentType: Linear + dc113008bd4b374b963d351d8c825d70: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 2b453fc5e8d3854098448c84c5fedb2f: + ParticleLifetime: {X: 0.1, Y: 0.1} + DrawPriority: 5 + SortingPolicy: ByDepth + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + dd02c62a2c326e4e8504fe1dde1b24ce: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 4d38720d6be9b54a96ae79d509d78bb3: + Key: 0.1 + Value: 2.0 + TangentType: Linear + 84c911cf8c60da43abdc6991b06c8822: + Key: 1.0 + Value: 3.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 20.0, Y: 50.0, Z: 100.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 11c110bc69927041a204bf6719fe448a: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 1 + Initializers: {} + Updaters: + 9f087a05a80b7e4b84b338aacdb69423: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 8493449dd2a0c84892c6f2ae1e28433c: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + TangentType: Linear + 28e4be7a18d4684fbc161eb940356754: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 5e86c7f04b616d459bcbeaf756f15754: + ParticleLifetime: {X: 0.2, Y: 1.5} + ShapeBuilder: !ShapeBuilderOrientedQuad + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + df36b147405cec4cb05b05d70ee60e33: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 26e9d6f9d1f9594d9d5954fa232bff57: + Key: 1.0 + Value: 0.0 + TangentType: Linear + ScaleLength: false + LengthFactor: 0.08 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 30.0, Y: 50.0, Z: 100.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 3f6c60d5046c8b418f3d934d53ddcb22: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 100 + Initializers: + 4f9c775831acee4a9995624b1132cfe0: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.2 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.05, Y: 0.2} + db7a69e7ebbf224ebf621a9ab73cba51: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.1, Y: -0.1, Z: -0.1} + VelocityMax: {X: 0.1, Y: 0.0, Z: 0.1} + 4e66b7ed44680943b98d885b771a7640: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: false + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.2, Y: -0.5, Z: -0.2} + PositionMax: {X: 0.2, Y: 0.5, Z: 0.2} + Interpolate: false + Updaters: + 183a71912f9f51488a6e3b0c8b4123ba: !UpdaterSpeedToDirection + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + 96df0b832224fa498c74e725c6dd6145: !UpdaterForceField + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + ScaleUniform: 1.0 + DisplayParticlePosition: true + FieldShape: !FieldShapeSphere + Radius: 1.0 + DisplayParticleRotation: true + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 1.0 + FalloffStart: 0.1 + StrengthOutside: 0.0 + FalloffEnd: 1.0 + EnergyConservation: 0.5 + ForceDirected: 0.5 + ForceVortex: 0.5 + ForceRepulsive: 0.5 + ForceFixed: {X: 0.0, Y: 0.0, Z: 0.0} + 552875fdb9bd534ea1e92b174567f678: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 6177e9905b4c1d458e8d4517a1682c32: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + 7fe9f118193470428f9fa8597d926761: + Key: 0.375415534 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + TangentType: Linear + bd818fedd0f77c44b8859c7a538d39ae: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 205ebee5fda131429afd176bd143ff9a: + ParticleLifetime: {X: 0.2, Y: 0.4} + ShapeBuilder: !ShapeBuilderOrientedQuad + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + f7a0542348699444bfc89d071847bfe3: + Key: 0.0 + Value: 0.0 + TangentType: Linear + 1234bc64e7632348b5b9a2131b99b8aa: + Key: 0.5 + Value: 1.0 + TangentType: Linear + f43779da0bba924aaf069c8e828c9409: + Key: 1.0 + Value: 0.0 + TangentType: Linear + ScaleLength: true + LengthFactor: 1.0 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 20.0, Y: 20.0, Z: 20.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 163e7dce-4f33-419a-b03b-c592204a8a65:Textures/LensFlare01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 3ece173fbb7ff4488c90ebf8c5e9b905: !SpawnerPerSecond + LoopCondition: OneShot + Delay: {X: 0.01, Y: 0.01} + Duration: {X: 0.3, Y: 0.3} + SpawnCount: 50.0 + Initializers: + e6ca323f4ea1b844a1a4ce45f559ebaf: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.5, Y: -1.0, Z: -0.5} + PositionMax: {X: 0.5, Y: 0.0, Z: 0.5} + Interpolate: false + 25bee8304e31464987d2cac60753cbb5: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: 0.0, Y: 4.0, Z: 0.0} + VelocityMax: {X: 0.0, Y: 5.0, Z: 0.0} + 00fef165306cd34da79578a24e931a36: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.4 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.1, Y: 1.0} + Updaters: + 47ce56558958f54b8e175088d1b2dfe6: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + fab43df57f347a4e94ec19e31f78e254: + Key: 0.0 + Value: {R: 0.0, G: 0.0, B: 1.0, A: 1.0} + TangentType: Linear + a13eda9bc54a4f4abbcb0831c2b03997: + Key: 0.5 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + TangentType: Linear + 88570bb570ad7a43a95c2e76575425c5: + Key: 1.0 + Value: {R: 0.0, G: 0.0, B: 1.0, A: 1.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 2dc8d724e8a39f43921e71057609fa5e: !UpdaterSpeedToDirection + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + a965fc946450744ba7fe151d40c653aa: !UpdaterForceField + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 5.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: true + FieldShape: !FieldShapeCylinder + HalfHeight: 1.0 + Radius: 1.0 + DisplayParticleRotation: true + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 1.0 + FalloffStart: 0.1 + StrengthOutside: 0.0 + FalloffEnd: 0.9 + EnergyConservation: 0.5 + ForceDirected: -2.0 + ForceVortex: 0.0 + ForceRepulsive: 0.0 + ForceFixed: {X: 0.0, Y: 0.0, Z: 0.0} + Base: + BasePartAsset: 3a5d76b7-2841-4d50-94a7-6e792a00e320:VFXPrefabs/vfx-Teleport + BasePartId: f9c3492f-998f-4728-a47c-17bdc010143a + InstanceId: 9b97eaec-3535-4433-b402-6562c147ba11 + - Folder: Streaming + Entity: + Id: 6ccf1d5f-0f1f-4928-856a-d3b6271d20fe + Name: Streaming-Platform_1-3 + Components: + 7e096aa4b1d74f76a44c7e7a73b69aa3: !TransformComponent + Id: 0b3160a7-94d1-45c4-bd11-4bd7d3991623 + Position: {X: -24.5, Y: -30.0, Z: -84.1383362} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 2fdd53a4526f7be1d7d05fb24255f5b7: !Starbreach.Core.Streaming,Starbreach + Id: b549d0f3-1475-4f4c-9064-650157e1d8a1 + Triggers: ref!! d2c983a1-87ad-43e1-a199-43a33bf6f778 + Target: !RigidbodyComponent ref!! 7774531d-af2e-4af2-8979-e8752e00aa0c + Offset: {X: 0.0, Y: 0.0, Z: -99.0} + SceneUrl: Levels/Platform_1-3 + f6b9cc20498ba855806fdef610c61968: !StaticColliderComponent + Id: d2c983a1-87ad-43e1-a199-43a33bf6f778 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: true + ColliderShapes: + 019de756c697c9666be4ca6f21dab0bc: !BoxColliderShapeDesc + Is2D: false + Size: {X: 150.0, Y: 5.0, Z: 120.0} + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + - Folder: Character + Entity: + Id: 76d95388-fa76-42ff-ab2f-9e49d373ffec + Name: vfx-Bullettrail + Components: + 488e7cc5ff03914ba45e6388e110e9c2: !TransformComponent + Id: aa439b32-4d0f-40d9-ab8d-cca470a79a05 + Position*: {X: 12.6746531, Y: 0.0, Z: -0.8158401} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + Base: + BasePartAsset: 4d05b073-bd5f-46c4-849e-46acd1cd2224:Character/Character + BasePartId: 63e5bf81-713b-4248-83ff-505497603e25 + InstanceId: 6bfb1ed5-c718-4bf5-ac6e-80ba51d68961 + - Folder: Background + Entity: + Id: 77526c80-d7a7-40c5-abbc-d67a56fcbcf1 + Name: Island1 + Components: + e57c0bf56cb9a8ce4ec8ab398cf91b1b: !TransformComponent + Id: 94389215-e8b8-46d9-a95a-469da9ae6a4b + Position: {X: 45.0, Y: -4.5, Z: -191.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 0.5, Y: 0.5, Z: 0.5} + Children: {} + 96cb4ef44df7e2b167237109559a0471: !ModelComponent + Id: 2779e4c2-6984-4fd1-a3bc-efcb6a664ffe + Model: f9ad343e-0f57-4c41-b3c0-bfc7ed28c9d7:Environment/Background/PrefabModels/Island1 + Materials: {} + - Entity: + Id: 79ca7177-f70a-42d7-9c9a-6017027a3edd + Name: SphereCastOrigin + Components: + 61c797e51ae27e4ba5ef3d610cdcf3ab: !TransformComponent + Id: 78eb09ca-47cb-4d29-b3c3-17204dab3834 + Position: {X: 0.0, Y: 1.23887253, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + Base: + BasePartAsset: 4d05b073-bd5f-46c4-849e-46acd1cd2224:Character/Character + BasePartId: c2d0afcc-14b7-4d96-b96a-cd0f59ca664a + InstanceId: 6bfb1ed5-c718-4bf5-ac6e-80ba51d68961 + - Entity: + Id: 7fb263cd-5745-4bc5-8c26-705bc1b87c60 + Name: vfx-LaserSparks + Components: + 53253064c588b64686e635d70323f202: !TransformComponent + Id: c55394fe-deae-4407-807a-1e19201f24f4 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.3, Y: 1.3, Z: 1.3} + Children: + ff26b404fd96534ba50fff60cdb5128a: ref!! 94d3725b-824b-467f-bbd4-1ae28fa1b4c1 + Base: + BasePartAsset: 4d05b073-bd5f-46c4-849e-46acd1cd2224:Character/Character + BasePartId: f90b0fcb-51bc-40df-acb3-8bbddc560ade + InstanceId: 6bfb1ed5-c718-4bf5-ac6e-80ba51d68961 + - Folder: Background + Entity: + Id: 891a5211-4d25-427e-91ce-849381f19610 + Name: Island1 + Components: + e57c0bf56cb9a8ce4ec8ab398cf91b1b: !TransformComponent + Id: 50ff363f-4128-45bc-bf9c-5f6a1463d992 + Position: {X: -147.0, Y: -4.5, Z: -141.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 0.5, Y: 0.5, Z: 0.5} + Children: {} + 96cb4ef44df7e2b167237109559a0471: !ModelComponent + Id: ac86f575-6db7-41b0-9886-6f565061fe0c + Model: f9ad343e-0f57-4c41-b3c0-bfc7ed28c9d7:Environment/Background/PrefabModels/Island1 + Materials: {} + - Folder: Streaming + Entity: + Id: 8ac06286-28ef-4bb0-bc27-d367edf8146b + Name: Streaming-Bridge_1-2_to_1-3 + Components: + 7e096aa4b1d74f76a44c7e7a73b69aa3: !TransformComponent + Id: 94e52b51-2299-44dc-b304-40b502ba3dfe + Position: {X: -25.0, Y: -30.0, Z: -82.52383} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 2fdd53a4526f7be1d7d05fb24255f5b7: !Starbreach.Core.Streaming,Starbreach + Id: 948191cc-89a4-47f1-8c1b-1f042fd6ad94 + Triggers: ref!! 1507db04-cb50-499b-8012-ab95617a4e42 + Target: !RigidbodyComponent ref!! 7774531d-af2e-4af2-8979-e8752e00aa0c + Offset: {X: -3.0, Y: 0.0, Z: -77.0} + SceneUrl: Levels/Bridge_1-2_to_1-3 + f6b9cc20498ba855806fdef610c61968: !StaticColliderComponent + Id: 1507db04-cb50-499b-8012-ab95617a4e42 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: true + ColliderShapes: + 019de756c697c9666be4ca6f21dab0bc: !BoxColliderShapeDesc + Is2D: false + Size: {X: 150.0, Y: 5.0, Z: 120.0} + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + - Folder: Background + Entity: + Id: 99691010-3fcd-4212-a659-c5d94e2086e0 + Name: LargePillar + Components: + f428693ef25396e4bc6da05cb7715914: !TransformComponent + Id: 4ddc9f0d-94c0-46f1-94a2-b93c635bb469 + Position: {X: 7.500001, Y: 3.0, Z: -19.4999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 4b9c0f8a1b9c20b9848d8a4189b935a8: !ModelComponent + Id: bdbe5d5c-63c3-4c14-a81d-16eccfaa5c6a + Model: 258dfd07-ef55-4f3e-a0a8-afc05e4ca37b:Environment/Platforms/Models/LargePillar + Materials: {} + - Folder: null + Entity: + Id: 9a872e4d-52cf-44ba-8d31-5059a806eccf + Name*: EndTrigger + Components: + 2bd9e5018fb815bd9e0ddf7b6c4f0377: !TransformComponent + Id: 2807992a-5904-4f9c-8725-6601e2ad7673 + Position*: {X: -84.99999, Y: 0.5, Z: -115.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + e634848dcfe88c6992de7a7b585634b4: ref!! 197fd3e1-39e2-4f84-8633-4ceb60595293 + 2a52917f17e18564669f46063c397a81: !Starbreach.Gameplay.PressurePlate,Starbreach + Id: 22e80daf-70ff-4448-b913-0b24e7603e7c + Material1EnabledOff*: null + Material1DisabledOn*: null + Material1DisabledOff*: null + Material1EnabledOn*: null + Material0EnabledOff*: null + Material0DisabledOn*: null + Material0DisabledOff*: null + Material0EnabledOn*: null + Model: null + Trigger: ref!! 96e4ea1f-1957-40cf-973f-d4974b198fb1 + AudioEmitter: null + Enabled: true + Toggle: false + SingleActivation: false + CurrentToggleState: false + TransitionTime: 0.15 + 48a3a1d7ea5c129742126bc8b4d7429c: !Starbreach.Gameplay.PressurePlateTrigger,Starbreach + Id: 96e4ea1f-1957-40cf-973f-d4974b198fb1 + CollisionFilterGroup: CharacterFilter + Trigger: ref!! bbc56b4d-2323-463f-a863-21a2a0fbdc89 + 9c600aa0b00e9640a384d3666fe41f14: !RigidbodyComponent + Id: bbc56b4d-2323-463f-a863-21a2a0fbdc89 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: true + IsKinematic: true + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 4c0292725ab565154826fa81493eec99: !CylinderColliderShapeDesc + Height: 0.4 + Radius*: 2.0 + LocalOffset: {X: 0.0, Y: 0.2, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + a6932a4059e46dc7459b958c79f50336: ~(Deleted) + 03c59a6169956fba8a31fd1f758dc46f: ~(Deleted) + Base: + BasePartAsset: 72f94a89-e47c-42ae-9264-b0c9881e3840:Gameplay/Prefabs/Plate + BasePartId: e4fdb89a-c2a0-4e83-a985-c4e087628455 + InstanceId: 8196eb3d-01d6-412d-a81b-6417b9d48c01 + - Folder: Streaming + Entity: + Id: 9cbb0f72-1784-43f0-9d6b-43d89770698a + Name: SplashScreen-DONTMOVE + Components: + aff88764b7d066d7c51cb770f2d2e9a2: !TransformComponent + Id: 7d00e1b2-fa0d-4fcc-886c-1ab503c1ff31 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 9339bfdba1ab84f1dd26df4785c201cd: ref!! 2807992a-5904-4f9c-8725-6601e2ad7673 + f795b0a07655c5a53f8ae34cc44bb8f0: !Starbreach.Core.SplashScreen,Starbreach + Id: bafdf2c8-0ad1-4256-9ea9-bc9733e4fa05 + Activator: !Starbreach.Gameplay.PressurePlate,Starbreach ref!! 22e80daf-70ff-4448-b913-0b24e7603e7c + Soldier: ref!! 99e4e771-f00a-41e3-b515-49cd91705115 + SoldierModel: ref!! 00aae29c-7640-4f1e-b54e-14519539d97c + StartParticles: null + FinishParticles: ref!! 7b5132b7-ee37-4f46-a748-08b85e25d6cc + be2ad67328906441e91b30bb3cc88294: !UIComponent + Id: 0bb81bb2-9e28-40fe-9748-8a7e86534a10 + Enabled: false + Page: ab479ce2-b1df-4829-920c-c190e1accefa:UI/Splashscreen + Resolution: {X: 1920.0, Y: 1080.0, Z: 1000.0} + Size: {X: 1.0, Y: 1.1, Z: 1.1} + ResolutionStretch: FixedWidthFixedHeight + IsBillboard: false + SnapText: false + RenderGroup: Group1 + - Folder: Background + Entity: + Id: ae28f72b-c17a-4c36-8baf-bd5a1d890dc9 + Name: FloatingRocksVideo + Components: + 05e15afa7b8285ab507749e92903fec0: !TransformComponent + Id: fdb62c9f-266e-4865-9067-4aeec85475bf + Position: {X: -30.50911, Y: 0.0, Z: -133.8054} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + b15a379cf939166446090ab604d200e7: !ModelComponent + Id: 65af9600-5710-4fac-b3ef-2d2193bf2d52 + Model: 43dc3c3b-ef0d-4784-bb39-91cd6f55373b:Levels/PrefabModels/FloatingRocksVideo + Materials: {} + - Folder: Background + Entity: + Id: bb2c4829-c7a2-4947-8d0c-0c06847e09fc + Name: Island2 + Components: + d9512485278bcb28cd4dcef8f2822247: !TransformComponent + Id: 10d6a6be-319b-4f55-a31d-269dba2cbb89 + Position: {X: -60.0, Y: 4.0, Z: -204.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 0.5, Y: 0.5, Z: 0.5} + Children: {} + 82750246f4a16ae5784d728f0941163f: !ModelComponent + Id: 07a64cd6-0d90-4824-99fa-d05a208f78fc + Model: 1cce311d-450b-4ec4-bff0-de67b74dfac0:Environment/Background/PrefabModels/Island2 + Materials: {} + - Entity: + Id: be781402-9fb6-4c84-a207-e9f490f72c55 + Name: StreamingAnchor + Components: + 9050b918bf70fe910dded692bbbc98fe: !TransformComponent + Id: 7e376182-ec96-4094-a89d-98961b3cd1ab + Position: {X: 0.0, Y: -30.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 72ba46d15061cc19b328be6f4d468606: !RigidbodyComponent + Id: 7774531d-af2e-4af2-8979-e8752e00aa0c + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + IsKinematic: true + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + cdbc0f23c85f770e150ab9a0b4ef6c1b: !SphereColliderShapeDesc + Is2D: false + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + - Entity: + Id: bef0753b-a740-417a-8f66-555587f6936d + Name: EnemyCrosshair + Components: + 59023ce7edbdb849ab031e66690377b1: !TransformComponent + Id: 0e46c7f8-aa73-445f-98eb-da0beb089ba2 + Position: {X: 0.0, Y: 1.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + Base: + BasePartAsset: 4d05b073-bd5f-46c4-849e-46acd1cd2224:Character/Character + BasePartId: 2fe741d6-39cd-4b7a-b55f-9560ab7c84ee + InstanceId: 6bfb1ed5-c718-4bf5-ac6e-80ba51d68961 + - Folder: Character + Entity: + Id: cf490d3d-1fab-4318-976c-d7b58085f206 + Name: GroundLevel + Components: + 5b4fef94163150e55325dde3e4ce5899: !TransformComponent + Id: 9a7c38d7-70ea-4cd2-8ee6-fa30fa4b21ed + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + af4b78ac2d55a07e1e9d4b2863a97ba9: !StaticColliderComponent + Id: cd307cd7-eb72-45dc-b369-0aee48f85db8 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + ff8a0c40b935c05721813fc027764f3d: !StaticPlaneColliderShapeDesc + Normal: {X: 0.0, Y: 1.0, Z: 0.0} + Offset: 0.0 + - Folder: Lighting + Entity: + Id: d0bea871-d655-4cb9-b0bf-939057a09e31 + Name: Directional light + Components: + ead26e072bf6675f7608a3d4d6528568: !TransformComponent + Id: ac0da199-44cc-41db-8993-ccb42950f03d + Position: {X: 0.0, Y: 2.0, Z: 0.0} + Rotation: {X: -0.5540323, Y: 0.212012157, Z: 0.1484525, W: 0.7912401} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 9fa0684d34fe1c28f155872b04faa48b: !LightComponent + Id: 8b0f1d89-69c6-48ba-a578-30c74d84a91c + Type: !LightDirectional + Color: !ColorRgbProvider + Value: {R: 1.0, G: 1.0, B: 1.0} + Shadow: + Enabled: true + Filter: !LightShadowMapFilterTypePcf + FilterSize: Filter5x5 + Size: Large + DepthRange: + IsAutomatic: false + ManualMaxDistance: 100.0 + PartitionMode: !LightDirectionalShadowMap.PartitionLogarithmic {} + ComputeTransmittance: false + BiasParameters: {} + Intensity: 5.0 + - Entity: + Id: d572034d-552f-4c74-ba67-8f42e1173346 + Name: BulletHole + Components: + 54ee1d701f5ac045a7c28e344d497057: !TransformComponent + Id: 0f1078d5-ab85-435b-aefa-9540eda3ff60 + Position: {X: -0.0981434, Y: 0.0, Z: 0.5368307} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 60814874cfa3a64a89916d0f963cccd6: !ParticleSystemComponent + Id: 1c091a4e-ff6e-4dfa-b613-f89572e0fcd4 + Control: + ResetSeconds: 5.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + 521c907b72b6834b9d48d92a6bf8e435: + EmitterName: Burns + ParticleLifetime: {X: 4.0, Y: 8.0} + ShapeBuilder: !ShapeBuilderQuad + SamplerPosition: null + SamplerSize: null + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ZOffset: 0.3 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8ab2edfe-0ead-489f-a899-97a8112807f7:Textures/Smoke02 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeColor + Value: {R: 0.0, G: 0.0, B: 0.0, A: 1.0} + UVBuilder: null + ForceTexCoords: false + Spawners: + 9df7798dc9990c428193ecef2e239385: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 100.0 + Initializers: + 7c224fce36d98f44b7c26299c92cba5c: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.5, Y: 0.0, Z: -0.5} + PositionMax: {X: 0.5, Y: 0.0, Z: 0.5} + Interpolate: false + Updaters: {} + baf8b3df9268df43801ec26aa3319b64: + EmitterName: BulletHoles + ParticleLifetime: {X: 8.0, Y: 10.0} + ShapeBuilder: !ShapeBuilderQuad + SamplerPosition: null + SamplerSize: null + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ZOffset: 0.3 + ComputeColor: !ComputeBinaryColor + Operator: Add + LeftChild: !ComputeFloat4 + Value: {X: 0.0, Y: 0.0, Z: 0.0, W: 0.0} + RightChild: !ComputeTextureColor + Texture: 12575e84-8b35-4683-82d3-1f40a6348473:Textures/BulletHole + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: null + ForceTexCoords: false + Spawners: + 803a0da2aad47744906ea363fa84f20a: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 20.0 + Initializers: + 82a8489872a87f43b6cb9fd28a5a4beb: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.35, Y: 0.55} + e45d4ea9945e824898135a8e911ebc47: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.5, Y: 0.0, Z: -0.5} + PositionMax: {X: 0.5, Y: 0.0, Z: 0.5} + Interpolate: false + 62d96e98c4c2d847a37e0816cc022395: !Initial3DRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: false + RotationQuaternionMin: {X: 0.0, Y: -0.6427876, Z: 0.0, W: 0.766044438} + RotationQuaternionMax: {X: 0.0, Y: 0.6427876, Z: 0.0, W: 0.766044438} + Updaters: {} + Base: + BasePartAsset: 4d05b073-bd5f-46c4-849e-46acd1cd2224:Character/Character + BasePartId: 99cbc381-072a-4165-b3dd-2e3ef07b60df + InstanceId: 6bfb1ed5-c718-4bf5-ac6e-80ba51d68961 + - Folder: Background + Entity: + Id: d5dd2d79-6297-4cb5-8146-c8224cf93052 + Name: Island1 + Components: + e57c0bf56cb9a8ce4ec8ab398cf91b1b: !TransformComponent + Id: 4e5cd359-15e8-46ce-8b32-39ddee86fb72 + Position: {X: -41.64711, Y: -1.0, Z: 21.8434525} + Rotation: {X: 0.0, Y: -0.9539921, Z: 0.0, W: -0.2998318} + Scale: {X: 0.5, Y: 0.5, Z: 0.5} + Children: {} + 96cb4ef44df7e2b167237109559a0471: !ModelComponent + Id: 5e245f6a-a80a-4309-be44-35a110317e51 + Model: f9ad343e-0f57-4c41-b3c0-bfc7ed28c9d7:Environment/Background/PrefabModels/Island1 + Materials: {} + - Folder: Streaming + Entity: + Id: daea7006-902d-40fc-bf06-83a947288078 + Name: Streaming-Platform_1-2 + Components: + 7e096aa4b1d74f76a44c7e7a73b69aa3: !TransformComponent + Id: 2eea2f1b-ca05-4951-8ecc-4f5da7737500 + Position: {X: -21.1051159, Y: -30.0, Z: -69.186615} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 2fdd53a4526f7be1d7d05fb24255f5b7: !Starbreach.Core.Streaming,Starbreach + Id: 37e39aaa-681d-407c-a58c-39145bafd0a4 + Triggers: ref!! d5c44102-b14a-44ea-983b-26a81f820d31 + Target: !RigidbodyComponent ref!! 7774531d-af2e-4af2-8979-e8752e00aa0c + Offset: {X: 3.0, Y: 0.0, Z: -46.0} + SceneUrl: Levels/Platform_1-2 + f6b9cc20498ba855806fdef610c61968: !StaticColliderComponent + Id: d5c44102-b14a-44ea-983b-26a81f820d31 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: true + ColliderShapes: + 019de756c697c9666be4ca6f21dab0bc: !BoxColliderShapeDesc + Is2D: false + Size: {X: 80.0, Y: 5.0, Z: 150.0} + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + - Folder: Lighting + Entity: + Id: de64cd52-5373-40ee-9f03-7a674d0896e1 + Name: Skybox + Components: + d73f7cb3b3f9167c70e0f4023b759b91: !TransformComponent + Id: b4b14574-1f9f-4edd-9cc8-2b407e3245ff + Position: {X: 0.0, Y: 2.0, Z: -2.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 18740516686e09cfdbab43b89908f9b9: !LightComponent + Id: 37fc7c14-8f61-406a-8587-44871be41600 + Type: !LightSkybox + Skybox: 355df934-e46b-4e3f-9f99-810585fc1620:Environment/CaptureSkybox + Intensity: 0.75 + - Entity: + Id: e03b9231-b400-4048-944f-6865a60649a8 + Name: Sparks + Components: + ff26b404fd96534ba50fff60cdb5128a: !TransformComponent + Id: 94d3725b-824b-467f-bbd4-1ae28fa1b4c1 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + eac5e46777b7354babea586ef30bd4d1: !ParticleSystemComponent + Id: 62509a41-8558-4ad0-bceb-8dac2bb81119 + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + da465e53965ade4fabe172d1fb19dc30: + EmitterName: sparks + MaxParticlesOverride: 100 + ParticleLifetime: {X: 0.75, Y: 1.0} + ShapeBuilder: !ShapeBuilderOrientedQuad + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 66179a362867ad4fa81c4828ed37b306: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 543edb979345114aaf57da0586b2b1f3: + Key: 0.25 + Value: 0.5 + TangentType: Linear + 48220905d438de4b959e474a415a16ce: + Key: 1.0 + Value: 0.1 + TangentType: Linear + ScaleLength: true + LengthFactor: 5.0 + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 200.0, Y: 30.0, Z: 30.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 91119660-137e-4be0-bcb9-32f8aeee6ca8:Textures/dota + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + bd4c9485a5a8a1428cb47bcb0a7d8628: !SpawnerPerFrame + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 8.0 + Framerate: 60.0 + Initializers: + 2bf8de46251ee442b293ab905c0871d1: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.3 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.05, Y: 0.02} + e9ae5eeccf4333458f3c00f2b2a75054: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.03, Y: -0.03, Z: -0.03} + PositionMax: {X: 0.03, Y: 0.03, Z: 0.03} + Interpolate: false + e3f2dfa8c4b2e14685c4b3aba307172d: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -3.0, Y: 3.0, Z: -3.0} + VelocityMax: {X: 3.0, Y: 4.0, Z: 3.0} + Updaters: + b2b11ca17ffada469874b44e6649cfd4: !UpdaterGravity + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + GravitationalAcceleration: {X: 0.0, Y: -9.80665, Z: 0.0} + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + a79b1f60c1902143b6307dd66abf51d5: !UpdaterSpeedToDirection + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + 1f0893c277cc9944b3dd11dd4a146534: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + caf74a8c447ba4419561e5cf23beb6a1: + Key: 0.0 + Value: {R: 0.1, G: 0.3, B: 1.0, A: 0.1} + TangentType: Linear + c01c3713703bd1419e97bbe94289ab0a: + Key: 1.0 + Value: {R: 0.1, G: 0.3, B: 1.0, A: 0.5} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 0d41855c55cfcd419fb3035290400829: + EmitterName: smoke + MaxParticlesOverride: 20 + ParticleLifetime: {X: 2.0, Y: 4.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: null + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 1.0, Y: 1.0, Z: 1.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: fa1018e4-c74d-4495-9535-134f5a06e4cd:Textures/SMO001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: !UVBuilderFlipbook + XDivisions: 8 + YDivisions: 8 + StartingFrame: 0 + AnimationSpeed: 64 + ForceTexCoords: false + Spawners: + e21904c7fcc8d442ba9483a0d2c949c8: !SpawnerPerFrame + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 1.0 + Framerate: 60.0 + Initializers: + a21e9cb2a8bf8644b6169341be64314f: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: false + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.05, Y: 0.3, Z: -0.05} + VelocityMax: {X: 0.05, Y: 0.4, Z: 0.05} + e4a11e3acc820643ae48224552a9a515: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + e0b8f7c67c6ce9439ba76a1bd6cfa7f0: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.5 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.5, Y: 1.0} + 86147475590605478ba314d672d20660: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.1, Y: 0.0, Z: -0.1} + PositionMax: {X: 0.1, Y: 0.0, Z: 0.1} + Interpolate: false + Updaters: + b17cff875d669f499d203cc83e037c0c: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + d300a7e45c2a724db551167f0e543b0a: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.05} + TangentType: Linear + 7edeaa8dd1cba04b941cea8b0f3a0c00: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 08a5f70ad7c56f4ca2e4f64a3c798053: + EmitterName: light + MaxParticlesOverride: 10 + ParticleLifetime: {X: 0.05, Y: 0.05} + DrawPriority: 5 + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: null + SamplerRotation: null + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 50.0, Y: 30.0, Z: 30.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + e52202fd0b9d664d8ac076bafbd5e60d: !SpawnerPerFrame + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 1.0 + Framerate: 60.0 + Initializers: + cefeaf78276ac545881e1c827aecc458: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: 0.0, Y: 360.0} + Updaters: + d12128e39a11eb4dac43c4ca32b9babf: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + fe6a13211f49d94498b31de2b381881e: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + 8751ea2a3f769648b7a2d7615393278b: + Key: 0.5 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.1} + TangentType: Linear + 4da52f14639c7d448abd17cdf528ee07: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + Base: + BasePartAsset: 4d05b073-bd5f-46c4-849e-46acd1cd2224:Character/Character + BasePartId: a5bc3bd5-1a64-4088-bf7e-111f848d6412 + InstanceId: 6bfb1ed5-c718-4bf5-ac6e-80ba51d68961 + - Entity: + Id: ebc95b38-8517-428c-95df-98f875f88c34 + Name: CameraPivot + Components: + 42abb466d28c3041868491b8c5a85a3e: !TransformComponent + Id: 8fdd509a-b745-4d37-809b-80c8ad656e84 + Position*: {X: -4.22554081E-08, Y: 1.0, Z: -4.22554081E-08} + Rotation*: {X: 5.92349725E-09, Y: -0.9969173, Z: 0.0784591, W: 7.526516E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 1af1a532aaf4154f902639470b8db618: ref!! c1e3a6be-a52a-4357-9f3a-de26e64e99bb + Base: + BasePartAsset: 4d05b073-bd5f-46c4-849e-46acd1cd2224:Character/Character + BasePartId: 3b6c47a1-e66e-4ed2-b810-4849ed0d0d74 + InstanceId: 6bfb1ed5-c718-4bf5-ac6e-80ba51d68961 + - Folder: Character + Entity: + Id: f08e2a13-cd82-42cd-bb96-55fac63f8507 + Name: ShootTarget + Components: + 9f82fa8c6a9e004689bf3b95b90e6b83: !TransformComponent + Id: d919738c-f76e-4a49-be4f-5fba37e31c93 + Position*: {X: 12.9997749, Y: 0.0, Z: -1.930578} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 53253064c588b64686e635d70323f202: ref!! c55394fe-deae-4407-807a-1e19201f24f4 + 54ee1d701f5ac045a7c28e344d497057: ref!! 0f1078d5-ab85-435b-aefa-9540eda3ff60 + 7a701d41ba2cc2408544dcf414f5fbc9: !AudioEmitterComponent + Id: af4bbee7-bc79-4ae7-9239-bf7b06c2227a + Sounds: + 5edad75832438e459c7e84092be17595~Impact0: 7cdb4abf-b948-4f3a-8978-d69473b49a41:Sounds/Soldier/bullet_impact_1 + 418d8db54ba0fa4098387ddf0fd16aae~Impact1: 29858800-765e-4589-b3a3-4ded9910549f:Sounds/Soldier/bullet_impact_2 + 463404e59024814aae76745fefe24170~Impact2: 3612ceb7-4a10-4d18-8b25-f9c216cff945:Sounds/Soldier/bullet_impact_3 + 7e4f118bf9476d49a43969b103aa4eb1~Impact3: 626af2c1-b8d2-44d0-bc4b-d30497b4a23f:Sounds/Soldier/bullet_impact_4 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + Base: + BasePartAsset: 4d05b073-bd5f-46c4-849e-46acd1cd2224:Character/Character + BasePartId: 94af96ef-b9b5-4e5c-b84b-0d72dcc38adf + InstanceId: 6bfb1ed5-c718-4bf5-ac6e-80ba51d68961 diff --git a/Starbreach/Assets/Shared/Levels/PlatformRocks1.xkprefab b/Starbreach/Assets/Shared/Levels/PlatformRocks1.xkprefab new file mode 100644 index 0000000..8b48df4 --- /dev/null +++ b/Starbreach/Assets/Shared/Levels/PlatformRocks1.xkprefab @@ -0,0 +1,667 @@ +!PrefabAsset +Id: dce5b120-1b3a-4d6f-b98c-08416594d757 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 952136ae-adcb-44e2-a1d8-52dea6aea30e + - ref!! 290d0ce0-dfce-4f05-a938-5cc5c6e8b437 + - ref!! 8055f49e-ed5d-4eb7-bd50-23dd48d0628f + - ref!! 8a1eb40a-7fa4-4c1a-b247-855b912fee1f + - ref!! f49ff062-0417-4cf0-b4dd-c5bd01d0c67b + - ref!! 2f233c8d-8eed-42db-baa4-02b307876518 + - ref!! c391b670-d56d-43e9-8a93-2f5e59748586 + - ref!! 80e1b3cd-57ec-4936-bd1d-f4c6506de733 + - ref!! c8fe73c0-00b3-4c18-92cd-80ac9f2ed4b8 + - ref!! 0a43c427-a25c-438e-ad08-44cb03b6c8aa + - ref!! 850c6890-1ea3-4186-ab10-bd66a37c7104 + - ref!! f51edc0f-a192-46d1-a3bf-19ca60b636c2 + - ref!! 1d21ed93-3193-4445-8aca-dd7f84bcdae9 + - ref!! e1ded3bb-c9bd-43f8-8da8-d12bdca1871e + - ref!! 1b0aea3e-e5e7-4658-a83e-fd163605e6e0 + - ref!! abeba8d8-a87e-48a2-82c8-9c86bf803577 + - ref!! 8dea363d-d1d4-4672-82fd-a5085eda7774 + - ref!! 7c8e5cc8-729d-4e03-b0d0-a9a68d4dc7f7 + - ref!! 175c872b-3518-46c8-a2f6-046fb59f7c35 + - ref!! 5fc1637f-9598-41fa-8b57-bc97b87b04ec + - ref!! a875aec1-353b-422e-a55d-d6ee382da241 + - ref!! 5a712b06-3e67-4c6a-a284-5cd2bada1a52 + - ref!! 8145acf0-3993-4390-9a09-a6bcf3dd5de7 + - ref!! 6d67b905-370e-43b2-a66c-ad0ac6e4ba70 + - ref!! 602aaeca-e89b-4a99-8578-dfc79622221d + - ref!! 776bc95b-94e3-453e-8ad2-ffe1c0040efd + - ref!! 9a02e48c-eed8-4576-a4f4-041365c730c9 + - ref!! 0dc4ecef-ca0e-4d44-b9ef-4eed6c543fd7 + - ref!! a403536e-c5ae-4139-8306-ad64d0c0419e + - ref!! ef604cfc-4567-414b-96ce-9e5e51065456 + - ref!! 36a05741-c745-45ab-b054-9d4ba5eca812 + - ref!! 26cf843c-3f82-4678-84e5-33747b9b484b + - ref!! 6f179b6d-f510-4dfe-add3-ba3df61fef30 + Parts: + - Folder: Vertical + Entity: + Id: 0a43c427-a25c-438e-ad08-44cb03b6c8aa + Name: PlatformRocks1 (9) + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: 96bd7eeb-b4b0-42a5-8771-caf42fe67ce3 + Position: {X: -8.471179, Y: -5.36619, Z: -23.2049751} + Rotation: {X: 0.0, Y: -0.2386237, Z: 0.0, W: 0.9711121} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: 0887672e-975d-45a9-98bf-53a2d45bcf5a + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1:Levels/Prefabs/Level_1-1_PlatformRocks + BasePartId: dd2b12bd-5f67-4dd1-aec1-618f8e0ce410 + InstanceId: 0134ac17-ee19-444f-8b14-f6222fa7052c + - Folder: Vertical + Entity: + Id: 0dc4ecef-ca0e-4d44-b9ef-4eed6c543fd7 + Name: PlatformRocks2 (4) + Components: + d2f30a7d88eeff69a462a2384736cee9: !TransformComponent + Id: 2a7d53dc-5a46-48d7-82d7-9ca0d1f4d651 + Position: {X: 8.788324, Y: -4.67764139, Z: -14.0912457} + Rotation: {X: 0.0, Y: -0.6292836, Z: 0.0, W: 0.7771758} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d16ca2c04fba1e70e8d3fbb933e6e2f0: !ModelComponent + Id: b0dc0d36-4e2a-4a2e-8f67-56e4f75c19cf + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1:Levels/Prefabs/Level_1-1_PlatformRocks + BasePartId: e7dab970-3bad-4f54-9224-69f1be7272fc + InstanceId: 0134ac17-ee19-444f-8b14-f6222fa7052c + - Folder: Vertical + Entity: + Id: 175c872b-3518-46c8-a2f6-046fb59f7c35 + Name: PlatformRocks2 (15) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: c5d51426-d611-42a4-84fe-a7cd6144c8aa + Position: {X: -3.28532815, Y: -4.641446, Z: 5.52101326} + Rotation: {X: 0.0, Y: 0.5671285, Z: 0.0, W: 0.8236293} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: 9fdab0b2-460b-4563-9567-90e24fac6ad5 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1:Levels/Prefabs/Level_1-1_PlatformRocks + BasePartId: fa06742c-b45b-464b-bfc1-2da901cfd7d4 + InstanceId: 0134ac17-ee19-444f-8b14-f6222fa7052c + - Folder: Vertical + Entity: + Id: 1b0aea3e-e5e7-4658-a83e-fd163605e6e0 + Name: PlatformRocks2 (14) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: 09ddc8fc-a745-4717-b0fb-d4c3acd0a0c5 + Position: {X: -0.3453523, Y: -4.641446, Z: 5.45715332} + Rotation: {X: 0.0, Y: -0.210367471, Z: 0.0, W: 0.97762233} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: ce093660-fe6b-445d-a642-dcb369d8aa7e + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1:Levels/Prefabs/Level_1-1_PlatformRocks + BasePartId: e1e69d43-6736-426b-8e38-9275670ca567 + InstanceId: 0134ac17-ee19-444f-8b14-f6222fa7052c + - Folder: Vertical + Entity: + Id: 1d21ed93-3193-4445-8aca-dd7f84bcdae9 + Name: PlatformRocks2 (5) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: 64d49a3a-5f53-4358-aa2a-f85ec79f789f + Position: {X: -8.809109, Y: -4.641446, Z: -15.049983} + Rotation: {X: 0.0, Y: 0.367331266, Z: 0.0, W: 0.9300902} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: fe4a3931-7102-4610-837d-118cb1191607 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1:Levels/Prefabs/Level_1-1_PlatformRocks + BasePartId: 166914ee-c972-4d37-9faa-6264f4634ea6 + InstanceId: 0134ac17-ee19-444f-8b14-f6222fa7052c + - Folder: Vertical + Entity: + Id: 26cf843c-3f82-4678-84e5-33747b9b484b + Name: PlatformRocks3 (2) + Components: + abc93c36ff7f22bf4736a260f4c5ff87: !TransformComponent + Id: 4b15568f-baee-4bdf-be00-e4297e360e59 + Position: {X: 3.30032229, Y: -2.77054119, Z: 3.917765} + Rotation: {X: 0.49999997, Y: 0.49999997, Z: -0.49999997, W: 0.49999997} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + 271699a9ddd50282f7aee6ddabf0cf6b: !ModelComponent + Id: 89dc4205-ecda-49c2-85a2-babd6a3ee923 + Model: 28b26550-fec0-4807-b432-3a95fc153485:Environment/Background/Models/PlatformRocks3 + Materials: {} + Base: + BasePartAsset: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1:Levels/Prefabs/Level_1-1_PlatformRocks + BasePartId: 2cc5129e-4c4f-4c67-a0c7-34aa4775ae53 + InstanceId: 0134ac17-ee19-444f-8b14-f6222fa7052c + - Folder: Vertical + Entity: + Id: 290d0ce0-dfce-4f05-a938-5cc5c6e8b437 + Name: PlatformRocks1 (14) + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: 0367d97f-3b3a-4903-87f3-34e21e85aa19 + Position: {X: 2.59996986, Y: -5.33552361, Z: 4.943921} + Rotation: {X: 0.0, Y: -0.998639345, Z: 0.0, W: 0.05214858} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: f4333bf6-1319-4f59-8a85-55e486ef82ad + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1:Levels/Prefabs/Level_1-1_PlatformRocks + BasePartId: 7308c154-68cc-4672-bcd0-ee0a21848512 + InstanceId: 0134ac17-ee19-444f-8b14-f6222fa7052c + - Folder: Vertical + Entity: + Id: 2f233c8d-8eed-42db-baa4-02b307876518 + Name: PlatformRocks1 (12) + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: f48b8f1b-113f-487a-814c-e5775cd49d1a + Position: {X: -8.184768, Y: -5.33552361, Z: -5.618162} + Rotation: {X: 0.0, Y: -0.9785403, Z: 0.0, W: -0.206055388} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: 133a96cd-98a2-460c-aa96-2305e35e79af + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1:Levels/Prefabs/Level_1-1_PlatformRocks + BasePartId: dda9adda-7f6d-4d9f-9b53-679a1233ea66 + InstanceId: 0134ac17-ee19-444f-8b14-f6222fa7052c + - Folder: Vertical + Entity: + Id: 36a05741-c745-45ab-b054-9d4ba5eca812 + Name: PlatformRocks2 (10) + Components: + d2f30a7d88eeff69a462a2384736cee9: !TransformComponent + Id: 61ed057a-7f1e-4197-b6b6-753c91bd2815 + Position: {X: 2.01637173, Y: -4.67764139, Z: -26.9746742} + Rotation: {X: 0.0, Y: -0.6292836, Z: 0.0, W: 0.7771758} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d16ca2c04fba1e70e8d3fbb933e6e2f0: !ModelComponent + Id: 5d11d5f5-6a1b-4f95-8b18-b7ee88fbf1d3 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1:Levels/Prefabs/Level_1-1_PlatformRocks + BasePartId: 62cad650-fd02-4064-8a3a-aecfac2a1d28 + InstanceId: 0134ac17-ee19-444f-8b14-f6222fa7052c + - Folder: Vertical + Entity: + Id: 5a712b06-3e67-4c6a-a284-5cd2bada1a52 + Name: PlatformRocks1 (2) + Components: + 1651bba9aeb3a47a09b36fa078093f26: !TransformComponent + Id: 75d86c88-4a31-405b-b270-1d01375fbadb + Position: {X: 8.667949, Y: -4.917043, Z: -4.923714} + Rotation: {X: 0.0, Y: 0.838257432, Z: 0.0, W: 0.545274734} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + c31be1e87de87749efbb223612f277b6: !ModelComponent + Id: 96f177ac-08c2-404c-9078-94028ff0ba62 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1:Levels/Prefabs/Level_1-1_PlatformRocks + BasePartId: 0aa46795-1cb1-4525-8957-5c232a1ca769 + InstanceId: 0134ac17-ee19-444f-8b14-f6222fa7052c + - Folder: Vertical + Entity: + Id: 5fc1637f-9598-41fa-8b57-bc97b87b04ec + Name: PlatformRocks2 (7) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: 274ed9bf-9816-4e77-bade-34959f022355 + Position: {X: 8.599807, Y: -4.641446, Z: -21.7788944} + Rotation: {X: 0.0, Y: 0.42013818, Z: 0.0, W: 0.907460153} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: ca40f551-ab1b-4eca-be73-e1415b2e6b84 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1:Levels/Prefabs/Level_1-1_PlatformRocks + BasePartId: 4e57d2d6-d370-4f60-94f1-31691fdfff70 + InstanceId: 0134ac17-ee19-444f-8b14-f6222fa7052c + - Folder: Vertical + Entity: + Id: 602aaeca-e89b-4a99-8578-dfc79622221d + Name: PlatformRocks1 (8) + Components: + 1651bba9aeb3a47a09b36fa078093f26: !TransformComponent + Id: aaf717d8-45e5-4066-9864-cb57933bda85 + Position: {X: 8.838218, Y: -4.917043, Z: -27.48044} + Rotation: {X: 0.0, Y: 0.9963041, Z: 0.0, W: -0.08589688} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + c31be1e87de87749efbb223612f277b6: !ModelComponent + Id: 1d98911a-3243-4a03-9339-eedc40720e3a + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1:Levels/Prefabs/Level_1-1_PlatformRocks + BasePartId: d16658a6-b274-4c53-9ac9-3e2fcd7f7d81 + InstanceId: 0134ac17-ee19-444f-8b14-f6222fa7052c + - Folder: Vertical + Entity: + Id: 6d67b905-370e-43b2-a66c-ad0ac6e4ba70 + Name: PlatformRocks1 (6) + Components: + 1651bba9aeb3a47a09b36fa078093f26: !TransformComponent + Id: fffd7ab4-b7d9-42f4-ae11-f4f392c76500 + Position: {X: -5.09498739, Y: -4.917043, Z: -26.8496552} + Rotation: {X: 0.0, Y: 0.838257432, Z: 0.0, W: 0.545274734} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + c31be1e87de87749efbb223612f277b6: !ModelComponent + Id: f1e77c20-f50a-4e7d-9f68-8e57b53a0957 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1:Levels/Prefabs/Level_1-1_PlatformRocks + BasePartId: c9aba1e7-d184-4e69-9b66-1c67d3a9ee77 + InstanceId: 0134ac17-ee19-444f-8b14-f6222fa7052c + - Folder: Vertical + Entity: + Id: 6f179b6d-f510-4dfe-add3-ba3df61fef30 + Name: PlatformRocks3 (3) + Components: + abc93c36ff7f22bf4736a260f4c5ff87: !TransformComponent + Id: eaa4f055-733e-4f7f-845f-b45c7b329518 + Position: {X: -2.06136012, Y: -2.770542, Z: 3.917765} + Rotation: {X: 0.49999997, Y: 0.49999997, Z: -0.49999997, W: 0.49999997} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + 271699a9ddd50282f7aee6ddabf0cf6b: !ModelComponent + Id: 4ecfa08e-e798-4ce6-992b-36e181ff07ba + Model: 28b26550-fec0-4807-b432-3a95fc153485:Environment/Background/Models/PlatformRocks3 + Materials: {} + Base: + BasePartAsset: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1:Levels/Prefabs/Level_1-1_PlatformRocks + BasePartId: ac13c6a8-af16-491f-b2f3-06fa4dcbe6b9 + InstanceId: 0134ac17-ee19-444f-8b14-f6222fa7052c + - Folder: Vertical + Entity: + Id: 776bc95b-94e3-453e-8ad2-ffe1c0040efd + Name: PlatformRocks1 (10) + Components: + 1651bba9aeb3a47a09b36fa078093f26: !TransformComponent + Id: 52ff299b-acd7-403f-9522-8771ddc3bbfe + Position: {X: 5.933956, Y: -4.917043, Z: -26.5461731} + Rotation: {X: 0.0, Y: 0.838257432, Z: 0.0, W: 0.545274734} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + c31be1e87de87749efbb223612f277b6: !ModelComponent + Id: e92a10da-82ab-409c-9587-baae4abe83d8 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1:Levels/Prefabs/Level_1-1_PlatformRocks + BasePartId: 96b047a3-5343-4ca3-b3a1-d438ba56e6a3 + InstanceId: 0134ac17-ee19-444f-8b14-f6222fa7052c + - Folder: Vertical + Entity: + Id: 7c8e5cc8-729d-4e03-b0d0-a9a68d4dc7f7 + Name: PlatformRocks2 (12) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: 5eee821b-78e9-4c2b-bebb-560b74dc0796 + Position: {X: -8.265016, Y: -4.641446, Z: 5.51033} + Rotation: {X: 0.0, Y: 0.894592345, Z: 0.0, W: 0.4468831} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: ca0ab874-a8e2-4125-adc8-a284ff29bb39 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1:Levels/Prefabs/Level_1-1_PlatformRocks + BasePartId: 1e0b423a-1fc6-4d91-8c56-d0dda2872b7a + InstanceId: 0134ac17-ee19-444f-8b14-f6222fa7052c + - Folder: Vertical + Entity: + Id: 8055f49e-ed5d-4eb7-bd50-23dd48d0628f + Name: PlatformRocks1 (3) + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: 740bd3df-9f65-4fc5-ba2d-7f194aea881b + Position: {X: 8.068466, Y: -5.33552361, Z: -8.656889} + Rotation: {X: 0.0, Y: -0.372084469, Z: 0.0, W: 0.9281989} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: ddd0380e-b3e9-41af-86ef-c68c24395ff0 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1:Levels/Prefabs/Level_1-1_PlatformRocks + BasePartId: 8a1a571d-a97c-4ff0-98bf-d39ad37a02e6 + InstanceId: 0134ac17-ee19-444f-8b14-f6222fa7052c + - Folder: Vertical + Entity: + Id: 80e1b3cd-57ec-4936-bd1d-f4c6506de733 + Name: PlatformRocks1 (15) + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: 95a1ecee-a740-45f0-8529-20423a3877ce + Position: {X: -5.952998, Y: -5.33552361, Z: 4.745269} + Rotation: {X: 0.0, Y: -0.372084469, Z: 0.0, W: 0.9281989} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: 3a31c39e-62bd-4bd8-ad4c-837fcc2acf48 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1:Levels/Prefabs/Level_1-1_PlatformRocks + BasePartId: dd516b87-3bba-4293-99bc-cd48008943d9 + InstanceId: 0134ac17-ee19-444f-8b14-f6222fa7052c + - Folder: Vertical + Entity: + Id: 8145acf0-3993-4390-9a09-a6bcf3dd5de7 + Name: PlatformRocks1 (4) + Components: + 1651bba9aeb3a47a09b36fa078093f26: !TransformComponent + Id: 169a657a-366a-4d2c-9219-f9130b85acdb + Position: {X: 8.933571, Y: -4.917043, Z: -17.4514256} + Rotation: {X: 0.0, Y: -0.27981, Z: 0.0, W: 0.9600554} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + c31be1e87de87749efbb223612f277b6: !ModelComponent + Id: debdc842-3279-4a17-bda5-8e6fad3d7de9 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1:Levels/Prefabs/Level_1-1_PlatformRocks + BasePartId: 601c75f4-5cf9-416d-8a4d-e0eda5939ea1 + InstanceId: 0134ac17-ee19-444f-8b14-f6222fa7052c + - Folder: Vertical + Entity: + Id: 850c6890-1ea3-4186-ab10-bd66a37c7104 + Name: PlatformRocks2 + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: 3b489cd8-2491-4d18-87af-9103bc5cb108 + Position: {X: 8.194585, Y: -4.641446, Z: 1.68188107} + Rotation: {X: 0.0, Y: 0.5671285, Z: 0.0, W: 0.8236293} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: fe86ea14-21e4-481c-a383-8e56473398ce + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1:Levels/Prefabs/Level_1-1_PlatformRocks + BasePartId: 377ffdf0-ea78-464a-85e5-800f08816350 + InstanceId: 0134ac17-ee19-444f-8b14-f6222fa7052c + - Folder: Vertical + Entity: + Id: 8a1eb40a-7fa4-4c1a-b247-855b912fee1f + Name: PlatformRocks1 (5) + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: c291b624-ec20-49b5-af26-aa5460217107 + Position: {X: -8.73216152, Y: -5.33552361, Z: -19.05401} + Rotation: {X: 0.0, Y: -0.8817965, Z: 0.0, W: -0.47163} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: 18c94e3c-ddc7-4bec-b7e2-9671dab42874 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1:Levels/Prefabs/Level_1-1_PlatformRocks + BasePartId: 6e6574a9-828f-4b70-863c-891cca8a3f4b + InstanceId: 0134ac17-ee19-444f-8b14-f6222fa7052c + - Folder: Vertical + Entity: + Id: 8dea363d-d1d4-4672-82fd-a5085eda7774 + Name: PlatformRocks2 (16) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: 5c4fad3b-c1a8-451d-88d8-53244cf5fced + Position: {X: -8.591589, Y: -4.641446, Z: -12.20644} + Rotation: {X: 0.0, Y: 0.7596207, Z: 0.0, W: 0.6503663} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: 525081e7-5bae-4290-9501-698aeb4da118 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1:Levels/Prefabs/Level_1-1_PlatformRocks + BasePartId: 6aedea1b-498c-4004-a223-78ab95e73256 + InstanceId: 0134ac17-ee19-444f-8b14-f6222fa7052c + - Folder: Vertical + Entity: + Id: 952136ae-adcb-44e2-a1d8-52dea6aea30e + Name: PlatformRocks1 + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: 02a48488-b0f9-4ad3-8726-2972a33afa78 + Position: {X: 7.904121, Y: -5.33552361, Z: 3.962504} + Rotation: {X: 0.0, Y: -0.372084469, Z: 0.0, W: 0.9281989} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: 8faaad70-7da9-45e2-ac77-8257436885ee + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1:Levels/Prefabs/Level_1-1_PlatformRocks + BasePartId: 74af9c07-70cf-4690-adcc-702e1bd16e67 + InstanceId: 0134ac17-ee19-444f-8b14-f6222fa7052c + - Folder: Vertical + Entity: + Id: 9a02e48c-eed8-4576-a4f4-041365c730c9 + Name: PlatformRocks2 (2) + Components: + d2f30a7d88eeff69a462a2384736cee9: !TransformComponent + Id: 89f6012c-05f7-4f67-8065-6c62492c9ec5 + Position: {X: 8.623979, Y: -4.67764139, Z: -1.471852} + Rotation: {X: 0.0, Y: -0.6292836, Z: 0.0, W: 0.7771758} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d16ca2c04fba1e70e8d3fbb933e6e2f0: !ModelComponent + Id: 1daca0ef-c4d8-4aae-9954-bf07e249defa + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1:Levels/Prefabs/Level_1-1_PlatformRocks + BasePartId: 5e927946-6e20-40bc-9fb2-cb4fb1879f77 + InstanceId: 0134ac17-ee19-444f-8b14-f6222fa7052c + - Folder: Vertical + Entity: + Id: a403536e-c5ae-4139-8306-ad64d0c0419e + Name: PlatformRocks2 (6) + Components: + d2f30a7d88eeff69a462a2384736cee9: !TransformComponent + Id: 48425134-1af2-4317-bc71-5ca68081d6d8 + Position: {X: -8.354319, Y: -4.67764139, Z: -26.81233} + Rotation: {X: 0.0, Y: -0.6292836, Z: 0.0, W: 0.7771758} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d16ca2c04fba1e70e8d3fbb933e6e2f0: !ModelComponent + Id: 61e5bb2d-c008-47e8-984d-9e0825412930 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1:Levels/Prefabs/Level_1-1_PlatformRocks + BasePartId: d14ee7cb-35ff-41d7-be44-99b3759d91d5 + InstanceId: 0134ac17-ee19-444f-8b14-f6222fa7052c + - Folder: Vertical + Entity: + Id: a875aec1-353b-422e-a55d-d6ee382da241 + Name: PlatformRocks2 (9) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: 3f5c3195-9ea6-4099-9c6c-fd9cae981428 + Position: {X: -1.32431126, Y: -4.641446, Z: -26.8336849} + Rotation: {X: 0.0, Y: 0.5671285, Z: 0.0, W: 0.8236293} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: cf654419-6eec-49d1-875f-a0c03f8fb7a1 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1:Levels/Prefabs/Level_1-1_PlatformRocks + BasePartId: 8b5c788f-bf44-46c7-8fe8-41284bd0d526 + InstanceId: 0134ac17-ee19-444f-8b14-f6222fa7052c + - Folder: Vertical + Entity: + Id: abeba8d8-a87e-48a2-82c8-9c86bf803577 + Name: PlatformRocks2 (11) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: beba234e-5d72-4ec1-b4a7-3c8cbc7786ef + Position: {X: -8.252377, Y: -4.641446, Z: -1.74448407} + Rotation: {X: 0.0, Y: 0.7596207, Z: 0.0, W: 0.6503663} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: 61b80b72-0312-4b8d-ac55-113994ed5f6e + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1:Levels/Prefabs/Level_1-1_PlatformRocks + BasePartId: d7eaa454-f6a4-41f8-8e18-5508365a04a0 + InstanceId: 0134ac17-ee19-444f-8b14-f6222fa7052c + - Folder: Vertical + Entity: + Id: c391b670-d56d-43e9-8a93-2f5e59748586 + Name: PlatformRocks1 (13) + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: 39b9ac3d-62ad-45ce-a487-5c8feb07cb0c + Position: {X: -8.513287, Y: -5.33552361, Z: 2.25101638} + Rotation: {X: 0.0, Y: -0.621628761, Z: 0.0, W: 0.783311963} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: b179b76a-7b12-40a7-b4ac-1ce170dcf33f + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1:Levels/Prefabs/Level_1-1_PlatformRocks + BasePartId: c262a6e7-cd35-4ee5-b4fa-f8b1d7285255 + InstanceId: 0134ac17-ee19-444f-8b14-f6222fa7052c + - Folder: Vertical + Entity: + Id: c8fe73c0-00b3-4c18-92cd-80ac9f2ed4b8 + Name: PlatformRocks1 (7) + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: 42347380-0105-4b9f-b63f-eece6fd18244 + Position: {X: 9.167204, Y: -5.33552361, Z: -19.7566547} + Rotation: {X: 0.0, Y: -0.372084469, Z: 0.0, W: 0.9281989} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: d8256b43-d7a8-4bd6-bd6a-2ff74dac3c0b + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1:Levels/Prefabs/Level_1-1_PlatformRocks + BasePartId: 5798e7db-3eeb-4733-b8a0-5038b6cd291d + InstanceId: 0134ac17-ee19-444f-8b14-f6222fa7052c + - Folder: Vertical + Entity: + Id: e1ded3bb-c9bd-43f8-8da8-d12bdca1871e + Name: PlatformRocks2 (13) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: 6576b55f-91f1-48b8-9749-0841b6ba0781 + Position: {X: 5.714934, Y: -4.641446, Z: 5.59207773} + Rotation: {X: 0.0, Y: -0.245246142, Z: 0.0, W: 0.969460845} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: aa71aa05-73c3-4f33-a26b-b86f3f55a655 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1:Levels/Prefabs/Level_1-1_PlatformRocks + BasePartId: 9a4d4beb-a66f-410b-b9e9-1334c3c52f41 + InstanceId: 0134ac17-ee19-444f-8b14-f6222fa7052c + - Folder: Vertical + Entity: + Id: ef604cfc-4567-414b-96ce-9e5e51065456 + Name: PlatformRocks2 (8) + Components: + d2f30a7d88eeff69a462a2384736cee9: !TransformComponent + Id: b2740f4a-649b-4907-9f78-a44d60c57cb3 + Position: {X: 9.045102, Y: -4.67764139, Z: -24.7992115} + Rotation: {X: 0.0, Y: -0.659727454, Z: 0.0, W: -0.751504958} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d16ca2c04fba1e70e8d3fbb933e6e2f0: !ModelComponent + Id: 58fb8c5c-56fd-46cb-9037-8fcb1d6ffb7c + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1:Levels/Prefabs/Level_1-1_PlatformRocks + BasePartId: f09ecf9b-a307-4c67-967f-6906018ee4f4 + InstanceId: 0134ac17-ee19-444f-8b14-f6222fa7052c + - Folder: Vertical + Entity: + Id: f49ff062-0417-4cf0-b4dd-c5bd01d0c67b + Name: PlatformRocks1 (11) + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: a7f8981e-813c-4c73-b293-a6fd5076fa9e + Position: {X: -8.375341, Y: -5.33552361, Z: -9.527828} + Rotation: {X: 0.0, Y: 0.0992037654, Z: 0.0, W: 0.9950671} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: 9b2b8b6e-2420-4649-98bc-57a42f58ebc8 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + Base: + BasePartAsset: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1:Levels/Prefabs/Level_1-1_PlatformRocks + BasePartId: 5e2341bf-ca95-4da6-b63e-7fbc0cba6da1 + InstanceId: 0134ac17-ee19-444f-8b14-f6222fa7052c + - Folder: Vertical + Entity: + Id: f51edc0f-a192-46d1-a3bf-19ca60b636c2 + Name: PlatformRocks2 (3) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: 318ee545-f0aa-4ff5-88a1-493ed31f2d20 + Position: {X: 8.358931, Y: -4.641446, Z: -10.9375124} + Rotation: {X: 0.0, Y: 0.5671285, Z: 0.0, W: 0.8236293} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: fdba0cfe-3c48-4ede-a3c6-cfd42398e000 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + Base: + BasePartAsset: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1:Levels/Prefabs/Level_1-1_PlatformRocks + BasePartId: 05047a1c-ca27-4214-8169-7ff28f3c6c11 + InstanceId: 0134ac17-ee19-444f-8b14-f6222fa7052c diff --git a/Starbreach/Assets/Shared/Levels/Platform_1-1.xkscene b/Starbreach/Assets/Shared/Levels/Platform_1-1.xkscene new file mode 100644 index 0000000..c3b9c7a --- /dev/null +++ b/Starbreach/Assets/Shared/Levels/Platform_1-1.xkscene @@ -0,0 +1,2178 @@ +!SceneAsset +Id: 9b7e53c9-752a-40f8-ae41-3a5e975085ad +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +ChildrenIds: [] +Parent: 6224d747-48a6-4736-a199-27785b9b7c3b:Levels/MainScene +Offset: {X: 0.0, Y: 0.0, Z: 0.0} +Hierarchy: + RootParts: + - ref!! 2fd3be95-6b3e-48fb-ae13-0c9e4da33a27 + - ref!! fc6d80b4-f701-4dc1-8a2b-41cb208dd6f6 + - ref!! 8978b4da-a729-441e-ab1c-ac3c2a298525 + - ref!! d26fe686-cb84-474e-ac61-a6c5b024d252 + - ref!! 4585219e-c17d-4719-a7d0-3ed86933fdd7 + - ref!! 261aa824-1305-41a3-b95b-698f69bd3113 + - ref!! 7b27cc62-bdb7-4a00-93dd-a682792ff9e9 + - ref!! 6ac422d1-52a9-423a-9571-fb56999444a6 + - ref!! 0d363eb9-04cd-4ed7-98f4-60c49bbf9369 + - ref!! edf21527-8d1c-4cbd-b37e-5ff879f42c22 + - ref!! 81d94842-b4db-4b3a-97e9-99ed753af362 + - ref!! 0ff94654-152a-4b20-9aa5-49ca8fa87f1a + - ref!! d2fceb07-d21d-46f2-86a0-7ccebf9cf9da + - ref!! 3678adb6-79cc-456b-ae47-7a89e9565b43 + - ref!! b3d8ee9d-5e92-4068-bc13-f613199f13b4 + - ref!! 4b2a62da-6928-42e2-9155-f1f4407917a9 + - ref!! 9bff4723-dbde-44f6-ab43-fe1b061c8bf4 + - ref!! 725f004e-09bb-434b-b7c4-3fb5824a0e0b + - ref!! edbc5f97-53b5-42b0-90bd-68c5ccbe075c + - ref!! 6dc813f5-8734-4f02-a637-8f99a54cefaa + - ref!! d7458068-87ae-4bd5-9af4-18f36aee6ca1 + - ref!! e594a860-350d-4c04-9405-dc82986db63e + - ref!! db2a0c10-7131-49a4-ade8-8bd8ab8b095f + - ref!! f36e10ed-386f-4cd0-be10-e414dca8eb0b + - ref!! 1297269c-e9b5-4f80-9b23-dd826b34ffc3 + Parts: + - Folder: null + Entity: + Id: 0258754f-1c44-449b-843a-46659893a744 + Name: LaserFence_up + Components: + c8c633e320d799468ba2a8e339362d2d: !TransformComponent + Id: 2b45e36c-d8ab-4810-9c7b-aeb39ddc8139 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3e4e674bd6ad2f439da54f92a29a7eec: !ModelComponent + Id: 063c97ca-cefb-4229-97c2-e813851a01f1 + Model: ca14aec1-3989-485c-84c0-5d0cbf5858f4:Gameplay/Models/LaserFence_up + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 2051137f-5c3e-4877-b418-d6730043e667 + InstanceId: b13187dc-a13b-4d78-bd1b-51f1ef105304 + - Folder: null + Entity: + Id: 099bdc10-2ed2-481a-a872-0f34f4d5d777 + Name: TeleportLocation + Components: + 6395ef07f550744397dd3081cd4a79cb: !TransformComponent + Id: 2745fa37-7169-41b7-ba2b-8769f30082d7 + Position*: {X: 0.0, Y: 1.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6669f00e3e069c40b07ce44ccf962a18: !ParticleSystemComponent + Id: cec2e5a7-2e90-4502-8655-29ee85c0492b + Control: + ResetSeconds: 0.0 + Control: Play + ThumbnailWarmupTime: 2.0 + Color: {R: 0.5372549, G: 0.5372549, B: 0.5372549, A: 0.5372549} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + 841cf1cc6bea974fb72aeafc1e3b058b: + ParticleLifetime: {X: 0.5, Y: 2.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + cfc8cbfc5f7e80468f4658697a0dccfb: + Key: 0.0 + Value: 0.1 + TangentType: Linear + cec950b71d6b054cb0d52c4463cf843f: + Key: 1.0 + Value: 1.5 + TangentType: Linear + SamplerRotation: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 4f6a5597f95530449174ae84f03e5522: + Key: 0.0 + Value: 0.0 + TangentType: Linear + cf98f41d25d41c4a83ad36e1ec9746a2: + Key: 1.0 + Value: 60.0 + TangentType: Linear + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 20.0, Y: 20.0, Z: 20.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: ca6ebc41-c296-47ba-b009-4ed9429d2844:Textures/Aura01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 79df6107b22e334d8bca6b4960444b27: !SpawnerBurst + LoopCondition*: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration*: {X: 2.0, Y: 2.0} + SpawnCount: 8 + Initializers: + 142e006d8e6b3a4dbbcb1926c73840f8: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.05, Y: 0.0, Z: -0.05} + VelocityMax: {X: 0.05, Y: 0.5, Z: 0.05} + f6eb4c7264821d4ab65350c123ab5be5: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + 46bdcf28870a6b458f932a8575859785: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.2, Y: -0.5, Z: -0.2} + PositionMax: {X: 0.2, Y: 2.5, Z: 0.2} + Interpolate: false + afa421dee27b89458bf03b8615bd730f: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 2.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.25, Y: 1.0} + Updaters: + db7c0011cf236a478829483fa06ce33e: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + e54f18a2ce59fd49ac1c52a0968ca7b5: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + 65d9881cc9902243a3f9561a1d617a34: + Key: 0.25 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.1} + TangentType: Linear + 050e06182d0dc149a97d6eee6edc869d: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 0c6d623373813b429d7c03b96d846da6: !UpdaterForceField + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 2.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: true + FieldShape: !FieldShapeCylinder + HalfHeight: 1.0 + Radius: 1.0 + DisplayParticleRotation: true + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 1.0 + FalloffStart: 0.1 + StrengthOutside: 0.0 + FalloffEnd: 0.9 + EnergyConservation: 0.5 + ForceDirected: 0.1 + ForceVortex: 0.7 + ForceRepulsive: 0.2 + ForceFixed: {X: 0.0, Y: 0.0, Z: 0.0} + 15cd087bf720094aa6dde39ae052d3eb: + EmitterName: ConcentricRings + ParticleLifetime: {X: 3.0, Y: 3.0} + ShapeBuilder: !ShapeBuilderQuad + SamplerPosition: null + SamplerSize: null + SamplerRotation: null + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8bd33d20-0a1c-4505-be78-4316d81bc076:Textures/TeleportRing + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + RightChild: !ComputeFloat4 + Value: {X: 10.0, Y: 10.0, Z: 10.0, W: 1.0} + UVBuilder: null + ForceTexCoords: false + Spawners: + a03c36e038210f4a96e53e2c0119c664: !SpawnerPerSecond + LoopCondition*: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration*: {X: 2.0, Y: 2.0} + SpawnCount: 2.0 + Initializers: + b87817a4f4eb8f4da445aa7de372392a: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: 0.0, Y: 3.0, Z: 0.0} + PositionMax: {X: 0.0, Y: 3.0, Z: 0.0} + Interpolate: false + e3bcbc4bcc40d343b0827d807d5dbbe9: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: 0.0, Y: -1.0, Z: 0.0} + VelocityMax: {X: 0.0, Y: -1.0, Z: 0.0} + fe4bc073c575a2439d7e7b28bb5d7992: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 1.0, Y: 1.0} + Updaters: + 7eca96cfdfa6cc42ad13558374c11a03: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 0da3819b07c7fb4e899de240d5c6e5cc: + Key: 0.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + 93c5881ab51bd34d84115845f7c08125: + Key: 0.2 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + TangentType: Linear + e38410fbc5e204449e9ca1150535550b: + Key: 0.8 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + TangentType: Linear + 0b0b632e86733a4498a18a182fc903b7: + Key: 1.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + Base: + BasePartAsset: 77857998-42e8-4b56-ba99-30e2f94c24a1:VFXPrefabs/vfx-TeleportPoint + BasePartId: f9c3492f-998f-4728-a47c-17bdc010143a + InstanceId: 5705decb-31b5-407c-8ec6-5b0002f735d1 + - Folder: Props + Entity: + Id: 0d363eb9-04cd-4ed7-98f4-60c49bbf9369 + Name: Small_Wall + Components: + b169bb0a28fc365afeac43ee8f183ee6: !TransformComponent + Id: 02a735eb-34a2-4ed7-8bfd-2a8177db222b + Position*: {X: 4.99999857, Y: 0.0, Z: -20.0} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 07ce1731b5c55346319dfe8de1941a66: !ModelComponent + Id: e4853ff0-56a3-4601-a5f2-545e3860b76c + Model: 5d139f33-5b0c-4e35-ab70-78b928020552:Environment/Walls/PrefabModels/Small_Wall + Materials: {} + f67e43e13ee3fb89abc0bbaba3837c37: !StaticColliderComponent + Id: 97395912-749c-4ae7-b788-3aeb2950d4b3 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + c40463507837835195777deb473f14de: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 1.5, Y: 1.0, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 76617c83803d5680acec68f22ab9ee48: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 0.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + a6227beb392d58cacc21431aa494be07: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 2.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + Base: + BasePartAsset: 35e9585d-5854-46bb-806b-d343b98a6b93:Environment/Walls/Prefabs/Small_Wall_Grouped + BasePartId: cfe6176c-8d73-4ab9-8cd5-43229726c1ff + InstanceId: 1495a8b0-bce0-47d3-bbaf-2e31b4e988e7 + - Folder: Props + Entity: + Id: 0ff94654-152a-4b20-9aa5-49ca8fa87f1a + Name: GasPump + Components: + d547e8a3f1c2213a7ef3000c9e9dcd82: !TransformComponent + Id: 6ae4df09-f4f8-4f19-ab6e-3d1af070bd80 + Position*: {X: 4.5, Y: 0.0, Z: -10.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3d7cef951a17c6ce8a6c46b67b395120: !ModelComponent + Id: 14af586d-86ba-4dc4-8781-cd13ccc3990d + Model: 83bd9601-ccff-4c98-b01a-f02691a402f0:Environment/Props/Models/GasPump + Materials: {} + a744edf4c69d852f6eb77a0c7a97200e: !StaticColliderComponent + Id: e3885b53-b4d9-4e97-917f-160700af7d37 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 3d6e4b33be85f99a428d29df41ace1a0: !CylinderColliderShapeDesc + Height: 5.3 + Radius: 1.1 + LocalOffset: {X: 0.0, Y: 2.65, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: c18756a2-9133-4046-9e4c-c267e063b021:Environment/Props/Prefabs/GasPump + BasePartId: 200140b7-8b11-43e8-bd95-b8ab5d0c57da + InstanceId: 2a78b987-4d7a-45de-8553-0520a4bbf18c + - Folder: null + Entity: + Id: 1013507e-cfc6-443f-84d3-1c5dd0d0d2bf + Name: LaserFence_Static + Components: + fb9b8e052602e60735334f7419c9e54a: !TransformComponent + Id: 0a203fa3-5fa6-4334-ab08-678ae129492e + Position: {X: -3.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 0.6, Y: 0.6, Z: 0.6} + Children: + 72f98f4652f07969b02387bf80f44bb6: ref!! 3b155a3c-027e-4330-ab71-8647cf03f7d3 + ac54ba65908c8e57e9e7d04aaa225e10: ref!! f555fe12-7cef-4a57-9a18-9ed10e22ff5f + c9f4bf3456ad38e4294e8f90e4bc16ba: ref!! 0edf1d0e-dcb7-4f6e-9fdb-934eacb0e2e7 + 985fa8fdb9571299e3e7f9b8b1f090f1: ref!! 1748dd16-873f-41a3-b8fd-866257220035 + eebd194cebc9a12cf0aa06c693e971b7: !StaticColliderComponent + Id: 31a84680-4a32-45cd-b022-2cb0dd15826a + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 7e00afee3484d23f207fe6d6fac12d9a: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 3.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 6022993f-f245-4b95-ae81-8a6e80860cd7 + InstanceId: b13187dc-a13b-4d78-bd1b-51f1ef105304 + - Folder: Gameplay + Entity: + Id: 1297269c-e9b5-4f80-9b23-dd826b34ffc3 + Name: FloorButton + Components: + 2bd9e5018fb815bd9e0ddf7b6c4f0377: !TransformComponent + Id: 54032050-cf56-49bf-b2fb-57e4dec164da + Position*: {X: 0.10674, Y: 0.0, Z: -21.7307777} + Rotation*: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a6932a4059e46dc7459b958c79f50336: !ModelComponent + Id: 0e8fc3d8-6306-4e90-ac56-99b968e442bf + Model: b08b5432-96b6-4259-8a89-303ff9bd12e2:Gameplay/Models/FloorButton + Materials: + 1eb04cc22e2a20d26f26187814c7bdc3~0: 0347eda8-4648-4983-a223-713b43cea1d9:Gameplay/Materials/Plates/Plate2_Enabled_Off + daf84040e6ba39f4813001d91222a07f~1: ba76b6f1-63f6-44d9-ad48-aca96fbe79a3:Gameplay/Materials/Plates/Plate3_Enabled_Off + 2a52917f17e18564669f46063c397a81: !Starbreach.Gameplay.PressurePlate,Starbreach + Id: de9e0273-e7af-4abe-a8a2-ee4017726a4a + Material1EnabledOff: ba76b6f1-63f6-44d9-ad48-aca96fbe79a3:Gameplay/Materials/Plates/Plate3_Enabled_Off + Material1DisabledOn: 2746f702-7dd5-4ef5-9e93-d5e758da2800:Gameplay/Materials/Plates/Plate3_Disabled_On + Material1DisabledOff: d02e7fcd-9f9e-450f-bc56-6e50e9970ec2:Gameplay/Materials/Plates/Plate3_Disabled_Off + Material1EnabledOn: 1163e435-4f1b-4b16-8834-da23869292b4:Gameplay/Materials/Plates/Plate3_Enabled_On + Material0EnabledOff: 0347eda8-4648-4983-a223-713b43cea1d9:Gameplay/Materials/Plates/Plate2_Enabled_Off + Material0DisabledOn: eff5f692-9337-4d7b-8cd8-531e3e06b852:Gameplay/Materials/Plates/Plate2_Disabled_On + Material0DisabledOff: e74abd75-804a-4de0-acf7-924aa5bb3a20:Gameplay/Materials/Plates/Plate2_Disabled_Off + Material0EnabledOn: 903888ae-b297-487a-a708-5fd6cd38c7c7:Gameplay/Materials/Plates/Plate2_Enabled_On + Model: ref!! 0e8fc3d8-6306-4e90-ac56-99b968e442bf + Trigger: ref!! aec24c02-3061-41ec-a321-b00c136be7b0 + AudioEmitter: ref!! 14d05207-a339-4946-aecf-27a2e5c56208 + Enabled: true + Toggle: false + SingleActivation*: true + CurrentToggleState*: false + TransitionTime: 0.15 + 48a3a1d7ea5c129742126bc8b4d7429c: !Starbreach.Gameplay.PressurePlateTrigger,Starbreach + Id: aec24c02-3061-41ec-a321-b00c136be7b0 + CollisionFilterGroup: CharacterFilter + Trigger: ref!! 50657f16-3ec5-41c1-8a40-071c8e5d485b + 03c59a6169956fba8a31fd1f758dc46f: !AudioEmitterComponent + Id: 14d05207-a339-4946-aecf-27a2e5c56208 + Sounds: + adc799987a8ff52a579d44583cb2cde7~Enable: 5163c935-fe14-4496-8f44-eb64e8482b31:Gameplay/Sounds/Plate_Enable + 732e4c030c0a74345f1aed380bdb8533~Disable: 730d9dfc-a657-4d5b-b5ea-8fc7e14cfa7d:Gameplay/Sounds/Plate_Disable + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + 9c600aa0b00e9640a384d3666fe41f14: !RigidbodyComponent + Id: 50657f16-3ec5-41c1-8a40-071c8e5d485b + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: true + IsKinematic: true + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 4c0292725ab565154826fa81493eec99: !CylinderColliderShapeDesc + Height: 0.4 + Radius: 0.8 + LocalOffset: {X: 0.0, Y: 0.2, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 72f94a89-e47c-42ae-9264-b0c9881e3840:Gameplay/Prefabs/Plate + BasePartId: e4fdb89a-c2a0-4e83-a985-c4e087628455 + InstanceId: 4e4d4340-5ec2-4c03-8ebe-967472494a9a + - Folder: null + Entity: + Id: 238510e5-3c57-47c4-ac1f-c0d6bc4ee9e5 + Name: LaserBeam + Components: + c2a61ac9cca3304c949c26193b0945c4: !TransformComponent + Id: 1748dd16-873f-41a3-b8fd-866257220035 + Position: {X: 0.5, Y: 2.5, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 9406e2b7130bca40c2c768f5946242ff: ref!! aabfa6be-aec7-41b7-8dbc-a85f0ea97a88 + 5ee7f85c3fbac746b5c31e169615a5c7: !ParticleSystemComponent + Id: 0495aed1-9525-4185-9e04-7a3e30b945a7 + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 0.121568628, B: 0.121568628, A: 1.0} + Speed: 6.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + f239db465dd7354bbc55100bd300b151: + EmitterName: sparks + ParticleLifetime: {X: 1.0, Y: 5.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + ba54a1971cd84340b5ba37f508a3bd2c: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 881873fa3d3a744db46ae3db16b7d133: + Key: 1.0 + Value: 0.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 150.0, Y: 150.0, Z: 150.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: null + ForceTexCoords: false + Spawners: + 946a1b5e1895434284c7dbdaa728c786: !SpawnerBurst + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 100 + Initializers: + 581d30af2592fb41a520efcb0f64656c: !InitialPositionParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: true + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: true + ParentControlFlag: Group00 + SeedOffset: 0 + PositionMin: {X: -0.5, Y: -0.1, Z: -0.1} + PositionMax: {X: 0.5, Y: 0.1, Z: 0.1} + 0460848851abf642879131d04c839872: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.3 + SeedOffset: 24 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.05, Y: 0.2} + cd410cf87ddf07449ea894f8b8cb5238: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.02, Y: -0.01, Z: -0.02} + VelocityMax: {X: 0.02, Y: 0.04, Z: 0.02} + 855cafaded1b164dab92516ac877abf5: !InitialColorParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ParentControlFlag: Group00 + SeedOffset: 0 + ColorMin: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + ColorMax: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Updaters: {} + eabed859a30c6f409b30f3e5fa9295b2: + EmitterName: LaserEmitter02 + MaxParticlesOverride: 10 + ParticleLifetime: {X: 0.2, Y: 0.2} + ShapeBuilder: !ShapeBuilderRibbon + SmoothingPolicy: None + Segments: 5 + TextureCoordinatePolicy: AsIs + TexCoordsFactor: 1.0 + UVRotate: + FlipX: false + FlipY: false + UVClockwise: Degree0 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 100.0, Y: 100.0, Z: 100.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: da9b119e-ce87-4f7b-a4cc-2e93b158f137:Textures/Gradation01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: !UVBuilderScroll + StartFrame: {X: 0.0, Y: 0.0, Z: 1.0, W: 1.0} + EndFrame: {X: 0.0, Y: 1.0, Z: 1.0, W: 2.0} + ForceTexCoords: false + Spawners: + 771c66d89d336449959f8c37915bdb0e: !SpawnerPerFrame + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 10.0 + Framerate: 60.0 + Initializers: + af1eef0c052b814ab025d0cbeb5ef838: !InitialPositionArc + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + Target: ref!! 9607e5fa-d01b-4390-9491-4676cdc5cc49 + DisplayParticleRotation: true + DisplayParticleScale: false + FallbackTarget: {X: 0.0, Y: 0.0, Z: -1.0} + DisplayParticleScaleUniform: false + ArcHeight: 0.0 + Sequential: true + FixedLength: 0 + PositionMin: {X: 0.0, Y: 0.0, Z: 0.0} + PositionMax: {X: 0.0, Y: 0.0, Z: 0.0} + SeedOffset: 0 + 6d09f593db786145af6ba89f386f9b48: !InitialSpawnOrder + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + d1dbc13de4fdfd44a592f202d7bed600: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.5 + SeedOffset: 1 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.5, Y: 0.6} + Updaters: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: d0b8df39-fac2-48ce-bd8f-a2f847d3157d + InstanceId: b13187dc-a13b-4d78-bd1b-51f1ef105304 + - Folder: Props + Entity: + Id: 261aa824-1305-41a3-b95b-698f69bd3113 + Name: Small_Wall + Components: + b169bb0a28fc365afeac43ee8f183ee6: !TransformComponent + Id: 830965ac-cd94-4b6e-96b6-359ee4c3c33a + Position*: {X: 4.99999952, Y: 0.0, Z: -7.5} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 07ce1731b5c55346319dfe8de1941a66: !ModelComponent + Id: 1b01b4d6-8434-464f-90ef-b1e9811c924b + Model: 5d139f33-5b0c-4e35-ab70-78b928020552:Environment/Walls/PrefabModels/Small_Wall + Materials: {} + f67e43e13ee3fb89abc0bbaba3837c37: !StaticColliderComponent + Id: cf6c7d06-d046-4033-a907-6f7a23449ed9 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + c40463507837835195777deb473f14de: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 1.5, Y: 1.0, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 76617c83803d5680acec68f22ab9ee48: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 0.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + a6227beb392d58cacc21431aa494be07: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 2.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + Base: + BasePartAsset: 35e9585d-5854-46bb-806b-d343b98a6b93:Environment/Walls/Prefabs/Small_Wall_Grouped + BasePartId: cfe6176c-8d73-4ab9-8cd5-43229726c1ff + InstanceId: 0265b2a6-8601-4903-9fd1-ea9a6463322b + - Folder: null + Entity: + Id: 297140f9-f77b-4940-b38c-59ed890acd84 + Name: LaserBeam + Components: + c2a61ac9cca3304c949c26193b0945c4: !TransformComponent + Id: 0edf1d0e-dcb7-4f6e-9fdb-934eacb0e2e7 + Position: {X: 0.5, Y: 1.75, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + fe89fc524a7b9ae686e1c8c7bf6e603c: ref!! 0341bc2f-dbf7-4f99-a67d-bd18e0ae81a6 + 5ee7f85c3fbac746b5c31e169615a5c7: !ParticleSystemComponent + Id: 24d66b0d-ab1b-49bb-9df5-b76d954ad4a7 + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 0.125490189, B: 0.125490189, A: 1.0} + Speed: 6.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + f239db465dd7354bbc55100bd300b151: + EmitterName: sparks + ParticleLifetime: {X: 1.0, Y: 5.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + ba54a1971cd84340b5ba37f508a3bd2c: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 881873fa3d3a744db46ae3db16b7d133: + Key: 1.0 + Value: 0.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 150.0, Y: 150.0, Z: 150.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: null + ForceTexCoords: false + Spawners: + 946a1b5e1895434284c7dbdaa728c786: !SpawnerBurst + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 100 + Initializers: + 581d30af2592fb41a520efcb0f64656c: !InitialPositionParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: true + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: true + ParentControlFlag: Group00 + SeedOffset: 0 + PositionMin: {X: -0.5, Y: -0.1, Z: -0.1} + PositionMax: {X: 0.5, Y: 0.1, Z: 0.1} + 0460848851abf642879131d04c839872: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.3 + SeedOffset: 24 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.05, Y: 0.2} + cd410cf87ddf07449ea894f8b8cb5238: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.02, Y: -0.01, Z: -0.02} + VelocityMax: {X: 0.02, Y: 0.04, Z: 0.02} + 855cafaded1b164dab92516ac877abf5: !InitialColorParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ParentControlFlag: Group00 + SeedOffset: 0 + ColorMin: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + ColorMax: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Updaters: {} + eabed859a30c6f409b30f3e5fa9295b2: + EmitterName: LaserEmitter02 + MaxParticlesOverride: 10 + ParticleLifetime: {X: 0.2, Y: 0.2} + ShapeBuilder: !ShapeBuilderRibbon + SmoothingPolicy: None + Segments: 5 + TextureCoordinatePolicy: AsIs + TexCoordsFactor: 1.0 + UVRotate: + FlipX: false + FlipY: false + UVClockwise: Degree0 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 100.0, Y: 100.0, Z: 100.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: da9b119e-ce87-4f7b-a4cc-2e93b158f137:Textures/Gradation01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: !UVBuilderScroll + StartFrame: {X: 0.0, Y: 0.0, Z: 1.0, W: 1.0} + EndFrame: {X: 0.0, Y: 1.0, Z: 1.0, W: 2.0} + ForceTexCoords: false + Spawners: + 771c66d89d336449959f8c37915bdb0e: !SpawnerPerFrame + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 10.0 + Framerate: 60.0 + Initializers: + af1eef0c052b814ab025d0cbeb5ef838: !InitialPositionArc + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + Target: ref!! 03268128-ba30-4daa-89e3-c01c131e2c9d + DisplayParticleRotation: true + DisplayParticleScale: false + FallbackTarget: {X: 0.0, Y: 0.0, Z: -1.0} + DisplayParticleScaleUniform: false + ArcHeight: 0.0 + Sequential: true + FixedLength: 0 + PositionMin: {X: 0.0, Y: 0.0, Z: 0.0} + PositionMax: {X: 0.0, Y: 0.0, Z: 0.0} + SeedOffset: 0 + 6d09f593db786145af6ba89f386f9b48: !InitialSpawnOrder + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + d1dbc13de4fdfd44a592f202d7bed600: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.5 + SeedOffset: 1 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.5, Y: 0.6} + Updaters: {} + 2801c9087775c2ecc9518fa0f801c79c: !StaticColliderComponent + Id: 74147f3d-f34b-4e63-8e76-fe2c4b498fab + Enabled*: true + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + d9c023df8272c6145711f00ef8160b74: !BoxColliderShapeDesc + Is2D: false + Size: {X: 10.0, Y: 3.0, Z: 2.0} + LocalOffset: {X: 4.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 8512ce3d-9fb8-400b-bf88-7186abe432d8 + InstanceId: b13187dc-a13b-4d78-bd1b-51f1ef105304 + - Folder: null + Entity: + Id: 2bc2b08d-a8d2-496a-91ec-ca61e92951e3 + Name: LaserFence_up + Components: + c8c633e320d799468ba2a8e339362d2d: !TransformComponent + Id: f555fe12-7cef-4a57-9a18-9ed10e22ff5f + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3e4e674bd6ad2f439da54f92a29a7eec: !ModelComponent + Id: c1be7ae8-e362-45ac-b3d5-1fb6a7dca164 + Model: ca14aec1-3989-485c-84c0-5d0cbf5858f4:Gameplay/Models/LaserFence_up + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: e88381a2-6f10-476d-853f-56ea6884859f + InstanceId: b13187dc-a13b-4d78-bd1b-51f1ef105304 + - Folder: Props + Entity: + Id: 2fd3be95-6b3e-48fb-ae13-0c9e4da33a27 + Name: box_1 + Components: + 809778ee97de74479d46b2b89cf3fd55: !TransformComponent + Id: 96819d65-ab62-49c5-8378-c3a4182d7132 + Position*: {X: -5.927657, Y: 0.0, Z: 1.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 46d65c287ed37b419febba3f2fc9e168: !ModelComponent + Id: 539fc9b4-be3d-411b-ae2c-a7a6ba8d96ac + Model: 46441ab3-67fb-40d4-8b72-8dd1db5d988e:Environment/Props/Models/Box1 + Materials: {} + 97af1ceb4c685740b019dc46621ca5bd: !StaticColliderComponent + Id: 1ce75af7-8a5c-4154-b7b7-0c0d40e16924 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 30ff71837d20084985383f3411cf2ed8: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.95, Y: 0.95, Z: 0.95} + LocalOffset: {X: 0.0, Y: 0.475, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b23b46aa-4d3f-45a8-ab4b-7c5a9e4d9d99:Environment/Props/Prefabs/Box1 + BasePartId: e8b2a223-8164-4e20-8309-f81a90ca09cc + InstanceId: 51ee1666-26eb-43e7-b3a2-de155f7439d6 + - Folder: Props + Entity: + Id: 3678adb6-79cc-456b-ae47-7a89e9565b43 + Name: Tubes + Components: + 8afe5b76881b508b37d688f2116c5186: !TransformComponent + Id: 0702f22d-2412-4873-bf43-f5bf31722629 + Position*: {X: -5.0, Y: 0.0, Z: -12.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 1ad2d75443718f589dd7ce1ec428faf7: ref!! 64621d2a-1d35-4cd0-901c-2e138c25f7e0 + ed49c060b52ecebec1b031b308b61867: ref!! a831e49e-da2b-4d3e-98b4-832b4de484be + d0526db95b412f4714f97c9e1e008f44: !ModelComponent + Id: 3399a3d4-804b-4b15-878e-ca8c315ba0e1 + Model: b71a38c2-5460-4a2e-8abf-77a0acec5aeb:Environment/Props/Models/Tubes + Materials: {} + Base: + BasePartAsset: 62e87c0b-15d8-4628-95c9-7880f4cf2fe1:Environment/Props/Prefabs/Tubes + BasePartId: 20f03481-611c-470f-b5ca-0917bf52f59a + InstanceId: fd096e1b-7b5a-4579-8208-d109bb52804b + - Folder: null + Entity: + Id: 39740c5d-1388-4901-88b4-cd3df1ae9f4a + Name: LaserFence_down + Components: + a4c9a42f24d4c443bad3060f61018c7f: !TransformComponent + Id: 3b155a3c-027e-4330-ab71-8647cf03f7d3 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e52519dff8a1534c8d3d763ba4d4e83e: !ModelComponent + Id: eb9863c6-5a41-4445-a7e3-a7b11907fa02 + Model: 4658c1a9-b3b6-4481-b22c-ad61ea3c14d3:Gameplay/Models/LaserFence_down + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: fea06acd-bec3-4873-8a99-eeb324c05565 + InstanceId: b13187dc-a13b-4d78-bd1b-51f1ef105304 + - Folder: Props + Entity: + Id: 4585219e-c17d-4719-a7d0-3ed86933fdd7 + Name: QuadBarrels + Components: + 6cba76ddfd1ccfe65a4c5a140756c8d4: !TransformComponent + Id: 6cd53b04-b5e9-40af-a67c-18f54d9ba74f + Position*: {X: 5.19595957, Y: 0.0, Z: -1.86902094} + Rotation*: {X: 0.0, Y: 0.28622362, Z: 0.0, W: 0.958162844} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3280e516b6ce697916b6f1c0823acd38: !ModelComponent + Id: 655dffb4-64e8-41eb-ac05-dc66754d92d6 + Model: bd5c8df1-b6f8-4ae3-9099-b063300bc184:Environment/Props/Models/QuadBarrels + Materials: {} + a0046f2ff924d533f457904736235306: !StaticColliderComponent + Id: ebf237e3-db72-4a35-acd3-96e63b5b5f11 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 73a42be32d471fc220f6ebc55d725e77: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 3.0, Z: 2.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: bceccb3f-3666-4864-aded-2230c759cbaf:Environment/Props/Prefabs/QuadBarrels + BasePartId: ae3cd2c6-ef7d-4ebb-9bf1-01ff9c1b034c + InstanceId: aa093337-65c4-498d-81f8-eb8dca581933 + - Folder: Props + Entity: + Id: 4b2a62da-6928-42e2-9155-f1f4407917a9 + Name: OilPump + Components: + 1e1dbb8ad45c1000b406d2c95a67fe88: !TransformComponent + Id: b7eeeb14-042b-4547-b5fe-e7ca81ecac4f + Position*: {X: -4.0, Y: 0.0, Z: -13.0} + Rotation*: {X: 0.0, Y: -1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 9e5be4c29b440208b1403c78726c5be4: !ModelComponent + Id: d387190d-5d7a-43a3-84b3-431c111ae9ef + Model: 3cb8df31-ea42-4f2e-91b1-1039224a533e:Environment/Props/Models/OilPump + Materials: {} + e68190618f2d000e1d116af97f48ccfe: !StaticColliderComponent + Id: c14c5f8d-ff58-45be-a206-b1ebbe20cee7 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 39e080c9500338f09ef88c62b2722b4c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.5, Y: 2.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 1.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + b17e1d474b1370727693a6ebe1daddeb: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.5, Y: 0.2, Z: 1.5} + LocalOffset: {X: -0.25, Y: 0.1, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 3c61102a-5dc0-471f-a335-3867cce63a58:Environment/Props/Prefabs/OilPump + BasePartId: 8c5d250c-4fa1-4f19-ad6d-0b45f1a170da + InstanceId: 20169803-37f3-4770-bd46-649c84614ff9 + - Folder: null + Entity: + Id: 5654716e-b91a-4bac-9794-680a774473d3 + Name: LaserArc + Components: + 336f7ce982182944823955cce7f2b5ee: !TransformComponent + Id: 9607e5fa-d01b-4390-9491-4676cdc5cc49 + Position: {X: 0.5, Y: 2.5, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 28b6b224-b4bb-48a9-bccb-71f0e16cf1be + InstanceId: b13187dc-a13b-4d78-bd1b-51f1ef105304 + - Folder: null + Entity: + Id: 5c7c8e21-10a0-4a10-998d-c9f8ca48c696 + Name: Spot light + Components: + d12c9da95ecea194d3ecac5fbc5b9a13: !TransformComponent + Id: 7d6a2034-6a4b-42d7-96b4-254e543a4cb9 + Position: {X: 0.0, Y: 6.00139236, Z: 0.9119271} + Rotation: {X: 0.839381635, Y: -1.18654448E-07, Z: -9.245355E-08, W: -0.5435425} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 000af01f78b250ef4d83359d57b9aeee: !LightComponent + Id: b77181d0-6f4f-4374-8484-fe3202800b35 + Type: !LightSpot + Color: !ColorRgbProvider + Value: {R: 0.5019609, G: 1.0, B: 0.831911743} + Range: 100.0 + AngleInner: 45.0 + AngleOuter: 60.0 + UVScale: {X: 1.0, Y: 1.0} + UVOffset: {X: 0.0, Y: 0.0} + Shadow: + BiasParameters: + DepthBias: 0.001 + Intensity: 150.0 + Base: + BasePartAsset: 33f4eacf-6067-4a00-9e0d-3ed6ae1bd500:Environment/Props/Prefabs/Pillar2_flat + BasePartId: 52061793-f7a6-44da-94e5-53e2f2a36c2b + InstanceId: 4b6b4429-bed6-4ee9-8e98-37b25aa91e07 + - Folder: Props + Entity: + Id: 6ac422d1-52a9-423a-9571-fb56999444a6 + Name: Small_Wall + Components: + b169bb0a28fc365afeac43ee8f183ee6: !TransformComponent + Id: 61de4629-f031-4df9-acc6-46e22c5d4212 + Position*: {X: -4.999999, Y: 0.0, Z: -17.0} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 07ce1731b5c55346319dfe8de1941a66: !ModelComponent + Id: fc7a39f8-127a-43e3-96fe-f82df5bfd217 + Model: 5d139f33-5b0c-4e35-ab70-78b928020552:Environment/Walls/PrefabModels/Small_Wall + Materials: {} + f67e43e13ee3fb89abc0bbaba3837c37: !StaticColliderComponent + Id: e16273b7-0af3-415a-ba8a-50a207b97bee + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + c40463507837835195777deb473f14de: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 1.5, Y: 1.0, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 76617c83803d5680acec68f22ab9ee48: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 0.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + a6227beb392d58cacc21431aa494be07: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 2.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + Base: + BasePartAsset: 35e9585d-5854-46bb-806b-d343b98a6b93:Environment/Walls/Prefabs/Small_Wall_Grouped + BasePartId: cfe6176c-8d73-4ab9-8cd5-43229726c1ff + InstanceId: ec45a746-0938-439f-bef7-fa84ffd63c54 + - Folder: null + Entity: + Id: 6b043c04-3a80-482e-9552-126c0263500f + Name: Spot light + Components: + d12c9da95ecea194d3ecac5fbc5b9a13: !TransformComponent + Id: 95e38e1d-03ed-4c89-8570-c36d40d55bae + Position: {X: 0.0, Y: 6.00139236, Z: 0.9119271} + Rotation: {X: 0.839381635, Y: -1.18654448E-07, Z: -9.245355E-08, W: -0.5435425} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 000af01f78b250ef4d83359d57b9aeee: !LightComponent + Id: ec75cea2-7bb2-4097-817a-a0234a0bea30 + Type: !LightSpot + Color: !ColorRgbProvider + Value: {R: 0.5019609, G: 1.0, B: 0.831911743} + Range: 100.0 + AngleInner: 45.0 + AngleOuter: 60.0 + UVScale: {X: 1.0, Y: 1.0} + UVOffset: {X: 0.0, Y: 0.0} + Shadow: + BiasParameters: + DepthBias: 0.001 + Intensity: 150.0 + Base: + BasePartAsset: 33f4eacf-6067-4a00-9e0d-3ed6ae1bd500:Environment/Props/Prefabs/Pillar2_flat + BasePartId: 52061793-f7a6-44da-94e5-53e2f2a36c2b + InstanceId: 84eaf1f2-0815-4a77-be79-c5c76988eb88 + - Folder: Props + Entity: + Id: 6dc813f5-8734-4f02-a637-8f99a54cefaa + Name: Pillar2_flat + Components: + da7a4adb847246609d33226bfd434f6d: !TransformComponent + Id: 9c89475a-d97a-4557-96b6-c619b669ff2e + Position*: {X: 4.000003, Y: 0.0, Z: -24.0} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + b562b38cac55869a74c5ff4cc5bf9e45: ref!! 7d6a2034-6a4b-42d7-96b4-254e543a4cb9 + ca93a075a4312c733f6220297af4b308: !ModelComponent + Id: 13eaba89-46e3-41e8-95f1-d2ce08444472 + Model: 41f2c63a-dcec-4143-a665-bbc9f616a21e:Environment/Props/Models/Pillar2_flat + Materials: {} + 9e593e77343fc9ec938194c13e10f499: !StaticColliderComponent + Id: eea8df0f-e7c8-4997-bbb1-e38a098b10b9 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + e9d57103d93cc1430a186f89f84bf0cc: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.7, Y: 6.5, Z: 0.3} + LocalOffset: {X: 0.0, Y: 3.25, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 33f4eacf-6067-4a00-9e0d-3ed6ae1bd500:Environment/Props/Prefabs/Pillar2_flat + BasePartId: 25173063-4403-4736-8dc0-64d750dc171b + InstanceId: 4b6b4429-bed6-4ee9-8e98-37b25aa91e07 + - Folder: null + Entity: + Id: 6f4b5171-aa32-46c0-a113-414f73f962cd + Name: LaserArc + Components: + 336f7ce982182944823955cce7f2b5ee: !TransformComponent + Id: 03268128-ba30-4daa-89e3-c01c131e2c9d + Position: {X: 0.5, Y: 1.75, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 6127bf25-0b62-4e22-863f-5009c2f77592 + InstanceId: b13187dc-a13b-4d78-bd1b-51f1ef105304 + - Folder: Props + Entity: + Id: 725f004e-09bb-434b-b7c4-3fb5824a0e0b + Name: Pillar2_flat + Components: + da7a4adb847246609d33226bfd434f6d: !TransformComponent + Id: 66195231-2b32-46de-b637-9d07c54fa77b + Position*: {X: 3.99999881, Y: 0.0, Z: 2.50000024} + Rotation*: {X: 0.0, Y: -0.7071068, Z: 0.0, W: 0.7071067} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + b562b38cac55869a74c5ff4cc5bf9e45: ref!! e867db8a-f63b-46e4-9639-1488484250fe + ca93a075a4312c733f6220297af4b308: !ModelComponent + Id: dfdc6fdd-66a0-476d-81c0-907588031a0e + Model: 41f2c63a-dcec-4143-a665-bbc9f616a21e:Environment/Props/Models/Pillar2_flat + Materials: {} + 9e593e77343fc9ec938194c13e10f499: !StaticColliderComponent + Id: ff84ecda-54df-4a70-97fb-da03ce2110fd + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + e9d57103d93cc1430a186f89f84bf0cc: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.7, Y: 6.5, Z: 0.3} + LocalOffset: {X: 0.0, Y: 3.25, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 33f4eacf-6067-4a00-9e0d-3ed6ae1bd500:Environment/Props/Prefabs/Pillar2_flat + BasePartId: 25173063-4403-4736-8dc0-64d750dc171b + InstanceId: bdc88472-fceb-434a-8205-bfc7a8783fd1 + - Folder: Props + Entity: + Id: 7b27cc62-bdb7-4a00-93dd-a682792ff9e9 + Name: Small_Wall + Components: + b169bb0a28fc365afeac43ee8f183ee6: !TransformComponent + Id: 257d550b-cfb2-4550-aa0b-47b7a7bd61ef + Position*: {X: -5.0, Y: 0.0, Z: -3.5} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 07ce1731b5c55346319dfe8de1941a66: !ModelComponent + Id: 3a926046-ad19-477b-b0c2-4538d6e1ee0e + Model: 5d139f33-5b0c-4e35-ab70-78b928020552:Environment/Walls/PrefabModels/Small_Wall + Materials: {} + f67e43e13ee3fb89abc0bbaba3837c37: !StaticColliderComponent + Id: c49b9e0c-15ec-45cf-b1f2-b3e25244cd21 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + c40463507837835195777deb473f14de: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 1.5, Y: 1.0, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 76617c83803d5680acec68f22ab9ee48: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 0.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + a6227beb392d58cacc21431aa494be07: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 2.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + Base: + BasePartAsset: 35e9585d-5854-46bb-806b-d343b98a6b93:Environment/Walls/Prefabs/Small_Wall_Grouped + BasePartId: cfe6176c-8d73-4ab9-8cd5-43229726c1ff + InstanceId: 29bddfab-509f-48ab-a9af-d18bfc5ddcdf + - Folder: null + Entity: + Id: 7e7b8fd0-3c26-426d-9c32-eface4567779 + Name: LaserFence_down + Components: + a4c9a42f24d4c443bad3060f61018c7f: !TransformComponent + Id: f85389ea-9c12-4be2-af50-6bf54c80c4c2 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e52519dff8a1534c8d3d763ba4d4e83e: !ModelComponent + Id: a3a58cd6-2f1b-4a0c-bbc0-e8e2a1dcd8b9 + Model: 4658c1a9-b3b6-4481-b22c-ad61ea3c14d3:Gameplay/Models/LaserFence_down + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: b070b742-1285-4948-a158-2800ee11f5e7 + InstanceId: b13187dc-a13b-4d78-bd1b-51f1ef105304 + - Folder: Props + Entity: + Id: 81d94842-b4db-4b3a-97e9-99ed753af362 + Name: Small_Angle + Components: + f59e2ade343b886c0ca1f125a2504c1c: !TransformComponent + Id: 30596555-8958-4f22-9bdf-edbee8b8d6cf + Position*: {X: 5.0, Y: 0.0, Z: -22.9999981} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 1.0, Y: 1.0, Z: -1.0} + Children: {} + 55d6ee3d08a260c07fdcbe9efb9741fe: !ModelComponent + Id: 6eb3e1ad-802a-4298-b54a-e7236004a503 + Model: 26958e5a-54e8-4c78-915b-ff9b33a6e742:Environment/Walls/PrefabModels/Small_Angle + Materials: {} + d9656997474c6f7b8bbd23de2fa86f31: !StaticColliderComponent + Id: b218a435-2e25-4153-9e4b-9b762433e663 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + c222d643bda9467ac12372fe4e854a41: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 1.0, Y: 1.0, Z: 0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 5ac88fde6f08e8fabb87c9bd14c8f2b7: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 0.5, Y: 1.0, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 11f45f58b26e798879e9e2b7a3c6160b: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 0.5, Y: 0.0, Z: -1.0} + LocalRotation: {X: 0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + Base: + BasePartAsset: bdf4ab4d-73bd-4722-9158-c7d19b5a4602:Environment/Walls/Prefabs/Small_Angle_Grouped + BasePartId: 1f8be153-d7e6-4961-880b-44efc358b7cb + InstanceId: 43244f2f-7523-4e95-af51-2647caf08781 + - Folder: Props + Entity: + Id: 8978b4da-a729-441e-ab1c-ac3c2a298525 + Name: box_1 + Components: + 809778ee97de74479d46b2b89cf3fd55: !TransformComponent + Id: e93e1347-dcbd-41ed-ba8b-f1f518f106ac + Position*: {X: -6.0, Y: 0.0, Z: -0.171088353} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 46d65c287ed37b419febba3f2fc9e168: !ModelComponent + Id: f46e434d-7e3f-4cb3-a9ce-33bbb943b271 + Model: 46441ab3-67fb-40d4-8b72-8dd1db5d988e:Environment/Props/Models/Box1 + Materials: {} + 97af1ceb4c685740b019dc46621ca5bd: !StaticColliderComponent + Id: 6948f373-0e4e-4890-99b1-c102efd6898f + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 30ff71837d20084985383f3411cf2ed8: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.95, Y: 0.95, Z: 0.95} + LocalOffset: {X: 0.0, Y: 0.475, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b23b46aa-4d3f-45a8-ab4b-7c5a9e4d9d99:Environment/Props/Prefabs/Box1 + BasePartId: e8b2a223-8164-4e20-8309-f81a90ca09cc + InstanceId: 309fe610-9a40-4007-aeae-c8bfbb60acaa + - Folder: null + Entity: + Id: 90be7af5-aac6-4ee7-b7dd-971371e0acbe + Name: Spot light + Components: + d12c9da95ecea194d3ecac5fbc5b9a13: !TransformComponent + Id: 4116b4b0-083e-4ec0-ae81-4048290cbf02 + Position: {X: 0.0, Y: 6.00139236, Z: 0.9119271} + Rotation: {X: 0.839381635, Y: -1.18654448E-07, Z: -9.245355E-08, W: -0.5435425} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 000af01f78b250ef4d83359d57b9aeee: !LightComponent + Id: 0a54aad9-e799-4171-b819-014b979a5ba4 + Type: !LightSpot + Color: !ColorRgbProvider + Value: {R: 0.5019609, G: 1.0, B: 0.831911743} + Range: 100.0 + AngleInner: 45.0 + AngleOuter: 60.0 + UVScale: {X: 1.0, Y: 1.0} + UVOffset: {X: 0.0, Y: 0.0} + Shadow: + BiasParameters: + DepthBias: 0.001 + Intensity: 150.0 + Base: + BasePartAsset: 33f4eacf-6067-4a00-9e0d-3ed6ae1bd500:Environment/Props/Prefabs/Pillar2_flat + BasePartId: 52061793-f7a6-44da-94e5-53e2f2a36c2b + InstanceId: 66f31508-b510-46b6-8aeb-8d0eb544bfea + - Folder: null + Entity: + Id: 9beafe57-0044-45b8-8ed0-3f98b080c953 + Name: Spot light + Components: + d12c9da95ecea194d3ecac5fbc5b9a13: !TransformComponent + Id: e867db8a-f63b-46e4-9639-1488484250fe + Position: {X: 0.0, Y: 6.00139236, Z: 0.9119271} + Rotation: {X: 0.839381635, Y: -1.18654448E-07, Z: -9.245355E-08, W: -0.5435425} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 000af01f78b250ef4d83359d57b9aeee: !LightComponent + Id: 41c68b79-467a-4d5a-a88b-6776f3eb7479 + Type: !LightSpot + Color: !ColorRgbProvider + Value: {R: 0.5019609, G: 1.0, B: 0.831911743} + Range: 100.0 + AngleInner: 45.0 + AngleOuter: 60.0 + UVScale: {X: 1.0, Y: 1.0} + UVOffset: {X: 0.0, Y: 0.0} + Shadow: + BiasParameters: + DepthBias: 0.001 + Intensity: 150.0 + Base: + BasePartAsset: 33f4eacf-6067-4a00-9e0d-3ed6ae1bd500:Environment/Props/Prefabs/Pillar2_flat + BasePartId: 52061793-f7a6-44da-94e5-53e2f2a36c2b + InstanceId: bdc88472-fceb-434a-8205-bfc7a8783fd1 + - Folder: Props + Entity: + Id: 9bff4723-dbde-44f6-ab43-fe1b061c8bf4 + Name: Pillar2_flat + Components: + da7a4adb847246609d33226bfd434f6d: !TransformComponent + Id: 5074a10e-9b2b-42d5-8802-94c420756aa6 + Position*: {X: -3.99999976, Y: 0.0, Z: 2.49999976} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + b562b38cac55869a74c5ff4cc5bf9e45: ref!! 4116b4b0-083e-4ec0-ae81-4048290cbf02 + ca93a075a4312c733f6220297af4b308: !ModelComponent + Id: 23aa66bd-db06-4573-b69e-01e1b9ee28a1 + Model: 41f2c63a-dcec-4143-a665-bbc9f616a21e:Environment/Props/Models/Pillar2_flat + Materials: {} + 9e593e77343fc9ec938194c13e10f499: !StaticColliderComponent + Id: 00f8c6f6-60b3-4810-a802-46d3f04364e9 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + e9d57103d93cc1430a186f89f84bf0cc: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.7, Y: 6.5, Z: 0.3} + LocalOffset: {X: 0.0, Y: 3.25, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 33f4eacf-6067-4a00-9e0d-3ed6ae1bd500:Environment/Props/Prefabs/Pillar2_flat + BasePartId: 25173063-4403-4736-8dc0-64d750dc171b + InstanceId: 66f31508-b510-46b6-8aeb-8d0eb544bfea + - Entity: + Id: a32659a0-e861-441f-844c-860e4bb453f0 + Name: Tubes_base + Components: + 7cdd3b1a1396bae0df8d315686b47524: !TransformComponent + Id: 64621d2a-1d35-4cd0-901c-2e138c25f7e0 + Position: {X: 0.0, Y: 0.0, Z: -3.15} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 14c6a602fe3acc99031df8e58a62d2c8: !StaticColliderComponent + Id: 523fb438-3729-4ba8-85ee-4152190c0121 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 2f121f88c1f6896ca79a2939aa8a095c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.25, Z: 1.2} + LocalOffset: {X: 0.0, Y: 0.625, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 9a70c79d932274ae3d789c1b8e505eed: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 0.7, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.35, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + c693012fa2a7a493118f8d327a097904: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.6, Z: -0.3} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + ec075d7b9a08dd03f4591017a4bce1a2: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: -0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 7742036734daf5a2f5497973ad25733f: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: 0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 62e87c0b-15d8-4628-95c9-7880f4cf2fe1:Environment/Props/Prefabs/Tubes + BasePartId: 33533809-4477-4c1f-90e3-f7c190afa66a + InstanceId: fd096e1b-7b5a-4579-8208-d109bb52804b + - Folder: Props + Entity: + Id: b3d8ee9d-5e92-4068-bc13-f613199f13b4 + Name: OilPump + Components: + 1e1dbb8ad45c1000b406d2c95a67fe88: !TransformComponent + Id: 9a3a4e06-2506-4aad-94f6-bd6d5597c24e + Position*: {X: -4.0, Y: 0.0, Z: -11.0} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 9e5be4c29b440208b1403c78726c5be4: !ModelComponent + Id: bf034725-f7aa-440f-84b4-d285eeb901c1 + Model: 3cb8df31-ea42-4f2e-91b1-1039224a533e:Environment/Props/Models/OilPump + Materials: {} + e68190618f2d000e1d116af97f48ccfe: !StaticColliderComponent + Id: bf10d230-0199-4df8-b426-8108ec045ff4 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 39e080c9500338f09ef88c62b2722b4c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.5, Y: 2.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 1.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + b17e1d474b1370727693a6ebe1daddeb: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.5, Y: 0.2, Z: 1.5} + LocalOffset: {X: -0.25, Y: 0.1, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 3c61102a-5dc0-471f-a335-3867cce63a58:Environment/Props/Prefabs/OilPump + BasePartId: 8c5d250c-4fa1-4f19-ad6d-0b45f1a170da + InstanceId: 98511774-3eed-4e37-948e-8d582d712aac + - Folder: null + Entity: + Id: bad31f2f-d924-4b3b-bfda-f9d2ddf71acc + Name: LaserCylinder + Components: + 6565f891cdba2236dd5dbf1888a0f6e0: !TransformComponent + Id: aabfa6be-aec7-41b7-8dbc-a85f0ea97a88 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: -0.707106769, W: 0.707106769} + Scale: {X: 1.0, Y: 10.0, Z: 1.0} + Children: {} + cec4407060699b5ddb4eeb6f5f980024: !ModelComponent + Id: b2ccc9a0-0389-40a5-9409-295a30f33643 + Model: c11da5de-520a-4bd5-a691-5476b2a812e0:Gameplay/Models/Cylinder + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 6072d1ec-0d92-4855-a83a-bacfa7acc501 + InstanceId: b13187dc-a13b-4d78-bd1b-51f1ef105304 + - Folder: null + Entity: + Id: c85d6f35-9957-4320-bb27-c587b0a5988e + Name: LaserCylinder + Components: + 6565f891cdba2236dd5dbf1888a0f6e0: !TransformComponent + Id: 0341bc2f-dbf7-4f99-a67d-bd18e0ae81a6 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: -0.707106769, W: 0.707106769} + Scale: {X: 1.0, Y: 10.0, Z: 1.0} + Children: {} + cec4407060699b5ddb4eeb6f5f980024: !ModelComponent + Id: 45774e55-7a54-4a23-af2b-914f39f92b43 + Model: c11da5de-520a-4bd5-a691-5476b2a812e0:Gameplay/Models/Cylinder + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 30a095c2-8c9f-4cd2-9784-1ba35cc22331 + InstanceId: b13187dc-a13b-4d78-bd1b-51f1ef105304 + - Folder: Props + Entity: + Id: d26fe686-cb84-474e-ac61-a6c5b024d252 + Name: QuadBarrels + Components: + 6cba76ddfd1ccfe65a4c5a140756c8d4: !TransformComponent + Id: 19a02576-49c3-47a5-9054-b1cc9e110968 + Position*: {X: 4.76677847, Y: 0.0, Z: 0.6548741} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3280e516b6ce697916b6f1c0823acd38: !ModelComponent + Id: 11b2d5aa-5fdb-4395-bb6e-cfdb417972ee + Model: bd5c8df1-b6f8-4ae3-9099-b063300bc184:Environment/Props/Models/QuadBarrels + Materials: {} + a0046f2ff924d533f457904736235306: !StaticColliderComponent + Id: 5798cd1a-b8a5-41e8-9c9c-677f86373ebe + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 73a42be32d471fc220f6ebc55d725e77: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 3.0, Z: 2.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: bceccb3f-3666-4864-aded-2230c759cbaf:Environment/Props/Prefabs/QuadBarrels + BasePartId: ae3cd2c6-ef7d-4ebb-9bf1-01ff9c1b034c + InstanceId: 855fa31d-e509-4c88-ab89-c758d1e674b6 + - Folder: Props + Entity: + Id: d2fceb07-d21d-46f2-86a0-7ccebf9cf9da + Name: GasPump + Components: + d547e8a3f1c2213a7ef3000c9e9dcd82: !TransformComponent + Id: 3ce44de2-a24c-4115-ab81-f5bf06405b5e + Position*: {X: 4.5, Y: 0.0, Z: -13.999999} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3d7cef951a17c6ce8a6c46b67b395120: !ModelComponent + Id: a74216a2-c693-4001-89d8-b491ea9f5c4e + Model: 83bd9601-ccff-4c98-b01a-f02691a402f0:Environment/Props/Models/GasPump + Materials: {} + a744edf4c69d852f6eb77a0c7a97200e: !StaticColliderComponent + Id: e0d31a5d-eb67-48b7-9806-2480782cb283 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 3d6e4b33be85f99a428d29df41ace1a0: !CylinderColliderShapeDesc + Height: 5.3 + Radius: 1.1 + LocalOffset: {X: 0.0, Y: 2.65, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: c18756a2-9133-4046-9e4c-c267e063b021:Environment/Props/Prefabs/GasPump + BasePartId: 200140b7-8b11-43e8-bd95-b8ab5d0c57da + InstanceId: 3a977f06-a00b-4451-956e-4003fe6f79a1 + - Folder: Platform + Entity: + Id: d7458068-87ae-4bd5-9af4-18f36aee6ca1 + Name: Level_1-1_Platform + Components: + 9e2afbb546081503dbfa70d3d18f2ab1: !TransformComponent + Id: 480a30ee-566e-47b1-8159-b02ebeaa3994 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + b89f63de171f68381ac7e0191796e729: !ModelComponent + Id: 38fdb768-1b00-47e7-a59f-256f6e7b2713 + Model: a7957da4-182e-48a7-ae81-b402874bdac6:Levels/PrefabModels/Level_1-1_Platform + Materials: {} + 5cf0d924697d413a7e0503da4d75d2ca: !StaticColliderComponent + Id: dc3a7570-9409-4a05-b81a-6c9c2bb54f82 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 47638d562a918e3c3126918b61bd10d8: !BoxColliderShapeDesc + Is2D: false + Size: {X: 15.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.0, Z: 3.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + bea68653da7ba488d0ff6ba1c75d2bfb: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 2.0, Z: 28.0} + LocalOffset: {X: 7.0, Y: 0.0, Z: -11.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + e944f089c0b2a557fbdb9ef44991dc4b: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 2.0, Z: 28.0} + LocalOffset: {X: -7.0, Y: 0.0, Z: -11.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + bd9894e27eebc641a0942968ba4944c6: !BoxColliderShapeDesc + Is2D: false + Size: {X: 5.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: -5.0, Y: 0.0, Z: -25.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 501fb98e4c4a04f600640700e3eb2a20: !BoxColliderShapeDesc + Is2D: false + Size: {X: 5.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 5.0, Y: 0.0, Z: -25.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + - Folder: Gameplay + Entity: + Id: db2a0c10-7131-49a4-ade8-8bd8ab8b095f + Name: Teleport + Components: + 8954766badcc7aefa23c04e3693487f4: !TransformComponent + Id: 85294aa6-2814-49d3-b506-56ebc58072c6 + Position*: {X: 0.0, Y: 0.0, Z: -1.50000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + b04cee6ac160ba38e4452d822efc369f: ref!! 2745fa37-7169-41b7-ba2b-8769f30082d7 + 5aff464ea6197c41081788a1ee01b850: !ModelComponent + Id: 43824233-c8c9-4995-998c-f50c2d3013ac + Model: 74ed18b5-f993-49d7-8d3e-170411c88201:Environment/Props/Models/Teleport + Materials: {} + fb452f16718eee0a0701c893d6248fc6: !StaticColliderComponent + Id: 9c91c0df-51fe-4605-9867-5d6470212bfc + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 95d55168ece39fce6c45fb238bb81ddd: !CylinderColliderShapeDesc + Height: 0.5 + Radius: 2.7 + LocalOffset: {X: 0.0, Y: 0.225, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 2b5e579dc9d3fb215280cb3eddbf2e60: !CylinderColliderShapeDesc + Height: 0.6 + Radius: 1.8 + LocalOffset: {X: 0.0, Y: 0.275, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + e041fdcf8ad2beb11c6df6e835526292: !CylinderColliderShapeDesc + Height: 0.275 + Radius: 2.9 + LocalOffset: {X: 0.0, Y: 0.15, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + e390ae9b92ae19edfd91c178b3ea6597: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.75, Y: 5.0, Z: 1.2} + LocalOffset: {X: 2.45, Y: 2.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 2642c26812a542f2ef3c8201ed5ad4da: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.75, Y: 5.0, Z: 1.2} + LocalOffset: {X: -2.45, Y: 2.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: d45cc866-3bbb-407e-84aa-52ad3ab6446a:Environment/Props/Prefabs/Teleport + BasePartId: df056d3a-bcae-4fb5-ba2e-61dc239fe17c + InstanceId: 7657df38-6dbf-4a7d-ad6a-1621196f6a5d + - Folder: Platform + Entity: + Id: e594a860-350d-4c04-9405-dc82986db63e + Name: Level_1-1_PlatformRocks + Components: + 10e99f697ac720a597657275329fda18: !TransformComponent + Id: 263aad18-1972-48b3-8b0c-06f4494b62dc + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f4510d26b856d40424b1c9f0ada5b78b: !ModelComponent + Id: 976fe529-e893-4888-a989-a027919ef88c + Model: dfe97702-4103-44f9-91eb-7fedc0a5f2fc:Levels/PrefabModels/Level_1-1_PlatformRocks + Materials: {} + - Folder: null + Entity: + Id: eaa29dbb-6bfb-4042-871a-1d762f8854a0 + Name: Tubes_base + Components: + 7cdd3b1a1396bae0df8d315686b47524: !TransformComponent + Id: a831e49e-da2b-4d3e-98b4-832b4de484be + Position: {X: 0.0, Y: 0.0, Z: 3.15} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: -1.0} + Children: {} + 14c6a602fe3acc99031df8e58a62d2c8: !StaticColliderComponent + Id: 305fdacc-d9db-40cd-a951-efcaacdf919f + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 2f121f88c1f6896ca79a2939aa8a095c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.25, Z: 1.2} + LocalOffset: {X: 0.0, Y: 0.625, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 9a70c79d932274ae3d789c1b8e505eed: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 0.7, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.35, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + c693012fa2a7a493118f8d327a097904: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.6, Z: -0.3} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + ec075d7b9a08dd03f4591017a4bce1a2: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: -0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 7742036734daf5a2f5497973ad25733f: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: 0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 62e87c0b-15d8-4628-95c9-7880f4cf2fe1:Environment/Props/Prefabs/Tubes + BasePartId: 6b5a24fa-0d02-4afd-abf9-40cf450e9674 + InstanceId: fd096e1b-7b5a-4579-8208-d109bb52804b + - Folder: Props + Entity: + Id: edbc5f97-53b5-42b0-90bd-68c5ccbe075c + Name: Pillar2_flat + Components: + da7a4adb847246609d33226bfd434f6d: !TransformComponent + Id: 44b78f17-555a-4e0f-8072-e282692b45ac + Position*: {X: -3.99999666, Y: 0.0, Z: -23.9999981} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + b562b38cac55869a74c5ff4cc5bf9e45: ref!! 95e38e1d-03ed-4c89-8570-c36d40d55bae + ca93a075a4312c733f6220297af4b308: !ModelComponent + Id: fcdf91cb-f03a-48a8-b297-8eb5c0a62278 + Model: 41f2c63a-dcec-4143-a665-bbc9f616a21e:Environment/Props/Models/Pillar2_flat + Materials: {} + 9e593e77343fc9ec938194c13e10f499: !StaticColliderComponent + Id: 2ba459ae-8085-4465-b325-6082dd7bf0ab + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + e9d57103d93cc1430a186f89f84bf0cc: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.7, Y: 6.5, Z: 0.3} + LocalOffset: {X: 0.0, Y: 3.25, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 33f4eacf-6067-4a00-9e0d-3ed6ae1bd500:Environment/Props/Prefabs/Pillar2_flat + BasePartId: 25173063-4403-4736-8dc0-64d750dc171b + InstanceId: 84eaf1f2-0815-4a77-be79-c5c76988eb88 + - Folder: Props + Entity: + Id: edf21527-8d1c-4cbd-b37e-5ff879f42c22 + Name: Small_Angle + Components: + f59e2ade343b886c0ca1f125a2504c1c: !TransformComponent + Id: 48487b93-4196-4224-8064-536d6ae80d72 + Position*: {X: -5.0, Y: 0.0, Z: -22.9999981} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 55d6ee3d08a260c07fdcbe9efb9741fe: !ModelComponent + Id: 92d44861-0ae0-47d6-8f13-5994476be5d0 + Model: 26958e5a-54e8-4c78-915b-ff9b33a6e742:Environment/Walls/PrefabModels/Small_Angle + Materials: {} + d9656997474c6f7b8bbd23de2fa86f31: !StaticColliderComponent + Id: 5af4d508-13ea-4977-b651-4d7c2d55c6c2 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + c222d643bda9467ac12372fe4e854a41: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 1.0, Y: 1.0, Z: 0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 5ac88fde6f08e8fabb87c9bd14c8f2b7: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 0.5, Y: 1.0, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 11f45f58b26e798879e9e2b7a3c6160b: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 0.5, Y: 0.0, Z: -1.0} + LocalRotation: {X: 0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + Base: + BasePartAsset: bdf4ab4d-73bd-4722-9158-c7d19b5a4602:Environment/Walls/Prefabs/Small_Angle_Grouped + BasePartId: 1f8be153-d7e6-4961-880b-44efc358b7cb + InstanceId: b3cd29e5-d6d2-4116-8e63-6e569a7581c6 + - Folder: Gameplay + Entity: + Id: f36e10ed-386f-4cd0-be10-e414dca8eb0b + Name: LaserFence + Components: + fb5e18952f86407dad838d0b5bc40bef: !TransformComponent + Id: 6a7a8eff-543f-455d-a211-1932c562af13 + Position*: {X: 0.0, Y: 0.0, Z: -24.7188644} + Rotation*: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + f94a04d4dd9ca249d275be383b123cc7: ref!! 0a203fa3-5fa6-4334-ab08-678ae129492e + e8af797a2f73bec8e5b3b407c77a04b3: ref!! 13763ce9-90fd-46a1-8d2c-f0801f231584 + c4e1eb951c333060077478fec3e6f721: !Starbreach.Gameplay.LaserFence,Starbreach + Id: 389e67bd-3363-4aa4-a020-1f97c689ca7a + ParticleSystemComponents: + d4e1b67fd72a014591445d886fdbd013: ref!! 24d66b0d-ab1b-49bb-9df5-b76d954ad4a7 + 99ad129b17a7400624a0fdde856096e0: ref!! 0495aed1-9525-4185-9e04-7a3e30b945a7 + ModelComponents: + 1e0b1119a150cc02dddd2f91b8f2f386: ref!! 45774e55-7a54-4a23-af2b-914f39f92b43 + dd30ed9dc650b5d60c314f45e5431622: ref!! b2ccc9a0-0389-40a5-9409-295a30f33643 + LasetBlockade: + 23ae30509c9fbe5fb438d52a1b33c4c0: ref!! 74147f3d-f34b-4e63-8e76-fe2c4b498fab + Triggers: + CombinationMode*: Conjunction + Inverted*: true + Activators: + 9ddea1b58f4971315fdb911d55a601ad*: !Starbreach.Gameplay.PressurePlate,Starbreach ref!! de9e0273-e7af-4abe-a8a2-ee4017726a4a + Enabled: true + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 945727d1-98d0-4a00-b29c-98f78daa9839 + InstanceId: b13187dc-a13b-4d78-bd1b-51f1ef105304 + - Folder: null + Entity: + Id: f5e87a24-3a20-4d30-8617-c542353035d0 + Name: LaserFence_Static (2) + Components: + f08afbc357f5790406844c92d0539513: !TransformComponent + Id: 13763ce9-90fd-46a1-8d2c-f0801f231584 + Position: {X: 3.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: -0.6, Y: 0.6, Z: 0.6} + Children: + 78f46892dc105a369fcd202c189df608: ref!! f85389ea-9c12-4be2-af50-6bf54c80c4c2 + 5255162075021a6f951970991ca6608e: ref!! 2b45e36c-d8ab-4810-9c7b-aeb39ddc8139 + 536240f8fb1df6f999ea4a5d4ba7f1c1: ref!! 03268128-ba30-4daa-89e3-c01c131e2c9d + 75e86890a45d2bdc1ba0006f7998e13e: ref!! 9607e5fa-d01b-4390-9491-4676cdc5cc49 + 20f48c676e388f5f82ad7dda1063ae2d: !StaticColliderComponent + Id: 81ca40b8-1199-47a1-8e1d-a0c19524db58 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 368adb9e6793798169337ef4de98022b: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 3.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 16d23f36-f4be-4509-9d47-60cb574be928 + InstanceId: b13187dc-a13b-4d78-bd1b-51f1ef105304 + - Folder: Props + Entity: + Id: fc6d80b4-f701-4dc1-8a2b-41cb208dd6f6 + Name: box_2 + Components: + a4a1352c38d8d946adbd0a9eb22ecf7a: !TransformComponent + Id: 9b8a3791-c1fd-4001-840e-57207ec32235 + Position*: {X: -5.68766832, Y: 0.9557196, Z: 0.5628962} + Rotation*: {X: 0.0, Y: 0.385583967, Z: 0.0, W: 0.922672749} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 7a4dfc02f3a9234aa72a05fb7a824816: !ModelComponent + Id: f6838ba9-8acb-4636-bee0-c7bf84d05a39 + Model: 41fc6c99-792b-46fe-942c-ef3763a2407a:Environment/Props/Models/Box2 + Materials: {} + d4b4d5f2d8369d46845444c61c1e61ec: !StaticColliderComponent + Id: d8abf32d-3a26-412b-adbd-5b6f4f0176e2 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 82ea61f172e46a4aab7ce970e3a3f887: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.9, Y: 0.9, Z: 0.95} + LocalOffset: {X: 0.0, Y: 0.45, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 5246c639-719c-4380-a886-7bdfb16f5cbd:Environment/Props/Prefabs/Box2 + BasePartId: f0b73707-1f65-435f-a5ba-5c09ec4ef144 + InstanceId: 32bb42d2-1bdd-4e20-b252-abe85346e3c8 diff --git a/Starbreach/Assets/Shared/Levels/Platform_1-2.xkscene b/Starbreach/Assets/Shared/Levels/Platform_1-2.xkscene new file mode 100644 index 0000000..c22985f --- /dev/null +++ b/Starbreach/Assets/Shared/Levels/Platform_1-2.xkscene @@ -0,0 +1,5633 @@ +!SceneAsset +Id: d84c90f8-5819-4d13-9da0-44e63ffe03b2 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +ChildrenIds: [] +Parent: 6224d747-48a6-4736-a199-27785b9b7c3b:Levels/MainScene +Offset: {X: 3.0, Y: 0.0, Z: -46.0} +Hierarchy: + RootParts: + - ref!! 990d4c4a-4c50-4097-8e31-f5bfa7e02747 + - ref!! d67e1a81-7303-402a-a386-f33ad83b1042 + - ref!! 27018a6f-ca27-48cd-a4fb-9ccfd83fe201 + - ref!! 16cd2c77-6ecd-46d2-ac7c-23bed5a8c210 + - ref!! 2def7960-811b-4545-b280-97c0c160e8f1 + - ref!! f34cad96-ea59-446a-b82b-b69906a3481b + - ref!! 5ff15010-4563-4170-8fe6-c46342a51cb2 + - ref!! 0678cb4a-8e42-4138-aa16-a075932f921d + - ref!! e45ae51f-8ebb-4f22-bd2b-574153ab915c + - ref!! b28a2e4d-877f-4a28-83ea-60dd4bc43914 + - ref!! f5c85d77-58a0-4b47-b531-978dbe69bfed + - ref!! 29772f83-b412-47d0-b5e6-a66d6d56825a + - ref!! cc745a3d-06f2-47f8-8d5f-7676164827c6 + - ref!! 2cb5cdc9-c2ce-4ab5-ba2a-03bee2a1735e + - ref!! 5d4caa7f-95b4-4cfa-9bf8-75930ec742f0 + - ref!! 6798ef4a-ba97-4c14-8741-61bba9541413 + - ref!! 970d17a0-1cde-44c9-b724-a9d4a00cd0e3 + - ref!! cafaf9df-9c43-489e-8ecd-ad93e594ba76 + - ref!! 8dcaed88-34dc-4963-b9bf-b47d98677c94 + - ref!! 9f1b189c-35c0-419f-81fa-32e91dd894df + - ref!! c118aad2-68d9-42ff-9365-fd78e0ce3d36 + - ref!! 4db3974b-8f90-46d0-9d18-a71d7d643d5c + - ref!! 28157016-3efe-4587-800f-2c0a5a290256 + - ref!! be746415-a41b-4818-9e8e-5cba13299c20 + - ref!! 4fd90706-d683-4b56-b858-726dd167b00a + - ref!! d8629aa5-8a46-4bcd-bb40-406e9c93cf37 + - ref!! 4329ccb1-fc42-4c9b-9ff8-b1f12eeecb7c + - ref!! df6fc3de-8889-460a-952c-e94b054ff677 + - ref!! 250b81f9-2119-46bb-8d39-a401718a2fbe + - ref!! c9a654d6-e8d4-4d41-90b2-75fee0728a05 + - ref!! e1fcd386-27af-40a3-8e11-3d33cf802f18 + - ref!! 86e19a98-d6ab-4ba1-b9c2-2ec95a340c06 + - ref!! c7a0b2de-fc88-4391-9dec-10ecd6e8e332 + - ref!! 02eda4bb-ce0c-4c3d-90f2-8616ed933ed6 + - ref!! 6496f09d-0879-4992-b3c7-5f2b4f7d0110 + - ref!! 3beee896-72e8-4e31-b248-f5cb24d65ec3 + - ref!! 0417f327-26b8-402e-b1db-88a0f3deed5e + Parts: + - Entity: + Id: 0291bf2c-71c6-4b06-80a3-27a5c3be659d + Name: LargePillar + Components: + 4d0081ad1b800fc4ab391a6d3759f184: !TransformComponent + Id: 0485dc2c-01cb-4d39-9207-410696444612 + Position: {X: 8.5, Y: 3.0, Z: -3.499999} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 00760b60420914e2a47292b0d04393d7: !ModelComponent + Id: 65c2d586-c422-4906-a050-081aeb5b04be + Model: 258dfd07-ef55-4f3e-a0a8-afc05e4ca37b:Environment/Platforms/Models/LargePillar + Materials: {} + - Folder: Gameplay + Entity: + Id: 02eda4bb-ce0c-4c3d-90f2-8616ed933ed6 + Name: Drone + Components: + bee1416b5e2d304389e20936f750b8b1: !TransformComponent + Id: 8a6947bc-d6c3-425c-b6d4-b7cc4b894b12 + Position*: {X: -4.280912, Y: 0.0, Z: -29.0729656} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 68b08d6ef4327063ddfe04b67a961aae: ref!! 1d17a161-fe52-4e56-b41f-a3f15ad43dd6 + 963458a2c6c68927d38fec6a605500fa: ref!! bfb88526-f568-47fe-bbdf-2094fd06c99d + aed3e642d5d71f48bdf23181156082f9: !CharacterComponent + Id: 60153a48-4a87-48b1-9d8e-24d8279175fd + CollisionGroup: CustomFilter3 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + FallSpeed: 10.0 + MaxSlope: {Radians: 0.7853982} + JumpSpeed: 5.0 + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + ColliderShapes: + d27547538ff5dd4eb72e1d385d4862bd: !CylinderColliderShapeDesc + Height: 2.0 + Radius: 1.0 + LocalOffset: {X: 0.0, Y: 1.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 827cf65eb5dca148adaa7ef5bc60df35: !AudioEmitterComponent + Id: f2916875-5cbe-4389-aded-63d727704d70 + Sounds: + 9f0d8aaa3fc06a44bae1c6cff7aeef58~Death: 4c9333d4-d4d5-4f61-9390-6b2e2602cf1b:Drones/Sounds/Death + 062488fbcb22f344b134f663d4a59ff9~Explosion: 936a2dbe-31df-40cc-836b-18793ffcea22:Drones/Sounds/Explosion + 762f069faf274a408a2da257ca0f4736~Hit0: 732e562c-622b-4fff-8282-58a7efa0b204:Drones/Sounds/Hit0 + ba953638f1e5db4d852167189517624d~Hit1: 973a4551-7cd6-4b8d-8a53-5a61ca9e461b:Drones/Sounds/Hit1 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + c7262ebf0d468f43ba11ca1221215c08: !NavigationComponent + Id: 2f5272d4-82d1-414f-a94a-1852ae3dc7e1 + NavigationMesh*: e4c6e7f0-7bbb-4ac9-b5d3-4fc59cbb6509:Levels/Platform_1-2_NAV + GroupId: 665dbfaa-d91a-ee40-d176-a5eaed1268bc + 238e55139b0b248973a65b6ba75f8d54: !Starbreach.Drones.Drone,Starbreach + Id: 556301fa-fb5e-4483-8c6e-4d8b185a0707 + Priority: 4000 + Weapon: !Starbreach.Drones.MissileDroneWeapon,Starbreach + ProjectileSpawnPoint: ref!! 597edd43-4862-401e-af04-cfda9c1b2b1d + ReloadTime: 2.0 + ArraySize: {X: 3, Y: 3} + ArrayExtent: {X: 0.5, Y: 0.4} + MaximumRange: 20.0 + ProjectilePrefab: 35063ac9-350d-4c96-b28a-28abc68b4214:Drones/Prefabs/Rocket + AnimationDelay: 0.12 + SpreadAngle: {Radians: 0.1} + ShootingRange: 15.0 + MaximumSpeed: 1.5 + RotationSpeed: 6.283185 + HeadRotationSpeed: 6.283185 + Model: ref!! 60d188c2-bebb-4c21-980e-a42354ded212 + DefaultMaterial: b91deeaf-43f6-434a-8400-22a1c6cb0447:Drones/Materials/Drone/DroneUpper + AlertedMaterial: 70cfa151-cffc-4cf1-a0d5-2ac4ac94e4a6:Drones/Materials/Drone/DroneUpper_Alerted + EngineParticle: ref!! c0c1a904-769f-454e-b76b-226af8393101 + EngineAudioEmitter: ref!! aeb349e4-50a8-48bc-8313-94c10ce6bb32 + DroneExplosionPrefab: d1f82cfd-900e-4757-958c-1dd35a4ec775:Drones/Prefabs/DroneExplosion + e3d3d4a2c9c5e7676d484a7a5a41d498: !Starbreach.Drones.PatrollingDroneController,Starbreach + Id: ab0b41e1-d509-4084-b9be-ab4218fdec90 + PathToFollow: null + ChaseAlertZoneRadius: 20.0 + IdleAlertZoneRadius: 15.0 + AlertZoneTriggerEntity: ref!! 5b151252-fa66-40ed-9d79-e3fd45214f7a + Base: + BasePartAsset: aac84dfd-95cb-4a1f-8b00-00e61427e600:Drones/Prefabs/RocketDrone + BasePartId: fb95e431-53b2-4f1b-b194-74a16c023eef + InstanceId: 4a9903f3-ebec-48ca-8508-700544b62291 + - Entity: + Id: 0417f327-26b8-402e-b1db-88a0f3deed5e + Name: Navigation bounding box + Components: + af595941bad94e718d4eb3ba8a369e23: !TransformComponent + Id: b4375f4c-5d74-47b4-9c12-66f3eb917bd4 + Position: {X: 0.0, Y: 0.0, Z: -13.67564} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 0.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f402136fbeaa4e89b92c6358235d95ee: !Xenko.Navigation.NavigationBoundingBoxComponent,Xenko.Navigation + Id: 14fee3d9-b3a2-4eda-867d-f2dfa0d89b53 + Size: {X: 10.0, Y: 10.0, Z: 14.5} + - Folder: null + Entity: + Id: 057e2069-6d90-477d-9422-ae41f735561d + Name: LaserFence_Static + Components: + fb9b8e052602e60735334f7419c9e54a: !TransformComponent + Id: 49256b38-1c76-4ea2-b3bc-9e708b0099db + Position: {X: -3.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 0.6, Y: 0.6, Z: 0.6} + Children: + 72f98f4652f07969b02387bf80f44bb6: ref!! 06196a56-391e-4425-bde4-eae180c2f168 + ac54ba65908c8e57e9e7d04aaa225e10: ref!! 5c862f9a-ec27-4e32-83e6-4b2ddb117b12 + c9f4bf3456ad38e4294e8f90e4bc16ba: ref!! f73334f6-b1e9-414d-9be7-6a181dca49c7 + 985fa8fdb9571299e3e7f9b8b1f090f1: ref!! 6547d970-2db0-48f4-9cde-43ddc5a87d68 + eebd194cebc9a12cf0aa06c693e971b7: !StaticColliderComponent + Id: 7c2837d8-429c-4f02-8eef-71f124047d2b + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 7e00afee3484d23f207fe6d6fac12d9a: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 3.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 6022993f-f245-4b95-ae81-8a6e80860cd7 + InstanceId: 5e138026-4f2b-4c98-a4a1-426719ee499a + - Folder: Props + Entity: + Id: 0678cb4a-8e42-4138-aa16-a075932f921d + Name: Tubes_base + Components: + 7cdd3b1a1396bae0df8d315686b47524: !TransformComponent + Id: 37fac17c-4b93-4e1b-aee8-32fac3297301 + Position*: {X: -5.0, Y: 0.0, Z: -11.0} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 4d4296f2a30a764d9d8fe6bea949fb8e: !ModelComponent + Id: fc6149a1-d141-4084-ba98-d82fb4b843d6 + Model: 734077ff-795c-4d1b-9f8c-688d142c4007:Environment/Props/Models/Tubes_base + Materials: {} + 14c6a602fe3acc99031df8e58a62d2c8: !StaticColliderComponent + Id: 72eef715-89fd-40ad-9540-812a2876a399 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 2f121f88c1f6896ca79a2939aa8a095c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.25, Z: 1.2} + LocalOffset: {X: 0.0, Y: 0.625, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 9a70c79d932274ae3d789c1b8e505eed: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 0.7, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.35, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + c693012fa2a7a493118f8d327a097904: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.6, Z: -0.3} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + ec075d7b9a08dd03f4591017a4bce1a2: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: -0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 7742036734daf5a2f5497973ad25733f: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: 0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: a9eaf641-84b9-4fe0-bb15-bc2c8a67319b:Environment/Props/Prefabs/Tubes_base + BasePartId: e5249e5a-b18b-46fe-96f1-6f11a587b647 + InstanceId: 11639f9d-d76f-464d-b8d4-9fb00d7bbf19 + - Folder: null + Entity: + Id: 07cb462f-0841-4de9-bd7c-c8646875556c + Name: LaserCylinder + Components: + 6565f891cdba2236dd5dbf1888a0f6e0: !TransformComponent + Id: 455041b4-7ff2-4c92-9da4-95e8b6d99da5 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: -0.707106769, W: 0.707106769} + Scale: {X: 1.0, Y: 10.0, Z: 1.0} + Children: {} + cec4407060699b5ddb4eeb6f5f980024: !ModelComponent + Id: 5443c327-5169-4aea-97cd-ac51b5ea960a + Model: c11da5de-520a-4bd5-a691-5476b2a812e0:Gameplay/Models/Cylinder + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 6072d1ec-0d92-4855-a83a-bacfa7acc501 + InstanceId: 6d630e05-dde4-43ab-bb8c-c073f79dd7f5 + - Folder: null + Entity: + Id: 12a2b082-fdbd-44e9-acc3-4211ef28a2fb + Name: Steam + Components: + c1ecc9674350ec47b258da4ab8ccf2ff: !TransformComponent + Id: 4ee32042-996e-4e2e-8813-71749370f4e1 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8323bf5daa524c4fb5d833e41b08b32d: !ParticleSystemComponent + Id: abe2a369-c3ca-4345-a351-4bd2982816c9 + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: !BoundingSpheretatic + DebugDraw: true + Radius: 4.0 + Emitters: + 9a3a5271a4a0934d9467f6b095793379: + ParticleLifetime: {X: 0.5, Y: 1.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 0383cd796e839e4b9667af5d0fe71756: + Key: 0.0 + Value: 0.5 + TangentType: Linear + 3c3bf45d6e50e542871470a99fdfd9f3: + Key: 0.3 + Value: 0.7 + TangentType: Linear + aa6cd07e77ba1c4da6e836dff7b31695: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ZOffset: 0.2 + SoftEdgeDistance: 0.3 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 5.0, Y: 5.0, Z: 5.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8dbe2382-769c-45fe-9604-98c5ae5c434c:Textures/SMO001_3 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + fa12c9550522c24fa400d8ce84ef83a0: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 80.0 + Initializers: + 3994a4c9897c7049af5217d699e668a9: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.4, Y: 0.5} + 7fa5fb2d4e692c4aae5cda5ce081ca44: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.5, Y: 0.0, Z: -0.5} + PositionMax: {X: 0.5, Y: 0.0, Z: 0.5} + Interpolate: false + 3d037e54f2051d42a511f75567a2d5eb: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.05, Y: -3.0, Z: -0.05} + VelocityMax: {X: 0.05, Y: -3.0, Z: 0.05} + d4d112e1ace7b944828fa9278f3938e1: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + Updaters: + 226c0f6bc8f05441a0eb6454e9f89045: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 82276cc03e3f854b9dc5c50ece2e25f9: + Key: 0.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + e3927f1e92cb4d4f80c729960776e1ca: + Key: 0.2 + Value: {R: 0.5, G: 0.5, B: 0.5, A: 0.25} + TangentType: Linear + bb31441c3997734baf5d4b324f145da1: + Key: 1.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + a788c7989777534fbc50541f7eebe631: !UpdaterForceField + InheritPosition: true + Position: {X: 0.0, Y: -1.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: true + FieldShape: !FieldShapeCylinder + HalfHeight: 1.0 + Radius: 1.0 + DisplayParticleRotation: true + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 1.0 + FalloffStart: 0.1 + StrengthOutside: 0.0 + FalloffEnd: 0.9 + EnergyConservation: 1.0 + ForceDirected: 0.0 + ForceVortex: 0.0 + ForceRepulsive: 4.0 + ForceFixed: {X: 0.0, Y: 8.0, Z: 0.0} + Base: + BasePartAsset: aac85dfd-95cb-4a1f-8b00-00e61427e601:Drones/Prefabs/EnergyDrone + BasePartId: 67bf9668-b948-4e6a-8e59-ca5aebed6c09 + InstanceId: 3055ec25-e105-4588-b7d1-554ff56408b9 + - Folder: null + Entity: + Id: 12eab466-32f5-42cf-a433-f9cde07b8c23 + Name: LaserFence_up + Components: + c8c633e320d799468ba2a8e339362d2d: !TransformComponent + Id: 2dabc999-4654-45e0-99eb-3ecf9361fb3d + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3e4e674bd6ad2f439da54f92a29a7eec: !ModelComponent + Id: 4dd2a8fb-2344-47b6-8080-310c1fd0b836 + Model: ca14aec1-3989-485c-84c0-5d0cbf5858f4:Gameplay/Models/LaserFence_up + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 2051137f-5c3e-4877-b418-d6730043e667 + InstanceId: 5e138026-4f2b-4c98-a4a1-426719ee499a + - Folder: null + Entity: + Id: 13c0de3f-c132-416a-8394-6e27d3e2f001 + Name: Steam + Components: + c1ecc9674350ec47b258da4ab8ccf2ff: !TransformComponent + Id: 41d561c6-bf9d-4f29-8106-8a3196eb0fe1 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8323bf5daa524c4fb5d833e41b08b32d: !ParticleSystemComponent + Id: c69595cc-fe70-4236-911f-6cd2cc655905 + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed*: 0.15 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + 9a3a5271a4a0934d9467f6b095793379: + ParticleLifetime*: {X: 0.5, Y: 0.5} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 0383cd796e839e4b9667af5d0fe71756: + Key: 0.0 + Value: 0.2 + TangentType: Linear + 3c3bf45d6e50e542871470a99fdfd9f3: + Key: 0.3 + Value: 0.5 + TangentType: Linear + aa6cd07e77ba1c4da6e836dff7b31695: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value*: {X: 1.0, Y: 1.0, Z: 1.0, W: 0.5} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture*: 9cbbe433-0bc7-48e9-91c8-c7f05f957afd:Textures/SMO001_2 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder*: !UVBuilderFlipbook + XDivisions: 8 + YDivisions: 8 + StartingFrame: 0 + AnimationSpeed: 64 + ForceTexCoords: false + Spawners: + fa12c9550522c24fa400d8ce84ef83a0: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 50.0 + Initializers: + 3994a4c9897c7049af5217d699e668a9: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.4, Y: 0.5} + 7fa5fb2d4e692c4aae5cda5ce081ca44: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: 0.0, Y: 0.0, Z: 0.0} + PositionMax: {X: 0.0, Y: 0.0, Z: 0.0} + Interpolate: false + 3d037e54f2051d42a511f75567a2d5eb: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin*: {X: -0.05, Y: 2.0, Z: -0.05} + VelocityMax*: {X: 0.05, Y: 3.0, Z: 0.05} + d4d112e1ace7b944828fa9278f3938e1: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + Updaters: + 226c0f6bc8f05441a0eb6454e9f89045: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 82276cc03e3f854b9dc5c50ece2e25f9: + Key: 0.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + e3927f1e92cb4d4f80c729960776e1ca: + Key: 0.2 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.5} + TangentType: Linear + bb31441c3997734baf5d4b324f145da1: + Key: 1.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + Base: + BasePartAsset: 7e583813-c264-4c77-bb7f-23f0f609968d:VFXPrefabs/vfx-Steam + BasePartId: 39e6666d-d2d1-49c3-8f0e-31f321ca5b12 + InstanceId: 01a791eb-5aef-4291-be9f-55d776e49162 + - Folder: null + Entity: + Id: 146a53ff-dbcf-4aa0-957e-792f7532b4f0 + Name: LaserArc + Components: + 336f7ce982182944823955cce7f2b5ee: !TransformComponent + Id: 898ee005-fccf-41be-b0c2-eb8001e7233e + Position: {X: 0.5, Y: 1.75, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 6127bf25-0b62-4e22-863f-5009c2f77592 + InstanceId: 83dc3db0-8fe3-491e-b307-a950e5da8acc + - Folder: null + Entity: + Id: 15aba138-280b-430d-a489-50400be05bd4 + Name: LargePillar + Components: + 4d0081ad1b800fc4ab391a6d3759f184: !TransformComponent + Id: bd874602-9d12-491e-9876-286f61433bee + Position: {X: -14.4999981, Y: 3.0, Z: -3.50000048} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 00760b60420914e2a47292b0d04393d7: !ModelComponent + Id: f1758005-2a5f-40f3-9590-40fd3ae9990b + Model: 258dfd07-ef55-4f3e-a0a8-afc05e4ca37b:Environment/Platforms/Models/LargePillar + Materials: {} + - Folder: Props + Entity: + Id: 16cd2c77-6ecd-46d2-ac7c-23bed5a8c210 + Name: Small_Wall + Components: + b169bb0a28fc365afeac43ee8f183ee6: !TransformComponent + Id: fd17af07-e248-498d-940b-4ea7cf5083a2 + Position*: {X: -8.0, Y: 0.0, Z: -0.49999997} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 07ce1731b5c55346319dfe8de1941a66: !ModelComponent + Id: 2e4b4a64-f071-481f-b5af-c2ca1825ea97 + Model: 5d139f33-5b0c-4e35-ab70-78b928020552:Environment/Walls/PrefabModels/Small_Wall + Materials: {} + f67e43e13ee3fb89abc0bbaba3837c37: !StaticColliderComponent + Id: 42ee7e6a-94a2-47ed-b63a-091eafe0f93e + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + c40463507837835195777deb473f14de: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 1.5, Y: 1.0, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 76617c83803d5680acec68f22ab9ee48: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 0.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + a6227beb392d58cacc21431aa494be07: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 2.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + Base: + BasePartAsset: 35e9585d-5854-46bb-806b-d343b98a6b93:Environment/Walls/Prefabs/Small_Wall_Grouped + BasePartId: cfe6176c-8d73-4ab9-8cd5-43229726c1ff + InstanceId: 1a58ce71-752f-4f8e-ac24-a2450a052f8b + - Folder: null + Entity: + Id: 1b0125f0-2ee5-4212-88cb-7259642f2b98 + Name: vfx-Steam + Components: + 777d3567c93a6eeed44d2e51035db757: !TransformComponent + Id: afa1c313-2887-4fe3-b77c-f2dbdee820fb + Position: {X: -1.95453, Y: 0.0, Z: 0.8345866} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 4.0, Y: 4.0, Z: 4.0} + Children: + 315debc2ba806228bdd531cd3237a07e: ref!! 27115220-fa34-460e-9b8f-0675eb3630ac + - Folder: null + Entity: + Id: 20caca9e-7067-4356-9b5c-e3c91fc40824 + Name: Tubes_base + Components: + 7cdd3b1a1396bae0df8d315686b47524: !TransformComponent + Id: 9403255f-c879-4f4f-baf2-76cc76c7d2bc + Position: {X: 0.0, Y: 0.0, Z: 3.15} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: -1.0} + Children: {} + 14c6a602fe3acc99031df8e58a62d2c8: !StaticColliderComponent + Id: 222625a3-2caa-46d9-843a-71f57caa088f + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 2f121f88c1f6896ca79a2939aa8a095c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.25, Z: 1.2} + LocalOffset: {X: 0.0, Y: 0.625, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 9a70c79d932274ae3d789c1b8e505eed: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 0.7, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.35, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + c693012fa2a7a493118f8d327a097904: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.6, Z: -0.3} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + ec075d7b9a08dd03f4591017a4bce1a2: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: -0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 7742036734daf5a2f5497973ad25733f: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: 0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 62e87c0b-15d8-4628-95c9-7880f4cf2fe1:Environment/Props/Prefabs/Tubes + BasePartId: 6b5a24fa-0d02-4afd-abf9-40cf450e9674 + InstanceId: 9bc70876-1730-45b9-b1fc-0ce238d0e26a + - Folder: null + Entity: + Id: 22c66317-95ac-4f5a-b47a-1069812eb63d + Name: Vent_base + Components: + c2bef31cda0c8543946d5092d2cc4382: !TransformComponent + Id: 2a5c54fb-5478-41ce-8756-83b1985fd3d6 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 74a44ff7b53fd347b1bc0108f4e39f53: !ModelComponent + Id: 5718d7eb-137e-4073-a62d-d9a302f148e0 + Model: 9fb440c2-5c68-4b4c-a1c1-fe92481dc4d4:Environment/Props/Models/Vent_base + Materials: {} + 06cf1aa272609644a75ae1164968be17: !StaticColliderComponent + Id: a4790193-a71b-4c67-8778-4400dd75add6 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 18cf11ad3eabc040ac2705991dacfea7: !CylinderColliderShapeDesc + Height: 1.4 + Radius: 0.9 + LocalOffset: {X: 0.0, Y: 0.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b5275603-ec75-4bf7-b9cd-6613fe69d2b9:Environment/Props/Prefabs/Vent + BasePartId: 94fd4929-dc17-406a-b101-7d999144f384 + InstanceId: eb3724cb-b9d1-4a8f-be2d-0fb00d8798af + - Folder: Gameplay + Entity: + Id: 250b81f9-2119-46bb-8d39-a401718a2fbe + Name*: LaserFence_BarrierA2 + Components: + fb5e18952f86407dad838d0b5bc40bef: !TransformComponent + Id: ff254d84-24c2-4a90-b081-0c7811ba21fb + Position*: {X: 0.442483217, Y: 0.0, Z: -19.7252865} + Rotation*: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + f94a04d4dd9ca249d275be383b123cc7: ref!! 5a7d208e-ae82-4da4-8e58-68714e5719fd + e8af797a2f73bec8e5b3b407c77a04b3: ref!! d75fe451-edb3-4dae-ba46-5ea8d5f9dbde + c4e1eb951c333060077478fec3e6f721: !Starbreach.Gameplay.LaserFence,Starbreach + Id: bdbb8555-97ad-4146-9737-cf9528bf781d + ParticleSystemComponents: + d4e1b67fd72a014591445d886fdbd013: ref!! 31dfb750-69a9-4129-a20c-883057875d68 + 99ad129b17a7400624a0fdde856096e0: ref!! 3b0e2827-1dec-4728-a5dc-9631b0569440 + ModelComponents: + 1e0b1119a150cc02dddd2f91b8f2f386: ref!! 96dfd9c9-4cdb-4eea-9a58-8c765c3c2450 + dd30ed9dc650b5d60c314f45e5431622: ref!! 634c08c1-8077-4776-b064-cdab0218bf19 + LasetBlockade: + 23ae30509c9fbe5fb438d52a1b33c4c0: ref!! de6f7fc1-6304-43e3-a0e6-3d7781bd1c12 + Triggers: + CombinationMode*: Conjunction + Inverted*: true + Activators: + 23e76ce92ec2929dde862f2f3663b9db*: !Starbreach.Gameplay.PressurePlate,Starbreach ref!! 64868e54-0363-477e-b6bb-769649a75214 + Enabled: true + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 945727d1-98d0-4a00-b29c-98f78daa9839 + InstanceId: 83dc3db0-8fe3-491e-b307-a950e5da8acc + - Folder: Props + Entity: + Id: 27018a6f-ca27-48cd-a4fb-9ccfd83fe201 + Name: Small_Wall + Components: + b169bb0a28fc365afeac43ee8f183ee6: !TransformComponent + Id: a8981c6d-4639-4956-b570-37cb56fb7889 + Position*: {X: -8.0, Y: 0.0, Z: -0.49999997} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 07ce1731b5c55346319dfe8de1941a66: !ModelComponent + Id: b85e39d1-5460-49ad-a67e-bf6fd45993a2 + Model: 5d139f33-5b0c-4e35-ab70-78b928020552:Environment/Walls/PrefabModels/Small_Wall + Materials: {} + f67e43e13ee3fb89abc0bbaba3837c37: !StaticColliderComponent + Id: 96b14acd-42fb-4d36-941f-48fa9ef0d260 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + c40463507837835195777deb473f14de: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 1.5, Y: 1.0, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 76617c83803d5680acec68f22ab9ee48: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 0.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + a6227beb392d58cacc21431aa494be07: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 2.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + Base: + BasePartAsset: 35e9585d-5854-46bb-806b-d343b98a6b93:Environment/Walls/Prefabs/Small_Wall_Grouped + BasePartId: cfe6176c-8d73-4ab9-8cd5-43229726c1ff + InstanceId: dfc571fd-616b-4008-bc73-ed3cbe5c599b + - Folder: Props + Entity: + Id: 28157016-3efe-4587-800f-2c0a5a290256 + Name: box_1 + Components: + 809778ee97de74479d46b2b89cf3fd55: !TransformComponent + Id: 5dbc5f03-da27-421a-a2b6-ea0a0024a3d0 + Position*: {X: -10.0, Y: 0.0, Z: -28.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + 46d65c287ed37b419febba3f2fc9e168: !ModelComponent + Id: 058a8005-7ebd-46a4-9a39-1db660de725a + Model: 46441ab3-67fb-40d4-8b72-8dd1db5d988e:Environment/Props/Models/Box1 + Materials: {} + 97af1ceb4c685740b019dc46621ca5bd: !StaticColliderComponent + Id: 793fa0b9-f903-45c0-9b35-68b2aae49921 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 30ff71837d20084985383f3411cf2ed8: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.95, Y: 0.95, Z: 0.95} + LocalOffset: {X: 0.0, Y: 0.475, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b23b46aa-4d3f-45a8-ab4b-7c5a9e4d9d99:Environment/Props/Prefabs/Box1 + BasePartId: e8b2a223-8164-4e20-8309-f81a90ca09cc + InstanceId: a22e8839-3308-449b-8a48-c09da4e94313 + - Folder: Props + Entity: + Id: 29772f83-b412-47d0-b5e6-a66d6d56825a + Name: box_2 + Components: + a4a1352c38d8d946adbd0a9eb22ecf7a: !TransformComponent + Id: ac481521-831b-4bcd-bbfc-6ade212936db + Position*: {X: 2.640829, Y: 1.9246161, Z: -25.92491} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + 7a4dfc02f3a9234aa72a05fb7a824816: !ModelComponent + Id: 61c984b9-bec2-4ed9-8bcc-7b2c2d63ca6d + Model: 41fc6c99-792b-46fe-942c-ef3763a2407a:Environment/Props/Models/Box2 + Materials: {} + d4b4d5f2d8369d46845444c61c1e61ec: !StaticColliderComponent + Id: fa3bc068-043a-4fee-83a0-c0be42e1c050 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 82ea61f172e46a4aab7ce970e3a3f887: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.9, Y: 0.9, Z: 0.95} + LocalOffset: {X: 0.0, Y: 0.45, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 5246c639-719c-4380-a886-7bdfb16f5cbd:Environment/Props/Prefabs/Box2 + BasePartId: f0b73707-1f65-435f-a5ba-5c09ec4ef144 + InstanceId: 8ec32fbf-0df7-4ebc-9a5f-10a1ca5bb235 + - Folder: null + Entity: + Id: 2a2d5691-0800-441e-b44b-f33d6ab1e62f + Name: LaserArc + Components: + 336f7ce982182944823955cce7f2b5ee: !TransformComponent + Id: 01581778-36d7-439b-b0e9-0f51ba0e54f2 + Position: {X: 0.5, Y: 2.5, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 28b6b224-b4bb-48a9-bccb-71f0e16cf1be + InstanceId: 6d630e05-dde4-43ab-bb8c-c073f79dd7f5 + - Folder: null + Entity: + Id: 2a84d74b-41dd-40b5-83b2-8a7ee16ff310 + Name: LaserFence_Static + Components: + fb9b8e052602e60735334f7419c9e54a: !TransformComponent + Id: 5a7d208e-ae82-4da4-8e58-68714e5719fd + Position: {X: -3.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 0.6, Y: 0.6, Z: 0.6} + Children: + 72f98f4652f07969b02387bf80f44bb6: ref!! 0a7a6c3e-9db6-493b-b9b7-6ffb123a5ec5 + ac54ba65908c8e57e9e7d04aaa225e10: ref!! 9b5aa19d-40b8-4329-a305-4bfe28942f41 + c9f4bf3456ad38e4294e8f90e4bc16ba: ref!! 659b0d4b-dd03-46cb-a91e-eb05d35d4bd7 + 985fa8fdb9571299e3e7f9b8b1f090f1: ref!! 2b1dba75-6d21-4c62-9398-e2e953f6aefb + eebd194cebc9a12cf0aa06c693e971b7: !StaticColliderComponent + Id: 81f41383-cc9e-428b-8483-f8102311b858 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 7e00afee3484d23f207fe6d6fac12d9a: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 3.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 6022993f-f245-4b95-ae81-8a6e80860cd7 + InstanceId: 83dc3db0-8fe3-491e-b307-a950e5da8acc + - Folder: null + Entity: + Id: 2c824aaf-d212-4c04-a742-9cc0b723f38e + Name: LaserBeam + Components: + c2a61ac9cca3304c949c26193b0945c4: !TransformComponent + Id: f73334f6-b1e9-414d-9be7-6a181dca49c7 + Position: {X: 0.5, Y: 1.75, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + fe89fc524a7b9ae686e1c8c7bf6e603c: ref!! d5d9d32a-73d6-4071-bba4-7ccb53cdf227 + 5ee7f85c3fbac746b5c31e169615a5c7: !ParticleSystemComponent + Id: effc3a78-83c8-4157-a007-6fcb8dadd948 + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 0.125490189, B: 0.125490189, A: 1.0} + Speed: 6.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + f239db465dd7354bbc55100bd300b151: + EmitterName: sparks + ParticleLifetime: {X: 1.0, Y: 5.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + ba54a1971cd84340b5ba37f508a3bd2c: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 881873fa3d3a744db46ae3db16b7d133: + Key: 1.0 + Value: 0.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 150.0, Y: 150.0, Z: 150.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: null + ForceTexCoords: false + Spawners: + 946a1b5e1895434284c7dbdaa728c786: !SpawnerBurst + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 100 + Initializers: + 581d30af2592fb41a520efcb0f64656c: !InitialPositionParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: true + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: true + ParentControlFlag: Group00 + SeedOffset: 0 + PositionMin: {X: -0.5, Y: -0.1, Z: -0.1} + PositionMax: {X: 0.5, Y: 0.1, Z: 0.1} + 0460848851abf642879131d04c839872: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.3 + SeedOffset: 24 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.05, Y: 0.2} + cd410cf87ddf07449ea894f8b8cb5238: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.02, Y: -0.01, Z: -0.02} + VelocityMax: {X: 0.02, Y: 0.04, Z: 0.02} + 855cafaded1b164dab92516ac877abf5: !InitialColorParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ParentControlFlag: Group00 + SeedOffset: 0 + ColorMin: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + ColorMax: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Updaters: {} + eabed859a30c6f409b30f3e5fa9295b2: + EmitterName: LaserEmitter02 + MaxParticlesOverride: 10 + ParticleLifetime: {X: 0.2, Y: 0.2} + ShapeBuilder: !ShapeBuilderRibbon + SmoothingPolicy: None + Segments: 5 + TextureCoordinatePolicy: AsIs + TexCoordsFactor: 1.0 + UVRotate: + FlipX: false + FlipY: false + UVClockwise: Degree0 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 100.0, Y: 100.0, Z: 100.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: da9b119e-ce87-4f7b-a4cc-2e93b158f137:Textures/Gradation01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: !UVBuilderScroll + StartFrame: {X: 0.0, Y: 0.0, Z: 1.0, W: 1.0} + EndFrame: {X: 0.0, Y: 1.0, Z: 1.0, W: 2.0} + ForceTexCoords: false + Spawners: + 771c66d89d336449959f8c37915bdb0e: !SpawnerPerFrame + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 10.0 + Framerate: 60.0 + Initializers: + af1eef0c052b814ab025d0cbeb5ef838: !InitialPositionArc + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + Target: ref!! c7dfc01b-c9b9-4cae-a288-d530a3078ddd + DisplayParticleRotation: true + DisplayParticleScale: false + FallbackTarget: {X: 0.0, Y: 0.0, Z: -1.0} + DisplayParticleScaleUniform: false + ArcHeight: 0.0 + Sequential: true + FixedLength: 0 + PositionMin: {X: 0.0, Y: 0.0, Z: 0.0} + PositionMax: {X: 0.0, Y: 0.0, Z: 0.0} + SeedOffset: 0 + 6d09f593db786145af6ba89f386f9b48: !InitialSpawnOrder + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + d1dbc13de4fdfd44a592f202d7bed600: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.5 + SeedOffset: 1 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.5, Y: 0.6} + Updaters: {} + 2801c9087775c2ecc9518fa0f801c79c: !StaticColliderComponent + Id: 3d568b9d-d47c-464f-8f8c-72fd84e3beb6 + CollisionGroup*: CustomFilter1 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + d9c023df8272c6145711f00ef8160b74: !BoxColliderShapeDesc + Is2D: false + Size: {X: 10.0, Y: 3.0, Z: 2.0} + LocalOffset: {X: 4.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 8512ce3d-9fb8-400b-bf88-7186abe432d8 + InstanceId: 5e138026-4f2b-4c98-a4a1-426719ee499a + - Folder: null + Entity: + Id: 2c93950c-31d3-49e1-972d-0f33ad4ede50 + Name: ProjectileSpawnPoint + Components: + ef320192025c3947bb1adb1c533630a6: !TransformComponent + Id: 7abc1778-483a-4a7e-9451-e78ec4d2ee7d + Position: {X: 0.785251141, Y: 0.0, Z: 1.41112423E-07} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d3a20669d1ecb74791449a8d599302ad: !ModelNodeLinkComponent + Id: 73429f0b-6efb-4fb2-99f9-475682f3429f + Target: null + NodeName: Bone_turret + f2be80b1286b9c4495a77d23ce7fc8b5: !AudioEmitterComponent + Id: cd0c3000-a3ee-4ca5-aba6-69657b23f558 + Sounds: + 68142dcfca753ffa32191b0615d93ade~Fire0: bba0e27c-3fb8-4ce6-99be-bc45ea5e03a7:Drones/Sounds/LaserFire0 + ec7e82125fa39f9cd037e85363f7d40f~Fire1: 10ee8241-9a28-45b6-aba4-00c4c39106b6:Drones/Sounds/LaserFire1 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + Base: + BasePartAsset: aac85dfd-95cb-4a1f-8b00-00e61427e601:Drones/Prefabs/EnergyDrone + BasePartId: 92eafacb-5258-4c7b-8040-b4b6d2721043 + InstanceId: 3055ec25-e105-4588-b7d1-554ff56408b9 + - Folder: Props + Entity: + Id: 2cb5cdc9-c2ce-4ab5-ba2a-03bee2a1735e + Name: Vent + Components: + 9385595b1d62aa4bb2b4c469cfe0c781: !TransformComponent + Id: 0c1bff54-dd9b-4abd-a780-74da03ccd2c0 + Position*: {X: -11.0, Y: 0.0, Z: -11.0} + Rotation*: {X: 0.0, Y: -1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + fef582b5ce88153fe16e0207caff2767: ref!! 2a5c54fb-5478-41ce-8756-83b1985fd3d6 + ad7e16aa5036ddb39dd344dbe2453ee0: ref!! 274ee8c2-9fd7-4084-94b8-2a482e1f022f + 1200685bbff2fe1e5c49bf133a5e169b: ref!! 5163b83d-5ea6-4ff5-9f6e-1f13b053d325 + b506b0ff932d7e6f0853bd4acef69b6c: ref!! 78d1ad0a-f527-463b-8944-1ff009ec44ff + Base: + BasePartAsset: b5275603-ec75-4bf7-b9cd-6613fe69d2b9:Environment/Props/Prefabs/Vent + BasePartId: 5c398975-e1e7-4877-af93-881930263e94 + InstanceId: eb3724cb-b9d1-4a8f-be2d-0fb00d8798af + - Folder: Props + Entity: + Id: 2def7960-811b-4545-b280-97c0c160e8f1 + Name: Small_Angle + Components: + f59e2ade343b886c0ca1f125a2504c1c: !TransformComponent + Id: 830ff7ae-41f2-43b7-9cb0-41429292311f + Position*: {X: 7.0, Y: 0.0, Z: -0.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: -1.0, Y: 1.0, Z: 1.0} + Children: {} + 55d6ee3d08a260c07fdcbe9efb9741fe: !ModelComponent + Id: b755b230-71d0-487b-90aa-8f410106acf4 + Model: 26958e5a-54e8-4c78-915b-ff9b33a6e742:Environment/Walls/PrefabModels/Small_Angle + Materials: {} + d9656997474c6f7b8bbd23de2fa86f31: !StaticColliderComponent + Id: a9600ddc-c2fc-4379-a762-19b84bfe9424 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + c222d643bda9467ac12372fe4e854a41: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 1.0, Y: 1.0, Z: 0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 5ac88fde6f08e8fabb87c9bd14c8f2b7: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 0.5, Y: 1.0, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 11f45f58b26e798879e9e2b7a3c6160b: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 0.5, Y: 0.0, Z: -1.0} + LocalRotation: {X: 0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + Base: + BasePartAsset: bdf4ab4d-73bd-4722-9158-c7d19b5a4602:Environment/Walls/Prefabs/Small_Angle_Grouped + BasePartId: 1f8be153-d7e6-4961-880b-44efc358b7cb + InstanceId: 3024e510-a9dd-4090-b1fe-e3b31c716465 + - Folder: null + Entity: + Id: 35e5920f-4c86-4670-b504-52a10f8d179d + Name: LaserFence_down + Components: + a4c9a42f24d4c443bad3060f61018c7f: !TransformComponent + Id: 5b302fb1-bad7-4c07-b2aa-34971ff8178c + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e52519dff8a1534c8d3d763ba4d4e83e: !ModelComponent + Id: a7564a7b-0b3d-4c22-8bff-6f3ab2cd2b20 + Model: 4658c1a9-b3b6-4481-b22c-ad61ea3c14d3:Gameplay/Models/LaserFence_down + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: fea06acd-bec3-4873-8a99-eeb324c05565 + InstanceId: 6d630e05-dde4-43ab-bb8c-c073f79dd7f5 + - Folder: null + Entity: + Id: 3b49a91c-2f25-42f1-b8f8-afbea27a4bbb + Name: vfx-Engine + Components: + 585f08a4c7e8554391f68583881993a2: !TransformComponent + Id: 8eb060b7-f6aa-4bd4-b98e-70fd863de2e5 + Position: {X: 0.0, Y: 0.2, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + c1ecc9674350ec47b258da4ab8ccf2ff: ref!! 1c803083-c3cd-4201-a07e-fdd326368160 + c141928df7725e448d9ee2d635345744: !AudioEmitterComponent + Id: aeb349e4-50a8-48bc-8313-94c10ce6bb32 + Sounds: + 210c4fe5f3b4c243942a23a4b3f26e49~Engine: 1d4673e5-cfbf-45eb-a34f-6d0c93074702:Drones/Sounds/Engine0 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + Base: + BasePartAsset: aac84dfd-95cb-4a1f-8b00-00e61427e600:Drones/Prefabs/RocketDrone + BasePartId: e84e5acd-b1a3-43f4-9066-a3247f4be1e3 + InstanceId: 4a9903f3-ebec-48ca-8508-700544b62291 + - Folder: null + Entity: + Id: 3b7d8f19-f5cc-47b3-897d-aebdbdb6731a + Name: Model + Components: + 7dad9d7cd55ced4abbf2cb2bbbd70c1a: !TransformComponent + Id: 30b9fc64-bd37-4436-a66b-0819ce9e3fe9 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + d719b2b339248f17748edd917f6bc9b2: ref!! 7abc1778-483a-4a7e-9451-e78ec4d2ee7d + 827f49f9d5034b4acf8a8939110ddb8d: ref!! c11408eb-ef09-4edf-b679-7b727bdb0243 + c212d189fcc79d46bbb83d892c85ce82: !ModelComponent + Id: 77bd5870-f508-4779-adbc-0d7d18f9a4c3 + Model: 8b6b1e4a-7de0-4524-8851-23d9e11339b5:Drones/Models/EnergyDrone + Materials: + bff18010728c254c925bebf2f03be01b~0: 76636c37-5239-4cd3-ac8a-953e9e4d913e:Drones/Materials/Drone/DroneLower + bad52956f3fcbb45ac19f0a99abdf1d0~1: b91deeaf-43f6-434a-8400-22a1c6cb0447:Drones/Materials/Drone/DroneUpper + 8710bd731b44b446a6f9448a50fcd66b~2: c2292c76-631b-4a19-b984-096e90ede1ed:Drones/Materials/EnergyDrone/EnergyDrone + c123a40ea35064c3e5b77b9aaec447dc: !AnimationComponent + Id: ea145702-71ea-47ce-a867-1acba98ce3ea + Animations: + a713ec907506354eb188aaba71f6039c~Fire: bbff5c1d-80bb-4c8c-bd8e-edd752029865:Drones/Animations/EnergyDroneFire + 8df1171e0223014899b19b71b409f1b3~Idle: c9f1abb3-03e4-41b0-b65e-95168f7c3a5f:Drones/Animations/EnergyDroneIdle + bcc277ca9a2ea247bf4ad6e427a787bf~Move: 1ed61017-cfb9-4a44-9ff7-effd95f4e6c2:Drones/Animations/EnergyDroneFly + Base: + BasePartAsset: aac85dfd-95cb-4a1f-8b00-00e61427e601:Drones/Prefabs/EnergyDrone + BasePartId: ee748701-a6a0-4afd-b04c-ab208598af51 + InstanceId: 3055ec25-e105-4588-b7d1-554ff56408b9 + - Folder: Gameplay + Entity: + Id: 3beee896-72e8-4e31-b248-f5cb24d65ec3 + Name: NavMesh + Components: + 80fa80dc9559cec6d1b1dc66ed74bf30: !TransformComponent + Id: cef351df-1fcd-4ac3-af08-3be0346fa900 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 39f1d3afecc61b3865d1f55d0add00dd: !NavigationComponent + Id: 0ea20196-cfcb-4ae8-b257-a7af38dbcba0 + NavigationMesh: e4c6e7f0-7bbb-4ac9-b5d3-4fc59cbb6509:Levels/Platform_1-2_NAV + GroupId: 00000000-0000-0000-0000-000000000000 + - Folder: null + Entity: + Id: 3d218ff2-c194-49f2-a7de-3b3d153af0cb + Name: LargePillar + Components: + 4d0081ad1b800fc4ab391a6d3759f184: !TransformComponent + Id: 361dfe99-9d4a-45c7-ac89-98ca7255f4a2 + Position: {X: 8.500002, Y: 3.0, Z: -26.4999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 00760b60420914e2a47292b0d04393d7: !ModelComponent + Id: 63f322c2-7024-4fb4-9d29-470e270ac848 + Model: 258dfd07-ef55-4f3e-a0a8-afc05e4ca37b:Environment/Platforms/Models/LargePillar + Materials: {} + - Folder: null + Entity: + Id: 3eed65ba-b068-420c-8329-e07e99aaa198 + Name: LaserBeam + Components: + c2a61ac9cca3304c949c26193b0945c4: !TransformComponent + Id: f710319d-b645-4156-974b-1ddb1663a971 + Position: {X: 0.5, Y: 1.75, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + fe89fc524a7b9ae686e1c8c7bf6e603c: ref!! a573b747-89c6-4607-8c43-361d6f974614 + 5ee7f85c3fbac746b5c31e169615a5c7: !ParticleSystemComponent + Id: d858c8fb-6721-4d37-ab88-05009a897f60 + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 0.125490189, B: 0.125490189, A: 1.0} + Speed: 6.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + f239db465dd7354bbc55100bd300b151: + EmitterName: sparks + ParticleLifetime: {X: 1.0, Y: 5.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + ba54a1971cd84340b5ba37f508a3bd2c: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 881873fa3d3a744db46ae3db16b7d133: + Key: 1.0 + Value: 0.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 150.0, Y: 150.0, Z: 150.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: null + ForceTexCoords: false + Spawners: + 946a1b5e1895434284c7dbdaa728c786: !SpawnerBurst + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 100 + Initializers: + 581d30af2592fb41a520efcb0f64656c: !InitialPositionParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: true + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: true + ParentControlFlag: Group00 + SeedOffset: 0 + PositionMin: {X: -0.5, Y: -0.1, Z: -0.1} + PositionMax: {X: 0.5, Y: 0.1, Z: 0.1} + 0460848851abf642879131d04c839872: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.3 + SeedOffset: 24 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.05, Y: 0.2} + cd410cf87ddf07449ea894f8b8cb5238: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.02, Y: -0.01, Z: -0.02} + VelocityMax: {X: 0.02, Y: 0.04, Z: 0.02} + 855cafaded1b164dab92516ac877abf5: !InitialColorParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ParentControlFlag: Group00 + SeedOffset: 0 + ColorMin: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + ColorMax: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Updaters: {} + eabed859a30c6f409b30f3e5fa9295b2: + EmitterName: LaserEmitter02 + MaxParticlesOverride: 10 + ParticleLifetime: {X: 0.2, Y: 0.2} + ShapeBuilder: !ShapeBuilderRibbon + SmoothingPolicy: None + Segments: 5 + TextureCoordinatePolicy: AsIs + TexCoordsFactor: 1.0 + UVRotate: + FlipX: false + FlipY: false + UVClockwise: Degree0 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 100.0, Y: 100.0, Z: 100.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: da9b119e-ce87-4f7b-a4cc-2e93b158f137:Textures/Gradation01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: !UVBuilderScroll + StartFrame: {X: 0.0, Y: 0.0, Z: 1.0, W: 1.0} + EndFrame: {X: 0.0, Y: 1.0, Z: 1.0, W: 2.0} + ForceTexCoords: false + Spawners: + 771c66d89d336449959f8c37915bdb0e: !SpawnerPerFrame + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 10.0 + Framerate: 60.0 + Initializers: + af1eef0c052b814ab025d0cbeb5ef838: !InitialPositionArc + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + Target: ref!! 2e5b77da-1dc4-486f-971e-472503c3b12a + DisplayParticleRotation: true + DisplayParticleScale: false + FallbackTarget: {X: 0.0, Y: 0.0, Z: -1.0} + DisplayParticleScaleUniform: false + ArcHeight: 0.0 + Sequential: true + FixedLength: 0 + PositionMin: {X: 0.0, Y: 0.0, Z: 0.0} + PositionMax: {X: 0.0, Y: 0.0, Z: 0.0} + SeedOffset: 0 + 6d09f593db786145af6ba89f386f9b48: !InitialSpawnOrder + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + d1dbc13de4fdfd44a592f202d7bed600: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.5 + SeedOffset: 1 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.5, Y: 0.6} + Updaters: {} + 2801c9087775c2ecc9518fa0f801c79c: !StaticColliderComponent + Id: 30593d76-e5f0-4a91-9eb9-4ff7789c88b0 + CollisionGroup*: CustomFilter1 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + d9c023df8272c6145711f00ef8160b74: !BoxColliderShapeDesc + Is2D: false + Size: {X: 10.0, Y: 3.0, Z: 2.0} + LocalOffset: {X: 4.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 8512ce3d-9fb8-400b-bf88-7186abe432d8 + InstanceId: 6d630e05-dde4-43ab-bb8c-c073f79dd7f5 + - Folder: null + Entity: + Id: 411aca94-1123-42ab-8f49-c5401c2ae02c + Name: LaserArc + Components: + 336f7ce982182944823955cce7f2b5ee: !TransformComponent + Id: 2e5b77da-1dc4-486f-971e-472503c3b12a + Position: {X: 0.5, Y: 1.75, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 6127bf25-0b62-4e22-863f-5009c2f77592 + InstanceId: 6d630e05-dde4-43ab-bb8c-c073f79dd7f5 + - Folder: null + Entity: + Id: 42b73433-fd83-466c-b85b-4f3305a55704 + Name: LaserFence_down + Components: + a4c9a42f24d4c443bad3060f61018c7f: !TransformComponent + Id: 0a7a6c3e-9db6-493b-b9b7-6ffb123a5ec5 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e52519dff8a1534c8d3d763ba4d4e83e: !ModelComponent + Id: 1a8e0221-c84c-42f0-92c8-fe5905833920 + Model: 4658c1a9-b3b6-4481-b22c-ad61ea3c14d3:Gameplay/Models/LaserFence_down + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: fea06acd-bec3-4873-8a99-eeb324c05565 + InstanceId: 83dc3db0-8fe3-491e-b307-a950e5da8acc + - Folder: Gameplay + Entity: + Id: 4329ccb1-fc42-4c9b-9ff8-b1f12eeecb7c + Name*: LaserFence_BarrierA1 + Components: + fb5e18952f86407dad838d0b5bc40bef: !TransformComponent + Id: 84a6f5d0-492a-4365-ab53-0917bd75d8a1 + Position*: {X: -6.356359, Y: 0.0, Z: -19.7252865} + Rotation*: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + f94a04d4dd9ca249d275be383b123cc7: ref!! 8c2e40f3-a121-4c0c-a314-b119ce1726a4 + e8af797a2f73bec8e5b3b407c77a04b3: ref!! 879a21e7-21a3-4f95-810d-69806537dfc0 + c4e1eb951c333060077478fec3e6f721: !Starbreach.Gameplay.LaserFence,Starbreach + Id: 7769ac85-e452-4589-831b-ec21843baaa0 + ParticleSystemComponents: + d4e1b67fd72a014591445d886fdbd013: ref!! 74c40929-d905-4f26-add6-7e07e018488a + 99ad129b17a7400624a0fdde856096e0: ref!! eeb19bd2-4a61-4403-921f-71da7c4b12ce + ModelComponents: + 1e0b1119a150cc02dddd2f91b8f2f386: ref!! 39c98707-5cf4-42c6-a75f-99c268e2a607 + dd30ed9dc650b5d60c314f45e5431622: ref!! 9a8b1007-054f-4384-b639-6dcbbd3a8770 + LasetBlockade: + 23ae30509c9fbe5fb438d52a1b33c4c0: ref!! a636348f-6efb-48d1-bef0-1f260eb405bb + Triggers: + CombinationMode*: Conjunction + Inverted*: true + Activators: + 2829044775c412bf48c95a27d6abd45f*: !Starbreach.Gameplay.PressurePlate,Starbreach ref!! 64868e54-0363-477e-b6bb-769649a75214 + Enabled: true + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 945727d1-98d0-4a00-b29c-98f78daa9839 + InstanceId: 52bcf716-d109-4561-b34b-8ad602c5a8a6 + - Folder: null + Entity: + Id: 477bef38-eec5-4943-86f1-034abe19fd02 + Name: vfx-Steam + Components: + 777d3567c93a6eeed44d2e51035db757: !TransformComponent + Id: 78d1ad0a-f527-463b-8944-1ff009ec44ff + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 4.0, Y: 4.0, Z: 4.0} + Children: + 315debc2ba806228bdd531cd3237a07e: ref!! 41d561c6-bf9d-4f29-8106-8a3196eb0fe1 + - Folder: null + Entity: + Id: 4d06b4c9-179e-4713-b1b2-b01f647ca5e2 + Name: LaserCylinder + Components: + 6565f891cdba2236dd5dbf1888a0f6e0: !TransformComponent + Id: f1bc46d3-8938-42dd-9654-6374aac9752a + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: -0.707106769, W: 0.707106769} + Scale: {X: 1.0, Y: 10.0, Z: 1.0} + Children: {} + cec4407060699b5ddb4eeb6f5f980024: !ModelComponent + Id: 9a8b1007-054f-4384-b639-6dcbbd3a8770 + Model: c11da5de-520a-4bd5-a691-5476b2a812e0:Gameplay/Models/Cylinder + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 6072d1ec-0d92-4855-a83a-bacfa7acc501 + InstanceId: 52bcf716-d109-4561-b34b-8ad602c5a8a6 + - Folder: Props + Entity: + Id: 4db3974b-8f90-46d0-9d18-a71d7d643d5c + Name: QuadBarrels + Components: + 6cba76ddfd1ccfe65a4c5a140756c8d4: !TransformComponent + Id: 56571360-bb2e-492a-a37a-1c33b6115155 + Position*: {X: -10.0, Y: 0.0, Z: -26.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3280e516b6ce697916b6f1c0823acd38: !ModelComponent + Id: e952c733-5fd6-48d0-a6de-d1640a02e20e + Model: bd5c8df1-b6f8-4ae3-9099-b063300bc184:Environment/Props/Models/QuadBarrels + Materials: {} + a0046f2ff924d533f457904736235306: !StaticColliderComponent + Id: a8deaa91-f106-4e64-950c-61e550441462 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 73a42be32d471fc220f6ebc55d725e77: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 3.0, Z: 2.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: bceccb3f-3666-4864-aded-2230c759cbaf:Environment/Props/Prefabs/QuadBarrels + BasePartId: ae3cd2c6-ef7d-4ebb-9bf1-01ff9c1b034c + InstanceId: d534bc45-a95e-4826-9229-3bd87ff470ab + - Folder: null + Entity: + Id: 4e59a218-b408-44cb-a166-50c825597b14 + Name: LaserFence_down + Components: + a4c9a42f24d4c443bad3060f61018c7f: !TransformComponent + Id: 13c05f60-1608-4c76-b081-71608167ccae + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e52519dff8a1534c8d3d763ba4d4e83e: !ModelComponent + Id: 193c8fcf-9e01-4a91-8a3e-37444f874ed5 + Model: 4658c1a9-b3b6-4481-b22c-ad61ea3c14d3:Gameplay/Models/LaserFence_down + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: b070b742-1285-4948-a158-2800ee11f5e7 + InstanceId: 5e138026-4f2b-4c98-a4a1-426719ee499a + - Folder: Props + Entity: + Id: 4fd90706-d683-4b56-b858-726dd167b00a + Name: box_1 + Components: + 809778ee97de74479d46b2b89cf3fd55: !TransformComponent + Id: dea8c3a7-3241-4eee-b95a-fd118e9271f4 + Position*: {X: -11.2935238, Y: 1.913842, Z: -27.9262466} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + 46d65c287ed37b419febba3f2fc9e168: !ModelComponent + Id: 8932da14-4791-4766-9e0f-d314fea4346a + Model: 46441ab3-67fb-40d4-8b72-8dd1db5d988e:Environment/Props/Models/Box1 + Materials: {} + 97af1ceb4c685740b019dc46621ca5bd: !StaticColliderComponent + Id: 8b9d1da9-b35c-491c-8ca3-0c64861c6baf + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 30ff71837d20084985383f3411cf2ed8: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.95, Y: 0.95, Z: 0.95} + LocalOffset: {X: 0.0, Y: 0.475, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b23b46aa-4d3f-45a8-ab4b-7c5a9e4d9d99:Environment/Props/Prefabs/Box1 + BasePartId: e8b2a223-8164-4e20-8309-f81a90ca09cc + InstanceId: 6a16a256-ad2e-443a-9f8d-6b5e5d540a30 + - Folder: null + Entity: + Id: 509b7615-2445-42f0-9d4a-4d8b2b2353a0 + Name: LaserCylinder + Components: + 6565f891cdba2236dd5dbf1888a0f6e0: !TransformComponent + Id: fc34f3fc-86f0-4bc2-a6e7-9cd9a6762adc + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: -0.707106769, W: 0.707106769} + Scale: {X: 1.0, Y: 10.0, Z: 1.0} + Children: {} + cec4407060699b5ddb4eeb6f5f980024: !ModelComponent + Id: 39c98707-5cf4-42c6-a75f-99c268e2a607 + Model: c11da5de-520a-4bd5-a691-5476b2a812e0:Gameplay/Models/Cylinder + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 30a095c2-8c9f-4cd2-9784-1ba35cc22331 + InstanceId: 52bcf716-d109-4561-b34b-8ad602c5a8a6 + - Entity: + Id: 556cb94b-e12f-4df1-8e50-5b0226829dd2 + Name: Level_1-1_PlatformRocks + Components: + eb2d5057c8e937143210d60fc897bbf2: !TransformComponent + Id: 19bbe23f-e5c3-4455-8b7b-f23bb3ff98ea + Position: {X: -3.5, Y: 0.0, Z: -3.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.3, Y: 1.0, Z: 1.1} + Children: {} + c311139fa90a77720253d190d9f6516c: !ModelComponent + Id: 81dedbae-60c6-4bb8-8f04-2c77106d38ba + Model: dfe97702-4103-44f9-91eb-7fedc0a5f2fc:Levels/PrefabModels/Level_1-1_PlatformRocks + Materials: {} + - Folder: null + Entity: + Id: 597edd43-4862-401e-af04-cfda9c1b2b1d + Name: ProjectileSpawnPoint + Components: + ef320192025c3947bb1adb1c533630a6: !TransformComponent + Id: a1ea8f79-fbe7-4dd7-9c85-2cbf81147d7c + Position: {X: 0.787716269, Y: -0.0260489322, Z: 1.45098568E-07} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d3a20669d1ecb74791449a8d599302ad: !ModelNodeLinkComponent + Id: 10df6068-1c9d-483a-9e16-1fd9b6593525 + Target: null + NodeName: Bone_turret + f2be80b1286b9c4495a77d23ce7fc8b5: !AudioEmitterComponent + Id: c41b7793-c797-49d3-8c0a-2722677af63a + Sounds: + 483657d21a6056232b19c15d3e90763b~Fire: 3de4a0e3-c642-4aa1-9801-7583f510ed44:Drones/Sounds/RocketFire + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + Base: + BasePartAsset: aac84dfd-95cb-4a1f-8b00-00e61427e600:Drones/Prefabs/RocketDrone + BasePartId: 92eafacb-5258-4c7b-8040-b4b6d2721043 + InstanceId: 4a9903f3-ebec-48ca-8508-700544b62291 + - Folder: null + Entity: + Id: 59e1a662-edf3-44a4-8035-b5cbbd9a2066 + Name: LargePillar + Components: + 4d0081ad1b800fc4ab391a6d3759f184: !TransformComponent + Id: 2784c07a-d42a-4b16-945e-52af743b3bce + Position: {X: -14.4999962, Y: 3.0, Z: -14.5} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 00760b60420914e2a47292b0d04393d7: !ModelComponent + Id: efe3198c-22a0-4b52-a133-7aa55e3ee812 + Model: 258dfd07-ef55-4f3e-a0a8-afc05e4ca37b:Environment/Platforms/Models/LargePillar + Materials: {} + - Folder: null + Entity: + Id: 5b151252-fa66-40ed-9d79-e3fd45214f7a + Name: AlertZoneTrigger + Components: + 37741c7f7923b7e1ef2d73915a26c89b: !TransformComponent + Id: bfb88526-f568-47fe-bbdf-2094fd06c99d + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 557d0a5f00f82108bd3505f6850bc931: !RigidbodyComponent + Id: c6d060a1-29da-4be4-aa2a-72b2b7596962 + CollisionGroup: CustomFilter2 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: true + IsKinematic: true + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 65240769cedf3fbd99aca64e97ba4ae6: !SphereColliderShapeDesc + Is2D: false + Radius: 1.0 + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + Base: + BasePartAsset: aac84dfd-95cb-4a1f-8b00-00e61427e600:Drones/Prefabs/RocketDrone + BasePartId: 79e33d69-4e12-473f-bdc6-0c107e3244ad + InstanceId: 4a9903f3-ebec-48ca-8508-700544b62291 + - Folder: Props + Entity: + Id: 5d4caa7f-95b4-4cfa-9bf8-75930ec742f0 + Name: box_1 + Components: + 809778ee97de74479d46b2b89cf3fd55: !TransformComponent + Id: 041bd20b-74a9-44e7-bef7-c57f28ec4e4e + Position*: {X: 1.64911461, Y: 0.0, Z: -25.26512} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + 46d65c287ed37b419febba3f2fc9e168: !ModelComponent + Id: 38d7443c-845b-47ae-9c2f-8d1e2ab339e2 + Model: 46441ab3-67fb-40d4-8b72-8dd1db5d988e:Environment/Props/Models/Box1 + Materials: {} + 97af1ceb4c685740b019dc46621ca5bd: !StaticColliderComponent + Id: b668939d-26f5-47e4-b094-db32b5319072 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 30ff71837d20084985383f3411cf2ed8: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.95, Y: 0.95, Z: 0.95} + LocalOffset: {X: 0.0, Y: 0.475, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b23b46aa-4d3f-45a8-ab4b-7c5a9e4d9d99:Environment/Props/Prefabs/Box1 + BasePartId: e8b2a223-8164-4e20-8309-f81a90ca09cc + InstanceId: f2bcd0f7-aa44-43e3-8555-6660090a538e + - Folder: Props + Entity: + Id: 5ff15010-4563-4170-8fe6-c46342a51cb2 + Name: Small_Angle + Components: + f59e2ade343b886c0ca1f125a2504c1c: !TransformComponent + Id: e678bd21-8c27-4b12-9828-60bd5b8cbbe0 + Position*: {X: 6.0, Y: 0.0, Z: -29.5} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: -1.0, Y: 1.0, Z: 1.0} + Children: {} + 55d6ee3d08a260c07fdcbe9efb9741fe: !ModelComponent + Id: 25e77bff-4d3e-4e39-8c23-018918bf2742 + Model: 26958e5a-54e8-4c78-915b-ff9b33a6e742:Environment/Walls/PrefabModels/Small_Angle + Materials: {} + d9656997474c6f7b8bbd23de2fa86f31: !StaticColliderComponent + Id: 462d1795-ad1e-42fb-96eb-9cf61110d616 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + c222d643bda9467ac12372fe4e854a41: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 1.0, Y: 1.0, Z: 0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 5ac88fde6f08e8fabb87c9bd14c8f2b7: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 0.5, Y: 1.0, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 11f45f58b26e798879e9e2b7a3c6160b: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 0.5, Y: 0.0, Z: -1.0} + LocalRotation: {X: 0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + Base: + BasePartAsset: bdf4ab4d-73bd-4722-9158-c7d19b5a4602:Environment/Walls/Prefabs/Small_Angle_Grouped + BasePartId: 1f8be153-d7e6-4961-880b-44efc358b7cb + InstanceId: 1e311eff-f025-4bfe-ab27-50bd90ce43ed + - Folder: null + Entity: + Id: 62ec65f2-492b-40f5-8f2c-46a0942c31ed + Name: PlatformRocks1 + Components: + 5b8695b746c5bfe6fe7c85c29a692577: !TransformComponent + Id: f60d1eee-ff19-4dfe-91fe-1c355362b05b + Position: {X: 2.580544, Y: -3.5, Z: -31.93074} + Rotation: {X: 0.0, Y: -0.6519948, Z: 0.0, W: 0.7582234} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + fe8aa76b0ca53ae15c759f257f280705: !ModelComponent + Id: 56ec4164-535a-4f29-984c-f430b601a576 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + - Folder: Platform + Entity: + Id: 6496f09d-0879-4992-b3c7-5f2b4f7d0110 + Name: Level_1-2_Platform + Components: + 47e239e65c1feacaa55a89a89148d834: !TransformComponent + Id: 1a5e6616-7118-439a-a305-91287ac6072d + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + b98c834d08a8c188efa287c3b021fdfa: ref!! 19bbe23f-e5c3-4455-8b7b-f23bb3ff98ea + 0bbc69a6006c8d27232327c668c86d0c: ref!! 03c6d2ad-da45-4e97-be9c-336ac6dc7cdc + 297cd14c3b0291c108aca1d5b141374a: ref!! f60d1eee-ff19-4dfe-91fe-1c355362b05b + 0fb343ed30d926daaa2f9e4092a1623b: ref!! 0485dc2c-01cb-4d39-9207-410696444612 + 470feb7ef3b0cfab495901891f74d404: ref!! bd874602-9d12-491e-9876-286f61433bee + 8e8af29871f0709c2610e90e04afc1e7: ref!! 91796a00-1e67-46cf-9e26-2c30fdd291ea + b870722cbbd0f505087381891c0c6a54: ref!! 2784c07a-d42a-4b16-945e-52af743b3bce + 509031c3c2710b2ca113386748c45ae9: ref!! 361dfe99-9d4a-45c7-ac89-98ca7255f4a2 + 39a1865cebc0b468bc3c016ba4dcbde2: ref!! 849adf33-d847-4aa9-a114-99c4d17b0dcf + d3c74553011de456a636129edc9ca202: !ModelComponent + Id: 8ae8abbe-03fd-496b-a192-8900d8093f4a + Model: e5f401a5-9a3b-4413-aacd-ae40d016b1f7:Levels/PrefabModels/Level_1-2_Platform + Materials: {} + e3e5f65321326c96706ba27211e28f77: !StaticColliderComponent + Id: c55d79c1-af61-4af2-8403-0ce26f068547 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 63370ef3fae25a04827b4b18b5ecbe19: !BoxColliderShapeDesc + Is2D: false + Size: {X: 9.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 4.0, Y: 0.0, Z: 1.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 4fb5cfcfbc5b409fae398b113f629d68: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 2.0, Z: 31.0} + LocalOffset: {X: 8.0, Y: 0.0, Z: -14.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 07c5150f27e9911847e9d95584ba1c85: !BoxColliderShapeDesc + Is2D: false + Size: {X: 9.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: -10.0, Y: 0.0, Z: 1.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + a3c0ecdaa004f6dad1f2291ab59f218f: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 2.0, Z: 31.0} + LocalOffset: {X: -14.0, Y: 0.0, Z: -14.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + cea8e48e196abea0f3ab0604911719f9: !BoxColliderShapeDesc + Is2D: false + Size: {X: 9.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 4.0, Y: 0.0, Z: -30.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + d8584112f502bad087a44a8afe5bb52d: !BoxColliderShapeDesc + Is2D: false + Size: {X: 9.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: -10.0, Y: 0.0, Z: -30.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 51a1a3d24c2cafc9eca2cd3e592b3306: !StaticPlaneColliderShapeDesc + Normal: {X: 0.0, Y: 1.0, Z: 0.0} + Offset: 0.0 + - Folder: null + Entity: + Id: 64f978b5-f67f-4a76-a7d2-32ae639ea803 + Name: LaserFence_up + Components: + c8c633e320d799468ba2a8e339362d2d: !TransformComponent + Id: 9b5aa19d-40b8-4329-a305-4bfe28942f41 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3e4e674bd6ad2f439da54f92a29a7eec: !ModelComponent + Id: d9033957-4bf5-4601-84d3-7fe8951a71f8 + Model: ca14aec1-3989-485c-84c0-5d0cbf5858f4:Gameplay/Models/LaserFence_up + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: e88381a2-6f10-476d-853f-56ea6884859f + InstanceId: 83dc3db0-8fe3-491e-b307-a950e5da8acc + - Folder: null + Entity: + Id: 663e93e1-f983-4a16-8d1a-03c49abc3de3 + Name: LaserFence_up + Components: + c8c633e320d799468ba2a8e339362d2d: !TransformComponent + Id: 6fe857b6-6f5b-4c48-838d-ae5a53344b5a + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3e4e674bd6ad2f439da54f92a29a7eec: !ModelComponent + Id: ed03e7d7-ae54-4518-8fc5-69899683c5ec + Model: ca14aec1-3989-485c-84c0-5d0cbf5858f4:Gameplay/Models/LaserFence_up + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 2051137f-5c3e-4877-b418-d6730043e667 + InstanceId: 52bcf716-d109-4561-b34b-8ad602c5a8a6 + - Folder: Props + Entity: + Id: 6798ef4a-ba97-4c14-8741-61bba9541413 + Name: box_1 + Components: + 809778ee97de74479d46b2b89cf3fd55: !TransformComponent + Id: 91023739-b776-448b-b540-5d98be9af06e + Position*: {X: 3.607665, Y: 0.0, Z: -26.5201683} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + 46d65c287ed37b419febba3f2fc9e168: !ModelComponent + Id: 3b2dcf4b-a791-4060-9199-3595ea51ef1f + Model: 46441ab3-67fb-40d4-8b72-8dd1db5d988e:Environment/Props/Models/Box1 + Materials: {} + 97af1ceb4c685740b019dc46621ca5bd: !StaticColliderComponent + Id: 2dcaa7dc-5fc1-46b9-b649-fe1eea8b9a33 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 30ff71837d20084985383f3411cf2ed8: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.95, Y: 0.95, Z: 0.95} + LocalOffset: {X: 0.0, Y: 0.475, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b23b46aa-4d3f-45a8-ab4b-7c5a9e4d9d99:Environment/Props/Prefabs/Box1 + BasePartId: e8b2a223-8164-4e20-8309-f81a90ca09cc + InstanceId: eb9cb732-dd6b-49b0-a14f-36165c04d210 + - Entity: + Id: 6ddded11-372c-462b-9fb9-ad6eb76782eb + Name: PlatformRocks1 + Components: + 5b8695b746c5bfe6fe7c85c29a692577: !TransformComponent + Id: 03c6d2ad-da45-4e97-be9c-336ac6dc7cdc + Position: {X: -7.500001, Y: -3.0, Z: -32.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + fe8aa76b0ca53ae15c759f257f280705: !ModelComponent + Id: ac8982e7-93f7-4748-b30d-75d36fca3a4c + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + - Folder: null + Entity: + Id: 6f5aa818-c0ec-4e08-8361-578e5368dacd + Name: LaserCylinder + Components: + 6565f891cdba2236dd5dbf1888a0f6e0: !TransformComponent + Id: d5d9d32a-73d6-4071-bba4-7ccb53cdf227 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: -0.707106769, W: 0.707106769} + Scale: {X: 1.0, Y: 10.0, Z: 1.0} + Children: {} + cec4407060699b5ddb4eeb6f5f980024: !ModelComponent + Id: 452186ab-3efa-4981-ba69-597c731a345d + Model: c11da5de-520a-4bd5-a691-5476b2a812e0:Gameplay/Models/Cylinder + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 30a095c2-8c9f-4cd2-9784-1ba35cc22331 + InstanceId: 5e138026-4f2b-4c98-a4a1-426719ee499a + - Folder: null + Entity: + Id: 729366f9-b48c-42ca-a4b3-931cdde3bf03 + Name: LaserCylinder + Components: + 6565f891cdba2236dd5dbf1888a0f6e0: !TransformComponent + Id: 9e3c8513-1dea-4ee0-b3fc-c63a3d0ce2ab + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: -0.707106769, W: 0.707106769} + Scale: {X: 1.0, Y: 10.0, Z: 1.0} + Children: {} + cec4407060699b5ddb4eeb6f5f980024: !ModelComponent + Id: 634c08c1-8077-4776-b064-cdab0218bf19 + Model: c11da5de-520a-4bd5-a691-5476b2a812e0:Gameplay/Models/Cylinder + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 6072d1ec-0d92-4855-a83a-bacfa7acc501 + InstanceId: 83dc3db0-8fe3-491e-b307-a950e5da8acc + - Folder: null + Entity: + Id: 75382bdd-7db0-4ad3-ae51-239bafaf18ca + Name: LaserArc + Components: + 336f7ce982182944823955cce7f2b5ee: !TransformComponent + Id: 47e7e069-2c9e-4b94-bc83-1267500a5b1e + Position: {X: 0.5, Y: 1.75, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 6127bf25-0b62-4e22-863f-5009c2f77592 + InstanceId: 52bcf716-d109-4561-b34b-8ad602c5a8a6 + - Folder: null + Entity: + Id: 836e552f-6f21-4bc8-b76c-780ffcd52ba3 + Name: LaserFence_down + Components: + a4c9a42f24d4c443bad3060f61018c7f: !TransformComponent + Id: 06196a56-391e-4425-bde4-eae180c2f168 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e52519dff8a1534c8d3d763ba4d4e83e: !ModelComponent + Id: 41a5049d-2a7a-443f-b7bb-0e5ae26c935c + Model: 4658c1a9-b3b6-4481-b22c-ad61ea3c14d3:Gameplay/Models/LaserFence_down + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: fea06acd-bec3-4873-8a99-eeb324c05565 + InstanceId: 5e138026-4f2b-4c98-a4a1-426719ee499a + - Folder: null + Entity: + Id: 8397a6ba-bcd5-4498-940a-713c3f1b7f24 + Name: LargePillar + Components: + 4d0081ad1b800fc4ab391a6d3759f184: !TransformComponent + Id: 849adf33-d847-4aa9-a114-99c4d17b0dcf + Position: {X: -14.4999962, Y: 3.0, Z: -26.4999981} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 00760b60420914e2a47292b0d04393d7: !ModelComponent + Id: c272aafc-0935-462d-9411-d333787b6318 + Model: 258dfd07-ef55-4f3e-a0a8-afc05e4ca37b:Environment/Platforms/Models/LargePillar + Materials: {} + - Folder: null + Entity: + Id: 843ca80e-4a83-4e55-aadf-f95ac80d7240 + Name: Vent + Components: + 649d145b5cd2d2498d83796837ab2e4c: !TransformComponent + Id: 99e61a0a-6ad1-4e36-8249-68ea6736814f + Position: {X: 0.0, Y: 0.6601438, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.258819, W: 0.9659258} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 51f9a88cd6a06144a9c30a8efc81f0d6: !ModelComponent + Id: a34d2310-dc0b-443d-8e77-180ce968550f + Model: 9ba50f3a-f535-4ad4-982d-ff342c69fce4:Environment/Props/Models/Vent + Materials: {} + 557237ad44bd2e4a9a6adfa72a07f828: !Starbreach.VFX.Fan,Starbreach + Id: 355ede01-9ba0-4e40-a9a0-649f084770a4 + RotationSpeed: 0.5 + VentLightModelComponent: ref!! a17026ce-8142-47a8-b5c7-1a5067d56e92 + LightTexture: 2ed2808b-0693-4a27-8cd8-4cccd2d48a70:Environment/Props/Materials/Vent/Vent_inner_E + Base: + BasePartAsset: b5275603-ec75-4bf7-b9cd-6613fe69d2b9:Environment/Props/Prefabs/Vent + BasePartId: 08e72601-63eb-4dcb-989d-5c65552896e8 + InstanceId: c57bc5e7-7345-441a-9b33-0b6a2eac9077 + - Folder: null + Entity: + Id: 8456cf24-6107-41ba-8da7-ce1e856da751 + Name: AlertZoneTrigger + Components: + 37741c7f7923b7e1ef2d73915a26c89b: !TransformComponent + Id: 3f90fe22-ea4b-44f5-8eaf-107fa004bddc + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 557d0a5f00f82108bd3505f6850bc931: !RigidbodyComponent + Id: 0df53dca-0832-47e7-957a-27cfad363e3e + CollisionGroup: CustomFilter2 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: true + IsKinematic: true + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 65240769cedf3fbd99aca64e97ba4ae6: !SphereColliderShapeDesc + Is2D: false + Radius: 1.0 + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + Base: + BasePartAsset: aac85dfd-95cb-4a1f-8b00-00e61427e601:Drones/Prefabs/EnergyDrone + BasePartId: 79e33d69-4e12-473f-bdc6-0c107e3244ad + InstanceId: 3055ec25-e105-4588-b7d1-554ff56408b9 + - Folder: Gameplay + Entity: + Id: 86e19a98-d6ab-4ba1-b9c2-2ec95a340c06 + Name*: PlateB + Components: + 2bd9e5018fb815bd9e0ddf7b6c4f0377: !TransformComponent + Id: c31b8d7b-074a-4537-9f57-4ec9e8691450 + Position*: {X: -10.0, Y: 0.0, Z: -2.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a6932a4059e46dc7459b958c79f50336: !ModelComponent + Id: 59f93069-3819-44a9-b11b-7bac328dc6d3 + Model: b08b5432-96b6-4259-8a89-303ff9bd12e2:Gameplay/Models/FloorButton + Materials: + 1eb04cc22e2a20d26f26187814c7bdc3~0: 0347eda8-4648-4983-a223-713b43cea1d9:Gameplay/Materials/Plates/Plate2_Enabled_Off + daf84040e6ba39f4813001d91222a07f~1: ba76b6f1-63f6-44d9-ad48-aca96fbe79a3:Gameplay/Materials/Plates/Plate3_Enabled_Off + 2a52917f17e18564669f46063c397a81: !Starbreach.Gameplay.PressurePlate,Starbreach + Id: 8ac13700-b698-4d3a-af75-7fd83b9201dd + Material1EnabledOff: ba76b6f1-63f6-44d9-ad48-aca96fbe79a3:Gameplay/Materials/Plates/Plate3_Enabled_Off + Material1DisabledOn: 2746f702-7dd5-4ef5-9e93-d5e758da2800:Gameplay/Materials/Plates/Plate3_Disabled_On + Material1DisabledOff: d02e7fcd-9f9e-450f-bc56-6e50e9970ec2:Gameplay/Materials/Plates/Plate3_Disabled_Off + Material1EnabledOn: 1163e435-4f1b-4b16-8834-da23869292b4:Gameplay/Materials/Plates/Plate3_Enabled_On + Material0EnabledOff: 0347eda8-4648-4983-a223-713b43cea1d9:Gameplay/Materials/Plates/Plate2_Enabled_Off + Material0DisabledOn: eff5f692-9337-4d7b-8cd8-531e3e06b852:Gameplay/Materials/Plates/Plate2_Disabled_On + Material0DisabledOff: e74abd75-804a-4de0-acf7-924aa5bb3a20:Gameplay/Materials/Plates/Plate2_Disabled_Off + Material0EnabledOn: 903888ae-b297-487a-a708-5fd6cd38c7c7:Gameplay/Materials/Plates/Plate2_Enabled_On + Model: ref!! 59f93069-3819-44a9-b11b-7bac328dc6d3 + Trigger: ref!! d6cb0156-4dc0-454b-b22d-fd442db1c60f + AudioEmitter: ref!! d9d91637-3362-49c6-a35b-4b924c42c440 + Enabled: true + Toggle: false + SingleActivation*: true + CurrentToggleState: false + TransitionTime: 0.15 + 48a3a1d7ea5c129742126bc8b4d7429c: !Starbreach.Gameplay.PressurePlateTrigger,Starbreach + Id: d6cb0156-4dc0-454b-b22d-fd442db1c60f + CollisionFilterGroup: CharacterFilter + Trigger: ref!! c3841802-8655-416e-b4a5-affc97a9fcc0 + 03c59a6169956fba8a31fd1f758dc46f: !AudioEmitterComponent + Id: d9d91637-3362-49c6-a35b-4b924c42c440 + Sounds: + adc799987a8ff52a579d44583cb2cde7~Enable: 5163c935-fe14-4496-8f44-eb64e8482b31:Gameplay/Sounds/Plate_Enable + 732e4c030c0a74345f1aed380bdb8533~Disable: 730d9dfc-a657-4d5b-b5ea-8fc7e14cfa7d:Gameplay/Sounds/Plate_Disable + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + 9c600aa0b00e9640a384d3666fe41f14: !RigidbodyComponent + Id: c3841802-8655-416e-b4a5-affc97a9fcc0 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: true + IsKinematic: true + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 4c0292725ab565154826fa81493eec99: !CylinderColliderShapeDesc + Height: 0.4 + Radius: 0.8 + LocalOffset: {X: 0.0, Y: 0.2, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 72f94a89-e47c-42ae-9264-b0c9881e3840:Gameplay/Prefabs/Plate + BasePartId: e4fdb89a-c2a0-4e83-a985-c4e087628455 + InstanceId: 900cd5c4-745d-44cc-ae70-825dbe76749f + - Folder: null + Entity: + Id: 8a0da45d-01f8-4022-8430-842f033f4445 + Name: Vent_base + Components: + c2bef31cda0c8543946d5092d2cc4382: !TransformComponent + Id: 15b6e5d5-2c29-41ae-8402-c0a69acc2f2d + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 74a44ff7b53fd347b1bc0108f4e39f53: !ModelComponent + Id: ee8c61fa-1f4b-4012-8be0-6baaccc416be + Model: 9fb440c2-5c68-4b4c-a1c1-fe92481dc4d4:Environment/Props/Models/Vent_base + Materials: {} + 06cf1aa272609644a75ae1164968be17: !StaticColliderComponent + Id: bc29048c-dc7d-4953-95dc-7b8f5a1cc026 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 18cf11ad3eabc040ac2705991dacfea7: !CylinderColliderShapeDesc + Height: 1.4 + Radius: 0.9 + LocalOffset: {X: 0.0, Y: 0.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b5275603-ec75-4bf7-b9cd-6613fe69d2b9:Environment/Props/Prefabs/Vent + BasePartId: 94fd4929-dc17-406a-b101-7d999144f384 + InstanceId: c57bc5e7-7345-441a-9b33-0b6a2eac9077 + - Folder: null + Entity: + Id: 8a57e65f-0cee-4ae6-a06c-7336a517cadf + Name: LaserFence_Static (2) + Components: + f08afbc357f5790406844c92d0539513: !TransformComponent + Id: d832bf83-022c-464b-863f-4cf234e68b29 + Position: {X: 3.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: -0.6, Y: 0.6, Z: 0.6} + Children: + 78f46892dc105a369fcd202c189df608: ref!! 10203b73-cd8d-456b-af1c-553d144bd6b8 + 5255162075021a6f951970991ca6608e: ref!! a988dad5-5c4a-438e-bc7d-bf06af9bf6c1 + 536240f8fb1df6f999ea4a5d4ba7f1c1: ref!! 2e5b77da-1dc4-486f-971e-472503c3b12a + 75e86890a45d2bdc1ba0006f7998e13e: ref!! 01581778-36d7-439b-b0e9-0f51ba0e54f2 + 20f48c676e388f5f82ad7dda1063ae2d: !StaticColliderComponent + Id: 397e52f5-c095-41ea-860c-9d655ce77cfa + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 368adb9e6793798169337ef4de98022b: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 3.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 16d23f36-f4be-4509-9d47-60cb574be928 + InstanceId: 6d630e05-dde4-43ab-bb8c-c073f79dd7f5 + - Entity: + Id: 8bf3c69f-250d-4c72-80de-7bba1f899cbd + Name: Tubes_base + Components: + 7cdd3b1a1396bae0df8d315686b47524: !TransformComponent + Id: 214fcfa2-51f8-49d7-a09d-7eeaf42e38a4 + Position: {X: 0.0, Y: 0.0, Z: -3.15} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 14c6a602fe3acc99031df8e58a62d2c8: !StaticColliderComponent + Id: c8ef6d26-6433-4998-97bb-6ff664a790e4 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 2f121f88c1f6896ca79a2939aa8a095c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.25, Z: 1.2} + LocalOffset: {X: 0.0, Y: 0.625, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 9a70c79d932274ae3d789c1b8e505eed: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 0.7, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.35, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + c693012fa2a7a493118f8d327a097904: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.6, Z: -0.3} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + ec075d7b9a08dd03f4591017a4bce1a2: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: -0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 7742036734daf5a2f5497973ad25733f: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: 0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 62e87c0b-15d8-4628-95c9-7880f4cf2fe1:Environment/Props/Prefabs/Tubes + BasePartId: 33533809-4477-4c1f-90e3-f7c190afa66a + InstanceId: 9bc70876-1730-45b9-b1fc-0ce238d0e26a + - Folder: Props + Entity: + Id: 8dcaed88-34dc-4963-b9bf-b47d98677c94 + Name: Pillar1 + Components: + d2ecfd3949a7e4d5c5de0918cbf8d6bb: !TransformComponent + Id: c20ec2cb-7d7f-481c-ad79-b29dc06a9abb + Position*: {X: 6.0, Y: 0.0, Z: -11.0} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 0.5, Y: 0.5, Z: 0.5} + Children: {} + f36058d7fd850c8a967d320a21f59efc: !ModelComponent + Id: 4692ca11-280a-4e97-89a6-284d843ccf1e + Model: cf64cebf-e975-4b41-904d-3160bb54127f:Environment/Props/Models/Pillar1 + Materials: {} + c450fe5c75d529fe51b0c495a32b91b3: !StaticColliderComponent + Id: c8cb8999-1df2-42ad-a1be-85759327064f + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 1d67cc52a11e0847caf11de57e6ad84e: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 14.0, Z: 1.2} + LocalOffset: {X: 0.0, Y: 7.0, Z: -0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + ec18f000c860aedb1c7c2d1839b956d8: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 3.0, Z: 2.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 22e9dad3-d3c8-4e99-a60f-03e52029874e:Environment/Props/Prefabs/Pillar1 + BasePartId: 09ec4e12-8aa4-48f4-ad5f-fa4bbdc60ea8 + InstanceId: 2b3de3eb-9fef-40b4-a1c8-38023c2b217b + - Folder: null + Entity: + Id: 91d540ee-4052-4d7b-a660-1dc15c6a8cf6 + Name: LaserFence_down + Components: + a4c9a42f24d4c443bad3060f61018c7f: !TransformComponent + Id: f4bda5bd-963b-4904-98a4-9e22b38050b2 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e52519dff8a1534c8d3d763ba4d4e83e: !ModelComponent + Id: 5e2425c6-884b-4095-82b4-0507c043662d + Model: 4658c1a9-b3b6-4481-b22c-ad61ea3c14d3:Gameplay/Models/LaserFence_down + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: fea06acd-bec3-4873-8a99-eeb324c05565 + InstanceId: 52bcf716-d109-4561-b34b-8ad602c5a8a6 + - Folder: Props + Entity: + Id: 970d17a0-1cde-44c9-b724-a9d4a00cd0e3 + Name: box_1 + Components: + 809778ee97de74479d46b2b89cf3fd55: !TransformComponent + Id: aa64ed29-4abd-4aa2-a9bd-53df79ae1602 + Position*: {X: 3.67930079, Y: 0.0, Z: -24.4751129} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + 46d65c287ed37b419febba3f2fc9e168: !ModelComponent + Id: aa1ad6ac-66cc-47e2-b838-1ad231ecf451 + Model: 46441ab3-67fb-40d4-8b72-8dd1db5d988e:Environment/Props/Models/Box1 + Materials: {} + 97af1ceb4c685740b019dc46621ca5bd: !StaticColliderComponent + Id: c78b35a2-afba-4607-8ad7-15be7af188ae + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 30ff71837d20084985383f3411cf2ed8: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.95, Y: 0.95, Z: 0.95} + LocalOffset: {X: 0.0, Y: 0.475, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b23b46aa-4d3f-45a8-ab4b-7c5a9e4d9d99:Environment/Props/Prefabs/Box1 + BasePartId: e8b2a223-8164-4e20-8309-f81a90ca09cc + InstanceId: b215ac99-3437-4dee-ab7f-5703e355e060 + - Folder: Props + Entity: + Id: 990d4c4a-4c50-4097-8e31-f5bfa7e02747 + Name: Tubes_base + Components: + 7cdd3b1a1396bae0df8d315686b47524: !TransformComponent + Id: a3e1fdf1-53ca-47b1-ba73-dd77fc12f23e + Position*: {X: -1.00000048, Y: 0.0, Z: -11.0} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 4d4296f2a30a764d9d8fe6bea949fb8e: !ModelComponent + Id: 69221e1b-8226-4c85-9425-116b16796640 + Model: 734077ff-795c-4d1b-9f8c-688d142c4007:Environment/Props/Models/Tubes_base + Materials: {} + 14c6a602fe3acc99031df8e58a62d2c8: !StaticColliderComponent + Id: 52adfd4c-3171-44e7-ae4f-d9c58b13a821 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 2f121f88c1f6896ca79a2939aa8a095c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.25, Z: 1.2} + LocalOffset: {X: 0.0, Y: 0.625, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 9a70c79d932274ae3d789c1b8e505eed: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 0.7, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.35, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + c693012fa2a7a493118f8d327a097904: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.6, Z: -0.3} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + ec075d7b9a08dd03f4591017a4bce1a2: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: -0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 7742036734daf5a2f5497973ad25733f: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: 0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: a9eaf641-84b9-4fe0-bb15-bc2c8a67319b:Environment/Props/Prefabs/Tubes_base + BasePartId: e5249e5a-b18b-46fe-96f1-6f11a587b647 + InstanceId: 55689625-1ec2-469a-8ede-b0ccdabcb27a + - Folder: null + Entity: + Id: 9ca3f4d5-63e6-4dba-a902-d0bc98713c3d + Name: Vent + Components: + 9385595b1d62aa4bb2b4c469cfe0c781: !TransformComponent + Id: 6bd7722f-fdda-43eb-90c4-0ad9f854bd20 + Position*: {X: -2.0, Y: 0.0, Z: 1.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + fef582b5ce88153fe16e0207caff2767: ref!! 15b6e5d5-2c29-41ae-8402-c0a69acc2f2d + ad7e16aa5036ddb39dd344dbe2453ee0: ref!! 26fd6702-b4be-416d-ab01-505b7da7967d + 1200685bbff2fe1e5c49bf133a5e169b: ref!! 99e61a0a-6ad1-4e36-8249-68ea6736814f + Base: + BasePartAsset: b5275603-ec75-4bf7-b9cd-6613fe69d2b9:Environment/Props/Prefabs/Vent + BasePartId: 5c398975-e1e7-4877-af93-881930263e94 + InstanceId: c57bc5e7-7345-441a-9b33-0b6a2eac9077 + - Folder: Props + Entity: + Id: 9f1b189c-35c0-419f-81fa-32e91dd894df + Name: Vent (2) + Components: + ad9d84dea289678a311782153f4e0dc6: !TransformComponent + Id: a21c12d8-029a-45db-ac99-3f83e1eb9724 + Position: {X: 7.0, Y: 0.0, Z: -8.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + e29eb15fdfc1c54f8568a56d178d57bb: ref!! 6bd7722f-fdda-43eb-90c4-0ad9f854bd20 + d4217d3fec6b41e86d1a0bc68190bdd8: ref!! afa1c313-2887-4fe3-b77c-f2dbdee820fb + - Folder: null + Entity: + Id: a59b40a1-2c52-4e03-b15a-62b9695915d4 + Name: LaserFence_Static (2) + Components: + f08afbc357f5790406844c92d0539513: !TransformComponent + Id: 879a21e7-21a3-4f95-810d-69806537dfc0 + Position: {X: 3.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: -0.6, Y: 0.6, Z: 0.6} + Children: + 78f46892dc105a369fcd202c189df608: ref!! 528d110c-8a1a-497f-851c-cf38ca7c9f3b + 5255162075021a6f951970991ca6608e: ref!! 6fe857b6-6f5b-4c48-838d-ae5a53344b5a + 536240f8fb1df6f999ea4a5d4ba7f1c1: ref!! 47e7e069-2c9e-4b94-bc83-1267500a5b1e + 75e86890a45d2bdc1ba0006f7998e13e: ref!! 11693563-5f49-42d4-b305-a4256496256d + 20f48c676e388f5f82ad7dda1063ae2d: !StaticColliderComponent + Id: f51ea00a-1e68-4746-9505-b397af124961 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 368adb9e6793798169337ef4de98022b: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 3.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 16d23f36-f4be-4509-9d47-60cb574be928 + InstanceId: 52bcf716-d109-4561-b34b-8ad602c5a8a6 + - Folder: null + Entity: + Id: a6117938-55f8-4332-8800-65560e3213af + Name: Tubes_base + Components: + 7cdd3b1a1396bae0df8d315686b47524: !TransformComponent + Id: ca9821cc-55f9-4f6e-bfeb-b65468770dcb + Position: {X: 0.0, Y: 0.0, Z: 3.15} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: -1.0} + Children: {} + 14c6a602fe3acc99031df8e58a62d2c8: !StaticColliderComponent + Id: 6b209e69-1e0d-42ca-84e8-52b497eb2641 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 2f121f88c1f6896ca79a2939aa8a095c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.25, Z: 1.2} + LocalOffset: {X: 0.0, Y: 0.625, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 9a70c79d932274ae3d789c1b8e505eed: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 0.7, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.35, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + c693012fa2a7a493118f8d327a097904: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.6, Z: -0.3} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + ec075d7b9a08dd03f4591017a4bce1a2: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: -0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 7742036734daf5a2f5497973ad25733f: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: 0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 62e87c0b-15d8-4628-95c9-7880f4cf2fe1:Environment/Props/Prefabs/Tubes + BasePartId: 6b5a24fa-0d02-4afd-abf9-40cf450e9674 + InstanceId: 994ce050-dffa-462a-9a36-407857d71ada + - Folder: null + Entity: + Id: aa337b0c-441f-4b62-b46e-db62402025a1 + Name: LaserFence_up + Components: + c8c633e320d799468ba2a8e339362d2d: !TransformComponent + Id: c6d902ea-c335-4a78-a594-d3c79ced7319 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3e4e674bd6ad2f439da54f92a29a7eec: !ModelComponent + Id: 6986dc3c-5a00-4188-a04d-81041c76a967 + Model: ca14aec1-3989-485c-84c0-5d0cbf5858f4:Gameplay/Models/LaserFence_up + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: e88381a2-6f10-476d-853f-56ea6884859f + InstanceId: 6d630e05-dde4-43ab-bb8c-c073f79dd7f5 + - Folder: null + Entity: + Id: ad4cc729-1b82-4e5e-a161-02721ecd4890 + Name: Vent_light_mesh + Components: + 54af95a0dca10843911d079ccfaa0cfd: !TransformComponent + Id: 26fd6702-b4be-416d-ab01-505b7da7967d + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6f6f8132f03b9c4db90f22a935e18733: !ModelComponent + Id: a17026ce-8142-47a8-b5c7-1a5067d56e92 + Model: bcf6e9e7-0e5d-45f3-ba1b-0b2025d17e1c:Environment/Props/Models/Vent_light_mesh + Materials: {} + Base: + BasePartAsset: b5275603-ec75-4bf7-b9cd-6613fe69d2b9:Environment/Props/Prefabs/Vent + BasePartId: 9b350f50-f364-4653-8b82-1b0bf30e2f23 + InstanceId: c57bc5e7-7345-441a-9b33-0b6a2eac9077 + - Folder: null + Entity: + Id: b0ff57eb-1825-4adf-9704-8931a4dc6e14 + Name: Steam + Components: + c1ecc9674350ec47b258da4ab8ccf2ff: !TransformComponent + Id: 27115220-fa34-460e-9b8f-0675eb3630ac + Position*: {X: -0.0187996943, Y: 0.0, Z: 0.0445737578} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8323bf5daa524c4fb5d833e41b08b32d: !ParticleSystemComponent + Id: 9d45ead5-3b35-44a9-92c9-97341b68c4ee + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed*: 0.15 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + 9a3a5271a4a0934d9467f6b095793379: + ParticleLifetime: {X: 0.5, Y: 0.5} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 0383cd796e839e4b9667af5d0fe71756: + Key: 0.0 + Value: 0.2 + TangentType: Linear + 3c3bf45d6e50e542871470a99fdfd9f3: + Key: 0.3 + Value: 0.5 + TangentType: Linear + aa6cd07e77ba1c4da6e836dff7b31695: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value*: {X: 1.0, Y: 1.0, Z: 1.0, W: 0.5} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture*: 9cbbe433-0bc7-48e9-91c8-c7f05f957afd:Textures/SMO001_2 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder*: !UVBuilderFlipbook + XDivisions: 8 + YDivisions: 8 + StartingFrame: 0 + AnimationSpeed: 64 + ForceTexCoords: false + Spawners: + fa12c9550522c24fa400d8ce84ef83a0: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 50.0 + Initializers: + 3994a4c9897c7049af5217d699e668a9: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.4, Y: 0.5} + 7fa5fb2d4e692c4aae5cda5ce081ca44: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin*: {X: -0.03, Y: 0.0, Z: -0.03} + PositionMax*: {X: 0.03, Y: 0.0, Z: 0.03} + Interpolate: false + 3d037e54f2051d42a511f75567a2d5eb: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin*: {X: -0.05, Y: 2.0, Z: -0.05} + VelocityMax*: {X: 0.05, Y: 3.0, Z: 0.05} + d4d112e1ace7b944828fa9278f3938e1: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + Updaters: + 226c0f6bc8f05441a0eb6454e9f89045: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 82276cc03e3f854b9dc5c50ece2e25f9: + Key: 0.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + e3927f1e92cb4d4f80c729960776e1ca: + Key: 0.2 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.5} + TangentType: Linear + bb31441c3997734baf5d4b324f145da1: + Key: 1.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + Base: + BasePartAsset: 7e583813-c264-4c77-bb7f-23f0f609968d:VFXPrefabs/vfx-Steam + BasePartId: 39e6666d-d2d1-49c3-8f0e-31f321ca5b12 + InstanceId: 4576d054-d68c-482d-8e93-fca8176d8baa + - Folder: null + Entity: + Id: b26a258b-7a61-4b21-8f09-c21d4cef2bfb + Name: LaserBeam + Components: + c2a61ac9cca3304c949c26193b0945c4: !TransformComponent + Id: 11896a9e-543e-44bf-a15e-89dc2353ef23 + Position: {X: 0.5, Y: 2.5, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 9406e2b7130bca40c2c768f5946242ff: ref!! 455041b4-7ff2-4c92-9da4-95e8b6d99da5 + 5ee7f85c3fbac746b5c31e169615a5c7: !ParticleSystemComponent + Id: a1a5b40e-fdb2-4a85-927b-a9bb62cf069b + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 0.121568628, B: 0.121568628, A: 1.0} + Speed: 6.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + f239db465dd7354bbc55100bd300b151: + EmitterName: sparks + ParticleLifetime: {X: 1.0, Y: 5.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + ba54a1971cd84340b5ba37f508a3bd2c: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 881873fa3d3a744db46ae3db16b7d133: + Key: 1.0 + Value: 0.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 150.0, Y: 150.0, Z: 150.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: null + ForceTexCoords: false + Spawners: + 946a1b5e1895434284c7dbdaa728c786: !SpawnerBurst + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 100 + Initializers: + 581d30af2592fb41a520efcb0f64656c: !InitialPositionParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: true + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: true + ParentControlFlag: Group00 + SeedOffset: 0 + PositionMin: {X: -0.5, Y: -0.1, Z: -0.1} + PositionMax: {X: 0.5, Y: 0.1, Z: 0.1} + 0460848851abf642879131d04c839872: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.3 + SeedOffset: 24 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.05, Y: 0.2} + cd410cf87ddf07449ea894f8b8cb5238: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.02, Y: -0.01, Z: -0.02} + VelocityMax: {X: 0.02, Y: 0.04, Z: 0.02} + 855cafaded1b164dab92516ac877abf5: !InitialColorParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ParentControlFlag: Group00 + SeedOffset: 0 + ColorMin: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + ColorMax: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Updaters: {} + eabed859a30c6f409b30f3e5fa9295b2: + EmitterName: LaserEmitter02 + MaxParticlesOverride: 10 + ParticleLifetime: {X: 0.2, Y: 0.2} + ShapeBuilder: !ShapeBuilderRibbon + SmoothingPolicy: None + Segments: 5 + TextureCoordinatePolicy: AsIs + TexCoordsFactor: 1.0 + UVRotate: + FlipX: false + FlipY: false + UVClockwise: Degree0 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 100.0, Y: 100.0, Z: 100.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: da9b119e-ce87-4f7b-a4cc-2e93b158f137:Textures/Gradation01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: !UVBuilderScroll + StartFrame: {X: 0.0, Y: 0.0, Z: 1.0, W: 1.0} + EndFrame: {X: 0.0, Y: 1.0, Z: 1.0, W: 2.0} + ForceTexCoords: false + Spawners: + 771c66d89d336449959f8c37915bdb0e: !SpawnerPerFrame + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 10.0 + Framerate: 60.0 + Initializers: + af1eef0c052b814ab025d0cbeb5ef838: !InitialPositionArc + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + Target: ref!! 01581778-36d7-439b-b0e9-0f51ba0e54f2 + DisplayParticleRotation: true + DisplayParticleScale: false + FallbackTarget: {X: 0.0, Y: 0.0, Z: -1.0} + DisplayParticleScaleUniform: false + ArcHeight: 0.0 + Sequential: true + FixedLength: 0 + PositionMin: {X: 0.0, Y: 0.0, Z: 0.0} + PositionMax: {X: 0.0, Y: 0.0, Z: 0.0} + SeedOffset: 0 + 6d09f593db786145af6ba89f386f9b48: !InitialSpawnOrder + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + d1dbc13de4fdfd44a592f202d7bed600: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.5 + SeedOffset: 1 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.5, Y: 0.6} + Updaters: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: d0b8df39-fac2-48ce-bd8f-a2f847d3157d + InstanceId: 6d630e05-dde4-43ab-bb8c-c073f79dd7f5 + - Folder: Props + Entity: + Id: b28a2e4d-877f-4a28-83ea-60dd4bc43914 + Name: Tubes + Components: + 8afe5b76881b508b37d688f2116c5186: !TransformComponent + Id: c9c8471e-0af8-49e0-a7bd-e8590a089f7a + Position*: {X: 5.61519337, Y: 0.0, Z: -18.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 85def8cc7682ab08edbe563e2dc70b8b: ref!! 5073b4e2-969b-429d-bcca-ae93beb13735 + 49175ffc2223c239ee4b21f144bf5398: ref!! ca9821cc-55f9-4f6e-bfeb-b65468770dcb + d0526db95b412f4714f97c9e1e008f44: !ModelComponent + Id: 979c74df-556d-4a46-8612-0f759e0f4217 + Model: b71a38c2-5460-4a2e-8abf-77a0acec5aeb:Environment/Props/Models/Tubes + Materials: {} + Base: + BasePartAsset: 62e87c0b-15d8-4628-95c9-7880f4cf2fe1:Environment/Props/Prefabs/Tubes + BasePartId: 20f03481-611c-470f-b5ca-0917bf52f59a + InstanceId: 994ce050-dffa-462a-9a36-407857d71ada + - Folder: null + Entity: + Id: b607a33b-9a9c-4281-a9df-b9b9796071ea + Name: LaserBeam + Components: + c2a61ac9cca3304c949c26193b0945c4: !TransformComponent + Id: 659b0d4b-dd03-46cb-a91e-eb05d35d4bd7 + Position: {X: 0.5, Y: 1.75, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + fe89fc524a7b9ae686e1c8c7bf6e603c: ref!! 3ff1f347-2642-4beb-a43a-32febd2641cc + 5ee7f85c3fbac746b5c31e169615a5c7: !ParticleSystemComponent + Id: 31dfb750-69a9-4129-a20c-883057875d68 + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 0.125490189, B: 0.125490189, A: 1.0} + Speed: 6.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + f239db465dd7354bbc55100bd300b151: + EmitterName: sparks + ParticleLifetime: {X: 1.0, Y: 5.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + ba54a1971cd84340b5ba37f508a3bd2c: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 881873fa3d3a744db46ae3db16b7d133: + Key: 1.0 + Value: 0.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 150.0, Y: 150.0, Z: 150.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: null + ForceTexCoords: false + Spawners: + 946a1b5e1895434284c7dbdaa728c786: !SpawnerBurst + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 100 + Initializers: + 581d30af2592fb41a520efcb0f64656c: !InitialPositionParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: true + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: true + ParentControlFlag: Group00 + SeedOffset: 0 + PositionMin: {X: -0.5, Y: -0.1, Z: -0.1} + PositionMax: {X: 0.5, Y: 0.1, Z: 0.1} + 0460848851abf642879131d04c839872: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.3 + SeedOffset: 24 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.05, Y: 0.2} + cd410cf87ddf07449ea894f8b8cb5238: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.02, Y: -0.01, Z: -0.02} + VelocityMax: {X: 0.02, Y: 0.04, Z: 0.02} + 855cafaded1b164dab92516ac877abf5: !InitialColorParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ParentControlFlag: Group00 + SeedOffset: 0 + ColorMin: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + ColorMax: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Updaters: {} + eabed859a30c6f409b30f3e5fa9295b2: + EmitterName: LaserEmitter02 + MaxParticlesOverride: 10 + ParticleLifetime: {X: 0.2, Y: 0.2} + ShapeBuilder: !ShapeBuilderRibbon + SmoothingPolicy: None + Segments: 5 + TextureCoordinatePolicy: AsIs + TexCoordsFactor: 1.0 + UVRotate: + FlipX: false + FlipY: false + UVClockwise: Degree0 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 100.0, Y: 100.0, Z: 100.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: da9b119e-ce87-4f7b-a4cc-2e93b158f137:Textures/Gradation01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: !UVBuilderScroll + StartFrame: {X: 0.0, Y: 0.0, Z: 1.0, W: 1.0} + EndFrame: {X: 0.0, Y: 1.0, Z: 1.0, W: 2.0} + ForceTexCoords: false + Spawners: + 771c66d89d336449959f8c37915bdb0e: !SpawnerPerFrame + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 10.0 + Framerate: 60.0 + Initializers: + af1eef0c052b814ab025d0cbeb5ef838: !InitialPositionArc + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + Target: ref!! 898ee005-fccf-41be-b0c2-eb8001e7233e + DisplayParticleRotation: true + DisplayParticleScale: false + FallbackTarget: {X: 0.0, Y: 0.0, Z: -1.0} + DisplayParticleScaleUniform: false + ArcHeight: 0.0 + Sequential: true + FixedLength: 0 + PositionMin: {X: 0.0, Y: 0.0, Z: 0.0} + PositionMax: {X: 0.0, Y: 0.0, Z: 0.0} + SeedOffset: 0 + 6d09f593db786145af6ba89f386f9b48: !InitialSpawnOrder + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + d1dbc13de4fdfd44a592f202d7bed600: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.5 + SeedOffset: 1 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.5, Y: 0.6} + Updaters: {} + 2801c9087775c2ecc9518fa0f801c79c: !StaticColliderComponent + Id: de6f7fc1-6304-43e3-a0e6-3d7781bd1c12 + CollisionGroup*: CustomFilter1 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + d9c023df8272c6145711f00ef8160b74: !BoxColliderShapeDesc + Is2D: false + Size: {X: 10.0, Y: 3.0, Z: 2.0} + LocalOffset: {X: 4.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 8512ce3d-9fb8-400b-bf88-7186abe432d8 + InstanceId: 83dc3db0-8fe3-491e-b307-a950e5da8acc + - Folder: null + Entity: + Id: bc49a25d-430d-457f-abe2-437606afc269 + Name: LaserBeam + Components: + c2a61ac9cca3304c949c26193b0945c4: !TransformComponent + Id: 2fa1b304-a268-449f-8aa2-306ea077f7e2 + Position: {X: 0.5, Y: 2.5, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 9406e2b7130bca40c2c768f5946242ff: ref!! f1bc46d3-8938-42dd-9654-6374aac9752a + 5ee7f85c3fbac746b5c31e169615a5c7: !ParticleSystemComponent + Id: eeb19bd2-4a61-4403-921f-71da7c4b12ce + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 0.121568628, B: 0.121568628, A: 1.0} + Speed: 6.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + f239db465dd7354bbc55100bd300b151: + EmitterName: sparks + ParticleLifetime: {X: 1.0, Y: 5.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + ba54a1971cd84340b5ba37f508a3bd2c: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 881873fa3d3a744db46ae3db16b7d133: + Key: 1.0 + Value: 0.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 150.0, Y: 150.0, Z: 150.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: null + ForceTexCoords: false + Spawners: + 946a1b5e1895434284c7dbdaa728c786: !SpawnerBurst + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 100 + Initializers: + 581d30af2592fb41a520efcb0f64656c: !InitialPositionParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: true + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: true + ParentControlFlag: Group00 + SeedOffset: 0 + PositionMin: {X: -0.5, Y: -0.1, Z: -0.1} + PositionMax: {X: 0.5, Y: 0.1, Z: 0.1} + 0460848851abf642879131d04c839872: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.3 + SeedOffset: 24 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.05, Y: 0.2} + cd410cf87ddf07449ea894f8b8cb5238: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.02, Y: -0.01, Z: -0.02} + VelocityMax: {X: 0.02, Y: 0.04, Z: 0.02} + 855cafaded1b164dab92516ac877abf5: !InitialColorParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ParentControlFlag: Group00 + SeedOffset: 0 + ColorMin: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + ColorMax: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Updaters: {} + eabed859a30c6f409b30f3e5fa9295b2: + EmitterName: LaserEmitter02 + MaxParticlesOverride: 10 + ParticleLifetime: {X: 0.2, Y: 0.2} + ShapeBuilder: !ShapeBuilderRibbon + SmoothingPolicy: None + Segments: 5 + TextureCoordinatePolicy: AsIs + TexCoordsFactor: 1.0 + UVRotate: + FlipX: false + FlipY: false + UVClockwise: Degree0 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 100.0, Y: 100.0, Z: 100.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: da9b119e-ce87-4f7b-a4cc-2e93b158f137:Textures/Gradation01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: !UVBuilderScroll + StartFrame: {X: 0.0, Y: 0.0, Z: 1.0, W: 1.0} + EndFrame: {X: 0.0, Y: 1.0, Z: 1.0, W: 2.0} + ForceTexCoords: false + Spawners: + 771c66d89d336449959f8c37915bdb0e: !SpawnerPerFrame + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 10.0 + Framerate: 60.0 + Initializers: + af1eef0c052b814ab025d0cbeb5ef838: !InitialPositionArc + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + Target: ref!! 11693563-5f49-42d4-b305-a4256496256d + DisplayParticleRotation: true + DisplayParticleScale: false + FallbackTarget: {X: 0.0, Y: 0.0, Z: -1.0} + DisplayParticleScaleUniform: false + ArcHeight: 0.0 + Sequential: true + FixedLength: 0 + PositionMin: {X: 0.0, Y: 0.0, Z: 0.0} + PositionMax: {X: 0.0, Y: 0.0, Z: 0.0} + SeedOffset: 0 + 6d09f593db786145af6ba89f386f9b48: !InitialSpawnOrder + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + d1dbc13de4fdfd44a592f202d7bed600: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.5 + SeedOffset: 1 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.5, Y: 0.6} + Updaters: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: d0b8df39-fac2-48ce-bd8f-a2f847d3157d + InstanceId: 52bcf716-d109-4561-b34b-8ad602c5a8a6 + - Folder: Props + Entity: + Id: be746415-a41b-4818-9e8e-5cba13299c20 + Name: box_2 + Components: + a4a1352c38d8d946adbd0a9eb22ecf7a: !TransformComponent + Id: af9a3596-4ce3-494a-8d7f-cb8cfd93c347 + Position*: {X: -12.0, Y: 0.0, Z: -26.6149311} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + 7a4dfc02f3a9234aa72a05fb7a824816: !ModelComponent + Id: a35b49e7-b07a-4a46-9a84-8ed49be98410 + Model: 41fc6c99-792b-46fe-942c-ef3763a2407a:Environment/Props/Models/Box2 + Materials: {} + d4b4d5f2d8369d46845444c61c1e61ec: !StaticColliderComponent + Id: 1bb7f2cf-bc22-421b-b0db-99ead3ef6d06 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 82ea61f172e46a4aab7ce970e3a3f887: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.9, Y: 0.9, Z: 0.95} + LocalOffset: {X: 0.0, Y: 0.45, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 5246c639-719c-4380-a886-7bdfb16f5cbd:Environment/Props/Prefabs/Box2 + BasePartId: f0b73707-1f65-435f-a5ba-5c09ec4ef144 + InstanceId: 05cf662a-1ae7-46a5-b91c-8b6550ed5e78 + - Folder: null + Entity: + Id: c048f49a-720f-4d3d-8043-bce2dffecdfa + Name: LaserFence_Static (2) + Components: + f08afbc357f5790406844c92d0539513: !TransformComponent + Id: d75fe451-edb3-4dae-ba46-5ea8d5f9dbde + Position: {X: 3.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: -0.6, Y: 0.6, Z: 0.6} + Children: + 78f46892dc105a369fcd202c189df608: ref!! ca1e7d7b-4be2-4180-81a8-219042a92706 + 5255162075021a6f951970991ca6608e: ref!! acab9aae-aac8-488e-b7be-631c3d6ab31f + 536240f8fb1df6f999ea4a5d4ba7f1c1: ref!! 898ee005-fccf-41be-b0c2-eb8001e7233e + 75e86890a45d2bdc1ba0006f7998e13e: ref!! 6496f494-9681-4857-9a83-8cf3e939d678 + 20f48c676e388f5f82ad7dda1063ae2d: !StaticColliderComponent + Id: 704967e8-66ec-49ad-8595-65cf454b2c7d + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 368adb9e6793798169337ef4de98022b: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 3.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 16d23f36-f4be-4509-9d47-60cb574be928 + InstanceId: 83dc3db0-8fe3-491e-b307-a950e5da8acc + - Folder: Props + Entity: + Id: c118aad2-68d9-42ff-9365-fd78e0ce3d36 + Name: QuadBarrels + Components: + 6cba76ddfd1ccfe65a4c5a140756c8d4: !TransformComponent + Id: 342bced9-c887-41a4-b7bb-41ed3427d6ba + Position*: {X: -12.0, Y: 0.0, Z: -24.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3280e516b6ce697916b6f1c0823acd38: !ModelComponent + Id: e8ca9613-8323-4bc2-a062-e054fa0021a9 + Model: bd5c8df1-b6f8-4ae3-9099-b063300bc184:Environment/Props/Models/QuadBarrels + Materials: {} + a0046f2ff924d533f457904736235306: !StaticColliderComponent + Id: b39cee10-daa3-42ff-aa36-f04bfeddddfd + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 73a42be32d471fc220f6ebc55d725e77: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 3.0, Z: 2.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: bceccb3f-3666-4864-aded-2230c759cbaf:Environment/Props/Prefabs/QuadBarrels + BasePartId: ae3cd2c6-ef7d-4ebb-9bf1-01ff9c1b034c + InstanceId: 31a356fe-7bfa-48e2-93c2-41b205c829b7 + - Folder: null + Entity: + Id: c2073e05-2ec9-41e8-8354-35bd5736fae6 + Name: LaserFence_Static + Components: + fb9b8e052602e60735334f7419c9e54a: !TransformComponent + Id: c6e3e203-bdf3-42fa-88de-f295b72da6bf + Position: {X: -3.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 0.6, Y: 0.6, Z: 0.6} + Children: + 72f98f4652f07969b02387bf80f44bb6: ref!! 5b302fb1-bad7-4c07-b2aa-34971ff8178c + ac54ba65908c8e57e9e7d04aaa225e10: ref!! c6d902ea-c335-4a78-a594-d3c79ced7319 + c9f4bf3456ad38e4294e8f90e4bc16ba: ref!! f710319d-b645-4156-974b-1ddb1663a971 + 985fa8fdb9571299e3e7f9b8b1f090f1: ref!! 11896a9e-543e-44bf-a15e-89dc2353ef23 + eebd194cebc9a12cf0aa06c693e971b7: !StaticColliderComponent + Id: cda756fb-6e94-4358-bbe7-9d970af1fa2d + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 7e00afee3484d23f207fe6d6fac12d9a: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 3.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 6022993f-f245-4b95-ae81-8a6e80860cd7 + InstanceId: 6d630e05-dde4-43ab-bb8c-c073f79dd7f5 + - Folder: null + Entity: + Id: c4962bcf-ba6f-4925-b180-219d3c6741f5 + Name: LaserBeam + Components: + c2a61ac9cca3304c949c26193b0945c4: !TransformComponent + Id: 6547d970-2db0-48f4-9cde-43ddc5a87d68 + Position: {X: 0.5, Y: 2.5, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 9406e2b7130bca40c2c768f5946242ff: ref!! 4165e8b7-359c-402d-b671-3d006a66d3e8 + 5ee7f85c3fbac746b5c31e169615a5c7: !ParticleSystemComponent + Id: 44e8c6fb-aee3-48ee-9f20-cfdc30195c28 + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 0.121568628, B: 0.121568628, A: 1.0} + Speed: 6.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + f239db465dd7354bbc55100bd300b151: + EmitterName: sparks + ParticleLifetime: {X: 1.0, Y: 5.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + ba54a1971cd84340b5ba37f508a3bd2c: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 881873fa3d3a744db46ae3db16b7d133: + Key: 1.0 + Value: 0.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 150.0, Y: 150.0, Z: 150.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: null + ForceTexCoords: false + Spawners: + 946a1b5e1895434284c7dbdaa728c786: !SpawnerBurst + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 100 + Initializers: + 581d30af2592fb41a520efcb0f64656c: !InitialPositionParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: true + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: true + ParentControlFlag: Group00 + SeedOffset: 0 + PositionMin: {X: -0.5, Y: -0.1, Z: -0.1} + PositionMax: {X: 0.5, Y: 0.1, Z: 0.1} + 0460848851abf642879131d04c839872: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.3 + SeedOffset: 24 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.05, Y: 0.2} + cd410cf87ddf07449ea894f8b8cb5238: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.02, Y: -0.01, Z: -0.02} + VelocityMax: {X: 0.02, Y: 0.04, Z: 0.02} + 855cafaded1b164dab92516ac877abf5: !InitialColorParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ParentControlFlag: Group00 + SeedOffset: 0 + ColorMin: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + ColorMax: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Updaters: {} + eabed859a30c6f409b30f3e5fa9295b2: + EmitterName: LaserEmitter02 + MaxParticlesOverride: 10 + ParticleLifetime: {X: 0.2, Y: 0.2} + ShapeBuilder: !ShapeBuilderRibbon + SmoothingPolicy: None + Segments: 5 + TextureCoordinatePolicy: AsIs + TexCoordsFactor: 1.0 + UVRotate: + FlipX: false + FlipY: false + UVClockwise: Degree0 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 100.0, Y: 100.0, Z: 100.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: da9b119e-ce87-4f7b-a4cc-2e93b158f137:Textures/Gradation01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: !UVBuilderScroll + StartFrame: {X: 0.0, Y: 0.0, Z: 1.0, W: 1.0} + EndFrame: {X: 0.0, Y: 1.0, Z: 1.0, W: 2.0} + ForceTexCoords: false + Spawners: + 771c66d89d336449959f8c37915bdb0e: !SpawnerPerFrame + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 10.0 + Framerate: 60.0 + Initializers: + af1eef0c052b814ab025d0cbeb5ef838: !InitialPositionArc + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + Target: ref!! 75309b3c-5698-470a-9a10-811843b0b565 + DisplayParticleRotation: true + DisplayParticleScale: false + FallbackTarget: {X: 0.0, Y: 0.0, Z: -1.0} + DisplayParticleScaleUniform: false + ArcHeight: 0.0 + Sequential: true + FixedLength: 0 + PositionMin: {X: 0.0, Y: 0.0, Z: 0.0} + PositionMax: {X: 0.0, Y: 0.0, Z: 0.0} + SeedOffset: 0 + 6d09f593db786145af6ba89f386f9b48: !InitialSpawnOrder + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + d1dbc13de4fdfd44a592f202d7bed600: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.5 + SeedOffset: 1 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.5, Y: 0.6} + Updaters: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: d0b8df39-fac2-48ce-bd8f-a2f847d3157d + InstanceId: 5e138026-4f2b-4c98-a4a1-426719ee499a + - Folder: Gameplay + Entity: + Id: c7a0b2de-fc88-4391-9dec-10ecd6e8e332 + Name: Drone + Components: + bee1416b5e2d304389e20936f750b8b1: !TransformComponent + Id: f9bb885b-6607-4865-b1ff-31298094e1f2 + Position*: {X: -1.12004387, Y: 0.0, Z: -29.072834} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 68b08d6ef4327063ddfe04b67a961aae: ref!! 30b9fc64-bd37-4436-a66b-0819ce9e3fe9 + 963458a2c6c68927d38fec6a605500fa: ref!! 3f90fe22-ea4b-44f5-8eaf-107fa004bddc + aed3e642d5d71f48bdf23181156082f9: !CharacterComponent + Id: 50e59fb3-cb67-4c74-8485-c99e5f291df8 + CollisionGroup: CustomFilter3 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + FallSpeed: 10.0 + MaxSlope: {Radians: 0.7853982} + JumpSpeed: 5.0 + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + ColliderShapes: + d27547538ff5dd4eb72e1d385d4862bd: !CylinderColliderShapeDesc + Height: 2.0 + Radius: 1.0 + LocalOffset: {X: 0.0, Y: 1.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 827cf65eb5dca148adaa7ef5bc60df35: !AudioEmitterComponent + Id: 2cfb62ec-8b36-430d-a550-b2ea3ebe1499 + Sounds: + 9f0d8aaa3fc06a44bae1c6cff7aeef58~Death: 4c9333d4-d4d5-4f61-9390-6b2e2602cf1b:Drones/Sounds/Death + 062488fbcb22f344b134f663d4a59ff9~Explosion: 936a2dbe-31df-40cc-836b-18793ffcea22:Drones/Sounds/Explosion + 762f069faf274a408a2da257ca0f4736~Hit0: 732e562c-622b-4fff-8282-58a7efa0b204:Drones/Sounds/Hit0 + ba953638f1e5db4d852167189517624d~Hit1: 973a4551-7cd6-4b8d-8a53-5a61ca9e461b:Drones/Sounds/Hit1 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + c7262ebf0d468f43ba11ca1221215c08: !NavigationComponent + Id: 4045011c-7338-46a9-9671-45a90329f042 + NavigationMesh*: e4c6e7f0-7bbb-4ac9-b5d3-4fc59cbb6509:Levels/Platform_1-2_NAV + GroupId: 665dbfaa-d91a-ee40-d176-a5eaed1268bc + 238e55139b0b248973a65b6ba75f8d54: !Starbreach.Drones.Drone,Starbreach + Id: c0e03757-b949-47a5-a0e5-e7a761eead28 + Priority: 4000 + Weapon: !Starbreach.Drones.LaserDroneWeapon,Starbreach + ProjectileSpawnPoint: ref!! 2c93950c-31d3-49e1-972d-0f33ad4ede50 + ReloadTime: 1.5 + ProjectilePrefab: 38b52cd2-bfc8-4128-b939-232ab85a9b82:Drones/Prefabs/Laser + AnimationDelay: 0.7 + MaximumSpeed: 1.5 + RotationSpeed: 6.283185 + HeadRotationSpeed: 6.283185 + Model: ref!! 77bd5870-f508-4779-adbc-0d7d18f9a4c3 + DefaultMaterial: b91deeaf-43f6-434a-8400-22a1c6cb0447:Drones/Materials/Drone/DroneUpper + AlertedMaterial: 70cfa151-cffc-4cf1-a0d5-2ac4ac94e4a6:Drones/Materials/Drone/DroneUpper_Alerted + EngineParticle: ref!! abe2a369-c3ca-4345-a351-4bd2982816c9 + EngineAudioEmitter: ref!! cce3656b-1e26-4ae9-b917-fdb180a3795b + DroneExplosionPrefab: d1f82cfd-900e-4757-958c-1dd35a4ec775:Drones/Prefabs/DroneExplosion + e3d3d4a2c9c5e7676d484a7a5a41d498: !Starbreach.Drones.PatrollingDroneController,Starbreach + Id: 047e9fe8-ac89-49ff-8d25-567f13dbb500 + PathToFollow: null + ChaseAlertZoneRadius: 20.0 + IdleAlertZoneRadius: 15.0 + AlertZoneTriggerEntity: ref!! 8456cf24-6107-41ba-8da7-ce1e856da751 + Base: + BasePartAsset: aac85dfd-95cb-4a1f-8b00-00e61427e601:Drones/Prefabs/EnergyDrone + BasePartId: fb95e431-53b2-4f1b-b194-74a16c023eef + InstanceId: 3055ec25-e105-4588-b7d1-554ff56408b9 + - Folder: null + Entity: + Id: c90821e0-1e74-4c4a-8d67-b6862068fcf9 + Name: LaserFence_Static + Components: + fb9b8e052602e60735334f7419c9e54a: !TransformComponent + Id: 8c2e40f3-a121-4c0c-a314-b119ce1726a4 + Position: {X: -3.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 0.6, Y: 0.6, Z: 0.6} + Children: + 72f98f4652f07969b02387bf80f44bb6: ref!! f4bda5bd-963b-4904-98a4-9e22b38050b2 + ac54ba65908c8e57e9e7d04aaa225e10: ref!! f9a2e146-a1dd-41ce-8b18-87d0af270ffe + c9f4bf3456ad38e4294e8f90e4bc16ba: ref!! 0f5b803a-5cc4-4894-9b86-e1da911303c1 + 985fa8fdb9571299e3e7f9b8b1f090f1: ref!! 2fa1b304-a268-449f-8aa2-306ea077f7e2 + eebd194cebc9a12cf0aa06c693e971b7: !StaticColliderComponent + Id: 39bf8637-d083-49c1-b2af-6a9b091ed834 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 7e00afee3484d23f207fe6d6fac12d9a: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 3.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 6022993f-f245-4b95-ae81-8a6e80860cd7 + InstanceId: 52bcf716-d109-4561-b34b-8ad602c5a8a6 + - Folder: Gameplay + Entity: + Id: c9a654d6-e8d4-4d41-90b2-75fee0728a05 + Name*: LaserFence_BarrierB2 + Components: + fb5e18952f86407dad838d0b5bc40bef: !TransformComponent + Id: 60d99c4a-b9bb-42e0-9004-0beea0f2e008 + Position*: {X: 0.442483217, Y: 0.0, Z: -16.44557} + Rotation*: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + f94a04d4dd9ca249d275be383b123cc7: ref!! 49256b38-1c76-4ea2-b3bc-9e708b0099db + e8af797a2f73bec8e5b3b407c77a04b3: ref!! a1687f0a-560c-4733-9ef5-c8189abd8c92 + c4e1eb951c333060077478fec3e6f721: !Starbreach.Gameplay.LaserFence,Starbreach + Id: 9bce6a53-1f79-4cd3-80cd-b123708ad824 + ParticleSystemComponents: + d4e1b67fd72a014591445d886fdbd013: ref!! effc3a78-83c8-4157-a007-6fcb8dadd948 + 99ad129b17a7400624a0fdde856096e0: ref!! 44e8c6fb-aee3-48ee-9f20-cfdc30195c28 + ModelComponents: + 1e0b1119a150cc02dddd2f91b8f2f386: ref!! 452186ab-3efa-4981-ba69-597c731a345d + dd30ed9dc650b5d60c314f45e5431622: ref!! 4d2cbbd2-10c3-403d-8fb0-340a0ba70ba5 + LasetBlockade: + 23ae30509c9fbe5fb438d52a1b33c4c0: ref!! 3d568b9d-d47c-464f-8f8c-72fd84e3beb6 + Triggers: + CombinationMode*: Conjunction + Inverted*: true + Activators: + e4c6ef62a3336719d2069e7e28b37dcb*: !Starbreach.Gameplay.PressurePlate,Starbreach ref!! 8ac13700-b698-4d3a-af75-7fd83b9201dd + Enabled: true + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 945727d1-98d0-4a00-b29c-98f78daa9839 + InstanceId: 5e138026-4f2b-4c98-a4a1-426719ee499a + - Folder: Props + Entity: + Id: cafaf9df-9c43-489e-8ecd-ad93e594ba76 + Name: Tubes + Components: + 8afe5b76881b508b37d688f2116c5186: !TransformComponent + Id: f2277d8e-a9a2-4bca-80e4-7cb1ebe77582 + Position*: {X: -11.429697, Y: 0.0, Z: -18.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 29affc00b839956845a2eb8579e819a1: ref!! 214fcfa2-51f8-49d7-a09d-7eeaf42e38a4 + ee4c5b1b3caf312c7050e172c96dea66: ref!! 9403255f-c879-4f4f-baf2-76cc76c7d2bc + d0526db95b412f4714f97c9e1e008f44: !ModelComponent + Id: 9f8f9dcc-26f3-40fd-9d6b-c26e8d185d5d + Model: b71a38c2-5460-4a2e-8abf-77a0acec5aeb:Environment/Props/Models/Tubes + Materials: {} + Base: + BasePartAsset: 62e87c0b-15d8-4628-95c9-7880f4cf2fe1:Environment/Props/Prefabs/Tubes + BasePartId: 20f03481-611c-470f-b5ca-0917bf52f59a + InstanceId: 9bc70876-1730-45b9-b1fc-0ce238d0e26a + - Folder: Props + Entity: + Id: cc745a3d-06f2-47f8-8d5f-7676164827c6 + Name: DataSwitcher + Components: + ec3ee182ea7a0c1b20b9962a69b81666: !TransformComponent + Id: 9b9d9d58-74fc-47dd-88ce-b53ed1da80e4 + Position*: {X: -11.999999, Y: 0.0, Z: -6.99999857} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 30a5b8bb417210df31819b03c22e9bb4: !ModelComponent + Id: f955a40a-6ebb-49c9-9908-16e15fd17b11 + Model: 87c540c8-80aa-4d46-a28f-6f99109347f6:Environment/Props/Models/DataSwitcher + Materials: {} + 726c862c3e01529c1975b308e9ee07f4: !StaticColliderComponent + Id: 79848aff-91ad-4a42-bd49-fb79210e739b + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 3c185efd0ffe017392955bb13e2b575c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 7.0, Z: 2.0} + LocalOffset: {X: 0.0, Y: 3.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + a3452e015314c275217bf6b46bc100a4: !CylinderColliderShapeDesc + Radius: 1.0 + LocalOffset: {X: 0.0, Y: 0.5, Z: -2.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 18a16e3d-5140-4db4-85a5-cd34e4fe1640:Environment/Props/Prefabs/DataSwitcher + BasePartId: bde5e4a6-c956-4cfd-9fa5-4f689c001ab2 + InstanceId: e5702d1b-08f9-4a00-898a-4da08f957361 + - Folder: null + Entity: + Id: cc75fe8a-afb2-4979-8cd3-ce78ff859e08 + Name: LaserFence_up + Components: + c8c633e320d799468ba2a8e339362d2d: !TransformComponent + Id: 5c862f9a-ec27-4e32-83e6-4b2ddb117b12 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3e4e674bd6ad2f439da54f92a29a7eec: !ModelComponent + Id: b2fe97bd-2853-4744-b9dc-94df8ff07fe6 + Model: ca14aec1-3989-485c-84c0-5d0cbf5858f4:Gameplay/Models/LaserFence_up + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: e88381a2-6f10-476d-853f-56ea6884859f + InstanceId: 5e138026-4f2b-4c98-a4a1-426719ee499a + - Folder: null + Entity: + Id: d0162956-8ae6-4eef-9d7d-815703a12857 + Name: LaserFence_Static (2) + Components: + f08afbc357f5790406844c92d0539513: !TransformComponent + Id: a1687f0a-560c-4733-9ef5-c8189abd8c92 + Position: {X: 3.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: -0.6, Y: 0.6, Z: 0.6} + Children: + 78f46892dc105a369fcd202c189df608: ref!! 13c05f60-1608-4c76-b081-71608167ccae + 5255162075021a6f951970991ca6608e: ref!! 2dabc999-4654-45e0-99eb-3ecf9361fb3d + 536240f8fb1df6f999ea4a5d4ba7f1c1: ref!! c7dfc01b-c9b9-4cae-a288-d530a3078ddd + 75e86890a45d2bdc1ba0006f7998e13e: ref!! 75309b3c-5698-470a-9a10-811843b0b565 + 20f48c676e388f5f82ad7dda1063ae2d: !StaticColliderComponent + Id: d17577c4-6745-4bca-b83e-3d7a978d606e + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 368adb9e6793798169337ef4de98022b: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 3.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 16d23f36-f4be-4509-9d47-60cb574be928 + InstanceId: 5e138026-4f2b-4c98-a4a1-426719ee499a + - Folder: null + Entity: + Id: d1deff20-856f-4862-9919-5cef8642a4a4 + Name: LaserFence_down + Components: + a4c9a42f24d4c443bad3060f61018c7f: !TransformComponent + Id: ca1e7d7b-4be2-4180-81a8-219042a92706 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e52519dff8a1534c8d3d763ba4d4e83e: !ModelComponent + Id: 5b613f29-b08f-47e5-8bb0-bebc7ce2c481 + Model: 4658c1a9-b3b6-4481-b22c-ad61ea3c14d3:Gameplay/Models/LaserFence_down + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: b070b742-1285-4948-a158-2800ee11f5e7 + InstanceId: 83dc3db0-8fe3-491e-b307-a950e5da8acc + - Folder: null + Entity: + Id: d2ca3703-cd51-4308-96de-f772ada5d7c4 + Name: Vent + Components: + 649d145b5cd2d2498d83796837ab2e4c: !TransformComponent + Id: 5163b83d-5ea6-4ff5-9f6e-1f13b053d325 + Position: {X: 0.0, Y: 0.6601438, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.258819, W: 0.9659258} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 51f9a88cd6a06144a9c30a8efc81f0d6: !ModelComponent + Id: 6deacd1c-f78d-4a1b-94be-01ed1f5ffc52 + Model: 9ba50f3a-f535-4ad4-982d-ff342c69fce4:Environment/Props/Models/Vent + Materials: {} + 557237ad44bd2e4a9a6adfa72a07f828: !Starbreach.VFX.Fan,Starbreach + Id: bf9ba8c8-2783-4f31-b397-c88dfece2388 + RotationSpeed: 0.5 + VentLightModelComponent: ref!! 798f8521-c8b7-42eb-85e4-c8acc9c4812d + LightTexture: 2ed2808b-0693-4a27-8cd8-4cccd2d48a70:Environment/Props/Materials/Vent/Vent_inner_E + Base: + BasePartAsset: b5275603-ec75-4bf7-b9cd-6613fe69d2b9:Environment/Props/Prefabs/Vent + BasePartId: 08e72601-63eb-4dcb-989d-5c65552896e8 + InstanceId: eb3724cb-b9d1-4a8f-be2d-0fb00d8798af + - Folder: Props + Entity: + Id: d67e1a81-7303-402a-a386-f33ad83b1042 + Name: Small_Wall + Components: + b169bb0a28fc365afeac43ee8f183ee6: !TransformComponent + Id: 0926f89a-822b-4499-8aa1-5cf9eafef2fe + Position*: {X: 5.0, Y: 0.0, Z: -0.49999997} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 07ce1731b5c55346319dfe8de1941a66: !ModelComponent + Id: 04fd4dad-7f61-4851-b8de-cd996f8d4087 + Model: 5d139f33-5b0c-4e35-ab70-78b928020552:Environment/Walls/PrefabModels/Small_Wall + Materials: {} + f67e43e13ee3fb89abc0bbaba3837c37: !StaticColliderComponent + Id: 7efbd9ef-4325-43dd-a637-4d2131cc8190 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + c40463507837835195777deb473f14de: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 1.5, Y: 1.0, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 76617c83803d5680acec68f22ab9ee48: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 0.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + a6227beb392d58cacc21431aa494be07: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 2.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + Base: + BasePartAsset: 35e9585d-5854-46bb-806b-d343b98a6b93:Environment/Walls/Prefabs/Small_Wall_Grouped + BasePartId: cfe6176c-8d73-4ab9-8cd5-43229726c1ff + InstanceId: ffed9fa0-852e-4b86-9f7f-87607b0171a8 + - Folder: Props + Entity: + Id: d8629aa5-8a46-4bcd-bb40-406e9c93cf37 + Name: box_1 + Components: + 809778ee97de74479d46b2b89cf3fd55: !TransformComponent + Id: 50349ae8-c0e2-42b8-bacd-dec9361d1d4f + Position*: {X: -12.4328566, Y: 0.0, Z: -28.99689} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + 46d65c287ed37b419febba3f2fc9e168: !ModelComponent + Id: daf103e1-ab7c-486d-8588-7914a902bc47 + Model: 46441ab3-67fb-40d4-8b72-8dd1db5d988e:Environment/Props/Models/Box1 + Materials: {} + 97af1ceb4c685740b019dc46621ca5bd: !StaticColliderComponent + Id: 580ac6e9-2d7c-4f70-a9dd-71e4e2405f52 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 30ff71837d20084985383f3411cf2ed8: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.95, Y: 0.95, Z: 0.95} + LocalOffset: {X: 0.0, Y: 0.475, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b23b46aa-4d3f-45a8-ab4b-7c5a9e4d9d99:Environment/Props/Prefabs/Box1 + BasePartId: e8b2a223-8164-4e20-8309-f81a90ca09cc + InstanceId: 04b32e21-6853-42a4-b4ec-e6bcd6c9cc01 + - Folder: null + Entity: + Id: d9278192-7900-41b0-ab59-6b060e605533 + Name: LaserFence_down + Components: + a4c9a42f24d4c443bad3060f61018c7f: !TransformComponent + Id: 10203b73-cd8d-456b-af1c-553d144bd6b8 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e52519dff8a1534c8d3d763ba4d4e83e: !ModelComponent + Id: 821d823b-c346-4bb4-a004-4d4b5250d3fa + Model: 4658c1a9-b3b6-4481-b22c-ad61ea3c14d3:Gameplay/Models/LaserFence_down + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: b070b742-1285-4948-a158-2800ee11f5e7 + InstanceId: 6d630e05-dde4-43ab-bb8c-c073f79dd7f5 + - Folder: null + Entity: + Id: d9343401-5e5a-4721-b26d-f112b9db9db7 + Name: LaserFence_down + Components: + a4c9a42f24d4c443bad3060f61018c7f: !TransformComponent + Id: 528d110c-8a1a-497f-851c-cf38ca7c9f3b + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e52519dff8a1534c8d3d763ba4d4e83e: !ModelComponent + Id: 73d38626-826c-4ede-aaf6-a5c3548878b5 + Model: 4658c1a9-b3b6-4481-b22c-ad61ea3c14d3:Gameplay/Models/LaserFence_down + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: b070b742-1285-4948-a158-2800ee11f5e7 + InstanceId: 52bcf716-d109-4561-b34b-8ad602c5a8a6 + - Folder: null + Entity: + Id: da49b708-60fb-45c5-b184-67c2ccfc374c + Name: LaserBeam + Components: + c2a61ac9cca3304c949c26193b0945c4: !TransformComponent + Id: 2b1dba75-6d21-4c62-9398-e2e953f6aefb + Position: {X: 0.5, Y: 2.5, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 9406e2b7130bca40c2c768f5946242ff: ref!! 9e3c8513-1dea-4ee0-b3fc-c63a3d0ce2ab + 5ee7f85c3fbac746b5c31e169615a5c7: !ParticleSystemComponent + Id: 3b0e2827-1dec-4728-a5dc-9631b0569440 + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 0.121568628, B: 0.121568628, A: 1.0} + Speed: 6.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + f239db465dd7354bbc55100bd300b151: + EmitterName: sparks + ParticleLifetime: {X: 1.0, Y: 5.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + ba54a1971cd84340b5ba37f508a3bd2c: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 881873fa3d3a744db46ae3db16b7d133: + Key: 1.0 + Value: 0.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 150.0, Y: 150.0, Z: 150.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: null + ForceTexCoords: false + Spawners: + 946a1b5e1895434284c7dbdaa728c786: !SpawnerBurst + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 100 + Initializers: + 581d30af2592fb41a520efcb0f64656c: !InitialPositionParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: true + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: true + ParentControlFlag: Group00 + SeedOffset: 0 + PositionMin: {X: -0.5, Y: -0.1, Z: -0.1} + PositionMax: {X: 0.5, Y: 0.1, Z: 0.1} + 0460848851abf642879131d04c839872: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.3 + SeedOffset: 24 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.05, Y: 0.2} + cd410cf87ddf07449ea894f8b8cb5238: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.02, Y: -0.01, Z: -0.02} + VelocityMax: {X: 0.02, Y: 0.04, Z: 0.02} + 855cafaded1b164dab92516ac877abf5: !InitialColorParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ParentControlFlag: Group00 + SeedOffset: 0 + ColorMin: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + ColorMax: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Updaters: {} + eabed859a30c6f409b30f3e5fa9295b2: + EmitterName: LaserEmitter02 + MaxParticlesOverride: 10 + ParticleLifetime: {X: 0.2, Y: 0.2} + ShapeBuilder: !ShapeBuilderRibbon + SmoothingPolicy: None + Segments: 5 + TextureCoordinatePolicy: AsIs + TexCoordsFactor: 1.0 + UVRotate: + FlipX: false + FlipY: false + UVClockwise: Degree0 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 100.0, Y: 100.0, Z: 100.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: da9b119e-ce87-4f7b-a4cc-2e93b158f137:Textures/Gradation01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: !UVBuilderScroll + StartFrame: {X: 0.0, Y: 0.0, Z: 1.0, W: 1.0} + EndFrame: {X: 0.0, Y: 1.0, Z: 1.0, W: 2.0} + ForceTexCoords: false + Spawners: + 771c66d89d336449959f8c37915bdb0e: !SpawnerPerFrame + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 10.0 + Framerate: 60.0 + Initializers: + af1eef0c052b814ab025d0cbeb5ef838: !InitialPositionArc + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + Target: ref!! 6496f494-9681-4857-9a83-8cf3e939d678 + DisplayParticleRotation: true + DisplayParticleScale: false + FallbackTarget: {X: 0.0, Y: 0.0, Z: -1.0} + DisplayParticleScaleUniform: false + ArcHeight: 0.0 + Sequential: true + FixedLength: 0 + PositionMin: {X: 0.0, Y: 0.0, Z: 0.0} + PositionMax: {X: 0.0, Y: 0.0, Z: 0.0} + SeedOffset: 0 + 6d09f593db786145af6ba89f386f9b48: !InitialSpawnOrder + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + d1dbc13de4fdfd44a592f202d7bed600: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.5 + SeedOffset: 1 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.5, Y: 0.6} + Updaters: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: d0b8df39-fac2-48ce-bd8f-a2f847d3157d + InstanceId: 83dc3db0-8fe3-491e-b307-a950e5da8acc + - Folder: null + Entity: + Id: db6d6f12-af3d-4b65-8687-b9754669ce60 + Name: vfx-Engine + Components: + 585f08a4c7e8554391f68583881993a2: !TransformComponent + Id: c11408eb-ef09-4edf-b679-7b727bdb0243 + Position: {X: 0.0, Y: 0.2, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + c1ecc9674350ec47b258da4ab8ccf2ff: ref!! 4ee32042-996e-4e2e-8813-71749370f4e1 + c141928df7725e448d9ee2d635345744: !AudioEmitterComponent + Id: cce3656b-1e26-4ae9-b917-fdb180a3795b + Sounds: + 210c4fe5f3b4c243942a23a4b3f26e49~Engine: 1d4673e5-cfbf-45eb-a34f-6d0c93074702:Drones/Sounds/Engine0 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + Base: + BasePartAsset: aac85dfd-95cb-4a1f-8b00-00e61427e601:Drones/Prefabs/EnergyDrone + BasePartId: e84e5acd-b1a3-43f4-9066-a3247f4be1e3 + InstanceId: 3055ec25-e105-4588-b7d1-554ff56408b9 + - Folder: null + Entity: + Id: df5c39a4-8afa-4d55-be46-6a786aa0b84e + Name: LaserCylinder + Components: + 6565f891cdba2236dd5dbf1888a0f6e0: !TransformComponent + Id: a573b747-89c6-4607-8c43-361d6f974614 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: -0.707106769, W: 0.707106769} + Scale: {X: 1.0, Y: 10.0, Z: 1.0} + Children: {} + cec4407060699b5ddb4eeb6f5f980024: !ModelComponent + Id: c758e665-0ee3-4763-af9c-2da4d3b9679a + Model: c11da5de-520a-4bd5-a691-5476b2a812e0:Gameplay/Models/Cylinder + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 30a095c2-8c9f-4cd2-9784-1ba35cc22331 + InstanceId: 6d630e05-dde4-43ab-bb8c-c073f79dd7f5 + - Folder: Gameplay + Entity: + Id: df6fc3de-8889-460a-952c-e94b054ff677 + Name*: LaserFence_BarrierB1 + Components: + fb5e18952f86407dad838d0b5bc40bef: !TransformComponent + Id: 3ac23864-690d-4bd5-a3a5-809d96a814a7 + Position*: {X: -6.356359, Y: 0.0, Z: -16.44557} + Rotation*: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + f94a04d4dd9ca249d275be383b123cc7: ref!! c6e3e203-bdf3-42fa-88de-f295b72da6bf + e8af797a2f73bec8e5b3b407c77a04b3: ref!! d832bf83-022c-464b-863f-4cf234e68b29 + c4e1eb951c333060077478fec3e6f721: !Starbreach.Gameplay.LaserFence,Starbreach + Id: 82c5a774-e988-4354-b361-dcb5127724d8 + ParticleSystemComponents: + d4e1b67fd72a014591445d886fdbd013: ref!! d858c8fb-6721-4d37-ab88-05009a897f60 + 99ad129b17a7400624a0fdde856096e0: ref!! a1a5b40e-fdb2-4a85-927b-a9bb62cf069b + ModelComponents: + 1e0b1119a150cc02dddd2f91b8f2f386: ref!! c758e665-0ee3-4763-af9c-2da4d3b9679a + dd30ed9dc650b5d60c314f45e5431622: ref!! 5443c327-5169-4aea-97cd-ac51b5ea960a + LasetBlockade: + 23ae30509c9fbe5fb438d52a1b33c4c0: ref!! 30593d76-e5f0-4a91-9eb9-4ff7789c88b0 + Triggers: + CombinationMode*: Conjunction + Inverted*: true + Activators: + cae5412b009c42819823df09dadc6c75*: !Starbreach.Gameplay.PressurePlate,Starbreach ref!! 8ac13700-b698-4d3a-af75-7fd83b9201dd + Enabled: true + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 945727d1-98d0-4a00-b29c-98f78daa9839 + InstanceId: 6d630e05-dde4-43ab-bb8c-c073f79dd7f5 + - Entity: + Id: e1f873a6-9451-48ee-bd54-ef790c0b91b5 + Name: Tubes_base + Components: + 7cdd3b1a1396bae0df8d315686b47524: !TransformComponent + Id: 5073b4e2-969b-429d-bcca-ae93beb13735 + Position: {X: 0.0, Y: 0.0, Z: -3.15} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 14c6a602fe3acc99031df8e58a62d2c8: !StaticColliderComponent + Id: 0ec0a7ed-f458-443d-a0e5-e85410b70ab7 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 2f121f88c1f6896ca79a2939aa8a095c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.25, Z: 1.2} + LocalOffset: {X: 0.0, Y: 0.625, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 9a70c79d932274ae3d789c1b8e505eed: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 0.7, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.35, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + c693012fa2a7a493118f8d327a097904: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.6, Z: -0.3} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + ec075d7b9a08dd03f4591017a4bce1a2: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: -0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 7742036734daf5a2f5497973ad25733f: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: 0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 62e87c0b-15d8-4628-95c9-7880f4cf2fe1:Environment/Props/Prefabs/Tubes + BasePartId: 33533809-4477-4c1f-90e3-f7c190afa66a + InstanceId: 994ce050-dffa-462a-9a36-407857d71ada + - Folder: Gameplay + Entity: + Id: e1fcd386-27af-40a3-8e11-3d33cf802f18 + Name*: PlateA + Components: + 2bd9e5018fb815bd9e0ddf7b6c4f0377: !TransformComponent + Id: 0f2a14cd-8a3e-4cd2-bf25-3f25a8b9120a + Position*: {X: 4.0, Y: 0.0, Z: -2.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a6932a4059e46dc7459b958c79f50336: !ModelComponent + Id: 9bb69479-582e-406b-a864-d4a918c03816 + Model: b08b5432-96b6-4259-8a89-303ff9bd12e2:Gameplay/Models/FloorButton + Materials: + 1eb04cc22e2a20d26f26187814c7bdc3~0: 0347eda8-4648-4983-a223-713b43cea1d9:Gameplay/Materials/Plates/Plate2_Enabled_Off + daf84040e6ba39f4813001d91222a07f~1: ba76b6f1-63f6-44d9-ad48-aca96fbe79a3:Gameplay/Materials/Plates/Plate3_Enabled_Off + 2a52917f17e18564669f46063c397a81: !Starbreach.Gameplay.PressurePlate,Starbreach + Id: 64868e54-0363-477e-b6bb-769649a75214 + Material1EnabledOff: ba76b6f1-63f6-44d9-ad48-aca96fbe79a3:Gameplay/Materials/Plates/Plate3_Enabled_Off + Material1DisabledOn: 2746f702-7dd5-4ef5-9e93-d5e758da2800:Gameplay/Materials/Plates/Plate3_Disabled_On + Material1DisabledOff: d02e7fcd-9f9e-450f-bc56-6e50e9970ec2:Gameplay/Materials/Plates/Plate3_Disabled_Off + Material1EnabledOn: 1163e435-4f1b-4b16-8834-da23869292b4:Gameplay/Materials/Plates/Plate3_Enabled_On + Material0EnabledOff: 0347eda8-4648-4983-a223-713b43cea1d9:Gameplay/Materials/Plates/Plate2_Enabled_Off + Material0DisabledOn: eff5f692-9337-4d7b-8cd8-531e3e06b852:Gameplay/Materials/Plates/Plate2_Disabled_On + Material0DisabledOff: e74abd75-804a-4de0-acf7-924aa5bb3a20:Gameplay/Materials/Plates/Plate2_Disabled_Off + Material0EnabledOn: 903888ae-b297-487a-a708-5fd6cd38c7c7:Gameplay/Materials/Plates/Plate2_Enabled_On + Model: ref!! 9bb69479-582e-406b-a864-d4a918c03816 + Trigger: ref!! 5a647f43-23f0-4f97-bfd8-58384c0ce3f4 + AudioEmitter: ref!! 7a116eaa-87a2-4850-99ab-1f9fe0cb28e5 + Enabled: true + Toggle: false + SingleActivation*: true + CurrentToggleState: false + TransitionTime: 0.15 + 48a3a1d7ea5c129742126bc8b4d7429c: !Starbreach.Gameplay.PressurePlateTrigger,Starbreach + Id: 5a647f43-23f0-4f97-bfd8-58384c0ce3f4 + CollisionFilterGroup: CharacterFilter + Trigger: ref!! a6172def-ca6e-47b7-babf-829ae88901bc + 03c59a6169956fba8a31fd1f758dc46f: !AudioEmitterComponent + Id: 7a116eaa-87a2-4850-99ab-1f9fe0cb28e5 + Sounds: + adc799987a8ff52a579d44583cb2cde7~Enable: 5163c935-fe14-4496-8f44-eb64e8482b31:Gameplay/Sounds/Plate_Enable + 732e4c030c0a74345f1aed380bdb8533~Disable: 730d9dfc-a657-4d5b-b5ea-8fc7e14cfa7d:Gameplay/Sounds/Plate_Disable + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + 9c600aa0b00e9640a384d3666fe41f14: !RigidbodyComponent + Id: a6172def-ca6e-47b7-babf-829ae88901bc + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: true + IsKinematic: true + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 4c0292725ab565154826fa81493eec99: !CylinderColliderShapeDesc + Height: 0.4 + Radius: 0.8 + LocalOffset: {X: 0.0, Y: 0.2, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 72f94a89-e47c-42ae-9264-b0c9881e3840:Gameplay/Prefabs/Plate + BasePartId: e4fdb89a-c2a0-4e83-a985-c4e087628455 + InstanceId: 7516f533-2eb9-4923-a429-407fa0aa0541 + - Folder: null + Entity: + Id: e268a46c-4dc8-4fba-a658-ca65f048858e + Name: Steam + Components: + c1ecc9674350ec47b258da4ab8ccf2ff: !TransformComponent + Id: 1c803083-c3cd-4201-a07e-fdd326368160 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8323bf5daa524c4fb5d833e41b08b32d: !ParticleSystemComponent + Id: c0c1a904-769f-454e-b76b-226af8393101 + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: !BoundingSpheretatic + DebugDraw: true + Radius: 4.0 + Emitters: + 9a3a5271a4a0934d9467f6b095793379: + ParticleLifetime: {X: 0.5, Y: 1.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 0383cd796e839e4b9667af5d0fe71756: + Key: 0.0 + Value: 0.5 + TangentType: Linear + 3c3bf45d6e50e542871470a99fdfd9f3: + Key: 0.3 + Value: 0.7 + TangentType: Linear + aa6cd07e77ba1c4da6e836dff7b31695: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ZOffset: 0.2 + SoftEdgeDistance: 0.3 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 5.0, Y: 5.0, Z: 5.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8dbe2382-769c-45fe-9604-98c5ae5c434c:Textures/SMO001_3 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + fa12c9550522c24fa400d8ce84ef83a0: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 80.0 + Initializers: + 3994a4c9897c7049af5217d699e668a9: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.4, Y: 0.5} + 7fa5fb2d4e692c4aae5cda5ce081ca44: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.5, Y: 0.0, Z: -0.5} + PositionMax: {X: 0.5, Y: 0.0, Z: 0.5} + Interpolate: false + 3d037e54f2051d42a511f75567a2d5eb: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.05, Y: -3.0, Z: -0.05} + VelocityMax: {X: 0.05, Y: -3.0, Z: 0.05} + d4d112e1ace7b944828fa9278f3938e1: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + Updaters: + 226c0f6bc8f05441a0eb6454e9f89045: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 82276cc03e3f854b9dc5c50ece2e25f9: + Key: 0.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + e3927f1e92cb4d4f80c729960776e1ca: + Key: 0.2 + Value: {R: 0.5, G: 0.5, B: 0.5, A: 0.25} + TangentType: Linear + bb31441c3997734baf5d4b324f145da1: + Key: 1.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + a788c7989777534fbc50541f7eebe631: !UpdaterForceField + InheritPosition: true + Position: {X: 0.0, Y: -1.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: true + FieldShape: !FieldShapeCylinder + HalfHeight: 1.0 + Radius: 1.0 + DisplayParticleRotation: true + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 1.0 + FalloffStart: 0.1 + StrengthOutside: 0.0 + FalloffEnd: 0.9 + EnergyConservation: 1.0 + ForceDirected: 0.0 + ForceVortex: 0.0 + ForceRepulsive: 4.0 + ForceFixed: {X: 0.0, Y: 8.0, Z: 0.0} + Base: + BasePartAsset: aac84dfd-95cb-4a1f-8b00-00e61427e600:Drones/Prefabs/RocketDrone + BasePartId: 67bf9668-b948-4e6a-8e59-ca5aebed6c09 + InstanceId: 4a9903f3-ebec-48ca-8508-700544b62291 + - Folder: Props + Entity: + Id: e45ae51f-8ebb-4f22-bd2b-574153ab915c + Name: Tubes_base + Components: + 7cdd3b1a1396bae0df8d315686b47524: !TransformComponent + Id: 1f94638e-a9f3-4377-8973-4bf16f100fc5 + Position*: {X: -1.00000048, Y: 0.0, Z: -7.0} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 4d4296f2a30a764d9d8fe6bea949fb8e: !ModelComponent + Id: 36be23cb-486b-484e-85cb-8caee6816c67 + Enabled*: true + Model: 734077ff-795c-4d1b-9f8c-688d142c4007:Environment/Props/Models/Tubes_base + Materials: {} + 14c6a602fe3acc99031df8e58a62d2c8: !StaticColliderComponent + Id: 9e83cfcc-dac1-4d19-8c87-7b010349d2ea + Enabled*: true + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 2f121f88c1f6896ca79a2939aa8a095c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.25, Z: 1.2} + LocalOffset: {X: 0.0, Y: 0.625, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 9a70c79d932274ae3d789c1b8e505eed: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 0.7, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.35, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + c693012fa2a7a493118f8d327a097904: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.6, Z: -0.3} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + ec075d7b9a08dd03f4591017a4bce1a2: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: -0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 7742036734daf5a2f5497973ad25733f: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: 0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: a9eaf641-84b9-4fe0-bb15-bc2c8a67319b:Environment/Props/Prefabs/Tubes_base + BasePartId: e5249e5a-b18b-46fe-96f1-6f11a587b647 + InstanceId: 4062b462-d953-4a56-ad88-4a9ab6b22b53 + - Folder: null + Entity: + Id: e88b2998-6360-4116-8030-39ad42dddcfe + Name: LaserArc + Components: + 336f7ce982182944823955cce7f2b5ee: !TransformComponent + Id: 6496f494-9681-4857-9a83-8cf3e939d678 + Position: {X: 0.5, Y: 2.5, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 28b6b224-b4bb-48a9-bccb-71f0e16cf1be + InstanceId: 83dc3db0-8fe3-491e-b307-a950e5da8acc + - Folder: null + Entity: + Id: ec2b622d-5baa-44b1-9371-dfe7a5ccae97 + Name: LaserFence_up + Components: + c8c633e320d799468ba2a8e339362d2d: !TransformComponent + Id: f9a2e146-a1dd-41ce-8b18-87d0af270ffe + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3e4e674bd6ad2f439da54f92a29a7eec: !ModelComponent + Id: 6cab2ad1-0d7a-4e8f-92e4-2dd80653c419 + Model: ca14aec1-3989-485c-84c0-5d0cbf5858f4:Gameplay/Models/LaserFence_up + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: e88381a2-6f10-476d-853f-56ea6884859f + InstanceId: 52bcf716-d109-4561-b34b-8ad602c5a8a6 + - Folder: null + Entity: + Id: ecd56a8b-ac66-4520-86a5-eca2a314678b + Name: LaserArc + Components: + 336f7ce982182944823955cce7f2b5ee: !TransformComponent + Id: c7dfc01b-c9b9-4cae-a288-d530a3078ddd + Position: {X: 0.5, Y: 1.75, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 6127bf25-0b62-4e22-863f-5009c2f77592 + InstanceId: 5e138026-4f2b-4c98-a4a1-426719ee499a + - Folder: null + Entity: + Id: ef93ed2f-b2eb-4d13-8d09-db28dd22fbd6 + Name: LaserFence_up + Components: + c8c633e320d799468ba2a8e339362d2d: !TransformComponent + Id: acab9aae-aac8-488e-b7be-631c3d6ab31f + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3e4e674bd6ad2f439da54f92a29a7eec: !ModelComponent + Id: 047bf56a-fe2e-4029-851f-23817296eb33 + Model: ca14aec1-3989-485c-84c0-5d0cbf5858f4:Gameplay/Models/LaserFence_up + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 2051137f-5c3e-4877-b418-d6730043e667 + InstanceId: 83dc3db0-8fe3-491e-b307-a950e5da8acc + - Folder: null + Entity: + Id: f01ffc4f-6dfd-46a1-8467-30ff0f7abf9a + Name: LaserArc + Components: + 336f7ce982182944823955cce7f2b5ee: !TransformComponent + Id: 11693563-5f49-42d4-b305-a4256496256d + Position: {X: 0.5, Y: 2.5, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 28b6b224-b4bb-48a9-bccb-71f0e16cf1be + InstanceId: 52bcf716-d109-4561-b34b-8ad602c5a8a6 + - Folder: null + Entity: + Id: f0f9d2ae-e802-43bc-acd9-939060aab7fc + Name: LaserCylinder + Components: + 6565f891cdba2236dd5dbf1888a0f6e0: !TransformComponent + Id: 3ff1f347-2642-4beb-a43a-32febd2641cc + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: -0.707106769, W: 0.707106769} + Scale: {X: 1.0, Y: 10.0, Z: 1.0} + Children: {} + cec4407060699b5ddb4eeb6f5f980024: !ModelComponent + Id: 96dfd9c9-4cdb-4eea-9a58-8c765c3c2450 + Model: c11da5de-520a-4bd5-a691-5476b2a812e0:Gameplay/Models/Cylinder + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 30a095c2-8c9f-4cd2-9784-1ba35cc22331 + InstanceId: 83dc3db0-8fe3-491e-b307-a950e5da8acc + - Folder: Props + Entity: + Id: f34cad96-ea59-446a-b82b-b69906a3481b + Name: Small_Angle + Components: + f59e2ade343b886c0ca1f125a2504c1c: !TransformComponent + Id: 0bfbf194-e19e-4e0c-8933-879a174c90cb + Position*: {X: -13.0, Y: 0.0, Z: -0.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 55d6ee3d08a260c07fdcbe9efb9741fe: !ModelComponent + Id: ea99ee28-4677-448e-8de0-63c9ff3c9ad6 + Model: 26958e5a-54e8-4c78-915b-ff9b33a6e742:Environment/Walls/PrefabModels/Small_Angle + Materials: {} + d9656997474c6f7b8bbd23de2fa86f31: !StaticColliderComponent + Id: b7a8a00f-4c9a-4f39-b4d4-47607db8af01 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + c222d643bda9467ac12372fe4e854a41: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 1.0, Y: 1.0, Z: 0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 5ac88fde6f08e8fabb87c9bd14c8f2b7: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 0.5, Y: 1.0, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 11f45f58b26e798879e9e2b7a3c6160b: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 0.5, Y: 0.0, Z: -1.0} + LocalRotation: {X: 0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + Base: + BasePartAsset: bdf4ab4d-73bd-4722-9158-c7d19b5a4602:Environment/Walls/Prefabs/Small_Angle_Grouped + BasePartId: 1f8be153-d7e6-4961-880b-44efc358b7cb + InstanceId: a40c9b72-ad42-41ef-a107-d11ae1a58d88 + - Folder: null + Entity: + Id: f352edf0-6a57-44e9-a2f0-68416de7ac2c + Name: LaserFence_up + Components: + c8c633e320d799468ba2a8e339362d2d: !TransformComponent + Id: a988dad5-5c4a-438e-bc7d-bf06af9bf6c1 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3e4e674bd6ad2f439da54f92a29a7eec: !ModelComponent + Id: 0303aaad-1eda-43bc-8940-1130b2dd9438 + Model: ca14aec1-3989-485c-84c0-5d0cbf5858f4:Gameplay/Models/LaserFence_up + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 2051137f-5c3e-4877-b418-d6730043e667 + InstanceId: 6d630e05-dde4-43ab-bb8c-c073f79dd7f5 + - Folder: null + Entity: + Id: f5615c16-75d0-4889-abbe-47470e9110eb + Name: Model + Components: + 7dad9d7cd55ced4abbf2cb2bbbd70c1a: !TransformComponent + Id: 1d17a161-fe52-4e56-b41f-a3f15ad43dd6 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + d719b2b339248f17748edd917f6bc9b2: ref!! a1ea8f79-fbe7-4dd7-9c85-2cbf81147d7c + 827f49f9d5034b4acf8a8939110ddb8d: ref!! 8eb060b7-f6aa-4bd4-b98e-70fd863de2e5 + c212d189fcc79d46bbb83d892c85ce82: !ModelComponent + Id: 60d188c2-bebb-4c21-980e-a42354ded212 + Model: c1428709-fa5d-40a7-8e17-d2efb546bfef:Drones/Models/RocketDrone + Materials: + bff18010728c254c925bebf2f03be01b~0: 76636c37-5239-4cd3-ac8a-953e9e4d913e:Drones/Materials/Drone/DroneLower + bad52956f3fcbb45ac19f0a99abdf1d0~1: b91deeaf-43f6-434a-8400-22a1c6cb0447:Drones/Materials/Drone/DroneUpper + 8710bd731b44b446a6f9448a50fcd66b~2: b55d921d-b0d4-416f-85ad-2e1f468a1f7e:Drones/Materials/RocketDrone/RocketDrone + c123a40ea35064c3e5b77b9aaec447dc: !AnimationComponent + Id: a65f1494-5bb2-4fc9-8acf-5773ce99584d + Animations: + a713ec907506354eb188aaba71f6039c~Fire: b476b79e-b408-4d80-8be5-e243b0355168:Drones/Animations/RocketDroneFire + 8df1171e0223014899b19b71b409f1b3~Idle: a980d9c8-1ff7-456c-87d6-312bb28c9a90:Drones/Animations/RocketDroneIdle + bcc277ca9a2ea247bf4ad6e427a787bf~Move: b3ba9abe-76d5-4580-8531-d1d1de2fc1ef:Drones/Animations/RocketDroneFly + Base: + BasePartAsset: aac84dfd-95cb-4a1f-8b00-00e61427e600:Drones/Prefabs/RocketDrone + BasePartId: ee748701-a6a0-4afd-b04c-ab208598af51 + InstanceId: 4a9903f3-ebec-48ca-8508-700544b62291 + - Folder: Props + Entity: + Id: f5c85d77-58a0-4b47-b531-978dbe69bfed + Name: Tubes_base + Components: + 7cdd3b1a1396bae0df8d315686b47524: !TransformComponent + Id: 9c2b3712-c3bf-4998-8e90-d2dfc723ae12 + Position*: {X: -5.0, Y: 0.0, Z: -7.0} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 4d4296f2a30a764d9d8fe6bea949fb8e: !ModelComponent + Id: 321df93e-0833-44c9-99cc-4026e919fbf5 + Model: 734077ff-795c-4d1b-9f8c-688d142c4007:Environment/Props/Models/Tubes_base + Materials: {} + 14c6a602fe3acc99031df8e58a62d2c8: !StaticColliderComponent + Id: 5c7ec2ab-1759-4f69-9053-f673e7976b03 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 2f121f88c1f6896ca79a2939aa8a095c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.25, Z: 1.2} + LocalOffset: {X: 0.0, Y: 0.625, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 9a70c79d932274ae3d789c1b8e505eed: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 0.7, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.35, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + c693012fa2a7a493118f8d327a097904: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.6, Z: -0.3} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + ec075d7b9a08dd03f4591017a4bce1a2: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: -0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 7742036734daf5a2f5497973ad25733f: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: 0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: a9eaf641-84b9-4fe0-bb15-bc2c8a67319b:Environment/Props/Prefabs/Tubes_base + BasePartId: e5249e5a-b18b-46fe-96f1-6f11a587b647 + InstanceId: e5009240-8d42-4a27-8940-701c79e6c897 + - Folder: null + Entity: + Id: f7f34d0f-f203-4710-88ca-20f7073b956a + Name: LargePillar + Components: + 4d0081ad1b800fc4ab391a6d3759f184: !TransformComponent + Id: 91796a00-1e67-46cf-9e26-2c30fdd291ea + Position: {X: 8.500001, Y: 3.0, Z: -14.4999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 00760b60420914e2a47292b0d04393d7: !ModelComponent + Id: fdaa0efe-5818-4e65-aa12-696faf2950c2 + Model: 258dfd07-ef55-4f3e-a0a8-afc05e4ca37b:Environment/Platforms/Models/LargePillar + Materials: {} + - Folder: null + Entity: + Id: f8579eab-bbe5-434f-adab-ec229512b618 + Name: LaserArc + Components: + 336f7ce982182944823955cce7f2b5ee: !TransformComponent + Id: 75309b3c-5698-470a-9a10-811843b0b565 + Position: {X: 0.5, Y: 2.5, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 28b6b224-b4bb-48a9-bccb-71f0e16cf1be + InstanceId: 5e138026-4f2b-4c98-a4a1-426719ee499a + - Folder: null + Entity: + Id: f9a0135c-3a38-464c-9713-0a8c0bddd10a + Name: LaserCylinder + Components: + 6565f891cdba2236dd5dbf1888a0f6e0: !TransformComponent + Id: 4165e8b7-359c-402d-b671-3d006a66d3e8 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: -0.707106769, W: 0.707106769} + Scale: {X: 1.0, Y: 10.0, Z: 1.0} + Children: {} + cec4407060699b5ddb4eeb6f5f980024: !ModelComponent + Id: 4d2cbbd2-10c3-403d-8fb0-340a0ba70ba5 + Model: c11da5de-520a-4bd5-a691-5476b2a812e0:Gameplay/Models/Cylinder + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 6072d1ec-0d92-4855-a83a-bacfa7acc501 + InstanceId: 5e138026-4f2b-4c98-a4a1-426719ee499a + - Folder: null + Entity: + Id: fb9fd953-fe95-48c5-a062-12bab9f97db0 + Name: LaserBeam + Components: + c2a61ac9cca3304c949c26193b0945c4: !TransformComponent + Id: 0f5b803a-5cc4-4894-9b86-e1da911303c1 + Position: {X: 0.5, Y: 1.75, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + fe89fc524a7b9ae686e1c8c7bf6e603c: ref!! fc34f3fc-86f0-4bc2-a6e7-9cd9a6762adc + 5ee7f85c3fbac746b5c31e169615a5c7: !ParticleSystemComponent + Id: 74c40929-d905-4f26-add6-7e07e018488a + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 0.125490189, B: 0.125490189, A: 1.0} + Speed: 6.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + f239db465dd7354bbc55100bd300b151: + EmitterName: sparks + ParticleLifetime: {X: 1.0, Y: 5.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + ba54a1971cd84340b5ba37f508a3bd2c: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 881873fa3d3a744db46ae3db16b7d133: + Key: 1.0 + Value: 0.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 150.0, Y: 150.0, Z: 150.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: null + ForceTexCoords: false + Spawners: + 946a1b5e1895434284c7dbdaa728c786: !SpawnerBurst + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 100 + Initializers: + 581d30af2592fb41a520efcb0f64656c: !InitialPositionParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: true + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: true + ParentControlFlag: Group00 + SeedOffset: 0 + PositionMin: {X: -0.5, Y: -0.1, Z: -0.1} + PositionMax: {X: 0.5, Y: 0.1, Z: 0.1} + 0460848851abf642879131d04c839872: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.3 + SeedOffset: 24 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.05, Y: 0.2} + cd410cf87ddf07449ea894f8b8cb5238: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.02, Y: -0.01, Z: -0.02} + VelocityMax: {X: 0.02, Y: 0.04, Z: 0.02} + 855cafaded1b164dab92516ac877abf5: !InitialColorParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ParentControlFlag: Group00 + SeedOffset: 0 + ColorMin: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + ColorMax: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Updaters: {} + eabed859a30c6f409b30f3e5fa9295b2: + EmitterName: LaserEmitter02 + MaxParticlesOverride: 10 + ParticleLifetime: {X: 0.2, Y: 0.2} + ShapeBuilder: !ShapeBuilderRibbon + SmoothingPolicy: None + Segments: 5 + TextureCoordinatePolicy: AsIs + TexCoordsFactor: 1.0 + UVRotate: + FlipX: false + FlipY: false + UVClockwise: Degree0 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 100.0, Y: 100.0, Z: 100.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: da9b119e-ce87-4f7b-a4cc-2e93b158f137:Textures/Gradation01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: !UVBuilderScroll + StartFrame: {X: 0.0, Y: 0.0, Z: 1.0, W: 1.0} + EndFrame: {X: 0.0, Y: 1.0, Z: 1.0, W: 2.0} + ForceTexCoords: false + Spawners: + 771c66d89d336449959f8c37915bdb0e: !SpawnerPerFrame + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 10.0 + Framerate: 60.0 + Initializers: + af1eef0c052b814ab025d0cbeb5ef838: !InitialPositionArc + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + Target: ref!! 47e7e069-2c9e-4b94-bc83-1267500a5b1e + DisplayParticleRotation: true + DisplayParticleScale: false + FallbackTarget: {X: 0.0, Y: 0.0, Z: -1.0} + DisplayParticleScaleUniform: false + ArcHeight: 0.0 + Sequential: true + FixedLength: 0 + PositionMin: {X: 0.0, Y: 0.0, Z: 0.0} + PositionMax: {X: 0.0, Y: 0.0, Z: 0.0} + SeedOffset: 0 + 6d09f593db786145af6ba89f386f9b48: !InitialSpawnOrder + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + d1dbc13de4fdfd44a592f202d7bed600: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.5 + SeedOffset: 1 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.5, Y: 0.6} + Updaters: {} + 2801c9087775c2ecc9518fa0f801c79c: !StaticColliderComponent + Id: a636348f-6efb-48d1-bef0-1f260eb405bb + CollisionGroup*: CustomFilter1 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + d9c023df8272c6145711f00ef8160b74: !BoxColliderShapeDesc + Is2D: false + Size: {X: 10.0, Y: 3.0, Z: 2.0} + LocalOffset: {X: 4.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 8512ce3d-9fb8-400b-bf88-7186abe432d8 + InstanceId: 52bcf716-d109-4561-b34b-8ad602c5a8a6 + - Folder: null + Entity: + Id: fbe1250a-9b73-438b-937a-f98839034669 + Name: Vent_light_mesh + Components: + 54af95a0dca10843911d079ccfaa0cfd: !TransformComponent + Id: 274ee8c2-9fd7-4084-94b8-2a482e1f022f + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6f6f8132f03b9c4db90f22a935e18733: !ModelComponent + Id: 798f8521-c8b7-42eb-85e4-c8acc9c4812d + Model: bcf6e9e7-0e5d-45f3-ba1b-0b2025d17e1c:Environment/Props/Models/Vent_light_mesh + Materials: {} + Base: + BasePartAsset: b5275603-ec75-4bf7-b9cd-6613fe69d2b9:Environment/Props/Prefabs/Vent + BasePartId: 9b350f50-f364-4653-8b82-1b0bf30e2f23 + InstanceId: eb3724cb-b9d1-4a8f-be2d-0fb00d8798af diff --git a/Starbreach/Assets/Shared/Levels/Platform_1-2_NAV.xknavmesh b/Starbreach/Assets/Shared/Levels/Platform_1-2_NAV.xknavmesh new file mode 100644 index 0000000..7969da5 --- /dev/null +++ b/Starbreach/Assets/Shared/Levels/Platform_1-2_NAV.xknavmesh @@ -0,0 +1,18 @@ +!NavigationMeshAsset +Id: e4c6e7f0-7bbb-4ac9-b5d3-4fc59cbb6509 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Scene: d84c90f8-5819-4d13-9da0-44e63ffe03b2:Levels/Platform_1-2 +IncludedCollisionGroups: DefaultFilter, StaticFilter, KinematicFilter, DebrisFilter, SensorTrigger, CharacterFilter, CustomFilter2, CustomFilter3, CustomFilter4, CustomFilter5, CustomFilter6, CustomFilter7, CustomFilter8, CustomFilter9, CustomFilter10 +BuildSettings: + CellHeight: 0.2 + CellSize: 0.3 + TileSize: 64 + MinRegionArea: 2 + RegionMergeArea: 20 + MaxEdgeLen: 12.0 + MaxEdgeError: 1.3 + DetailSamplingDistance: 6.0 + MaxDetailSamplingError: 1.0 +SelectedGroups: + 1a10aeca6aca404ebb4a48842263515c: 665dbfaa-d91a-ee40-d176-a5eaed1268bc diff --git a/Starbreach/Assets/Shared/Levels/Platform_1-3.xkscene b/Starbreach/Assets/Shared/Levels/Platform_1-3.xkscene new file mode 100644 index 0000000..700f4fa --- /dev/null +++ b/Starbreach/Assets/Shared/Levels/Platform_1-3.xkscene @@ -0,0 +1,4911 @@ +!SceneAsset +Id: c19198c4-4894-4d04-bbad-e31a414da5d5 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +ChildrenIds: [] +Parent: 6224d747-48a6-4736-a199-27785b9b7c3b:Levels/MainScene +Offset: {X: 0.0, Y: 0.0, Z: -99.0} +Hierarchy: + RootParts: + - ref!! 2b55ee9c-e640-41ad-8811-bd442db2323b + - ref!! f565a058-b672-4413-87f1-88f4fcd22571 + - ref!! bbf5e5ce-882e-4694-96fd-a8c38dacbfab + - ref!! 5f8674f1-49a1-4671-888b-349356afc65b + - ref!! 80bfd1c8-8513-4430-adbe-d2b0120ed3ba + - ref!! 36bb91bd-2530-4cc2-85ad-497450a37339 + - ref!! cd0148ba-b019-4ad3-892b-dd2675ff19a3 + - ref!! 14a12680-2d64-4012-934a-966c323c9ea3 + - ref!! 8cedfe73-288c-4350-a3f5-4623aa77a472 + - ref!! 9388aa93-53e0-4c7a-852c-2a548cec9442 + - ref!! 96e63776-37df-4fa3-944b-efe8ddf6c5ba + - ref!! 7b4f001a-bae4-4536-bc96-01a127d71843 + - ref!! f395f468-bf64-4d3b-ae7e-f2a968f7395d + - ref!! 0a5760cf-840a-43b7-b885-83868639bd56 + - ref!! 58e7b2ed-6c28-4f3d-ae42-4165c9232d6e + - ref!! d8f42d04-eff6-469e-88f9-df268230b1e0 + - ref!! d37a4f0a-685c-4ff3-a3f6-3330987c68a1 + - ref!! 46d2bf51-2809-4359-af60-10ecd8c32a77 + - ref!! 312b1f6e-eaca-4170-891c-5407c560f95a + - ref!! a93348e0-084d-4b5b-b8f1-459c877a13af + - ref!! 12ea172d-a805-4b30-85f2-535fceb7962d + - ref!! e6c29391-d929-409e-9c08-05a80ccd7db1 + - ref!! 59320e7f-0f89-4e05-875d-5d9614c54443 + - ref!! a6df253a-54b4-4d41-b524-3ba4360ccb79 + - ref!! db8bb68e-171e-454e-86ad-ece5f99a9681 + - ref!! 4be5823a-99c0-40f3-bf8f-d30c13ce560a + - ref!! bb32b74a-98ce-4a3e-ac60-fab2b2c453d9 + - ref!! 7064a069-fb79-4157-8160-cd7e1a379d3f + - ref!! 931ad146-1f2f-4bf3-9042-1fc08a0d4289 + - ref!! 2962c142-3c9a-452a-8f66-44ad5b75d100 + - ref!! 0d6af7c1-b4f7-4277-9fc4-b1c32cea94cf + - ref!! a0b72fd4-28b3-475d-97b9-2fba42d82628 + - ref!! 13f8c8db-60bb-459a-ad08-5ebb8a31512c + - ref!! f49abc2a-0104-44ff-8d1f-78332b441654 + - ref!! fd5a8bdc-d919-4458-b9ea-e070d0107d29 + - ref!! d91cf90e-c1fc-4905-b045-ade73892e575 + - ref!! 2311de4f-11ba-45d3-af41-f2091b3c3608 + - ref!! aac32e6f-1de6-4ec7-a714-bd3a06c20fc8 + - ref!! e5f0781c-ecfa-404d-a6f4-d95f57fb24bf + - ref!! 4d99f35f-074e-48c0-9491-4c6eda6d6c79 + - ref!! fb7485bf-7f43-4548-96e6-0d453cae5de7 + Parts: + - Folder: null + Entity: + Id: 08cbbe05-14d2-400c-9739-d7c0ff5c57c0 + Name: Tubes_base + Components: + 7cdd3b1a1396bae0df8d315686b47524: !TransformComponent + Id: 8291f6a0-67db-406e-97c8-b32fab347f6d + Position: {X: 0.0, Y: 0.0, Z: -3.15} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 14c6a602fe3acc99031df8e58a62d2c8: !StaticColliderComponent + Id: 1d48a24c-2ca0-4571-be1a-a799dd7f8ca3 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 2f121f88c1f6896ca79a2939aa8a095c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.25, Z: 1.2} + LocalOffset: {X: 0.0, Y: 0.625, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 9a70c79d932274ae3d789c1b8e505eed: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 0.7, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.35, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + c693012fa2a7a493118f8d327a097904: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.6, Z: -0.3} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + ec075d7b9a08dd03f4591017a4bce1a2: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: -0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 7742036734daf5a2f5497973ad25733f: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: 0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 62e87c0b-15d8-4628-95c9-7880f4cf2fe1:Environment/Props/Prefabs/Tubes + BasePartId: 33533809-4477-4c1f-90e3-f7c190afa66a + InstanceId: ae37fc66-96d4-4252-b373-bacc1c49cdd8 + - Folder: Props + Entity: + Id: 0a5760cf-840a-43b7-b885-83868639bd56 + Name: box_1 + Components: + 809778ee97de74479d46b2b89cf3fd55: !TransformComponent + Id: d401e363-dbe4-4bb0-95f1-e73a5ba0ccfd + Position*: {X: -5.380265, Y: 0.93672955, Z: -0.209193051} + Rotation*: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.5, Y: 1.0, Z: 1.5} + Children: {} + 46d65c287ed37b419febba3f2fc9e168: !ModelComponent + Id: ca308997-fa5a-4044-84e9-551c72b3b315 + Model: 46441ab3-67fb-40d4-8b72-8dd1db5d988e:Environment/Props/Models/Box1 + Materials: {} + 97af1ceb4c685740b019dc46621ca5bd: !StaticColliderComponent + Id: 9dbb7ab2-7e11-4653-a551-ca97fe691af8 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 30ff71837d20084985383f3411cf2ed8: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.95, Y: 0.95, Z: 0.95} + LocalOffset: {X: 0.0, Y: 0.475, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b23b46aa-4d3f-45a8-ab4b-7c5a9e4d9d99:Environment/Props/Prefabs/Box1 + BasePartId: e8b2a223-8164-4e20-8309-f81a90ca09cc + InstanceId: 5b3372b6-3548-4222-a10f-3deee606307a + - Entity: + Id: 0a89ca94-7129-413d-8955-0382b577c2cf + Name: LaserCylinder + Components: + 6565f891cdba2236dd5dbf1888a0f6e0: !TransformComponent + Id: 86dc06b5-acfb-40d3-8f81-21756734d8e2 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: -0.707106769, W: 0.707106769} + Scale: {X: 1.0, Y: 10.0, Z: 1.0} + Children: {} + cec4407060699b5ddb4eeb6f5f980024: !ModelComponent + Id: 47d16636-57a1-4759-9de2-9cdc0c58f6f7 + Model: c11da5de-520a-4bd5-a691-5476b2a812e0:Gameplay/Models/Cylinder + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 30a095c2-8c9f-4cd2-9784-1ba35cc22331 + InstanceId: 06de3e7a-88ad-4044-8ca6-ae36b136c028 + - Folder: Gameplay + Entity: + Id: 0d6af7c1-b4f7-4277-9fc4-b1c32cea94cf + Name: Drone + Components: + bee1416b5e2d304389e20936f750b8b1: !TransformComponent + Id: 22ac2bc7-d0bb-41f7-a37f-00ec80bb8e61 + Position*: {X: -35.33563, Y: 0.0, Z: -32.71101} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 68b08d6ef4327063ddfe04b67a961aae: ref!! fdae54aa-6881-4a77-a21d-945c1fcdefe5 + 963458a2c6c68927d38fec6a605500fa: ref!! 068ab62e-aeb8-4bf1-a9d0-4833d31a43b9 + aed3e642d5d71f48bdf23181156082f9: !CharacterComponent + Id: 316a8b1c-047a-4f6f-bd2a-0793b112c9d4 + CollisionGroup: CustomFilter3 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + FallSpeed: 10.0 + MaxSlope: {Radians: 0.7853982} + JumpSpeed: 5.0 + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + ColliderShapes: + d27547538ff5dd4eb72e1d385d4862bd: !CylinderColliderShapeDesc + Height: 2.0 + Radius: 1.0 + LocalOffset: {X: 0.0, Y: 1.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 827cf65eb5dca148adaa7ef5bc60df35: !AudioEmitterComponent + Id: 40615b65-033a-4f2a-91f3-979dfda1c28e + Sounds: + 9f0d8aaa3fc06a44bae1c6cff7aeef58~Death: 4c9333d4-d4d5-4f61-9390-6b2e2602cf1b:Drones/Sounds/Death + 062488fbcb22f344b134f663d4a59ff9~Explosion: 936a2dbe-31df-40cc-836b-18793ffcea22:Drones/Sounds/Explosion + 762f069faf274a408a2da257ca0f4736~Hit0: 732e562c-622b-4fff-8282-58a7efa0b204:Drones/Sounds/Hit0 + ba953638f1e5db4d852167189517624d~Hit1: 973a4551-7cd6-4b8d-8a53-5a61ca9e461b:Drones/Sounds/Hit1 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + c7262ebf0d468f43ba11ca1221215c08: !NavigationComponent + Id: 93884747-0b51-43d1-ae04-01bbd9b75031 + NavigationMesh*: 82baba25-eddc-4983-a303-ef534133b0cc:Levels/Platform_1-3_NAV + GroupId: 665dbfaa-d91a-ee40-d176-a5eaed1268bc + 238e55139b0b248973a65b6ba75f8d54: !Starbreach.Drones.Drone,Starbreach + Id: 191acb40-1065-4f3a-811c-2e13398c5354 + Priority: 4000 + Weapon: !Starbreach.Drones.MissileDroneWeapon,Starbreach + ProjectileSpawnPoint: ref!! 738e660c-a817-4765-b6c6-5835649ff58f + ReloadTime: 2.0 + ArraySize: {X: 3, Y: 3} + ArrayExtent: {X: 0.5, Y: 0.4} + MaximumRange: 20.0 + ProjectilePrefab: 35063ac9-350d-4c96-b28a-28abc68b4214:Drones/Prefabs/Rocket + AnimationDelay: 0.12 + SpreadAngle: {Radians: 0.1} + ShootingRange: 15.0 + MaximumSpeed: 1.5 + RotationSpeed: 6.283185 + HeadRotationSpeed: 6.283185 + Model: ref!! f3a8d773-3ab8-434b-adc6-fabc5357c473 + DefaultMaterial: b91deeaf-43f6-434a-8400-22a1c6cb0447:Drones/Materials/Drone/DroneUpper + AlertedMaterial: 70cfa151-cffc-4cf1-a0d5-2ac4ac94e4a6:Drones/Materials/Drone/DroneUpper_Alerted + EngineParticle: ref!! 5ca54273-a319-428d-a750-9ae0773f2b0b + EngineAudioEmitter: ref!! 63088ea1-bcce-4f01-85ce-7f5d9553887f + DroneExplosionPrefab: d1f82cfd-900e-4757-958c-1dd35a4ec775:Drones/Prefabs/DroneExplosion + e3d3d4a2c9c5e7676d484a7a5a41d498: !Starbreach.Drones.PatrollingDroneController,Starbreach + Id: 830eba84-a99e-4986-812e-3200861ecb03 + PathToFollow: null + ChaseAlertZoneRadius: 20.0 + IdleAlertZoneRadius: 15.0 + AlertZoneTriggerEntity: ref!! ad37de66-7b99-427a-ab91-799499226ca7 + Base: + BasePartAsset: aac84dfd-95cb-4a1f-8b00-00e61427e600:Drones/Prefabs/RocketDrone + BasePartId: fb95e431-53b2-4f1b-b194-74a16c023eef + InstanceId: cd3d29c3-6924-47fd-a603-ec67d6f5f178 + - Entity: + Id: 104873d6-0633-40d3-8c30-ed514583f3e5 + Name: LaserArc + Components: + 336f7ce982182944823955cce7f2b5ee: !TransformComponent + Id: 880832d9-1207-40d2-bd00-0ae6dbe4135e + Position: {X: 0.5, Y: 1.75, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 6127bf25-0b62-4e22-863f-5009c2f77592 + InstanceId: 0b1e0f02-9118-4a45-ac60-d503b4882088 + - Folder: Props + Entity: + Id: 12ea172d-a805-4b30-85f2-535fceb7962d + Name: Vent + Components: + 9385595b1d62aa4bb2b4c469cfe0c781: !TransformComponent + Id: 0aea68b7-587f-4939-b695-d7f5d4121b9c + Position*: {X: 5.57546329, Y: 0.0, Z: -23.215723} + Rotation*: {X: 0.0, Y: -0.7071067, Z: 0.0, W: 0.7071068} + Scale*: {X: 0.99999994, Y: 1.0, Z: 0.99999994} + Children: + fef582b5ce88153fe16e0207caff2767: ref!! dcfba63b-f35b-4d4c-ac43-457a003ea6ba + ad7e16aa5036ddb39dd344dbe2453ee0: ref!! 1ac90b97-5b42-4673-b71d-357b2783e704 + 1200685bbff2fe1e5c49bf133a5e169b: ref!! a31bda68-ba2a-49d1-82bb-1a8f706e6528 + Base: + BasePartAsset: b5275603-ec75-4bf7-b9cd-6613fe69d2b9:Environment/Props/Prefabs/Vent + BasePartId: 5c398975-e1e7-4877-af93-881930263e94 + InstanceId: 3d5ef5cb-474f-491c-9e93-88b63ce98d03 + - Entity: + Id: 1379af59-3755-49c7-8b51-fc6010cc5c3b + Name*: FloorButton 1 + Components: + 2bd9e5018fb815bd9e0ddf7b6c4f0377: !TransformComponent + Id: 1cf608e7-06e6-422b-a98b-dbeaeb61605c + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a6932a4059e46dc7459b958c79f50336: !ModelComponent + Id: 883038fc-949f-434b-b54a-b3ba21ea1957 + Model: b08b5432-96b6-4259-8a89-303ff9bd12e2:Gameplay/Models/FloorButton + Materials: + 1eb04cc22e2a20d26f26187814c7bdc3~0: 0347eda8-4648-4983-a223-713b43cea1d9:Gameplay/Materials/Plates/Plate2_Enabled_Off + daf84040e6ba39f4813001d91222a07f~1: ba76b6f1-63f6-44d9-ad48-aca96fbe79a3:Gameplay/Materials/Plates/Plate3_Enabled_Off + 2a52917f17e18564669f46063c397a81: !Starbreach.Gameplay.PressurePlate,Starbreach + Id: b09b59df-4f08-451f-93f1-5394e542dc75 + Material1EnabledOff: ba76b6f1-63f6-44d9-ad48-aca96fbe79a3:Gameplay/Materials/Plates/Plate3_Enabled_Off + Material1DisabledOn: 2746f702-7dd5-4ef5-9e93-d5e758da2800:Gameplay/Materials/Plates/Plate3_Disabled_On + Material1DisabledOff: d02e7fcd-9f9e-450f-bc56-6e50e9970ec2:Gameplay/Materials/Plates/Plate3_Disabled_Off + Material1EnabledOn: 1163e435-4f1b-4b16-8834-da23869292b4:Gameplay/Materials/Plates/Plate3_Enabled_On + Material0EnabledOff: 0347eda8-4648-4983-a223-713b43cea1d9:Gameplay/Materials/Plates/Plate2_Enabled_Off + Material0DisabledOn: eff5f692-9337-4d7b-8cd8-531e3e06b852:Gameplay/Materials/Plates/Plate2_Disabled_On + Material0DisabledOff: e74abd75-804a-4de0-acf7-924aa5bb3a20:Gameplay/Materials/Plates/Plate2_Disabled_Off + Material0EnabledOn: 903888ae-b297-487a-a708-5fd6cd38c7c7:Gameplay/Materials/Plates/Plate2_Enabled_On + Model: ref!! 883038fc-949f-434b-b54a-b3ba21ea1957 + Trigger: ref!! d275a4b9-57b9-48b1-878c-9435985264d0 + AudioEmitter: ref!! eeedb212-f4fe-4eb7-8322-c48f87feeed0 + Enabled: true + Toggle*: false + SingleActivation*: true + CurrentToggleState*: false + TransitionTime: 0.15 + 48a3a1d7ea5c129742126bc8b4d7429c: !Starbreach.Gameplay.PressurePlateTrigger,Starbreach + Id: d275a4b9-57b9-48b1-878c-9435985264d0 + CollisionFilterGroup: CharacterFilter + Trigger: ref!! fd3483d4-0ed3-4bca-8fa0-30ac2f956cea + 03c59a6169956fba8a31fd1f758dc46f: !AudioEmitterComponent + Id: eeedb212-f4fe-4eb7-8322-c48f87feeed0 + Sounds: + adc799987a8ff52a579d44583cb2cde7~Enable: 5163c935-fe14-4496-8f44-eb64e8482b31:Gameplay/Sounds/Plate_Enable + 732e4c030c0a74345f1aed380bdb8533~Disable: 730d9dfc-a657-4d5b-b5ea-8fc7e14cfa7d:Gameplay/Sounds/Plate_Disable + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + 9c600aa0b00e9640a384d3666fe41f14: !RigidbodyComponent + Id: fd3483d4-0ed3-4bca-8fa0-30ac2f956cea + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: true + IsKinematic: true + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 4c0292725ab565154826fa81493eec99: !CylinderColliderShapeDesc + Height: 0.4 + Radius: 0.8 + LocalOffset: {X: 0.0, Y: 0.2, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 72f94a89-e47c-42ae-9264-b0c9881e3840:Gameplay/Prefabs/Plate + BasePartId: e4fdb89a-c2a0-4e83-a985-c4e087628455 + InstanceId: 1eba7887-218b-426f-9d76-08b699ba9ba4 + - Folder: null + Entity: + Id: 13ac1e02-8c23-4b4f-b785-6b779ba3481f + Name: Tubes_base + Components: + 7cdd3b1a1396bae0df8d315686b47524: !TransformComponent + Id: 857b25e7-8ce8-49c7-ba2f-d470c5af64f4 + Position: {X: 0.0, Y: 0.0, Z: 3.15} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: -1.0} + Children: {} + 14c6a602fe3acc99031df8e58a62d2c8: !StaticColliderComponent + Id: eb05272d-a894-4e89-bd8e-447587fdbc31 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 2f121f88c1f6896ca79a2939aa8a095c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.25, Z: 1.2} + LocalOffset: {X: 0.0, Y: 0.625, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 9a70c79d932274ae3d789c1b8e505eed: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 0.7, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.35, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + c693012fa2a7a493118f8d327a097904: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.6, Z: -0.3} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + ec075d7b9a08dd03f4591017a4bce1a2: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: -0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 7742036734daf5a2f5497973ad25733f: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: 0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 62e87c0b-15d8-4628-95c9-7880f4cf2fe1:Environment/Props/Prefabs/Tubes + BasePartId: 6b5a24fa-0d02-4afd-abf9-40cf450e9674 + InstanceId: ae37fc66-96d4-4252-b373-bacc1c49cdd8 + - Folder: Gameplay + Entity: + Id: 13f8c8db-60bb-459a-ad08-5ebb8a31512c + Name: LaserFence_Barrier-not1-not2 + Components: + a53006f7bee78a59865fc8d1618ee5b2: !TransformComponent + Id: a8047dc3-798c-4116-867c-80d06129d4ce + Position: {X: -4.7707, Y: 0.0, Z: -27.340826} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 99d9ecfb3a4912fc5a36f99aeacb966a: ref!! 37c3168b-3315-4fa7-9bd6-20766e717198 + - Folder: Props + Entity: + Id: 14a12680-2d64-4012-934a-966c323c9ea3 + Name: Crane_small + Components: + 0c58a93ff0b68a3b56e86f6ce23dcce2: !TransformComponent + Id: ce6bf088-7113-4628-ac90-46e4b02741e5 + Position*: {X: -6.72701645, Y: 0.0, Z: -6.4966836} + Rotation*: {X: 0.0, Y: 0.08855779, Z: 0.0, W: 0.996071041} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a77dc0a106dbb00f08f57927becc8e32: !ModelComponent + Id: e79ed20a-f0a6-4c71-a3cf-860267800d68 + Model: 6265c534-4bfd-45a2-879b-15aa84659e82:Environment/Props/Models/Crane_small + Materials: {} + 1b3a638d4d756e78a09cd85c91a67ded: !StaticColliderComponent + Id: 32d23436-4f5a-4aaf-8414-4644051fe65e + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 8b852c3813cdeaaeebd7fa29686a6d8e: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 3.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 965145a08bbd93aa5abf3fb115c7c6dc: !CylinderColliderShapeDesc + Height: 4.0 + LocalOffset: {X: -0.5, Y: 5.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 00eb9a22-6040-4b56-936b-aef09a483897:Environment/Props/Prefabs/Crane_small + BasePartId: a8c3a236-cfd6-4880-a196-a0dd2a27cbee + InstanceId: 9ebc902e-e2fe-4c86-a5b1-5b6466a310b3 + - Entity: + Id: 19b09306-f8b6-46de-8f6f-4bc69bcfbbff + Name: Steam + Components: + c1ecc9674350ec47b258da4ab8ccf2ff: !TransformComponent + Id: 369126c8-7243-4d71-b45a-9d7b8ebb5d23 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8323bf5daa524c4fb5d833e41b08b32d: !ParticleSystemComponent + Id: ec96a388-eb5d-421d-982c-30b87912b964 + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: !BoundingSpheretatic + DebugDraw: true + Radius: 4.0 + Emitters: + 9a3a5271a4a0934d9467f6b095793379: + ParticleLifetime: {X: 0.5, Y: 1.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 0383cd796e839e4b9667af5d0fe71756: + Key: 0.0 + Value: 0.5 + TangentType: Linear + 3c3bf45d6e50e542871470a99fdfd9f3: + Key: 0.3 + Value: 0.7 + TangentType: Linear + aa6cd07e77ba1c4da6e836dff7b31695: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ZOffset: 0.2 + SoftEdgeDistance: 0.3 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 5.0, Y: 5.0, Z: 5.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8dbe2382-769c-45fe-9604-98c5ae5c434c:Textures/SMO001_3 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + fa12c9550522c24fa400d8ce84ef83a0: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 80.0 + Initializers: + 3994a4c9897c7049af5217d699e668a9: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.4, Y: 0.5} + 7fa5fb2d4e692c4aae5cda5ce081ca44: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.5, Y: 0.0, Z: -0.5} + PositionMax: {X: 0.5, Y: 0.0, Z: 0.5} + Interpolate: false + 3d037e54f2051d42a511f75567a2d5eb: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.05, Y: -3.0, Z: -0.05} + VelocityMax: {X: 0.05, Y: -3.0, Z: 0.05} + d4d112e1ace7b944828fa9278f3938e1: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + Updaters: + 226c0f6bc8f05441a0eb6454e9f89045: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 82276cc03e3f854b9dc5c50ece2e25f9: + Key: 0.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + e3927f1e92cb4d4f80c729960776e1ca: + Key: 0.2 + Value: {R: 0.5, G: 0.5, B: 0.5, A: 0.25} + TangentType: Linear + bb31441c3997734baf5d4b324f145da1: + Key: 1.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + a788c7989777534fbc50541f7eebe631: !UpdaterForceField + InheritPosition: true + Position: {X: 0.0, Y: -1.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: true + FieldShape: !FieldShapeCylinder + HalfHeight: 1.0 + Radius: 1.0 + DisplayParticleRotation: true + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 1.0 + FalloffStart: 0.1 + StrengthOutside: 0.0 + FalloffEnd: 0.9 + EnergyConservation: 1.0 + ForceDirected: 0.0 + ForceVortex: 0.0 + ForceRepulsive: 4.0 + ForceFixed: {X: 0.0, Y: 8.0, Z: 0.0} + Base: + BasePartAsset: aac85dfd-95cb-4a1f-8b00-00e61427e601:Drones/Prefabs/EnergyDrone + BasePartId: 67bf9668-b948-4e6a-8e59-ca5aebed6c09 + InstanceId: 7b70de62-56d2-4707-a468-af6485dac931 + - Entity: + Id: 1b9f8957-dadc-403e-a86a-461b85ecfe79 + Name: Steam + Components: + c1ecc9674350ec47b258da4ab8ccf2ff: !TransformComponent + Id: 7b9a8414-1bbe-4c07-bc7d-5b3701de70e2 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8323bf5daa524c4fb5d833e41b08b32d: !ParticleSystemComponent + Id: eaa3810d-757c-4a8f-a283-de4802642ed9 + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: !BoundingSpheretatic + DebugDraw: true + Radius: 4.0 + Emitters: + 9a3a5271a4a0934d9467f6b095793379: + ParticleLifetime: {X: 0.5, Y: 1.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 0383cd796e839e4b9667af5d0fe71756: + Key: 0.0 + Value: 0.5 + TangentType: Linear + 3c3bf45d6e50e542871470a99fdfd9f3: + Key: 0.3 + Value: 0.7 + TangentType: Linear + aa6cd07e77ba1c4da6e836dff7b31695: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ZOffset: 0.2 + SoftEdgeDistance: 0.3 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 5.0, Y: 5.0, Z: 5.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8dbe2382-769c-45fe-9604-98c5ae5c434c:Textures/SMO001_3 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + fa12c9550522c24fa400d8ce84ef83a0: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 80.0 + Initializers: + 3994a4c9897c7049af5217d699e668a9: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.4, Y: 0.5} + 7fa5fb2d4e692c4aae5cda5ce081ca44: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.5, Y: 0.0, Z: -0.5} + PositionMax: {X: 0.5, Y: 0.0, Z: 0.5} + Interpolate: false + 3d037e54f2051d42a511f75567a2d5eb: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.05, Y: -3.0, Z: -0.05} + VelocityMax: {X: 0.05, Y: -3.0, Z: 0.05} + d4d112e1ace7b944828fa9278f3938e1: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + Updaters: + 226c0f6bc8f05441a0eb6454e9f89045: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 82276cc03e3f854b9dc5c50ece2e25f9: + Key: 0.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + e3927f1e92cb4d4f80c729960776e1ca: + Key: 0.2 + Value: {R: 0.5, G: 0.5, B: 0.5, A: 0.25} + TangentType: Linear + bb31441c3997734baf5d4b324f145da1: + Key: 1.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + a788c7989777534fbc50541f7eebe631: !UpdaterForceField + InheritPosition: true + Position: {X: 0.0, Y: -1.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: true + FieldShape: !FieldShapeCylinder + HalfHeight: 1.0 + Radius: 1.0 + DisplayParticleRotation: true + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 1.0 + FalloffStart: 0.1 + StrengthOutside: 0.0 + FalloffEnd: 0.9 + EnergyConservation: 1.0 + ForceDirected: 0.0 + ForceVortex: 0.0 + ForceRepulsive: 4.0 + ForceFixed: {X: 0.0, Y: 8.0, Z: 0.0} + Base: + BasePartAsset: aac84dfd-95cb-4a1f-8b00-00e61427e600:Drones/Prefabs/RocketDrone + BasePartId: 67bf9668-b948-4e6a-8e59-ca5aebed6c09 + InstanceId: 74c2afc1-c34a-4e31-8588-b107725c1594 + - Folder: Gameplay + Entity: + Id: 2311de4f-11ba-45d3-af41-f2091b3c3608 + Name: Plate 3 + Components: + 2862b1a03930e545e0de52c00f86f35e: !TransformComponent + Id: 7a4bb52e-f017-4591-8da8-15d6aa604cf6 + Position: {X: -4.73974133, Y: 0.0, Z: -32.5428925} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 866fc1aed2c6bb4816dcd7fcad912b0a: ref!! 9c44ff5b-0d47-4c7f-8542-2f97f0b9e41b + - Entity: + Id: 265a91ea-6a8f-4b1c-86a2-24feac1f1bb8 + Name*: FloorButton 2 + Components: + 2bd9e5018fb815bd9e0ddf7b6c4f0377: !TransformComponent + Id: 6f56468e-0af5-46cd-b504-665b1fe987a3 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a6932a4059e46dc7459b958c79f50336: !ModelComponent + Id: ceaec4f7-428e-4fc6-8c0a-a48f8fa372b2 + Model: b08b5432-96b6-4259-8a89-303ff9bd12e2:Gameplay/Models/FloorButton + Materials: + 1eb04cc22e2a20d26f26187814c7bdc3~0: 0347eda8-4648-4983-a223-713b43cea1d9:Gameplay/Materials/Plates/Plate2_Enabled_Off + daf84040e6ba39f4813001d91222a07f~1: ba76b6f1-63f6-44d9-ad48-aca96fbe79a3:Gameplay/Materials/Plates/Plate3_Enabled_Off + 2a52917f17e18564669f46063c397a81: !Starbreach.Gameplay.PressurePlate,Starbreach + Id: c5861ac4-bb59-4343-b5cc-94c961284746 + Material1EnabledOff: ba76b6f1-63f6-44d9-ad48-aca96fbe79a3:Gameplay/Materials/Plates/Plate3_Enabled_Off + Material1DisabledOn: 2746f702-7dd5-4ef5-9e93-d5e758da2800:Gameplay/Materials/Plates/Plate3_Disabled_On + Material1DisabledOff: d02e7fcd-9f9e-450f-bc56-6e50e9970ec2:Gameplay/Materials/Plates/Plate3_Disabled_Off + Material1EnabledOn: 1163e435-4f1b-4b16-8834-da23869292b4:Gameplay/Materials/Plates/Plate3_Enabled_On + Material0EnabledOff: 0347eda8-4648-4983-a223-713b43cea1d9:Gameplay/Materials/Plates/Plate2_Enabled_Off + Material0DisabledOn: eff5f692-9337-4d7b-8cd8-531e3e06b852:Gameplay/Materials/Plates/Plate2_Disabled_On + Material0DisabledOff: e74abd75-804a-4de0-acf7-924aa5bb3a20:Gameplay/Materials/Plates/Plate2_Disabled_Off + Material0EnabledOn: 903888ae-b297-487a-a708-5fd6cd38c7c7:Gameplay/Materials/Plates/Plate2_Enabled_On + Model: ref!! ceaec4f7-428e-4fc6-8c0a-a48f8fa372b2 + Trigger: ref!! 72e37d28-0844-4d38-a676-6a9b2f081b19 + AudioEmitter: ref!! 2239f026-855b-4823-9285-40e827a397fa + Enabled: true + Toggle*: false + SingleActivation*: true + CurrentToggleState: false + TransitionTime: 0.15 + 48a3a1d7ea5c129742126bc8b4d7429c: !Starbreach.Gameplay.PressurePlateTrigger,Starbreach + Id: 72e37d28-0844-4d38-a676-6a9b2f081b19 + CollisionFilterGroup: CharacterFilter + Trigger: ref!! f28efb56-dda8-4471-8a31-071fe74b4db8 + 03c59a6169956fba8a31fd1f758dc46f: !AudioEmitterComponent + Id: 2239f026-855b-4823-9285-40e827a397fa + Sounds: + adc799987a8ff52a579d44583cb2cde7~Enable: 5163c935-fe14-4496-8f44-eb64e8482b31:Gameplay/Sounds/Plate_Enable + 732e4c030c0a74345f1aed380bdb8533~Disable: 730d9dfc-a657-4d5b-b5ea-8fc7e14cfa7d:Gameplay/Sounds/Plate_Disable + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + 9c600aa0b00e9640a384d3666fe41f14: !RigidbodyComponent + Id: f28efb56-dda8-4471-8a31-071fe74b4db8 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: true + IsKinematic: true + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 4c0292725ab565154826fa81493eec99: !CylinderColliderShapeDesc + Height: 0.4 + Radius: 0.8 + LocalOffset: {X: 0.0, Y: 0.2, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 72f94a89-e47c-42ae-9264-b0c9881e3840:Gameplay/Prefabs/Plate + BasePartId: e4fdb89a-c2a0-4e83-a985-c4e087628455 + InstanceId: 29b873d4-8449-48cd-87f9-f7a16e064c65 + - Folder: Gameplay + Entity: + Id: 2962c142-3c9a-452a-8f66-44ad5b75d100 + Name: Drone + Components: + bee1416b5e2d304389e20936f750b8b1: !TransformComponent + Id: bcf42995-db64-4c6d-a802-78edb931e42f + Position*: {X: 8.935, Y: 0.0, Z: -4.789} + Rotation*: {X: 0.0, Y: -0.486365855, Z: 0.0, W: 0.8737553} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 68b08d6ef4327063ddfe04b67a961aae: ref!! 31ea18cb-ece2-4aed-b49f-3ee18ceb182f + 963458a2c6c68927d38fec6a605500fa: ref!! 42941e94-f8c2-450e-8feb-41ab52c6c347 + aed3e642d5d71f48bdf23181156082f9: !CharacterComponent + Id: f78ff68f-1785-41f0-96ca-0315531ec8ae + CollisionGroup: CustomFilter3 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + FallSpeed: 10.0 + MaxSlope: {Radians: 0.7853982} + JumpSpeed: 5.0 + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + ColliderShapes: + d27547538ff5dd4eb72e1d385d4862bd: !CylinderColliderShapeDesc + Height: 2.0 + Radius: 1.0 + LocalOffset: {X: 0.0, Y: 1.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 827cf65eb5dca148adaa7ef5bc60df35: !AudioEmitterComponent + Id: af321972-714f-4ea4-aaab-d70cfacf8a6c + Sounds: + 9f0d8aaa3fc06a44bae1c6cff7aeef58~Death: 4c9333d4-d4d5-4f61-9390-6b2e2602cf1b:Drones/Sounds/Death + 062488fbcb22f344b134f663d4a59ff9~Explosion: 936a2dbe-31df-40cc-836b-18793ffcea22:Drones/Sounds/Explosion + 762f069faf274a408a2da257ca0f4736~Hit0: 732e562c-622b-4fff-8282-58a7efa0b204:Drones/Sounds/Hit0 + ba953638f1e5db4d852167189517624d~Hit1: 973a4551-7cd6-4b8d-8a53-5a61ca9e461b:Drones/Sounds/Hit1 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + c7262ebf0d468f43ba11ca1221215c08: !NavigationComponent + Id: fb0dea2c-3976-4235-adfe-8e6d8467bcef + NavigationMesh*: 82baba25-eddc-4983-a303-ef534133b0cc:Levels/Platform_1-3_NAV + GroupId: 665dbfaa-d91a-ee40-d176-a5eaed1268bc + 238e55139b0b248973a65b6ba75f8d54: !Starbreach.Drones.Drone,Starbreach + Id: c8aecc96-d9be-430f-9d2e-625f169309ff + Priority: 4000 + Weapon: !Starbreach.Drones.LaserDroneWeapon,Starbreach + ProjectileSpawnPoint: ref!! e387e3e6-6cca-45ed-bb1f-54b121591333 + ReloadTime: 1.5 + ProjectilePrefab: 38b52cd2-bfc8-4128-b939-232ab85a9b82:Drones/Prefabs/Laser + AnimationDelay: 0.7 + MaximumSpeed: 1.5 + RotationSpeed: 6.283185 + HeadRotationSpeed: 6.283185 + Model: ref!! da5deede-719f-4813-b9d1-92589821baae + DefaultMaterial: b91deeaf-43f6-434a-8400-22a1c6cb0447:Drones/Materials/Drone/DroneUpper + AlertedMaterial: 70cfa151-cffc-4cf1-a0d5-2ac4ac94e4a6:Drones/Materials/Drone/DroneUpper_Alerted + EngineParticle: ref!! ec96a388-eb5d-421d-982c-30b87912b964 + EngineAudioEmitter: ref!! f6b0b47c-8b56-49b3-a297-6d195f575a82 + DroneExplosionPrefab: d1f82cfd-900e-4757-958c-1dd35a4ec775:Drones/Prefabs/DroneExplosion + e3d3d4a2c9c5e7676d484a7a5a41d498: !Starbreach.Drones.PatrollingDroneController,Starbreach + Id: 24e18cc9-bf69-48b7-a2e2-7e8aa2f83d25 + PathToFollow: null + ChaseAlertZoneRadius: 20.0 + IdleAlertZoneRadius: 15.0 + AlertZoneTriggerEntity: ref!! 94f53683-5bc0-4def-a17b-0a1111562989 + Base: + BasePartAsset: aac85dfd-95cb-4a1f-8b00-00e61427e601:Drones/Prefabs/EnergyDrone + BasePartId: fb95e431-53b2-4f1b-b194-74a16c023eef + InstanceId: 7b70de62-56d2-4707-a468-af6485dac931 + - Folder: Platform + Entity: + Id: 2b55ee9c-e640-41ad-8811-bd442db2323b + Name: Level_1-3_Platform + Components: + f374aebf5e9998655dc88c6d012f8d17: !TransformComponent + Id: 9f584b88-f12a-4fd0-b128-7546962a7ab9 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 0bde4d554dd5f85ba906d1f3be890114: ref!! 811c9bab-b4d9-483c-947b-5c3212c10f99 + 47e1fe8906be5bd18fa7ef10c59c8987: ref!! 82e874c0-ca12-43d6-b4f2-a91c7542d1d7 + 33df36aba81c8fb94ae362e84030b012: !ModelComponent + Id: a38368c5-e836-4f43-8a55-d3e0edb81192 + Model: d4b80dc1-d62f-49a4-ad5d-32d4f47612ff:Levels/PrefabModels/Level_1-3_Platform + Materials: {} + - Entity: + Id: 2c066954-597a-46f9-80c1-57b263702e29 + Name: LaserCylinder + Components: + 6565f891cdba2236dd5dbf1888a0f6e0: !TransformComponent + Id: c6542cc4-fefa-429a-8e51-f9979cb34f84 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: -0.707106769, W: 0.707106769} + Scale: {X: 1.0, Y: 10.0, Z: 1.0} + Children: {} + cec4407060699b5ddb4eeb6f5f980024: !ModelComponent + Id: 9fabfe34-aafd-4ff9-aa76-8524650ba724 + Model: c11da5de-520a-4bd5-a691-5476b2a812e0:Gameplay/Models/Cylinder + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 6072d1ec-0d92-4855-a83a-bacfa7acc501 + InstanceId: 06de3e7a-88ad-4044-8ca6-ae36b136c028 + - Folder: Props + Entity: + Id: 312b1f6e-eaca-4170-891c-5407c560f95a + Name: DataSwitcher + Components: + ec3ee182ea7a0c1b20b9962a69b81666: !TransformComponent + Id: 973c1ae7-9fdc-4d7f-a71d-5d4ee2d037bf + Position*: {X: 5.801628, Y: 0.0, Z: 2.38878369} + Rotation*: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 30a5b8bb417210df31819b03c22e9bb4: !ModelComponent + Id: b83959a6-d722-43f8-beb6-55b4e6ac75d9 + Model: 87c540c8-80aa-4d46-a28f-6f99109347f6:Environment/Props/Models/DataSwitcher + Materials: {} + 726c862c3e01529c1975b308e9ee07f4: !StaticColliderComponent + Id: a060cd63-1837-4212-ba57-ad501b369e90 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 3c185efd0ffe017392955bb13e2b575c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 7.0, Z: 2.0} + LocalOffset: {X: 0.0, Y: 3.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + a3452e015314c275217bf6b46bc100a4: !CylinderColliderShapeDesc + Radius: 1.0 + LocalOffset: {X: 0.0, Y: 0.5, Z: -2.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 18a16e3d-5140-4db4-85a5-cd34e4fe1640:Environment/Props/Prefabs/DataSwitcher + BasePartId: bde5e4a6-c956-4cfd-9fa5-4f689c001ab2 + InstanceId: b5aa6e8c-562c-44c3-be99-b610912de93a + - Entity: + Id: 34b8fdaa-09ae-4306-8399-60a93a20f17d + Name: Level_1-3_PlatformRocks + Components: + a9aeb0b72af8ff87c2bfc2f0e3e4a278: !TransformComponent + Id: 2fae33cf-a3d1-4ec1-9644-853d1248b6a7 + Position: {X: 22.0, Y: 0.0, Z: -11.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 874456e07d151790a8d9d8522192e6fb: !ModelComponent + Id: 885b3564-1fa0-474e-b9bc-ee2298cc7a0a + Model: d6f89bd5-a63d-4050-8117-3e155ff86ced:Levels/PrefabModels/Level_1-3_PlatformRocks + Materials: {} + - Folder: Props + Entity: + Id: 36bb91bd-2530-4cc2-85ad-497450a37339 + Name: Crane_small + Components: + 0c58a93ff0b68a3b56e86f6ce23dcce2: !TransformComponent + Id: 5121c12e-c295-4f38-9d9e-f84415eb5c46 + Position*: {X: -15.8766336, Y: 0.0, Z: -22.2821445} + Rotation*: {X: 0.0, Y: 0.3826837, Z: 0.0, W: 0.923879445} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a77dc0a106dbb00f08f57927becc8e32: !ModelComponent + Id: 66b29992-4248-408b-90fe-796135b2bc46 + Model: 6265c534-4bfd-45a2-879b-15aa84659e82:Environment/Props/Models/Crane_small + Materials: {} + 1b3a638d4d756e78a09cd85c91a67ded: !StaticColliderComponent + Id: 6bd54fa5-c813-4628-b670-386b6d3b96b8 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 8b852c3813cdeaaeebd7fa29686a6d8e: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 3.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 965145a08bbd93aa5abf3fb115c7c6dc: !CylinderColliderShapeDesc + Height: 4.0 + LocalOffset: {X: -0.5, Y: 5.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 00eb9a22-6040-4b56-936b-aef09a483897:Environment/Props/Prefabs/Crane_small + BasePartId: a8c3a236-cfd6-4880-a196-a0dd2a27cbee + InstanceId: 03e15553-7bff-4684-913e-d6814e9c03aa + - Entity: + Id: 394078fb-8274-4a96-bdc5-eaf885232a23 + Name: LaserFence_down + Components: + a4c9a42f24d4c443bad3060f61018c7f: !TransformComponent + Id: 9d7b4189-d1f6-40db-8758-0b63583800b1 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e52519dff8a1534c8d3d763ba4d4e83e: !ModelComponent + Id: 0b3f9687-84fe-4e96-af6d-79c6b378b373 + Model: 4658c1a9-b3b6-4481-b22c-ad61ea3c14d3:Gameplay/Models/LaserFence_down + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: b070b742-1285-4948-a158-2800ee11f5e7 + InstanceId: 0b1e0f02-9118-4a45-ac60-d503b4882088 + - Entity: + Id: 3e677431-733f-4922-aced-d7ddad29bbb9 + Name: LaserFence + Components: + fb5e18952f86407dad838d0b5bc40bef: !TransformComponent + Id: 37c3168b-3315-4fa7-9bd6-20766e717198 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + f94a04d4dd9ca249d275be383b123cc7: ref!! f9024b20-7c62-43d1-ab3e-28271af2bf2d + e8af797a2f73bec8e5b3b407c77a04b3: ref!! 2e58b6b9-46db-4a58-b367-88506927750e + c4e1eb951c333060077478fec3e6f721: !Starbreach.Gameplay.LaserFence,Starbreach + Id: 873a83e2-0c2b-48de-8d33-393ae84d8935 + ParticleSystemComponents: + d4e1b67fd72a014591445d886fdbd013: ref!! 63cb4549-4e41-43b2-b025-89f3daf08e18 + 99ad129b17a7400624a0fdde856096e0: ref!! d6a03ece-6e45-4024-ba27-7b29db624639 + ModelComponents: + 1e0b1119a150cc02dddd2f91b8f2f386: ref!! 47d16636-57a1-4759-9de2-9cdc0c58f6f7 + dd30ed9dc650b5d60c314f45e5431622: ref!! 9fabfe34-aafd-4ff9-aa76-8524650ba724 + LasetBlockade: + 23ae30509c9fbe5fb438d52a1b33c4c0: ref!! 818ed1e7-7299-418c-8864-05d9dab68ba4 + Triggers: + CombinationMode*: Conjunction + Inverted*: true + Activators: + ddb4f2486a4ec436e19a0b2f23474bd5*: !Starbreach.Gameplay.PressurePlate,Starbreach ref!! c5861ac4-bb59-4343-b5cc-94c961284746 + Enabled: true + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 945727d1-98d0-4a00-b29c-98f78daa9839 + InstanceId: 06de3e7a-88ad-4044-8ca6-ae36b136c028 + - Entity: + Id: 40bf97a2-ebce-4408-b09b-8010ad56477e + Name: LaserFence_down + Components: + a4c9a42f24d4c443bad3060f61018c7f: !TransformComponent + Id: e8fbeb91-1847-4d2b-bea8-ee5c57998494 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e52519dff8a1534c8d3d763ba4d4e83e: !ModelComponent + Id: 43bf999f-350b-4f78-a5ae-44fc74b15dcf + Model: 4658c1a9-b3b6-4481-b22c-ad61ea3c14d3:Gameplay/Models/LaserFence_down + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: fea06acd-bec3-4873-8a99-eeb324c05565 + InstanceId: 0b1e0f02-9118-4a45-ac60-d503b4882088 + - Entity: + Id: 41b8b376-d173-43cf-a819-a14b3623384b + Name: Model + Components: + 7dad9d7cd55ced4abbf2cb2bbbd70c1a: !TransformComponent + Id: 31ea18cb-ece2-4aed-b49f-3ee18ceb182f + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + d719b2b339248f17748edd917f6bc9b2: ref!! c20bb5a1-a722-4ca2-898b-f7690877b4e7 + 827f49f9d5034b4acf8a8939110ddb8d: ref!! d3611400-a8ba-46e0-ae5e-15f3e5007aad + c212d189fcc79d46bbb83d892c85ce82: !ModelComponent + Id: da5deede-719f-4813-b9d1-92589821baae + Model: 8b6b1e4a-7de0-4524-8851-23d9e11339b5:Drones/Models/EnergyDrone + Materials: + bff18010728c254c925bebf2f03be01b~0: 76636c37-5239-4cd3-ac8a-953e9e4d913e:Drones/Materials/Drone/DroneLower + bad52956f3fcbb45ac19f0a99abdf1d0~1: b91deeaf-43f6-434a-8400-22a1c6cb0447:Drones/Materials/Drone/DroneUpper + 8710bd731b44b446a6f9448a50fcd66b~2: c2292c76-631b-4a19-b984-096e90ede1ed:Drones/Materials/EnergyDrone/EnergyDrone + c123a40ea35064c3e5b77b9aaec447dc: !AnimationComponent + Id: 6adf870c-d241-4f47-9b73-0afe9603d571 + Animations: + a713ec907506354eb188aaba71f6039c~Fire: bbff5c1d-80bb-4c8c-bd8e-edd752029865:Drones/Animations/EnergyDroneFire + 8df1171e0223014899b19b71b409f1b3~Idle: c9f1abb3-03e4-41b0-b65e-95168f7c3a5f:Drones/Animations/EnergyDroneIdle + bcc277ca9a2ea247bf4ad6e427a787bf~Move: 1ed61017-cfb9-4a44-9ff7-effd95f4e6c2:Drones/Animations/EnergyDroneFly + Base: + BasePartAsset: aac85dfd-95cb-4a1f-8b00-00e61427e601:Drones/Prefabs/EnergyDrone + BasePartId: ee748701-a6a0-4afd-b04c-ab208598af51 + InstanceId: 7b70de62-56d2-4707-a468-af6485dac931 + - Entity: + Id: 41c93ed5-01b8-43b2-a01c-d09fdc36eb70 + Name: LaserBeam + Components: + c2a61ac9cca3304c949c26193b0945c4: !TransformComponent + Id: 797835ed-a37b-47ec-b63e-200dd124047e + Position: {X: 0.5, Y: 2.5, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 9406e2b7130bca40c2c768f5946242ff: ref!! c6542cc4-fefa-429a-8e51-f9979cb34f84 + 5ee7f85c3fbac746b5c31e169615a5c7: !ParticleSystemComponent + Id: d6a03ece-6e45-4024-ba27-7b29db624639 + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 0.121568628, B: 0.121568628, A: 1.0} + Speed: 6.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + f239db465dd7354bbc55100bd300b151: + EmitterName: sparks + ParticleLifetime: {X: 1.0, Y: 5.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + ba54a1971cd84340b5ba37f508a3bd2c: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 881873fa3d3a744db46ae3db16b7d133: + Key: 1.0 + Value: 0.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 150.0, Y: 150.0, Z: 150.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: null + ForceTexCoords: false + Spawners: + 946a1b5e1895434284c7dbdaa728c786: !SpawnerBurst + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 100 + Initializers: + 581d30af2592fb41a520efcb0f64656c: !InitialPositionParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: true + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: true + ParentControlFlag: Group00 + SeedOffset: 0 + PositionMin: {X: -0.5, Y: -0.1, Z: -0.1} + PositionMax: {X: 0.5, Y: 0.1, Z: 0.1} + 0460848851abf642879131d04c839872: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.3 + SeedOffset: 24 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.05, Y: 0.2} + cd410cf87ddf07449ea894f8b8cb5238: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.02, Y: -0.01, Z: -0.02} + VelocityMax: {X: 0.02, Y: 0.04, Z: 0.02} + 855cafaded1b164dab92516ac877abf5: !InitialColorParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ParentControlFlag: Group00 + SeedOffset: 0 + ColorMin: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + ColorMax: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Updaters: {} + eabed859a30c6f409b30f3e5fa9295b2: + EmitterName: LaserEmitter02 + MaxParticlesOverride: 10 + ParticleLifetime: {X: 0.2, Y: 0.2} + ShapeBuilder: !ShapeBuilderRibbon + SmoothingPolicy: None + Segments: 5 + TextureCoordinatePolicy: AsIs + TexCoordsFactor: 1.0 + UVRotate: + FlipX: false + FlipY: false + UVClockwise: Degree0 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 100.0, Y: 100.0, Z: 100.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: da9b119e-ce87-4f7b-a4cc-2e93b158f137:Textures/Gradation01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: !UVBuilderScroll + StartFrame: {X: 0.0, Y: 0.0, Z: 1.0, W: 1.0} + EndFrame: {X: 0.0, Y: 1.0, Z: 1.0, W: 2.0} + ForceTexCoords: false + Spawners: + 771c66d89d336449959f8c37915bdb0e: !SpawnerPerFrame + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 10.0 + Framerate: 60.0 + Initializers: + af1eef0c052b814ab025d0cbeb5ef838: !InitialPositionArc + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + Target: ref!! 5ede0829-f1ab-430d-bdeb-94a279ee0e81 + DisplayParticleRotation: true + DisplayParticleScale: false + FallbackTarget: {X: 0.0, Y: 0.0, Z: -1.0} + DisplayParticleScaleUniform: false + ArcHeight: 0.0 + Sequential: true + FixedLength: 0 + PositionMin: {X: 0.0, Y: 0.0, Z: 0.0} + PositionMax: {X: 0.0, Y: 0.0, Z: 0.0} + SeedOffset: 0 + 6d09f593db786145af6ba89f386f9b48: !InitialSpawnOrder + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + d1dbc13de4fdfd44a592f202d7bed600: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.5 + SeedOffset: 1 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.5, Y: 0.6} + Updaters: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: d0b8df39-fac2-48ce-bd8f-a2f847d3157d + InstanceId: 06de3e7a-88ad-4044-8ca6-ae36b136c028 + - Entity: + Id: 44f73f89-e006-446b-9bd3-912c54a535c1 + Name: LaserBeam + Components: + c2a61ac9cca3304c949c26193b0945c4: !TransformComponent + Id: 648d21a1-dd1c-4962-bfa0-f0ce5edb2e8f + Position: {X: 0.5, Y: 1.75, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + fe89fc524a7b9ae686e1c8c7bf6e603c: ref!! 86dc06b5-acfb-40d3-8f81-21756734d8e2 + 5ee7f85c3fbac746b5c31e169615a5c7: !ParticleSystemComponent + Id: 63cb4549-4e41-43b2-b025-89f3daf08e18 + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 0.125490189, B: 0.125490189, A: 1.0} + Speed: 6.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + f239db465dd7354bbc55100bd300b151: + EmitterName: sparks + ParticleLifetime: {X: 1.0, Y: 5.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + ba54a1971cd84340b5ba37f508a3bd2c: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 881873fa3d3a744db46ae3db16b7d133: + Key: 1.0 + Value: 0.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 150.0, Y: 150.0, Z: 150.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: null + ForceTexCoords: false + Spawners: + 946a1b5e1895434284c7dbdaa728c786: !SpawnerBurst + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 100 + Initializers: + 581d30af2592fb41a520efcb0f64656c: !InitialPositionParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: true + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: true + ParentControlFlag: Group00 + SeedOffset: 0 + PositionMin: {X: -0.5, Y: -0.1, Z: -0.1} + PositionMax: {X: 0.5, Y: 0.1, Z: 0.1} + 0460848851abf642879131d04c839872: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.3 + SeedOffset: 24 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.05, Y: 0.2} + cd410cf87ddf07449ea894f8b8cb5238: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.02, Y: -0.01, Z: -0.02} + VelocityMax: {X: 0.02, Y: 0.04, Z: 0.02} + 855cafaded1b164dab92516ac877abf5: !InitialColorParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ParentControlFlag: Group00 + SeedOffset: 0 + ColorMin: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + ColorMax: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Updaters: {} + eabed859a30c6f409b30f3e5fa9295b2: + EmitterName: LaserEmitter02 + MaxParticlesOverride: 10 + ParticleLifetime: {X: 0.2, Y: 0.2} + ShapeBuilder: !ShapeBuilderRibbon + SmoothingPolicy: None + Segments: 5 + TextureCoordinatePolicy: AsIs + TexCoordsFactor: 1.0 + UVRotate: + FlipX: false + FlipY: false + UVClockwise: Degree0 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 100.0, Y: 100.0, Z: 100.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: da9b119e-ce87-4f7b-a4cc-2e93b158f137:Textures/Gradation01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: !UVBuilderScroll + StartFrame: {X: 0.0, Y: 0.0, Z: 1.0, W: 1.0} + EndFrame: {X: 0.0, Y: 1.0, Z: 1.0, W: 2.0} + ForceTexCoords: false + Spawners: + 771c66d89d336449959f8c37915bdb0e: !SpawnerPerFrame + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 10.0 + Framerate: 60.0 + Initializers: + af1eef0c052b814ab025d0cbeb5ef838: !InitialPositionArc + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + Target: ref!! 68b39357-61f4-4b90-b052-8a77acf844c6 + DisplayParticleRotation: true + DisplayParticleScale: false + FallbackTarget: {X: 0.0, Y: 0.0, Z: -1.0} + DisplayParticleScaleUniform: false + ArcHeight: 0.0 + Sequential: true + FixedLength: 0 + PositionMin: {X: 0.0, Y: 0.0, Z: 0.0} + PositionMax: {X: 0.0, Y: 0.0, Z: 0.0} + SeedOffset: 0 + 6d09f593db786145af6ba89f386f9b48: !InitialSpawnOrder + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + d1dbc13de4fdfd44a592f202d7bed600: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.5 + SeedOffset: 1 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.5, Y: 0.6} + Updaters: {} + 2801c9087775c2ecc9518fa0f801c79c: !StaticColliderComponent + Id: 818ed1e7-7299-418c-8864-05d9dab68ba4 + CollisionGroup*: CustomFilter1 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + d9c023df8272c6145711f00ef8160b74: !BoxColliderShapeDesc + Is2D: false + Size: {X: 10.0, Y: 3.0, Z: 2.0} + LocalOffset: {X: 4.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 8512ce3d-9fb8-400b-bf88-7186abe432d8 + InstanceId: 06de3e7a-88ad-4044-8ca6-ae36b136c028 + - Folder: Props + Entity: + Id: 46d2bf51-2809-4359-af60-10ecd8c32a77 + Name: box_2 + Components: + a4a1352c38d8d946adbd0a9eb22ecf7a: !TransformComponent + Id: 6a9a9856-707b-4c39-a06a-026c48354670 + Position*: {X: -4.8973, Y: 0.0, Z: 0.3949787} + Rotation*: {X: 0.0, Y: -0.406020373, Z: 0.0, W: 0.9138641} + Scale*: {X: 0.99999994, Y: 1.0, Z: 0.99999994} + Children: {} + 7a4dfc02f3a9234aa72a05fb7a824816: !ModelComponent + Id: fcdcacfa-926f-4c42-a5d7-8518db0b7f8d + Model: 41fc6c99-792b-46fe-942c-ef3763a2407a:Environment/Props/Models/Box2 + Materials: {} + d4b4d5f2d8369d46845444c61c1e61ec: !StaticColliderComponent + Id: 15c91034-fd64-4fbd-b261-474f4d2d6f04 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 82ea61f172e46a4aab7ce970e3a3f887: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.9, Y: 0.9, Z: 0.95} + LocalOffset: {X: 0.0, Y: 0.45, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 5246c639-719c-4380-a886-7bdfb16f5cbd:Environment/Props/Prefabs/Box2 + BasePartId: f0b73707-1f65-435f-a5ba-5c09ec4ef144 + InstanceId: 900235ad-7994-4b09-b474-ccc75b3fe72e + - Entity: + Id: 4bd82a83-61ef-4941-9556-f0d17756f6e1 + Name: LaserFence_up + Components: + c8c633e320d799468ba2a8e339362d2d: !TransformComponent + Id: d4a5588e-8a77-4c22-aeba-ac65bd30666c + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3e4e674bd6ad2f439da54f92a29a7eec: !ModelComponent + Id: c6108c51-7246-4e6b-989f-0be5771e67b6 + Model: ca14aec1-3989-485c-84c0-5d0cbf5858f4:Gameplay/Models/LaserFence_up + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: e88381a2-6f10-476d-853f-56ea6884859f + InstanceId: e730f3a1-4679-4b07-8e24-a2480c988364 + - Folder: Props + Entity: + Id: 4be5823a-99c0-40f3-bf8f-d30c13ce560a + Name: ChargerBox + Components: + 6233de1d3246d8ee443a7cc14154fede: !TransformComponent + Id: 20a8d895-3b7f-46bf-bf4b-fefc8aa0acbd + Position*: {X: -10.8291187, Y: 0.4246651, Z: -33.8535652} + Rotation*: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + cc93fdaf96eee4a153bf4a38f4c86e0d: !ModelComponent + Id: ecde05a1-20d9-452b-9900-eb71f710d8fa + Model: 2b86e7b1-e218-412d-b66e-e0dc401dc02c:Environment/Props/Models/ChargerBox + Materials: {} + acc1f332e3f43a39559966a76640088e: !StaticColliderComponent + Id: 759528b2-c44e-45bb-b4f3-7db4f9d8bb76 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + d0fa990451422fe1b046a66deb9e749d: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.2, Y: 0.85, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 08fcbc00-0585-4d76-a76e-3aba715b89a2:Environment/Props/Prefabs/ChargerBox + BasePartId: 7801a3c6-6f59-4e5d-917d-5f838ed9f781 + InstanceId: e31fe5a6-3b63-47dd-ae59-697dcddd529a + - Folder: Platform + Entity: + Id: 4d99f35f-074e-48c0-9491-4c6eda6d6c79 + Name: Level_1-1_PlatformRocks + Components: + 141c547091992fb9e5c70455eac6f450: !TransformComponent + Id: 9e6260ef-84bc-49c8-a6ac-024d368c5a4b + Position: {X: -22.20185, Y: 0.0, Z: 10.0378914} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 65e524b703f6d6bfeb980270bd8a3786: ref!! 2fae33cf-a3d1-4ec1-9644-853d1248b6a7 + Base: + BasePartAsset: 004999bd-0369-4bae-9955-4821c850e829:Levels/Level_1-3_PlatformRocks + BasePartId: fc9af7aa-ef94-43c0-a109-25096fb63efe + InstanceId: 23d678f5-0abc-4776-9d5d-ee7e8811b283 + - Entity: + Id: 4fc1b215-7b6f-4e6f-a454-c5a2cdc8682d + Name: LaserFence_Static + Components: + fb9b8e052602e60735334f7419c9e54a: !TransformComponent + Id: f819ca46-f6bb-41cf-89eb-25445f9b6478 + Position: {X: -3.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 0.6, Y: 0.6, Z: 0.6} + Children: + 72f98f4652f07969b02387bf80f44bb6: ref!! 4e28a7ee-f6e8-4771-aa26-ac451d46a3d0 + ac54ba65908c8e57e9e7d04aaa225e10: ref!! d4a5588e-8a77-4c22-aeba-ac65bd30666c + c9f4bf3456ad38e4294e8f90e4bc16ba: ref!! 0cd5e0ce-1e38-4cf5-9349-38bc81c00c24 + 985fa8fdb9571299e3e7f9b8b1f090f1: ref!! e36b4884-f754-49de-ab1d-c83c3b177710 + eebd194cebc9a12cf0aa06c693e971b7: !StaticColliderComponent + Id: 61bcb134-2e80-43d2-8650-d8c05b15ab85 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 7e00afee3484d23f207fe6d6fac12d9a: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 3.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 6022993f-f245-4b95-ae81-8a6e80860cd7 + InstanceId: e730f3a1-4679-4b07-8e24-a2480c988364 + - Folder: null + Entity: + Id: 50238460-b454-46e0-b690-dc265c016411 + Name: LargePillar + Components: + 30a5cfc93a770b67f960245b47e90ccd: !TransformComponent + Id: 82e874c0-ca12-43d6-b4f2-a91c7542d1d7 + Position: {X: -20.5, Y: 3.0, Z: -39.0} + Rotation: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 2ef59a013481313119c64a6ea8ca6f8c: !ModelComponent + Id: d56bbdd6-d088-41b3-a99a-f85bd476aa38 + Model: 258dfd07-ef55-4f3e-a0a8-afc05e4ca37b:Environment/Platforms/Models/LargePillar + Materials: {} + - Entity: + Id: 5360cf0b-1520-42f0-9aa6-210c5752cc68 + Name: LaserFence_down + Components: + a4c9a42f24d4c443bad3060f61018c7f: !TransformComponent + Id: c9080a06-16fa-4b14-8c6f-93de1a75e9ec + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e52519dff8a1534c8d3d763ba4d4e83e: !ModelComponent + Id: 7b2003d4-9930-4013-b252-25d716939fe5 + Model: 4658c1a9-b3b6-4481-b22c-ad61ea3c14d3:Gameplay/Models/LaserFence_down + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: fea06acd-bec3-4873-8a99-eeb324c05565 + InstanceId: 06de3e7a-88ad-4044-8ca6-ae36b136c028 + - Entity: + Id: 58c2b41a-a677-43ff-8fff-124a455b9d18 + Name: LaserFence_Static + Components: + fb9b8e052602e60735334f7419c9e54a: !TransformComponent + Id: f9024b20-7c62-43d1-ab3e-28271af2bf2d + Position: {X: -3.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 0.6, Y: 0.6, Z: 0.6} + Children: + 72f98f4652f07969b02387bf80f44bb6: ref!! c9080a06-16fa-4b14-8c6f-93de1a75e9ec + ac54ba65908c8e57e9e7d04aaa225e10: ref!! 4420248b-01d6-43cf-993e-0782642479d6 + c9f4bf3456ad38e4294e8f90e4bc16ba: ref!! 648d21a1-dd1c-4962-bfa0-f0ce5edb2e8f + 985fa8fdb9571299e3e7f9b8b1f090f1: ref!! 797835ed-a37b-47ec-b63e-200dd124047e + eebd194cebc9a12cf0aa06c693e971b7: !StaticColliderComponent + Id: 9756e2da-f44f-46b5-943c-e84481941b2f + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 7e00afee3484d23f207fe6d6fac12d9a: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 3.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 6022993f-f245-4b95-ae81-8a6e80860cd7 + InstanceId: 06de3e7a-88ad-4044-8ca6-ae36b136c028 + - Folder: Props + Entity: + Id: 58e7b2ed-6c28-4f3d-ae42-4165c9232d6e + Name: box_2 + Components: + a4a1352c38d8d946adbd0a9eb22ecf7a: !TransformComponent + Id: ae8a4733-75ef-4840-b5b2-5d358cab6ff4 + Position*: {X: -5.44544029, Y: 1.88796282, Z: -0.398585141} + Rotation*: {X: 0.0, Y: -0.3726677, Z: 0.0, W: 0.927964866} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 7a4dfc02f3a9234aa72a05fb7a824816: !ModelComponent + Id: 8e2d0a13-ce35-48dd-9ca2-d292002e2f08 + Model: 41fc6c99-792b-46fe-942c-ef3763a2407a:Environment/Props/Models/Box2 + Materials: {} + d4b4d5f2d8369d46845444c61c1e61ec: !StaticColliderComponent + Id: d96b86d0-98e7-42b4-9a12-038e2d5bba0a + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 82ea61f172e46a4aab7ce970e3a3f887: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.9, Y: 0.9, Z: 0.95} + LocalOffset: {X: 0.0, Y: 0.45, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 5246c639-719c-4380-a886-7bdfb16f5cbd:Environment/Props/Prefabs/Box2 + BasePartId: f0b73707-1f65-435f-a5ba-5c09ec4ef144 + InstanceId: 73a9f9cb-8c1c-40aa-945d-a881412719ac + - Folder: Props + Entity: + Id: 59320e7f-0f89-4e05-875d-5d9614c54443 + Name: Tubes + Components: + 8afe5b76881b508b37d688f2116c5186: !TransformComponent + Id: 1090aa6a-42ef-4d46-b759-f8cb9b324137 + Position*: {X: -9.480131, Y: 0.0, Z: -32.7402077} + Rotation*: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.2, Y: 1.0, Z: 1.2} + Children: + 0620b681fdb3f0db766c6cee0ca9d020: ref!! 3a160ea3-8273-4b3f-b017-31cd3b73bd0d + 3ea3b5eefbfb4faafe0361e0878c0cc1: ref!! 1887277b-a9a8-46e8-9fbf-5207e40a27ae + d0526db95b412f4714f97c9e1e008f44: !ModelComponent + Id: 2caad03f-0618-496f-99b2-a7cda70c1903 + Model: b71a38c2-5460-4a2e-8abf-77a0acec5aeb:Environment/Props/Models/Tubes + Materials: {} + Base: + BasePartAsset: 62e87c0b-15d8-4628-95c9-7880f4cf2fe1:Environment/Props/Prefabs/Tubes + BasePartId: 20f03481-611c-470f-b5ca-0917bf52f59a + InstanceId: 3609a9f4-231c-4436-8f29-e98bb32fc840 + - Entity: + Id: 5d16b729-5ab2-46d8-a2da-c2b8a8e6273c + Name: LaserFence + Components: + fb5e18952f86407dad838d0b5bc40bef: !TransformComponent + Id: 5921e06c-7efb-43b2-8c05-74647cc611e4 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + f94a04d4dd9ca249d275be383b123cc7: ref!! cc68719d-937c-4cb8-8a36-6bb4471944df + e8af797a2f73bec8e5b3b407c77a04b3: ref!! cb586c4f-ed75-477e-b60a-18220a15be98 + c4e1eb951c333060077478fec3e6f721: !Starbreach.Gameplay.LaserFence,Starbreach + Id: d74d3ddd-d424-4f9f-bfde-c82862a5049c + ParticleSystemComponents: + d4e1b67fd72a014591445d886fdbd013: ref!! 378542c8-6053-41b7-8a2c-04cefc34829a + 99ad129b17a7400624a0fdde856096e0: ref!! c4c262e3-01ca-4c1c-a353-6547dd176037 + ModelComponents: + 1e0b1119a150cc02dddd2f91b8f2f386: ref!! 6ace46de-6db6-4849-86fb-c1a5a250c233 + dd30ed9dc650b5d60c314f45e5431622: ref!! af765dd3-3340-4fb1-add7-67eb83749c2a + LasetBlockade: + 23ae30509c9fbe5fb438d52a1b33c4c0: ref!! b5622538-aae9-41f2-84cf-cd4ae4f0e4cf + Triggers: + CombinationMode*: Conjunction + Inverted*: true + Activators: + d15b87b2a6982aac0bd20959e99650c8*: !Starbreach.Gameplay.PressurePlate,Starbreach ref!! b09b59df-4f08-451f-93f1-5394e542dc75 + 86433e249114aede8423593d92ed9c0e*: !Starbreach.Gameplay.PressurePlate,Starbreach ref!! c5861ac4-bb59-4343-b5cc-94c961284746 + 8945215bddab167bf18bdc1a18499067*: !Starbreach.Gameplay.PressurePlate,Starbreach ref!! ae0f4ea3-0342-43d6-bcdc-acc633a2dcad + Enabled: true + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 945727d1-98d0-4a00-b29c-98f78daa9839 + InstanceId: 0b1e0f02-9118-4a45-ac60-d503b4882088 + - Entity: + Id: 5f29662e-9939-4521-b8a3-db53f77f3fde + Name: LaserArc + Components: + 336f7ce982182944823955cce7f2b5ee: !TransformComponent + Id: 5782f1df-60a0-4cc6-be52-2c583387121a + Position: {X: 0.5, Y: 2.5, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 28b6b224-b4bb-48a9-bccb-71f0e16cf1be + InstanceId: e730f3a1-4679-4b07-8e24-a2480c988364 + - Entity: + Id: 5f5a2cfd-73db-4177-9817-09e1b698f33b + Name: LaserArc + Components: + 336f7ce982182944823955cce7f2b5ee: !TransformComponent + Id: e8159be0-8e7a-426d-88ab-dfa9765fdcd3 + Position: {X: 0.5, Y: 2.5, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 28b6b224-b4bb-48a9-bccb-71f0e16cf1be + InstanceId: 0b1e0f02-9118-4a45-ac60-d503b4882088 + - Folder: Props + Entity: + Id: 5f8674f1-49a1-4671-888b-349356afc65b + Name: Crane_small + Components: + 0c58a93ff0b68a3b56e86f6ce23dcce2: !TransformComponent + Id: 49f45226-0a89-4f33-938b-172bd80990dd + Position*: {X: -31.845335, Y: 0.0, Z: -30.702898} + Rotation*: {X: 0.0, Y: 0.7071067, Z: 0.0, W: 0.7071068} + Scale*: {X: 0.99999994, Y: 1.0, Z: 0.99999994} + Children: {} + a77dc0a106dbb00f08f57927becc8e32: !ModelComponent + Id: 5689c2f6-26cd-4403-8855-f29d361a5989 + Model: 6265c534-4bfd-45a2-879b-15aa84659e82:Environment/Props/Models/Crane_small + Materials: {} + 1b3a638d4d756e78a09cd85c91a67ded: !StaticColliderComponent + Id: 4f5bfe35-5df6-4dfc-83fa-c58fe47cc050 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 8b852c3813cdeaaeebd7fa29686a6d8e: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 3.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 965145a08bbd93aa5abf3fb115c7c6dc: !CylinderColliderShapeDesc + Height: 4.0 + LocalOffset: {X: -0.5, Y: 5.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 00eb9a22-6040-4b56-936b-aef09a483897:Environment/Props/Prefabs/Crane_small + BasePartId: a8c3a236-cfd6-4880-a196-a0dd2a27cbee + InstanceId: ed83d584-8a40-441a-b26e-a0985b8069c9 + - Entity: + Id: 61907ba3-98ce-4c8e-b4a5-daf244217a29 + Name: LaserBeam + Components: + c2a61ac9cca3304c949c26193b0945c4: !TransformComponent + Id: 0cd5e0ce-1e38-4cf5-9349-38bc81c00c24 + Position: {X: 0.5, Y: 1.75, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + fe89fc524a7b9ae686e1c8c7bf6e603c: ref!! 22a23f3f-89ec-4162-81aa-fca377b4058a + 5ee7f85c3fbac746b5c31e169615a5c7: !ParticleSystemComponent + Id: 32b4bd05-25e1-48d4-b7ff-cc4be008a5af + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 0.125490189, B: 0.125490189, A: 1.0} + Speed: 6.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + f239db465dd7354bbc55100bd300b151: + EmitterName: sparks + ParticleLifetime: {X: 1.0, Y: 5.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + ba54a1971cd84340b5ba37f508a3bd2c: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 881873fa3d3a744db46ae3db16b7d133: + Key: 1.0 + Value: 0.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 150.0, Y: 150.0, Z: 150.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: null + ForceTexCoords: false + Spawners: + 946a1b5e1895434284c7dbdaa728c786: !SpawnerBurst + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 100 + Initializers: + 581d30af2592fb41a520efcb0f64656c: !InitialPositionParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: true + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: true + ParentControlFlag: Group00 + SeedOffset: 0 + PositionMin: {X: -0.5, Y: -0.1, Z: -0.1} + PositionMax: {X: 0.5, Y: 0.1, Z: 0.1} + 0460848851abf642879131d04c839872: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.3 + SeedOffset: 24 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.05, Y: 0.2} + cd410cf87ddf07449ea894f8b8cb5238: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.02, Y: -0.01, Z: -0.02} + VelocityMax: {X: 0.02, Y: 0.04, Z: 0.02} + 855cafaded1b164dab92516ac877abf5: !InitialColorParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ParentControlFlag: Group00 + SeedOffset: 0 + ColorMin: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + ColorMax: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Updaters: {} + eabed859a30c6f409b30f3e5fa9295b2: + EmitterName: LaserEmitter02 + MaxParticlesOverride: 10 + ParticleLifetime: {X: 0.2, Y: 0.2} + ShapeBuilder: !ShapeBuilderRibbon + SmoothingPolicy: None + Segments: 5 + TextureCoordinatePolicy: AsIs + TexCoordsFactor: 1.0 + UVRotate: + FlipX: false + FlipY: false + UVClockwise: Degree0 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 100.0, Y: 100.0, Z: 100.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: da9b119e-ce87-4f7b-a4cc-2e93b158f137:Textures/Gradation01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: !UVBuilderScroll + StartFrame: {X: 0.0, Y: 0.0, Z: 1.0, W: 1.0} + EndFrame: {X: 0.0, Y: 1.0, Z: 1.0, W: 2.0} + ForceTexCoords: false + Spawners: + 771c66d89d336449959f8c37915bdb0e: !SpawnerPerFrame + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 10.0 + Framerate: 60.0 + Initializers: + af1eef0c052b814ab025d0cbeb5ef838: !InitialPositionArc + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + Target: ref!! d376f48f-fece-4d95-b5dc-bd3a7eda0cf1 + DisplayParticleRotation: true + DisplayParticleScale: false + FallbackTarget: {X: 0.0, Y: 0.0, Z: -1.0} + DisplayParticleScaleUniform: false + ArcHeight: 0.0 + Sequential: true + FixedLength: 0 + PositionMin: {X: 0.0, Y: 0.0, Z: 0.0} + PositionMax: {X: 0.0, Y: 0.0, Z: 0.0} + SeedOffset: 0 + 6d09f593db786145af6ba89f386f9b48: !InitialSpawnOrder + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + d1dbc13de4fdfd44a592f202d7bed600: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.5 + SeedOffset: 1 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.5, Y: 0.6} + Updaters: {} + 2801c9087775c2ecc9518fa0f801c79c: !StaticColliderComponent + Id: 2ef5d782-7e2b-4cf0-ad7d-2eaa36bc436b + CollisionGroup*: CustomFilter1 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + d9c023df8272c6145711f00ef8160b74: !BoxColliderShapeDesc + Is2D: false + Size: {X: 10.0, Y: 3.0, Z: 2.0} + LocalOffset: {X: 4.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 8512ce3d-9fb8-400b-bf88-7186abe432d8 + InstanceId: e730f3a1-4679-4b07-8e24-a2480c988364 + - Folder: Props + Entity: + Id: 7064a069-fb79-4157-8160-cd7e1a379d3f + Name: ChargerBox + Components: + 6233de1d3246d8ee443a7cc14154fede: !TransformComponent + Id: 955cbfb4-15ab-4a31-9ce3-26ae06cbdcce + Position*: {X: -8.829119, Y: 0.4246651, Z: -31.8535652} + Rotation*: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + cc93fdaf96eee4a153bf4a38f4c86e0d: !ModelComponent + Id: c3525a16-42eb-4ac4-acb0-e7abe456f3e4 + Model: 2b86e7b1-e218-412d-b66e-e0dc401dc02c:Environment/Props/Models/ChargerBox + Materials: {} + acc1f332e3f43a39559966a76640088e: !StaticColliderComponent + Id: f4446ebd-fe79-4ed0-ba70-4fcdb86f94e1 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + d0fa990451422fe1b046a66deb9e749d: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.2, Y: 0.85, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 08fcbc00-0585-4d76-a76e-3aba715b89a2:Environment/Props/Prefabs/ChargerBox + BasePartId: 7801a3c6-6f59-4e5d-917d-5f838ed9f781 + InstanceId: 16674da2-0bf0-4013-bf73-967cf787f33b + - Entity: + Id: 71642f05-2619-4f45-b765-07738339cd4d + Name: LaserFence_Static + Components: + fb9b8e052602e60735334f7419c9e54a: !TransformComponent + Id: cc68719d-937c-4cb8-8a36-6bb4471944df + Position: {X: -3.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 0.6, Y: 0.6, Z: 0.6} + Children: + 72f98f4652f07969b02387bf80f44bb6: ref!! e8fbeb91-1847-4d2b-bea8-ee5c57998494 + ac54ba65908c8e57e9e7d04aaa225e10: ref!! 37bca72c-84ca-43ab-b0e4-22aefe7dbf6a + c9f4bf3456ad38e4294e8f90e4bc16ba: ref!! 7eb81fee-c147-41ce-b0c5-f97fa9982e64 + 985fa8fdb9571299e3e7f9b8b1f090f1: ref!! 0aed58ae-9fc1-4373-9959-e543d5b4e82b + eebd194cebc9a12cf0aa06c693e971b7: !StaticColliderComponent + Id: 125ea86b-b70a-4729-a9f1-8dc001002a43 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 7e00afee3484d23f207fe6d6fac12d9a: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 3.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 6022993f-f245-4b95-ae81-8a6e80860cd7 + InstanceId: 0b1e0f02-9118-4a45-ac60-d503b4882088 + - Entity: + Id: 738e660c-a817-4765-b6c6-5835649ff58f + Name: ProjectileSpawnPoint + Components: + ef320192025c3947bb1adb1c533630a6: !TransformComponent + Id: 079e2e98-3a9d-4c44-8189-b3d64a61fab9 + Position: {X: 0.787716269, Y: -0.0260489322, Z: 1.45098568E-07} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d3a20669d1ecb74791449a8d599302ad: !ModelNodeLinkComponent + Id: fcce8f05-87fd-4da4-9081-505f39b28998 + Target: null + NodeName: Bone_turret + f2be80b1286b9c4495a77d23ce7fc8b5: !AudioEmitterComponent + Id: 31eed0f3-c704-443d-abdd-5f277fad1c70 + Sounds: + 483657d21a6056232b19c15d3e90763b~Fire: 3de4a0e3-c642-4aa1-9801-7583f510ed44:Drones/Sounds/RocketFire + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + Base: + BasePartAsset: aac84dfd-95cb-4a1f-8b00-00e61427e600:Drones/Prefabs/RocketDrone + BasePartId: 92eafacb-5258-4c7b-8040-b4b6d2721043 + InstanceId: cd3d29c3-6924-47fd-a603-ec67d6f5f178 + - Entity: + Id: 73c1259a-5f51-45e8-8124-12eaaf239b9c + Name: LaserFence_up + Components: + c8c633e320d799468ba2a8e339362d2d: !TransformComponent + Id: d5c7e6d1-5b47-4921-a2df-ca39b777183b + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3e4e674bd6ad2f439da54f92a29a7eec: !ModelComponent + Id: 8f6752a1-8587-41ef-b165-e1a19b1c243f + Model: ca14aec1-3989-485c-84c0-5d0cbf5858f4:Gameplay/Models/LaserFence_up + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 2051137f-5c3e-4877-b418-d6730043e667 + InstanceId: 06de3e7a-88ad-4044-8ca6-ae36b136c028 + - Folder: Props + Entity: + Id: 7b4f001a-bae4-4536-bc96-01a127d71843 + Name: ServerPad + Components: + 9cc2e85e539696db12c68eee89b22975: !TransformComponent + Id: 301e7751-0683-4659-91e4-dbf19171ffd6 + Position*: {X: 3.5637207, Y: 0.0, Z: -0.0993908048} + Rotation*: {X: 0.0, Y: 0.7081038, Z: 0.0, W: 0.7061084} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 5e41d1a6d51058f29a5a3bc92598c523: !ModelComponent + Id: fc8c0e8d-a8c2-49f2-b5ba-86d5607398b5 + Model: 5059af3d-ea9e-4027-8ccb-8f23dad0c063:Environment/Props/Models/ServerPad + Materials: {} + 14379b4b0534be9caba30c328363f241: !StaticColliderComponent + Id: 0a46439a-f52f-4615-97b0-987739fd7550 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 8715a3e62d75b1239fcd97f6036f90b4: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 1.0, Z: 1.6} + LocalOffset: {X: 0.0, Y: 0.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 4934e6045e93c470ed778353f6e18052: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.8, Y: 0.8, Z: 0.6} + LocalOffset: {X: 0.0, Y: 1.4, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 62552c0d-5f92-4a04-9cd7-fec7ca5d6e86:Environment/Props/Prefabs/ServerPad + BasePartId: 2f1b551e-174d-4545-890c-6dde16d947e2 + InstanceId: c56d48d2-99dc-4b97-872a-d1b2a5ab4dc5 + - Folder: null + Entity: + Id: 7fb41c6f-0280-4be7-a995-0c553abac8fc + Name: Tubes_base + Components: + 7cdd3b1a1396bae0df8d315686b47524: !TransformComponent + Id: 3a160ea3-8273-4b3f-b017-31cd3b73bd0d + Position: {X: 0.0, Y: 0.0, Z: -3.15} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 14c6a602fe3acc99031df8e58a62d2c8: !StaticColliderComponent + Id: 66612545-976d-4d2b-9c51-78787b3234e5 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 2f121f88c1f6896ca79a2939aa8a095c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.25, Z: 1.2} + LocalOffset: {X: 0.0, Y: 0.625, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 9a70c79d932274ae3d789c1b8e505eed: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 0.7, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.35, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + c693012fa2a7a493118f8d327a097904: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.6, Z: -0.3} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + ec075d7b9a08dd03f4591017a4bce1a2: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: -0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 7742036734daf5a2f5497973ad25733f: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: 0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 62e87c0b-15d8-4628-95c9-7880f4cf2fe1:Environment/Props/Prefabs/Tubes + BasePartId: 33533809-4477-4c1f-90e3-f7c190afa66a + InstanceId: 3609a9f4-231c-4436-8f29-e98bb32fc840 + - Folder: Props + Entity: + Id: 80bfd1c8-8513-4430-adbe-d2b0120ed3ba + Name: Crane_small + Components: + 0c58a93ff0b68a3b56e86f6ce23dcce2: !TransformComponent + Id: 6ddbe338-3943-4164-9d5e-6da7896518ee + Position*: {X: -23.0407619, Y: 0.0, Z: -27.9622822} + Rotation*: {X: 0.0, Y: 0.4862617, Z: 0.0, W: 0.8738133} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a77dc0a106dbb00f08f57927becc8e32: !ModelComponent + Id: c370f411-b08a-4611-9c2a-1f3e55aa6839 + Model: 6265c534-4bfd-45a2-879b-15aa84659e82:Environment/Props/Models/Crane_small + Materials: {} + 1b3a638d4d756e78a09cd85c91a67ded: !StaticColliderComponent + Id: ea694f9c-20de-430e-bad5-7e995d0409d3 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 8b852c3813cdeaaeebd7fa29686a6d8e: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 3.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 965145a08bbd93aa5abf3fb115c7c6dc: !CylinderColliderShapeDesc + Height: 4.0 + LocalOffset: {X: -0.5, Y: 5.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 00eb9a22-6040-4b56-936b-aef09a483897:Environment/Props/Prefabs/Crane_small + BasePartId: a8c3a236-cfd6-4880-a196-a0dd2a27cbee + InstanceId: 36761053-4bdd-4a32-9a35-29df32fd22dc + - Entity: + Id: 87f89962-e866-4ae4-b3c1-3b9e6ac41c50 + Name: LaserFence + Components: + fb5e18952f86407dad838d0b5bc40bef: !TransformComponent + Id: d04ddfd3-3357-481b-b84a-18b0b907ea3a + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + f94a04d4dd9ca249d275be383b123cc7: ref!! f819ca46-f6bb-41cf-89eb-25445f9b6478 + e8af797a2f73bec8e5b3b407c77a04b3: ref!! dd1e8a96-0f27-4c72-8a12-886d0459a3a7 + c4e1eb951c333060077478fec3e6f721: !Starbreach.Gameplay.LaserFence,Starbreach + Id: 7ab9160f-a313-4761-b8b2-d23a29420ebc + ParticleSystemComponents: + d4e1b67fd72a014591445d886fdbd013: ref!! 32b4bd05-25e1-48d4-b7ff-cc4be008a5af + 99ad129b17a7400624a0fdde856096e0: ref!! a3d42ca8-d216-494f-b09e-458e3251c16f + ModelComponents: + 1e0b1119a150cc02dddd2f91b8f2f386: ref!! f714d7c3-dc9e-4aed-a132-5e3ceb97f859 + dd30ed9dc650b5d60c314f45e5431622: ref!! bfd4963b-dff4-4c54-8832-d946f88dce51 + LasetBlockade: + 23ae30509c9fbe5fb438d52a1b33c4c0: ref!! 2ef5d782-7e2b-4cf0-ad7d-2eaa36bc436b + Triggers: + CombinationMode*: Conjunction + Inverted*: true + Activators: + e5c5560f4f524df0479bfa62c5c66c5c*: !Starbreach.Gameplay.PressurePlate,Starbreach ref!! b09b59df-4f08-451f-93f1-5394e542dc75 + Enabled: true + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 945727d1-98d0-4a00-b29c-98f78daa9839 + InstanceId: e730f3a1-4679-4b07-8e24-a2480c988364 + - Entity: + Id: 8810636e-d298-4839-a891-fb1d098fa975 + Name: LaserFence_up + Components: + c8c633e320d799468ba2a8e339362d2d: !TransformComponent + Id: 4c7a17eb-8669-467d-bea3-84dcd60023bd + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3e4e674bd6ad2f439da54f92a29a7eec: !ModelComponent + Id: eee91a6f-6d21-446f-afdc-2c3e5db6c7ce + Model: ca14aec1-3989-485c-84c0-5d0cbf5858f4:Gameplay/Models/LaserFence_up + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 2051137f-5c3e-4877-b418-d6730043e667 + InstanceId: 0b1e0f02-9118-4a45-ac60-d503b4882088 + - Entity: + Id: 8be384c7-dd0f-4e73-aa55-c97cd44339dc + Name: Model + Components: + 7dad9d7cd55ced4abbf2cb2bbbd70c1a: !TransformComponent + Id: fdae54aa-6881-4a77-a21d-945c1fcdefe5 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + d719b2b339248f17748edd917f6bc9b2: ref!! 079e2e98-3a9d-4c44-8189-b3d64a61fab9 + 827f49f9d5034b4acf8a8939110ddb8d: ref!! 21c7e26d-b9f3-4920-843a-594d3ba50d2d + c212d189fcc79d46bbb83d892c85ce82: !ModelComponent + Id: f3a8d773-3ab8-434b-adc6-fabc5357c473 + Model: c1428709-fa5d-40a7-8e17-d2efb546bfef:Drones/Models/RocketDrone + Materials: + bff18010728c254c925bebf2f03be01b~0: 76636c37-5239-4cd3-ac8a-953e9e4d913e:Drones/Materials/Drone/DroneLower + bad52956f3fcbb45ac19f0a99abdf1d0~1: b91deeaf-43f6-434a-8400-22a1c6cb0447:Drones/Materials/Drone/DroneUpper + 8710bd731b44b446a6f9448a50fcd66b~2: b55d921d-b0d4-416f-85ad-2e1f468a1f7e:Drones/Materials/RocketDrone/RocketDrone + c123a40ea35064c3e5b77b9aaec447dc: !AnimationComponent + Id: de60a053-d0e3-4aa1-8540-d7f212c11840 + Animations: + a713ec907506354eb188aaba71f6039c~Fire: b476b79e-b408-4d80-8be5-e243b0355168:Drones/Animations/RocketDroneFire + 8df1171e0223014899b19b71b409f1b3~Idle: a980d9c8-1ff7-456c-87d6-312bb28c9a90:Drones/Animations/RocketDroneIdle + bcc277ca9a2ea247bf4ad6e427a787bf~Move: b3ba9abe-76d5-4580-8531-d1d1de2fc1ef:Drones/Animations/RocketDroneFly + Base: + BasePartAsset: aac84dfd-95cb-4a1f-8b00-00e61427e600:Drones/Prefabs/RocketDrone + BasePartId: ee748701-a6a0-4afd-b04c-ab208598af51 + InstanceId: cd3d29c3-6924-47fd-a603-ec67d6f5f178 + - Folder: null + Entity: + Id: 8bf9112b-b65e-4aad-8513-4827b48fe66a + Name: Vent_light_mesh + Components: + 54af95a0dca10843911d079ccfaa0cfd: !TransformComponent + Id: 1ac90b97-5b42-4673-b71d-357b2783e704 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6f6f8132f03b9c4db90f22a935e18733: !ModelComponent + Id: 4621d5f8-6ba8-4b3d-ac45-828759d7fd76 + Model: bcf6e9e7-0e5d-45f3-ba1b-0b2025d17e1c:Environment/Props/Models/Vent_light_mesh + Materials: {} + Base: + BasePartAsset: b5275603-ec75-4bf7-b9cd-6613fe69d2b9:Environment/Props/Prefabs/Vent + BasePartId: 9b350f50-f364-4653-8b82-1b0bf30e2f23 + InstanceId: 3d5ef5cb-474f-491c-9e93-88b63ce98d03 + - Folder: Props + Entity: + Id: 8cedfe73-288c-4350-a3f5-4623aa77a472 + Name: Crane_small + Components: + 0c58a93ff0b68a3b56e86f6ce23dcce2: !TransformComponent + Id: 707deac6-0ce0-476d-867b-27580b9883e2 + Position*: {X: -5.58132, Y: 0.0, Z: 2.435613} + Rotation*: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a77dc0a106dbb00f08f57927becc8e32: !ModelComponent + Id: c654a02c-2a8c-42f2-a8a2-e776e1738fa4 + Model: 6265c534-4bfd-45a2-879b-15aa84659e82:Environment/Props/Models/Crane_small + Materials: {} + 1b3a638d4d756e78a09cd85c91a67ded: !StaticColliderComponent + Id: 8c8d5e61-eeb6-490f-954b-b804fb8b5925 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 8b852c3813cdeaaeebd7fa29686a6d8e: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 3.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 965145a08bbd93aa5abf3fb115c7c6dc: !CylinderColliderShapeDesc + Height: 4.0 + LocalOffset: {X: -0.5, Y: 5.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 00eb9a22-6040-4b56-936b-aef09a483897:Environment/Props/Prefabs/Crane_small + BasePartId: a8c3a236-cfd6-4880-a196-a0dd2a27cbee + InstanceId: a77e0328-bf35-487d-ba5b-33de895069b4 + - Entity: + Id: 8d4b5392-4ebe-4fb2-b44f-9540b9701624 + Name: LaserCylinder + Components: + 6565f891cdba2236dd5dbf1888a0f6e0: !TransformComponent + Id: 22a23f3f-89ec-4162-81aa-fca377b4058a + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: -0.707106769, W: 0.707106769} + Scale: {X: 1.0, Y: 10.0, Z: 1.0} + Children: {} + cec4407060699b5ddb4eeb6f5f980024: !ModelComponent + Id: f714d7c3-dc9e-4aed-a132-5e3ceb97f859 + Model: c11da5de-520a-4bd5-a691-5476b2a812e0:Gameplay/Models/Cylinder + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 30a095c2-8c9f-4cd2-9784-1ba35cc22331 + InstanceId: e730f3a1-4679-4b07-8e24-a2480c988364 + - Folder: Gameplay + Entity: + Id: 931ad146-1f2f-4bf3-9042-1fc08a0d4289 + Name: Drone + Components: + bee1416b5e2d304389e20936f750b8b1: !TransformComponent + Id: 3b7ff88d-49a1-4be8-ae5b-882124f9848f + Position*: {X: 0.018, Y: 0.0, Z: -7.541} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 68b08d6ef4327063ddfe04b67a961aae: ref!! a07ec414-eedd-49c0-bdb8-1164f4bb66db + 963458a2c6c68927d38fec6a605500fa: ref!! 2fb90374-657c-4cf6-84c9-b7452fb2bd7d + aed3e642d5d71f48bdf23181156082f9: !CharacterComponent + Id: e89f8d13-03a7-4155-a123-ac8980d5592d + CollisionGroup: CustomFilter3 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + FallSpeed: 10.0 + MaxSlope: {Radians: 0.7853982} + JumpSpeed: 5.0 + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + ColliderShapes: + d27547538ff5dd4eb72e1d385d4862bd: !CylinderColliderShapeDesc + Height: 2.0 + Radius: 1.0 + LocalOffset: {X: 0.0, Y: 1.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 827cf65eb5dca148adaa7ef5bc60df35: !AudioEmitterComponent + Id: 488eb0b4-9629-4211-9e77-cb000e1b8124 + Sounds: + 9f0d8aaa3fc06a44bae1c6cff7aeef58~Death: 4c9333d4-d4d5-4f61-9390-6b2e2602cf1b:Drones/Sounds/Death + 062488fbcb22f344b134f663d4a59ff9~Explosion: 936a2dbe-31df-40cc-836b-18793ffcea22:Drones/Sounds/Explosion + 762f069faf274a408a2da257ca0f4736~Hit0: 732e562c-622b-4fff-8282-58a7efa0b204:Drones/Sounds/Hit0 + ba953638f1e5db4d852167189517624d~Hit1: 973a4551-7cd6-4b8d-8a53-5a61ca9e461b:Drones/Sounds/Hit1 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + c7262ebf0d468f43ba11ca1221215c08: !NavigationComponent + Id: d9edc28e-97e8-4c68-bc9f-76e6e299a5f8 + NavigationMesh*: 82baba25-eddc-4983-a303-ef534133b0cc:Levels/Platform_1-3_NAV + GroupId: 665dbfaa-d91a-ee40-d176-a5eaed1268bc + 238e55139b0b248973a65b6ba75f8d54: !Starbreach.Drones.Drone,Starbreach + Id: 3b1df80e-a9a8-4aa3-a4e5-2731259ab195 + Priority: 4000 + Weapon: !Starbreach.Drones.MissileDroneWeapon,Starbreach + ProjectileSpawnPoint: ref!! b268af87-1c17-461e-9fb7-e8d988024b68 + ReloadTime: 2.0 + ArraySize: {X: 3, Y: 3} + ArrayExtent: {X: 0.5, Y: 0.4} + MaximumRange: 20.0 + ProjectilePrefab: 35063ac9-350d-4c96-b28a-28abc68b4214:Drones/Prefabs/Rocket + AnimationDelay: 0.12 + SpreadAngle: {Radians: 0.1} + ShootingRange: 15.0 + MaximumSpeed: 1.5 + RotationSpeed: 6.283185 + HeadRotationSpeed: 6.283185 + Model: ref!! fe1cd37b-dd96-4a65-8031-56240f12916f + DefaultMaterial: b91deeaf-43f6-434a-8400-22a1c6cb0447:Drones/Materials/Drone/DroneUpper + AlertedMaterial: 70cfa151-cffc-4cf1-a0d5-2ac4ac94e4a6:Drones/Materials/Drone/DroneUpper_Alerted + EngineParticle: ref!! eaa3810d-757c-4a8f-a283-de4802642ed9 + EngineAudioEmitter: ref!! 4b9ed859-c701-49f9-968b-c85a58ddcc41 + DroneExplosionPrefab: d1f82cfd-900e-4757-958c-1dd35a4ec775:Drones/Prefabs/DroneExplosion + e3d3d4a2c9c5e7676d484a7a5a41d498: !Starbreach.Drones.PatrollingDroneController,Starbreach + Id: d9538b91-f311-475e-a3f2-3b9060182993 + PathToFollow: null + ChaseAlertZoneRadius: 20.0 + IdleAlertZoneRadius: 15.0 + AlertZoneTriggerEntity: ref!! a5c19d10-e1cd-47ec-85b7-c0c3fa4f63f7 + Base: + BasePartAsset: aac84dfd-95cb-4a1f-8b00-00e61427e600:Drones/Prefabs/RocketDrone + BasePartId: fb95e431-53b2-4f1b-b194-74a16c023eef + InstanceId: 74c2afc1-c34a-4e31-8588-b107725c1594 + - Folder: Props + Entity: + Id: 9388aa93-53e0-4c7a-852c-2a548cec9442 + Name: Satellite + Components: + 32d38d0e6a3c93392922fce7391b6c3d: !TransformComponent + Id: 496487ef-7ade-48de-8c45-24a40a1f1f92 + Position*: {X: -3.50653577, Y: 0.0, Z: -18.1958866} + Rotation*: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3100c3f42cf1257477d69978435187f8: !ModelComponent + Id: f1bad427-6ec1-4fef-a70b-181a94f31e66 + Model: 37c6e2d9-877b-4052-b885-d05735ee40b2:Environment/Props/Models/Satellite + Materials: {} + 8e62bc692cfaad2856e128a60b779ea6: !StaticColliderComponent + Id: 27c34375-602a-4394-af1b-013063fb7a6f + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 95434af2e0cb69b67b20283b391b9e4f: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.5, Y: 1.4, Z: 2.0} + LocalOffset: {X: 0.1, Y: 0.7, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 3e14998f-4ec4-4b41-b1b8-79cd0b6d73df:Environment/Props/Prefabs/Satellite_static + BasePartId: e8845556-0a90-4935-b2cf-577deac772ab + InstanceId: b7e265d0-8d59-4ea3-a3d7-5ba53db0e568 + - Entity: + Id: 94f53683-5bc0-4def-a17b-0a1111562989 + Name: AlertZoneTrigger + Components: + 37741c7f7923b7e1ef2d73915a26c89b: !TransformComponent + Id: 42941e94-f8c2-450e-8feb-41ab52c6c347 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 557d0a5f00f82108bd3505f6850bc931: !RigidbodyComponent + Id: defd65bb-cc52-4a44-804c-c95c764074b4 + CollisionGroup: CustomFilter2 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: true + IsKinematic: true + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 65240769cedf3fbd99aca64e97ba4ae6: !SphereColliderShapeDesc + Is2D: false + Radius: 1.0 + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + Base: + BasePartAsset: aac85dfd-95cb-4a1f-8b00-00e61427e601:Drones/Prefabs/EnergyDrone + BasePartId: 79e33d69-4e12-473f-bdc6-0c107e3244ad + InstanceId: 7b70de62-56d2-4707-a468-af6485dac931 + - Entity: + Id: 968f37ac-6fb3-4364-bc13-df8960d7d610 + Name: LaserArc + Components: + 336f7ce982182944823955cce7f2b5ee: !TransformComponent + Id: 5ede0829-f1ab-430d-bdeb-94a279ee0e81 + Position: {X: 0.5, Y: 2.5, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 28b6b224-b4bb-48a9-bccb-71f0e16cf1be + InstanceId: 06de3e7a-88ad-4044-8ca6-ae36b136c028 + - Folder: Props + Entity: + Id: 96e63776-37df-4fa3-944b-efe8ddf6c5ba + Name: Tubes + Components: + 8afe5b76881b508b37d688f2116c5186: !TransformComponent + Id: 96664dec-e3dc-4312-a9da-a3ef25beadad + Position*: {X: 8.125031, Y: 0.0, Z: -4.242213} + Rotation*: {X: 0.0, Y: 0.2716836, Z: 0.0, W: 0.962386668} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 9de6189827550c411263f3ceca85a936: ref!! 8291f6a0-67db-406e-97c8-b32fab347f6d + 1318a9bc2942a71e8f9fa8dd7167a00d: ref!! 857b25e7-8ce8-49c7-ba2f-d470c5af64f4 + d0526db95b412f4714f97c9e1e008f44: !ModelComponent + Id: c9f2fe85-8762-4ecb-85da-c6e1299395a5 + Model: b71a38c2-5460-4a2e-8abf-77a0acec5aeb:Environment/Props/Models/Tubes + Materials: {} + Base: + BasePartAsset: 62e87c0b-15d8-4628-95c9-7880f4cf2fe1:Environment/Props/Prefabs/Tubes + BasePartId: 20f03481-611c-470f-b5ca-0917bf52f59a + InstanceId: ae37fc66-96d4-4252-b373-bacc1c49cdd8 + - Entity: + Id: 9be0b648-1687-43d3-9ca0-cfddf473332f + Name: LargePillar + Components: + 30a5cfc93a770b67f960245b47e90ccd: !TransformComponent + Id: 811c9bab-b4d9-483c-947b-5c3212c10f99 + Position: {X: 7.50000143, Y: 3.0, Z: -18.0000019} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 2ef59a013481313119c64a6ea8ca6f8c: !ModelComponent + Id: 5a5a7a56-5f42-41b7-bf4a-2fb9c833ed2f + Model: 258dfd07-ef55-4f3e-a0a8-afc05e4ca37b:Environment/Platforms/Models/LargePillar + Materials: {} + - Entity: + Id: 9be4c876-4959-4642-b314-adad706ea7aa + Name*: FloorButton 3 + Components: + 2bd9e5018fb815bd9e0ddf7b6c4f0377: !TransformComponent + Id: 9c44ff5b-0d47-4c7f-8542-2f97f0b9e41b + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a6932a4059e46dc7459b958c79f50336: !ModelComponent + Id: 6e392261-26a9-447f-898a-a90a09540663 + Model: b08b5432-96b6-4259-8a89-303ff9bd12e2:Gameplay/Models/FloorButton + Materials: + 1eb04cc22e2a20d26f26187814c7bdc3~0: 0347eda8-4648-4983-a223-713b43cea1d9:Gameplay/Materials/Plates/Plate2_Enabled_Off + daf84040e6ba39f4813001d91222a07f~1: ba76b6f1-63f6-44d9-ad48-aca96fbe79a3:Gameplay/Materials/Plates/Plate3_Enabled_Off + 2a52917f17e18564669f46063c397a81: !Starbreach.Gameplay.PressurePlate,Starbreach + Id: ae0f4ea3-0342-43d6-bcdc-acc633a2dcad + Material1EnabledOff: ba76b6f1-63f6-44d9-ad48-aca96fbe79a3:Gameplay/Materials/Plates/Plate3_Enabled_Off + Material1DisabledOn: 2746f702-7dd5-4ef5-9e93-d5e758da2800:Gameplay/Materials/Plates/Plate3_Disabled_On + Material1DisabledOff: d02e7fcd-9f9e-450f-bc56-6e50e9970ec2:Gameplay/Materials/Plates/Plate3_Disabled_Off + Material1EnabledOn: 1163e435-4f1b-4b16-8834-da23869292b4:Gameplay/Materials/Plates/Plate3_Enabled_On + Material0EnabledOff: 0347eda8-4648-4983-a223-713b43cea1d9:Gameplay/Materials/Plates/Plate2_Enabled_Off + Material0DisabledOn: eff5f692-9337-4d7b-8cd8-531e3e06b852:Gameplay/Materials/Plates/Plate2_Disabled_On + Material0DisabledOff: e74abd75-804a-4de0-acf7-924aa5bb3a20:Gameplay/Materials/Plates/Plate2_Disabled_Off + Material0EnabledOn: 903888ae-b297-487a-a708-5fd6cd38c7c7:Gameplay/Materials/Plates/Plate2_Enabled_On + Model: ref!! 6e392261-26a9-447f-898a-a90a09540663 + Trigger: ref!! 2e87487d-725e-426c-8bde-3e0fa58d5f51 + AudioEmitter: ref!! f837c767-5132-4bbe-bfee-5778385ec746 + Enabled: true + Toggle*: false + SingleActivation*: true + CurrentToggleState: false + TransitionTime: 0.15 + 48a3a1d7ea5c129742126bc8b4d7429c: !Starbreach.Gameplay.PressurePlateTrigger,Starbreach + Id: 2e87487d-725e-426c-8bde-3e0fa58d5f51 + CollisionFilterGroup: CharacterFilter + Trigger: ref!! d05ac79b-56f3-4bb6-b336-ad1444d7798c + 03c59a6169956fba8a31fd1f758dc46f: !AudioEmitterComponent + Id: f837c767-5132-4bbe-bfee-5778385ec746 + Sounds: + adc799987a8ff52a579d44583cb2cde7~Enable: 5163c935-fe14-4496-8f44-eb64e8482b31:Gameplay/Sounds/Plate_Enable + 732e4c030c0a74345f1aed380bdb8533~Disable: 730d9dfc-a657-4d5b-b5ea-8fc7e14cfa7d:Gameplay/Sounds/Plate_Disable + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + 9c600aa0b00e9640a384d3666fe41f14: !RigidbodyComponent + Id: d05ac79b-56f3-4bb6-b336-ad1444d7798c + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: true + IsKinematic: true + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 4c0292725ab565154826fa81493eec99: !CylinderColliderShapeDesc + Height: 0.4 + Radius: 0.8 + LocalOffset: {X: 0.0, Y: 0.2, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 72f94a89-e47c-42ae-9264-b0c9881e3840:Gameplay/Prefabs/Plate + BasePartId: e4fdb89a-c2a0-4e83-a985-c4e087628455 + InstanceId: cbfd3091-8394-4f65-b435-db5202ae449f + - Entity: + Id: a048b050-36d6-43c5-8bd4-8ffdb743a50a + Name: LaserArc + Components: + 336f7ce982182944823955cce7f2b5ee: !TransformComponent + Id: 68b39357-61f4-4b90-b052-8a77acf844c6 + Position: {X: 0.5, Y: 1.75, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 6127bf25-0b62-4e22-863f-5009c2f77592 + InstanceId: 06de3e7a-88ad-4044-8ca6-ae36b136c028 + - Folder: Gameplay + Entity: + Id: a0b72fd4-28b3-475d-97b9-2fba42d82628 + Name: LaserFence_Barrier-1 + Components: + c97d89c141479b5c48938d0349e4ac8d: !TransformComponent + Id: fc8e9de0-7c6f-42db-b21f-8f2a17afbb01 + Position: {X: 3.80760026, Y: 0.0, Z: -18.5775185} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 484fc79c79a2567a5e9bc5f5160c01d1: ref!! d04ddfd3-3357-481b-b84a-18b0b907ea3a + - Entity: + Id: a141c501-753d-4312-8e9a-e64564997c29 + Name: LaserBeam + Components: + c2a61ac9cca3304c949c26193b0945c4: !TransformComponent + Id: e36b4884-f754-49de-ab1d-c83c3b177710 + Position: {X: 0.5, Y: 2.5, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 9406e2b7130bca40c2c768f5946242ff: ref!! 17998a44-75a6-4426-be61-425d83f2685d + 5ee7f85c3fbac746b5c31e169615a5c7: !ParticleSystemComponent + Id: a3d42ca8-d216-494f-b09e-458e3251c16f + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 0.121568628, B: 0.121568628, A: 1.0} + Speed: 6.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + f239db465dd7354bbc55100bd300b151: + EmitterName: sparks + ParticleLifetime: {X: 1.0, Y: 5.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + ba54a1971cd84340b5ba37f508a3bd2c: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 881873fa3d3a744db46ae3db16b7d133: + Key: 1.0 + Value: 0.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 150.0, Y: 150.0, Z: 150.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: null + ForceTexCoords: false + Spawners: + 946a1b5e1895434284c7dbdaa728c786: !SpawnerBurst + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 100 + Initializers: + 581d30af2592fb41a520efcb0f64656c: !InitialPositionParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: true + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: true + ParentControlFlag: Group00 + SeedOffset: 0 + PositionMin: {X: -0.5, Y: -0.1, Z: -0.1} + PositionMax: {X: 0.5, Y: 0.1, Z: 0.1} + 0460848851abf642879131d04c839872: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.3 + SeedOffset: 24 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.05, Y: 0.2} + cd410cf87ddf07449ea894f8b8cb5238: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.02, Y: -0.01, Z: -0.02} + VelocityMax: {X: 0.02, Y: 0.04, Z: 0.02} + 855cafaded1b164dab92516ac877abf5: !InitialColorParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ParentControlFlag: Group00 + SeedOffset: 0 + ColorMin: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + ColorMax: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Updaters: {} + eabed859a30c6f409b30f3e5fa9295b2: + EmitterName: LaserEmitter02 + MaxParticlesOverride: 10 + ParticleLifetime: {X: 0.2, Y: 0.2} + ShapeBuilder: !ShapeBuilderRibbon + SmoothingPolicy: None + Segments: 5 + TextureCoordinatePolicy: AsIs + TexCoordsFactor: 1.0 + UVRotate: + FlipX: false + FlipY: false + UVClockwise: Degree0 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 100.0, Y: 100.0, Z: 100.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: da9b119e-ce87-4f7b-a4cc-2e93b158f137:Textures/Gradation01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: !UVBuilderScroll + StartFrame: {X: 0.0, Y: 0.0, Z: 1.0, W: 1.0} + EndFrame: {X: 0.0, Y: 1.0, Z: 1.0, W: 2.0} + ForceTexCoords: false + Spawners: + 771c66d89d336449959f8c37915bdb0e: !SpawnerPerFrame + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 10.0 + Framerate: 60.0 + Initializers: + af1eef0c052b814ab025d0cbeb5ef838: !InitialPositionArc + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + Target: ref!! 5782f1df-60a0-4cc6-be52-2c583387121a + DisplayParticleRotation: true + DisplayParticleScale: false + FallbackTarget: {X: 0.0, Y: 0.0, Z: -1.0} + DisplayParticleScaleUniform: false + ArcHeight: 0.0 + Sequential: true + FixedLength: 0 + PositionMin: {X: 0.0, Y: 0.0, Z: 0.0} + PositionMax: {X: 0.0, Y: 0.0, Z: 0.0} + SeedOffset: 0 + 6d09f593db786145af6ba89f386f9b48: !InitialSpawnOrder + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + d1dbc13de4fdfd44a592f202d7bed600: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.5 + SeedOffset: 1 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.5, Y: 0.6} + Updaters: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: d0b8df39-fac2-48ce-bd8f-a2f847d3157d + InstanceId: e730f3a1-4679-4b07-8e24-a2480c988364 + - Entity: + Id: a312606b-110c-468e-8ce5-8a1bc179e1c5 + Name: LaserFence_Static (2) + Components: + f08afbc357f5790406844c92d0539513: !TransformComponent + Id: 2e58b6b9-46db-4a58-b367-88506927750e + Position: {X: 3.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: -0.6, Y: 0.6, Z: 0.6} + Children: + 78f46892dc105a369fcd202c189df608: ref!! 6fd8bdcb-c2fd-4d86-8d12-b242246d6026 + 5255162075021a6f951970991ca6608e: ref!! d5c7e6d1-5b47-4921-a2df-ca39b777183b + 536240f8fb1df6f999ea4a5d4ba7f1c1: ref!! 68b39357-61f4-4b90-b052-8a77acf844c6 + 75e86890a45d2bdc1ba0006f7998e13e: ref!! 5ede0829-f1ab-430d-bdeb-94a279ee0e81 + 20f48c676e388f5f82ad7dda1063ae2d: !StaticColliderComponent + Id: f56275f8-9b35-4e79-bd9c-d6d65a927498 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 368adb9e6793798169337ef4de98022b: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 3.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 16d23f36-f4be-4509-9d47-60cb574be928 + InstanceId: 06de3e7a-88ad-4044-8ca6-ae36b136c028 + - Entity: + Id: a4c02081-f025-413a-ba6e-5a86c54e9ba2 + Name: LaserCylinder + Components: + 6565f891cdba2236dd5dbf1888a0f6e0: !TransformComponent + Id: 17998a44-75a6-4426-be61-425d83f2685d + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: -0.707106769, W: 0.707106769} + Scale: {X: 1.0, Y: 10.0, Z: 1.0} + Children: {} + cec4407060699b5ddb4eeb6f5f980024: !ModelComponent + Id: bfd4963b-dff4-4c54-8832-d946f88dce51 + Model: c11da5de-520a-4bd5-a691-5476b2a812e0:Gameplay/Models/Cylinder + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 6072d1ec-0d92-4855-a83a-bacfa7acc501 + InstanceId: e730f3a1-4679-4b07-8e24-a2480c988364 + - Entity: + Id: a5250b2a-2e81-409f-bcf2-06335fa69e52 + Name: LaserFence_Static (2) + Components: + f08afbc357f5790406844c92d0539513: !TransformComponent + Id: cb586c4f-ed75-477e-b60a-18220a15be98 + Position: {X: 3.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: -0.6, Y: 0.6, Z: 0.6} + Children: + 78f46892dc105a369fcd202c189df608: ref!! 9d7b4189-d1f6-40db-8758-0b63583800b1 + 5255162075021a6f951970991ca6608e: ref!! 4c7a17eb-8669-467d-bea3-84dcd60023bd + 536240f8fb1df6f999ea4a5d4ba7f1c1: ref!! 880832d9-1207-40d2-bd00-0ae6dbe4135e + 75e86890a45d2bdc1ba0006f7998e13e: ref!! e8159be0-8e7a-426d-88ab-dfa9765fdcd3 + 20f48c676e388f5f82ad7dda1063ae2d: !StaticColliderComponent + Id: b5b37f8c-ad26-4dec-99f3-787381d7fe0c + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 368adb9e6793798169337ef4de98022b: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 3.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 16d23f36-f4be-4509-9d47-60cb574be928 + InstanceId: 0b1e0f02-9118-4a45-ac60-d503b4882088 + - Entity: + Id: a5c19d10-e1cd-47ec-85b7-c0c3fa4f63f7 + Name: AlertZoneTrigger + Components: + 37741c7f7923b7e1ef2d73915a26c89b: !TransformComponent + Id: 2fb90374-657c-4cf6-84c9-b7452fb2bd7d + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 557d0a5f00f82108bd3505f6850bc931: !RigidbodyComponent + Id: 41c9d850-7994-4f5c-9774-ab5e8c9bdf82 + CollisionGroup: CustomFilter2 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: true + IsKinematic: true + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 65240769cedf3fbd99aca64e97ba4ae6: !SphereColliderShapeDesc + Is2D: false + Radius: 1.0 + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + Base: + BasePartAsset: aac84dfd-95cb-4a1f-8b00-00e61427e600:Drones/Prefabs/RocketDrone + BasePartId: 79e33d69-4e12-473f-bdc6-0c107e3244ad + InstanceId: 74c2afc1-c34a-4e31-8588-b107725c1594 + - Folder: Props + Entity: + Id: a6df253a-54b4-4d41-b524-3ba4360ccb79 + Name: Tubes_base + Components: + 7cdd3b1a1396bae0df8d315686b47524: !TransformComponent + Id: 4c3884f6-e0ee-41d5-9f8a-2850fbd48331 + Position*: {X: 4.773858, Y: 0.0, Z: -14.0448875} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 4d4296f2a30a764d9d8fe6bea949fb8e: !ModelComponent + Id: eecc648a-0106-452a-b7fd-6246274889dc + Model: 734077ff-795c-4d1b-9f8c-688d142c4007:Environment/Props/Models/Tubes_base + Materials: {} + 14c6a602fe3acc99031df8e58a62d2c8: !StaticColliderComponent + Id: d2bca829-943c-48a1-b641-e05827376c88 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 2f121f88c1f6896ca79a2939aa8a095c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.25, Z: 1.2} + LocalOffset: {X: 0.0, Y: 0.625, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 9a70c79d932274ae3d789c1b8e505eed: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 0.7, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.35, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + c693012fa2a7a493118f8d327a097904: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.6, Z: -0.3} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + ec075d7b9a08dd03f4591017a4bce1a2: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: -0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 7742036734daf5a2f5497973ad25733f: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: 0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: a9eaf641-84b9-4fe0-bb15-bc2c8a67319b:Environment/Props/Prefabs/Tubes_base + BasePartId: e5249e5a-b18b-46fe-96f1-6f11a587b647 + InstanceId: 35e7a5b5-edbc-486d-9e52-e1caa7b71300 + - Entity: + Id: a6fca3ef-5377-463c-bd83-1fbd99ecc3f0 + Name: LaserFence_down + Components: + a4c9a42f24d4c443bad3060f61018c7f: !TransformComponent + Id: 4e28a7ee-f6e8-4771-aa26-ac451d46a3d0 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e52519dff8a1534c8d3d763ba4d4e83e: !ModelComponent + Id: be4a28ba-a881-404d-8819-003c0aa286ab + Model: 4658c1a9-b3b6-4481-b22c-ad61ea3c14d3:Gameplay/Models/LaserFence_down + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: fea06acd-bec3-4873-8a99-eeb324c05565 + InstanceId: e730f3a1-4679-4b07-8e24-a2480c988364 + - Entity: + Id: a8d0965d-6635-4cf1-a09d-1b6fe5787df0 + Name: LaserFence_down + Components: + a4c9a42f24d4c443bad3060f61018c7f: !TransformComponent + Id: 8da475d8-acae-4cb5-b77a-7af0b59e3d88 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e52519dff8a1534c8d3d763ba4d4e83e: !ModelComponent + Id: 688cd828-015a-45eb-adce-0527c3ede672 + Model: 4658c1a9-b3b6-4481-b22c-ad61ea3c14d3:Gameplay/Models/LaserFence_down + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: b070b742-1285-4948-a158-2800ee11f5e7 + InstanceId: e730f3a1-4679-4b07-8e24-a2480c988364 + - Folder: Props + Entity: + Id: a93348e0-084d-4b5b-b8f1-459c877a13af + Name: DataPad + Components: + 2f9ddeb934fea48b1c73e0b38a3375a2: !TransformComponent + Id: c448558b-df17-40bc-a1b3-586e62404e7d + Position*: {X: -3.45778561, Y: 0.0, Z: -19.8101749} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 2e3ff6e03d10cf3dc77d70ed0a476b89: !ModelComponent + Id: cc636849-d051-448b-87ef-460d54407dc2 + Model: f5f8e1be-4e17-41c5-bf92-41e912b85697:Environment/Props/Models/DataPad + Materials: {} + 349e286a76808eaf7a2d392bb9c4461f: !StaticColliderComponent + Id: 4ca5e398-b574-4c36-80e3-b39dbd8c441b + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + c06917f3e482c09bde03c9bfce95e46e: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 1.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 0fd37ae2-d4e3-4040-8f2b-291c3175e41c:Environment/Props/Prefabs/DataPad + BasePartId: 5b110e2d-a241-454b-b4e7-83bcbde36f41 + InstanceId: e91105cd-1388-41e7-8789-a582951dbd45 + - Folder: Platform + Entity: + Id: aac32e6f-1de6-4ec7-a714-bd3a06c20fc8 + Name: Floor + Components: + aa8e1c95be6f763acb252c88bc9b4e3c: !TransformComponent + Id: f4da0efe-b355-4e46-95c3-d9795a6ca4e3 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e11428463ff2a5448fe76cbecb8ebabf: !StaticColliderComponent + Id: 4321e2a9-bc82-416a-b804-447478a92556 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + ce5db6f77a52c5350697c41612a04526: !StaticPlaneColliderShapeDesc + Normal: {X: 0.0, Y: 1.0, Z: 0.0} + Offset: 0.0 + - Entity: + Id: ad37de66-7b99-427a-ab91-799499226ca7 + Name: AlertZoneTrigger + Components: + 37741c7f7923b7e1ef2d73915a26c89b: !TransformComponent + Id: 068ab62e-aeb8-4bf1-a9d0-4833d31a43b9 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 557d0a5f00f82108bd3505f6850bc931: !RigidbodyComponent + Id: 13f6dae1-3784-4518-82c0-f08dc4888d47 + CollisionGroup: CustomFilter2 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: true + IsKinematic: true + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 65240769cedf3fbd99aca64e97ba4ae6: !SphereColliderShapeDesc + Is2D: false + Radius: 1.0 + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + Base: + BasePartAsset: aac84dfd-95cb-4a1f-8b00-00e61427e600:Drones/Prefabs/RocketDrone + BasePartId: 79e33d69-4e12-473f-bdc6-0c107e3244ad + InstanceId: cd3d29c3-6924-47fd-a603-ec67d6f5f178 + - Entity: + Id: b0705ab1-7618-49f4-8869-9e9183188c2c + Name: LaserBeam + Components: + c2a61ac9cca3304c949c26193b0945c4: !TransformComponent + Id: 7eb81fee-c147-41ce-b0c5-f97fa9982e64 + Position: {X: 0.5, Y: 1.75, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + fe89fc524a7b9ae686e1c8c7bf6e603c: ref!! 5254fcbc-00e2-4228-a785-8c36d0b2ff89 + 5ee7f85c3fbac746b5c31e169615a5c7: !ParticleSystemComponent + Id: 378542c8-6053-41b7-8a2c-04cefc34829a + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 0.125490189, B: 0.125490189, A: 1.0} + Speed: 6.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + f239db465dd7354bbc55100bd300b151: + EmitterName: sparks + ParticleLifetime: {X: 1.0, Y: 5.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + ba54a1971cd84340b5ba37f508a3bd2c: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 881873fa3d3a744db46ae3db16b7d133: + Key: 1.0 + Value: 0.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 150.0, Y: 150.0, Z: 150.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: null + ForceTexCoords: false + Spawners: + 946a1b5e1895434284c7dbdaa728c786: !SpawnerBurst + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 100 + Initializers: + 581d30af2592fb41a520efcb0f64656c: !InitialPositionParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: true + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: true + ParentControlFlag: Group00 + SeedOffset: 0 + PositionMin: {X: -0.5, Y: -0.1, Z: -0.1} + PositionMax: {X: 0.5, Y: 0.1, Z: 0.1} + 0460848851abf642879131d04c839872: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.3 + SeedOffset: 24 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.05, Y: 0.2} + cd410cf87ddf07449ea894f8b8cb5238: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.02, Y: -0.01, Z: -0.02} + VelocityMax: {X: 0.02, Y: 0.04, Z: 0.02} + 855cafaded1b164dab92516ac877abf5: !InitialColorParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ParentControlFlag: Group00 + SeedOffset: 0 + ColorMin: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + ColorMax: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Updaters: {} + eabed859a30c6f409b30f3e5fa9295b2: + EmitterName: LaserEmitter02 + MaxParticlesOverride: 10 + ParticleLifetime: {X: 0.2, Y: 0.2} + ShapeBuilder: !ShapeBuilderRibbon + SmoothingPolicy: None + Segments: 5 + TextureCoordinatePolicy: AsIs + TexCoordsFactor: 1.0 + UVRotate: + FlipX: false + FlipY: false + UVClockwise: Degree0 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 100.0, Y: 100.0, Z: 100.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: da9b119e-ce87-4f7b-a4cc-2e93b158f137:Textures/Gradation01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: !UVBuilderScroll + StartFrame: {X: 0.0, Y: 0.0, Z: 1.0, W: 1.0} + EndFrame: {X: 0.0, Y: 1.0, Z: 1.0, W: 2.0} + ForceTexCoords: false + Spawners: + 771c66d89d336449959f8c37915bdb0e: !SpawnerPerFrame + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 10.0 + Framerate: 60.0 + Initializers: + af1eef0c052b814ab025d0cbeb5ef838: !InitialPositionArc + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + Target: ref!! 880832d9-1207-40d2-bd00-0ae6dbe4135e + DisplayParticleRotation: true + DisplayParticleScale: false + FallbackTarget: {X: 0.0, Y: 0.0, Z: -1.0} + DisplayParticleScaleUniform: false + ArcHeight: 0.0 + Sequential: true + FixedLength: 0 + PositionMin: {X: 0.0, Y: 0.0, Z: 0.0} + PositionMax: {X: 0.0, Y: 0.0, Z: 0.0} + SeedOffset: 0 + 6d09f593db786145af6ba89f386f9b48: !InitialSpawnOrder + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + d1dbc13de4fdfd44a592f202d7bed600: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.5 + SeedOffset: 1 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.5, Y: 0.6} + Updaters: {} + 2801c9087775c2ecc9518fa0f801c79c: !StaticColliderComponent + Id: b5622538-aae9-41f2-84cf-cd4ae4f0e4cf + CollisionGroup*: CustomFilter1 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + d9c023df8272c6145711f00ef8160b74: !BoxColliderShapeDesc + Is2D: false + Size: {X: 10.0, Y: 3.0, Z: 2.0} + LocalOffset: {X: 4.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 8512ce3d-9fb8-400b-bf88-7186abe432d8 + InstanceId: 0b1e0f02-9118-4a45-ac60-d503b4882088 + - Entity: + Id: b268af87-1c17-461e-9fb7-e8d988024b68 + Name: ProjectileSpawnPoint + Components: + ef320192025c3947bb1adb1c533630a6: !TransformComponent + Id: c852aa07-f853-449b-8f2b-aaeca423107a + Position: {X: 0.787716269, Y: -0.0260489322, Z: 1.45098568E-07} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d3a20669d1ecb74791449a8d599302ad: !ModelNodeLinkComponent + Id: de9a0942-3d27-4a2f-8188-c74f1eac56bb + Target: null + NodeName: Bone_turret + f2be80b1286b9c4495a77d23ce7fc8b5: !AudioEmitterComponent + Id: 1624fad5-414f-4879-a977-8badd0e6a844 + Sounds: + 483657d21a6056232b19c15d3e90763b~Fire: 3de4a0e3-c642-4aa1-9801-7583f510ed44:Drones/Sounds/RocketFire + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + Base: + BasePartAsset: aac84dfd-95cb-4a1f-8b00-00e61427e600:Drones/Prefabs/RocketDrone + BasePartId: 92eafacb-5258-4c7b-8040-b4b6d2721043 + InstanceId: 74c2afc1-c34a-4e31-8588-b107725c1594 + - Folder: Props + Entity: + Id: bb32b74a-98ce-4a3e-ac60-fab2b2c453d9 + Name: ChargerBox + Components: + 6233de1d3246d8ee443a7cc14154fede: !TransformComponent + Id: 62038cce-32fa-4f4c-aa4f-14966c4bdf26 + Position*: {X: -10.8291187, Y: 0.4246651, Z: -31.8535652} + Rotation*: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + cc93fdaf96eee4a153bf4a38f4c86e0d: !ModelComponent + Id: 623e905a-dbe9-4148-98c8-7ebd406d0651 + Model: 2b86e7b1-e218-412d-b66e-e0dc401dc02c:Environment/Props/Models/ChargerBox + Materials: {} + acc1f332e3f43a39559966a76640088e: !StaticColliderComponent + Id: 8588c48f-122e-4df4-a0df-f0919cba0889 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + d0fa990451422fe1b046a66deb9e749d: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.2, Y: 0.85, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 08fcbc00-0585-4d76-a76e-3aba715b89a2:Environment/Props/Prefabs/ChargerBox + BasePartId: 7801a3c6-6f59-4e5d-917d-5f838ed9f781 + InstanceId: 851dbee9-982d-4e1e-8d27-a35b5a80e53c + - Folder: Props + Entity: + Id: bbf5e5ce-882e-4694-96fd-a8c38dacbfab + Name: Crane_large + Components: + b59ade46cd2ad91766675fcde40267d3: !TransformComponent + Id: 00c0f273-e582-4fdb-8cd5-aec1806e63ff + Position*: {X: 3.6099453, Y: 0.0, Z: -24.2496815} + Rotation*: {X: 0.0, Y: -0.7071067, Z: 0.0, W: 0.7071068} + Scale*: {X: 1.99999976, Y: 2.0, Z: 1.99999976} + Children: {} + e0f5d721ab947932f380a7867f7e9af3: !ModelComponent + Id: 84a56526-d1a2-412b-9635-060cf99efce4 + Model: 821a1210-f5e0-4389-9e42-72886ebccaf5:Environment/Props/Models/Crane_large + Materials: {} + Base: + BasePartAsset: 0b0338a0-a2d1-487c-8af2-c96ff530e3c6:Environment/Props/Prefabs/Crane_large + BasePartId: 21276485-acdb-4d9d-9fb2-6c55c029fe0d + InstanceId: 735a9594-c0a8-4cac-b621-26f14512bc5e + - Entity: + Id: bc581b48-9652-4868-81ff-54d7ace30ac0 + Name: LaserFence_down + Components: + a4c9a42f24d4c443bad3060f61018c7f: !TransformComponent + Id: 6fd8bdcb-c2fd-4d86-8d12-b242246d6026 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e52519dff8a1534c8d3d763ba4d4e83e: !ModelComponent + Id: a649a749-b90e-4461-a6eb-dd8a4a88ad2c + Model: 4658c1a9-b3b6-4481-b22c-ad61ea3c14d3:Gameplay/Models/LaserFence_down + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: b070b742-1285-4948-a158-2800ee11f5e7 + InstanceId: 06de3e7a-88ad-4044-8ca6-ae36b136c028 + - Entity: + Id: bd20ae55-56d6-4284-9380-31c3b5b58304 + Name: vfx-Engine + Components: + 585f08a4c7e8554391f68583881993a2: !TransformComponent + Id: cf30280b-dda5-45d6-a40c-3ee76c98add4 + Position: {X: 0.0, Y: 0.2, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + c1ecc9674350ec47b258da4ab8ccf2ff: ref!! 7b9a8414-1bbe-4c07-bc7d-5b3701de70e2 + c141928df7725e448d9ee2d635345744: !AudioEmitterComponent + Id: 4b9ed859-c701-49f9-968b-c85a58ddcc41 + Sounds: + 210c4fe5f3b4c243942a23a4b3f26e49~Engine: 1d4673e5-cfbf-45eb-a34f-6d0c93074702:Drones/Sounds/Engine0 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + Base: + BasePartAsset: aac84dfd-95cb-4a1f-8b00-00e61427e600:Drones/Prefabs/RocketDrone + BasePartId: e84e5acd-b1a3-43f4-9066-a3247f4be1e3 + InstanceId: 74c2afc1-c34a-4e31-8588-b107725c1594 + - Entity: + Id: c4acbf1b-aa11-47f2-bc60-74ff6b1d3eee + Name: Steam + Components: + c1ecc9674350ec47b258da4ab8ccf2ff: !TransformComponent + Id: c23870a4-bf1a-486f-a8bf-b14406e38c8c + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8323bf5daa524c4fb5d833e41b08b32d: !ParticleSystemComponent + Id: 5ca54273-a319-428d-a750-9ae0773f2b0b + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: !BoundingSpheretatic + DebugDraw: true + Radius: 4.0 + Emitters: + 9a3a5271a4a0934d9467f6b095793379: + ParticleLifetime: {X: 0.5, Y: 1.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 0383cd796e839e4b9667af5d0fe71756: + Key: 0.0 + Value: 0.5 + TangentType: Linear + 3c3bf45d6e50e542871470a99fdfd9f3: + Key: 0.3 + Value: 0.7 + TangentType: Linear + aa6cd07e77ba1c4da6e836dff7b31695: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ZOffset: 0.2 + SoftEdgeDistance: 0.3 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 5.0, Y: 5.0, Z: 5.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8dbe2382-769c-45fe-9604-98c5ae5c434c:Textures/SMO001_3 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + fa12c9550522c24fa400d8ce84ef83a0: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 80.0 + Initializers: + 3994a4c9897c7049af5217d699e668a9: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.4, Y: 0.5} + 7fa5fb2d4e692c4aae5cda5ce081ca44: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.5, Y: 0.0, Z: -0.5} + PositionMax: {X: 0.5, Y: 0.0, Z: 0.5} + Interpolate: false + 3d037e54f2051d42a511f75567a2d5eb: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.05, Y: -3.0, Z: -0.05} + VelocityMax: {X: 0.05, Y: -3.0, Z: 0.05} + d4d112e1ace7b944828fa9278f3938e1: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + Updaters: + 226c0f6bc8f05441a0eb6454e9f89045: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 82276cc03e3f854b9dc5c50ece2e25f9: + Key: 0.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + e3927f1e92cb4d4f80c729960776e1ca: + Key: 0.2 + Value: {R: 0.5, G: 0.5, B: 0.5, A: 0.25} + TangentType: Linear + bb31441c3997734baf5d4b324f145da1: + Key: 1.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + a788c7989777534fbc50541f7eebe631: !UpdaterForceField + InheritPosition: true + Position: {X: 0.0, Y: -1.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: true + FieldShape: !FieldShapeCylinder + HalfHeight: 1.0 + Radius: 1.0 + DisplayParticleRotation: true + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 1.0 + FalloffStart: 0.1 + StrengthOutside: 0.0 + FalloffEnd: 0.9 + EnergyConservation: 1.0 + ForceDirected: 0.0 + ForceVortex: 0.0 + ForceRepulsive: 4.0 + ForceFixed: {X: 0.0, Y: 8.0, Z: 0.0} + Base: + BasePartAsset: aac84dfd-95cb-4a1f-8b00-00e61427e600:Drones/Prefabs/RocketDrone + BasePartId: 67bf9668-b948-4e6a-8e59-ca5aebed6c09 + InstanceId: cd3d29c3-6924-47fd-a603-ec67d6f5f178 + - Entity: + Id: c78d6593-791d-4759-b3d0-90a9d2fc0f98 + Name: LaserFence_up + Components: + c8c633e320d799468ba2a8e339362d2d: !TransformComponent + Id: 4420248b-01d6-43cf-993e-0782642479d6 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3e4e674bd6ad2f439da54f92a29a7eec: !ModelComponent + Id: fb499ba8-932b-4344-b386-709601c87771 + Model: ca14aec1-3989-485c-84c0-5d0cbf5858f4:Gameplay/Models/LaserFence_up + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: e88381a2-6f10-476d-853f-56ea6884859f + InstanceId: 06de3e7a-88ad-4044-8ca6-ae36b136c028 + - Entity: + Id: c85bdb44-f02a-4607-b60e-b30cc2a0b229 + Name: LaserBeam + Components: + c2a61ac9cca3304c949c26193b0945c4: !TransformComponent + Id: 0aed58ae-9fc1-4373-9959-e543d5b4e82b + Position: {X: 0.5, Y: 2.5, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 9406e2b7130bca40c2c768f5946242ff: ref!! 96b7eb1d-84d1-4bb4-b96c-7ac1ade97641 + 5ee7f85c3fbac746b5c31e169615a5c7: !ParticleSystemComponent + Id: c4c262e3-01ca-4c1c-a353-6547dd176037 + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 0.121568628, B: 0.121568628, A: 1.0} + Speed: 6.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + f239db465dd7354bbc55100bd300b151: + EmitterName: sparks + ParticleLifetime: {X: 1.0, Y: 5.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + ba54a1971cd84340b5ba37f508a3bd2c: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 881873fa3d3a744db46ae3db16b7d133: + Key: 1.0 + Value: 0.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 150.0, Y: 150.0, Z: 150.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: null + ForceTexCoords: false + Spawners: + 946a1b5e1895434284c7dbdaa728c786: !SpawnerBurst + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 100 + Initializers: + 581d30af2592fb41a520efcb0f64656c: !InitialPositionParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: true + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: true + ParentControlFlag: Group00 + SeedOffset: 0 + PositionMin: {X: -0.5, Y: -0.1, Z: -0.1} + PositionMax: {X: 0.5, Y: 0.1, Z: 0.1} + 0460848851abf642879131d04c839872: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.3 + SeedOffset: 24 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.05, Y: 0.2} + cd410cf87ddf07449ea894f8b8cb5238: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.02, Y: -0.01, Z: -0.02} + VelocityMax: {X: 0.02, Y: 0.04, Z: 0.02} + 855cafaded1b164dab92516ac877abf5: !InitialColorParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ParentControlFlag: Group00 + SeedOffset: 0 + ColorMin: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + ColorMax: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Updaters: {} + eabed859a30c6f409b30f3e5fa9295b2: + EmitterName: LaserEmitter02 + MaxParticlesOverride: 10 + ParticleLifetime: {X: 0.2, Y: 0.2} + ShapeBuilder: !ShapeBuilderRibbon + SmoothingPolicy: None + Segments: 5 + TextureCoordinatePolicy: AsIs + TexCoordsFactor: 1.0 + UVRotate: + FlipX: false + FlipY: false + UVClockwise: Degree0 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 100.0, Y: 100.0, Z: 100.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: da9b119e-ce87-4f7b-a4cc-2e93b158f137:Textures/Gradation01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: !UVBuilderScroll + StartFrame: {X: 0.0, Y: 0.0, Z: 1.0, W: 1.0} + EndFrame: {X: 0.0, Y: 1.0, Z: 1.0, W: 2.0} + ForceTexCoords: false + Spawners: + 771c66d89d336449959f8c37915bdb0e: !SpawnerPerFrame + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 10.0 + Framerate: 60.0 + Initializers: + af1eef0c052b814ab025d0cbeb5ef838: !InitialPositionArc + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + Target: ref!! e8159be0-8e7a-426d-88ab-dfa9765fdcd3 + DisplayParticleRotation: true + DisplayParticleScale: false + FallbackTarget: {X: 0.0, Y: 0.0, Z: -1.0} + DisplayParticleScaleUniform: false + ArcHeight: 0.0 + Sequential: true + FixedLength: 0 + PositionMin: {X: 0.0, Y: 0.0, Z: 0.0} + PositionMax: {X: 0.0, Y: 0.0, Z: 0.0} + SeedOffset: 0 + 6d09f593db786145af6ba89f386f9b48: !InitialSpawnOrder + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + d1dbc13de4fdfd44a592f202d7bed600: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.5 + SeedOffset: 1 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.5, Y: 0.6} + Updaters: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: d0b8df39-fac2-48ce-bd8f-a2f847d3157d + InstanceId: 0b1e0f02-9118-4a45-ac60-d503b4882088 + - Entity: + Id: cc0e27d4-6d52-4853-a0ca-ac4d1460c7b4 + Name: LaserCylinder + Components: + 6565f891cdba2236dd5dbf1888a0f6e0: !TransformComponent + Id: 5254fcbc-00e2-4228-a785-8c36d0b2ff89 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: -0.707106769, W: 0.707106769} + Scale: {X: 1.0, Y: 10.0, Z: 1.0} + Children: {} + cec4407060699b5ddb4eeb6f5f980024: !ModelComponent + Id: 6ace46de-6db6-4849-86fb-c1a5a250c233 + Model: c11da5de-520a-4bd5-a691-5476b2a812e0:Gameplay/Models/Cylinder + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 30a095c2-8c9f-4cd2-9784-1ba35cc22331 + InstanceId: 0b1e0f02-9118-4a45-ac60-d503b4882088 + - Folder: Props + Entity: + Id: cd0148ba-b019-4ad3-892b-dd2675ff19a3 + Name: Crane_small + Components: + 0c58a93ff0b68a3b56e86f6ce23dcce2: !TransformComponent + Id: dfc122eb-8527-4589-b1d1-fd0a11f1692b + Position*: {X: -10.22581, Y: 0.0, Z: -14.9726677} + Rotation*: {X: 0.0, Y: 0.2572688, Z: 0.0, W: 0.9663399} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a77dc0a106dbb00f08f57927becc8e32: !ModelComponent + Id: 801573cb-1e8d-41f4-bd3d-89a207c9eca6 + Model: 6265c534-4bfd-45a2-879b-15aa84659e82:Environment/Props/Models/Crane_small + Materials: {} + 1b3a638d4d756e78a09cd85c91a67ded: !StaticColliderComponent + Id: df25c951-285a-4fb3-a1cb-f5db89125b83 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 8b852c3813cdeaaeebd7fa29686a6d8e: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 3.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 965145a08bbd93aa5abf3fb115c7c6dc: !CylinderColliderShapeDesc + Height: 4.0 + LocalOffset: {X: -0.5, Y: 5.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 00eb9a22-6040-4b56-936b-aef09a483897:Environment/Props/Prefabs/Crane_small + BasePartId: a8c3a236-cfd6-4880-a196-a0dd2a27cbee + InstanceId: e3d29a9e-ac25-4523-9ff7-8afec7ab0f2d + - Folder: Props + Entity: + Id: d37a4f0a-685c-4ff3-a3f6-3330987c68a1 + Name: box_2 + Components: + a4a1352c38d8d946adbd0a9eb22ecf7a: !TransformComponent + Id: e2c9f123-db4d-4fc8-bee3-1de456b47e05 + Position*: {X: -5.95367527, Y: 0.0, Z: -0.5957287} + Rotation*: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 7a4dfc02f3a9234aa72a05fb7a824816: !ModelComponent + Id: 34df9a89-8ebd-4715-85b0-85581d41f932 + Model: 41fc6c99-792b-46fe-942c-ef3763a2407a:Environment/Props/Models/Box2 + Materials: {} + d4b4d5f2d8369d46845444c61c1e61ec: !StaticColliderComponent + Id: 0a9af5e3-a1ce-4502-a3b4-bf9126ace605 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 82ea61f172e46a4aab7ce970e3a3f887: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.9, Y: 0.9, Z: 0.95} + LocalOffset: {X: 0.0, Y: 0.45, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 5246c639-719c-4380-a886-7bdfb16f5cbd:Environment/Props/Prefabs/Box2 + BasePartId: f0b73707-1f65-435f-a5ba-5c09ec4ef144 + InstanceId: f8292014-692e-4b31-84ea-b539c90e3a9f + - Folder: null + Entity: + Id: d81d5af2-17ff-49c4-8d0e-f7e98eb86e54 + Name: Vent + Components: + 649d145b5cd2d2498d83796837ab2e4c: !TransformComponent + Id: a31bda68-ba2a-49d1-82bb-1a8f706e6528 + Position: {X: 0.0, Y: 0.6601438, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.258819, W: 0.9659258} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 51f9a88cd6a06144a9c30a8efc81f0d6: !ModelComponent + Id: 29692fbe-0add-4e94-9945-4de792a3fdba + Model: 9ba50f3a-f535-4ad4-982d-ff342c69fce4:Environment/Props/Models/Vent + Materials: {} + 557237ad44bd2e4a9a6adfa72a07f828: !Starbreach.VFX.Fan,Starbreach + Id: 6654b729-3801-493b-8c2a-e177db7fd0f9 + RotationSpeed: 0.5 + VentLightModelComponent: ref!! 4621d5f8-6ba8-4b3d-ac45-828759d7fd76 + LightTexture: 2ed2808b-0693-4a27-8cd8-4cccd2d48a70:Environment/Props/Materials/Vent/Vent_inner_E + Base: + BasePartAsset: b5275603-ec75-4bf7-b9cd-6613fe69d2b9:Environment/Props/Prefabs/Vent + BasePartId: 08e72601-63eb-4dcb-989d-5c65552896e8 + InstanceId: 3d5ef5cb-474f-491c-9e93-88b63ce98d03 + - Folder: Props + Entity: + Id: d8f42d04-eff6-469e-88f9-df268230b1e0 + Name: box_1 + Components: + 809778ee97de74479d46b2b89cf3fd55: !TransformComponent + Id: dc58b62e-2518-431b-9ec5-52d7501163fc + Position*: {X: -4.71791935, Y: 0.0, Z: -0.838343441} + Rotation*: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 46d65c287ed37b419febba3f2fc9e168: !ModelComponent + Id: 7cc1758d-fe20-4b62-b275-7391c06c9671 + Model: 46441ab3-67fb-40d4-8b72-8dd1db5d988e:Environment/Props/Models/Box1 + Materials: {} + 97af1ceb4c685740b019dc46621ca5bd: !StaticColliderComponent + Id: 1b808f77-c5b7-4c6d-b4f6-4f7179a258bf + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 30ff71837d20084985383f3411cf2ed8: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.95, Y: 0.95, Z: 0.95} + LocalOffset: {X: 0.0, Y: 0.475, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b23b46aa-4d3f-45a8-ab4b-7c5a9e4d9d99:Environment/Props/Prefabs/Box1 + BasePartId: e8b2a223-8164-4e20-8309-f81a90ca09cc + InstanceId: e5e968a5-2e9d-4f6b-94db-def8ada749ec + - Folder: Gameplay + Entity: + Id: d91cf90e-c1fc-4905-b045-ade73892e575 + Name: Plate 2 + Components: + 08071919d94dd2aa1cbd5331e3e308a4: !TransformComponent + Id: 1296641e-0b9b-4a37-9efd-17df3d7d6fd5 + Position: {X: 5.237707, Y: 0.0, Z: -18.4983273} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + c71187869c40899c1d2f5d228be2b61d: ref!! 6f56468e-0af5-46cd-b504-665b1fe987a3 + - Entity: + Id: d963230e-4dcd-4f26-846c-903e0114fb55 + Name: LaserArc + Components: + 336f7ce982182944823955cce7f2b5ee: !TransformComponent + Id: d376f48f-fece-4d95-b5dc-bd3a7eda0cf1 + Position: {X: 0.5, Y: 1.75, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 6127bf25-0b62-4e22-863f-5009c2f77592 + InstanceId: e730f3a1-4679-4b07-8e24-a2480c988364 + - Folder: Props + Entity: + Id: db8bb68e-171e-454e-86ad-ece5f99a9681 + Name: ChargerBox + Components: + 6233de1d3246d8ee443a7cc14154fede: !TransformComponent + Id: 5592b388-93e0-48c1-ab96-2e6895dd3d9a + Position*: {X: -8.829119, Y: 0.4246651, Z: -33.8535652} + Rotation*: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + cc93fdaf96eee4a153bf4a38f4c86e0d: !ModelComponent + Id: 38c74ea7-cc32-4246-9f4e-e5bb45523bd6 + Model: 2b86e7b1-e218-412d-b66e-e0dc401dc02c:Environment/Props/Models/ChargerBox + Materials: {} + acc1f332e3f43a39559966a76640088e: !StaticColliderComponent + Id: a61c31aa-3af7-4505-8df5-2e7d19b19e37 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + d0fa990451422fe1b046a66deb9e749d: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.2, Y: 0.85, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 08fcbc00-0585-4d76-a76e-3aba715b89a2:Environment/Props/Prefabs/ChargerBox + BasePartId: 7801a3c6-6f59-4e5d-917d-5f838ed9f781 + InstanceId: da1a02e8-4412-4fca-b0bc-b024b261f978 + - Folder: null + Entity: + Id: db8ce8f2-f4d0-4f64-8005-74a2d62749b8 + Name: Tubes_base + Components: + 7cdd3b1a1396bae0df8d315686b47524: !TransformComponent + Id: 1887277b-a9a8-46e8-9fbf-5207e40a27ae + Position: {X: 0.0, Y: 0.0, Z: 3.15} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: -1.0} + Children: {} + 14c6a602fe3acc99031df8e58a62d2c8: !StaticColliderComponent + Id: 6fac9479-bf5a-448d-a216-13a356e62785 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 2f121f88c1f6896ca79a2939aa8a095c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.25, Z: 1.2} + LocalOffset: {X: 0.0, Y: 0.625, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 9a70c79d932274ae3d789c1b8e505eed: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 0.7, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.35, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + c693012fa2a7a493118f8d327a097904: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.6, Z: -0.3} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + ec075d7b9a08dd03f4591017a4bce1a2: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: -0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 7742036734daf5a2f5497973ad25733f: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: 0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 62e87c0b-15d8-4628-95c9-7880f4cf2fe1:Environment/Props/Prefabs/Tubes + BasePartId: 6b5a24fa-0d02-4afd-abf9-40cf450e9674 + InstanceId: 3609a9f4-231c-4436-8f29-e98bb32fc840 + - Entity: + Id: e2c9861b-03d8-42b1-89c9-50a0ebe3dd58 + Name: LaserFence_up + Components: + c8c633e320d799468ba2a8e339362d2d: !TransformComponent + Id: 6df203f4-7761-49d1-981d-21482f9a0165 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3e4e674bd6ad2f439da54f92a29a7eec: !ModelComponent + Id: c849b346-2a39-4323-93fa-713ccf1689e4 + Model: ca14aec1-3989-485c-84c0-5d0cbf5858f4:Gameplay/Models/LaserFence_up + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 2051137f-5c3e-4877-b418-d6730043e667 + InstanceId: e730f3a1-4679-4b07-8e24-a2480c988364 + - Entity: + Id: e387e3e6-6cca-45ed-bb1f-54b121591333 + Name: ProjectileSpawnPoint + Components: + ef320192025c3947bb1adb1c533630a6: !TransformComponent + Id: c20bb5a1-a722-4ca2-898b-f7690877b4e7 + Position: {X: 0.785251141, Y: 0.0, Z: 1.41112423E-07} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d3a20669d1ecb74791449a8d599302ad: !ModelNodeLinkComponent + Id: 210d1919-36d7-45cb-aa59-9d4fd0f6248b + Target: null + NodeName: Bone_turret + f2be80b1286b9c4495a77d23ce7fc8b5: !AudioEmitterComponent + Id: 12fb37da-55c4-4a69-a0c1-0c0140320a7f + Sounds: + 68142dcfca753ffa32191b0615d93ade~Fire0: bba0e27c-3fb8-4ce6-99be-bc45ea5e03a7:Drones/Sounds/LaserFire0 + ec7e82125fa39f9cd037e85363f7d40f~Fire1: 10ee8241-9a28-45b6-aba4-00c4c39106b6:Drones/Sounds/LaserFire1 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + Base: + BasePartAsset: aac85dfd-95cb-4a1f-8b00-00e61427e601:Drones/Prefabs/EnergyDrone + BasePartId: 92eafacb-5258-4c7b-8040-b4b6d2721043 + InstanceId: 7b70de62-56d2-4707-a468-af6485dac931 + - Entity: + Id: e54556eb-0ea2-4b77-ba0b-91c4c81cf602 + Name: LaserFence_Static (2) + Components: + f08afbc357f5790406844c92d0539513: !TransformComponent + Id: dd1e8a96-0f27-4c72-8a12-886d0459a3a7 + Position: {X: 3.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: -0.6, Y: 0.6, Z: 0.6} + Children: + 78f46892dc105a369fcd202c189df608: ref!! 8da475d8-acae-4cb5-b77a-7af0b59e3d88 + 5255162075021a6f951970991ca6608e: ref!! 6df203f4-7761-49d1-981d-21482f9a0165 + 536240f8fb1df6f999ea4a5d4ba7f1c1: ref!! d376f48f-fece-4d95-b5dc-bd3a7eda0cf1 + 75e86890a45d2bdc1ba0006f7998e13e: ref!! 5782f1df-60a0-4cc6-be52-2c583387121a + 20f48c676e388f5f82ad7dda1063ae2d: !StaticColliderComponent + Id: aef8cd0a-d299-4c5e-adfc-a53719d1e8ca + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 368adb9e6793798169337ef4de98022b: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 3.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 16d23f36-f4be-4509-9d47-60cb574be928 + InstanceId: e730f3a1-4679-4b07-8e24-a2480c988364 + - Folder: Platform + Entity: + Id: e5f0781c-ecfa-404d-a6f4-d95f57fb24bf + Name: PlatformColliders + Components: + c48e424ca2e4fc37349276bbdab86763: !TransformComponent + Id: b9429c32-4155-4141-8c92-cec77f0d1901 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 441fccc665c2c516c996b3a7491f68b9: !StaticColliderComponent + Id: 85c5970c-2ef9-470b-a009-b36769112b7f + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 4906c74063a934d9951dbfa2e4846883: !BoxColliderShapeDesc + Is2D: false + Size: {X: 4.0, Y: 2.0, Z: 2.0} + LocalOffset: {X: 4.5, Y: 0.0, Z: 4.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + b1d16dc5321ec3dbb6bab763e66515c4: !BoxColliderShapeDesc + Is2D: false + Size: {X: 10.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 10.0, Y: 0.0, Z: 1.5} + LocalRotation: {X: 0.0, Y: 0.284015357, Z: 0.0, W: 0.958819747} + 1eb04e2c0d51ffb177139bb8f9cd916e: !BoxColliderShapeDesc + Is2D: false + Size: {X: 13.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 10.5, Y: 0.0, Z: -5.5} + LocalRotation: {X: 0.0, Y: 0.870355666, Z: 0.0, W: 0.492423564} + dcf1cf0e779b93d41c26a73f2575b97c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 2.0, Z: 14.0} + LocalOffset: {X: 7.0, Y: 0.0, Z: -18.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + eba6f44f8e6210119581cda6ee90de1d: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 6.0, Y: 0.0, Z: -25.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 767546877380304b9b9dd65473f1e347: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 2.0, Z: 12.0} + LocalOffset: {X: 2.5, Y: 0.0, Z: -31.0} + LocalRotation: {X: 0.0, Y: 0.199367926, Z: 0.0, W: 0.9799247} + 0b6b44c30a18af73bd921c7522118606: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 2.0, Z: 3.0} + LocalOffset: {X: -0.6, Y: 0.0, Z: -37.5} + LocalRotation: {X: 0.0, Y: 0.342020124, Z: 0.0, W: 0.9396926} + 8bb468c41be0c10cd5166ce07b1ba3a5: !BoxColliderShapeDesc + Is2D: false + Size: {X: 36.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: -19.5, Y: 0.0, Z: -38.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + c80b2c68fd6c2575c25a478085c2f19d: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 2.0, Z: 3.0} + LocalOffset: {X: -37.5, Y: 0.0, Z: -36.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 855d20f4cd6dc744ba8a96c81ecdc9a2: !BoxColliderShapeDesc + Is2D: false + Size: {X: 5.0, Y: 2.0, Z: 2.0} + LocalOffset: {X: -5.0, Y: 0.0, Z: 4.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + d737211ddc9fd4adb2f17c7f2ce4e41f: !CylinderColliderShapeDesc + Height: 2.0 + Radius: 28.0 + LocalOffset: {X: -36.24559, Y: 0.0, Z: -1.89929652} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + bd62b30f70a2a1188f0d72520a17df5a: !CylinderColliderShapeDesc + Height: 2.0 + Radius: 28.0 + LocalOffset: {X: -34.8000526, Y: 0.0, Z: 0.4072678} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + - Folder: Props + Entity: + Id: e6c29391-d929-409e-9c08-05a80ccd7db1 + Name: GasPump + Components: + d547e8a3f1c2213a7ef3000c9e9dcd82: !TransformComponent + Id: 639fb95d-3e24-42f1-a343-2c8409df845a + Position*: {X: -0.38711524, Y: 0.0, Z: -35.0202065} + Rotation*: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3d7cef951a17c6ce8a6c46b67b395120: !ModelComponent + Id: 557b06fc-37fe-4bb3-9e9d-33382fac64c0 + Model: 83bd9601-ccff-4c98-b01a-f02691a402f0:Environment/Props/Models/GasPump + Materials: {} + a744edf4c69d852f6eb77a0c7a97200e: !StaticColliderComponent + Id: 7a5fb599-b0c1-40b1-a5b7-cb6cbb7a8805 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 3d6e4b33be85f99a428d29df41ace1a0: !CylinderColliderShapeDesc + Height: 5.3 + Radius: 1.1 + LocalOffset: {X: 0.0, Y: 2.65, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: c18756a2-9133-4046-9e4c-c267e063b021:Environment/Props/Prefabs/GasPump + BasePartId: 200140b7-8b11-43e8-bd95-b8ab5d0c57da + InstanceId: 4d1aa4cc-2696-432f-911a-50519947b7c0 + - Entity: + Id: e9874db0-01a7-49fd-8475-80524ce869f8 + Name: vfx-Engine + Components: + 585f08a4c7e8554391f68583881993a2: !TransformComponent + Id: 21c7e26d-b9f3-4920-843a-594d3ba50d2d + Position: {X: 0.0, Y: 0.2, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + c1ecc9674350ec47b258da4ab8ccf2ff: ref!! c23870a4-bf1a-486f-a8bf-b14406e38c8c + c141928df7725e448d9ee2d635345744: !AudioEmitterComponent + Id: 63088ea1-bcce-4f01-85ce-7f5d9553887f + Sounds: + 210c4fe5f3b4c243942a23a4b3f26e49~Engine: 1d4673e5-cfbf-45eb-a34f-6d0c93074702:Drones/Sounds/Engine0 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + Base: + BasePartAsset: aac84dfd-95cb-4a1f-8b00-00e61427e600:Drones/Prefabs/RocketDrone + BasePartId: e84e5acd-b1a3-43f4-9066-a3247f4be1e3 + InstanceId: cd3d29c3-6924-47fd-a603-ec67d6f5f178 + - Entity: + Id: ec6aa08e-3d0c-4f5e-b01d-21c2baf0a526 + Name: LaserCylinder + Components: + 6565f891cdba2236dd5dbf1888a0f6e0: !TransformComponent + Id: 96b7eb1d-84d1-4bb4-b96c-7ac1ade97641 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: -0.707106769, W: 0.707106769} + Scale: {X: 1.0, Y: 10.0, Z: 1.0} + Children: {} + cec4407060699b5ddb4eeb6f5f980024: !ModelComponent + Id: af765dd3-3340-4fb1-add7-67eb83749c2a + Model: c11da5de-520a-4bd5-a691-5476b2a812e0:Gameplay/Models/Cylinder + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 6072d1ec-0d92-4855-a83a-bacfa7acc501 + InstanceId: 0b1e0f02-9118-4a45-ac60-d503b4882088 + - Folder: null + Entity: + Id: ee1a8a14-8606-4558-801a-f133232d20ae + Name: Vent_base + Components: + c2bef31cda0c8543946d5092d2cc4382: !TransformComponent + Id: dcfba63b-f35b-4d4c-ac43-457a003ea6ba + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 74a44ff7b53fd347b1bc0108f4e39f53: !ModelComponent + Id: aa101872-f927-4144-8f9c-673ec68edbde + Model: 9fb440c2-5c68-4b4c-a1c1-fe92481dc4d4:Environment/Props/Models/Vent_base + Materials: {} + 06cf1aa272609644a75ae1164968be17: !StaticColliderComponent + Id: 5ce793ea-f3cc-4a13-90fa-4f6a2cd692c0 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 18cf11ad3eabc040ac2705991dacfea7: !CylinderColliderShapeDesc + Height: 1.4 + Radius: 0.9 + LocalOffset: {X: 0.0, Y: 0.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b5275603-ec75-4bf7-b9cd-6613fe69d2b9:Environment/Props/Prefabs/Vent + BasePartId: 94fd4929-dc17-406a-b101-7d999144f384 + InstanceId: 3d5ef5cb-474f-491c-9e93-88b63ce98d03 + - Entity: + Id: ef76390c-a9bd-48a8-b44f-77c8d74ff15a + Name: LaserFence_up + Components: + c8c633e320d799468ba2a8e339362d2d: !TransformComponent + Id: 37bca72c-84ca-43ab-b0e4-22aefe7dbf6a + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3e4e674bd6ad2f439da54f92a29a7eec: !ModelComponent + Id: bbddb6e8-a1c0-4a1f-b255-90645d4e5a66 + Model: ca14aec1-3989-485c-84c0-5d0cbf5858f4:Gameplay/Models/LaserFence_up + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: e88381a2-6f10-476d-853f-56ea6884859f + InstanceId: 0b1e0f02-9118-4a45-ac60-d503b4882088 + - Entity: + Id: f0035ba2-6a60-4205-885a-70c727b3b2fa + Name: Model + Components: + 7dad9d7cd55ced4abbf2cb2bbbd70c1a: !TransformComponent + Id: a07ec414-eedd-49c0-bdb8-1164f4bb66db + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + d719b2b339248f17748edd917f6bc9b2: ref!! c852aa07-f853-449b-8f2b-aaeca423107a + 827f49f9d5034b4acf8a8939110ddb8d: ref!! cf30280b-dda5-45d6-a40c-3ee76c98add4 + c212d189fcc79d46bbb83d892c85ce82: !ModelComponent + Id: fe1cd37b-dd96-4a65-8031-56240f12916f + Model: c1428709-fa5d-40a7-8e17-d2efb546bfef:Drones/Models/RocketDrone + Materials: + bff18010728c254c925bebf2f03be01b~0: 76636c37-5239-4cd3-ac8a-953e9e4d913e:Drones/Materials/Drone/DroneLower + bad52956f3fcbb45ac19f0a99abdf1d0~1: b91deeaf-43f6-434a-8400-22a1c6cb0447:Drones/Materials/Drone/DroneUpper + 8710bd731b44b446a6f9448a50fcd66b~2: b55d921d-b0d4-416f-85ad-2e1f468a1f7e:Drones/Materials/RocketDrone/RocketDrone + c123a40ea35064c3e5b77b9aaec447dc: !AnimationComponent + Id: bd040e92-0a16-4534-85a9-9fbf568756e7 + Animations: + a713ec907506354eb188aaba71f6039c~Fire: b476b79e-b408-4d80-8be5-e243b0355168:Drones/Animations/RocketDroneFire + 8df1171e0223014899b19b71b409f1b3~Idle: a980d9c8-1ff7-456c-87d6-312bb28c9a90:Drones/Animations/RocketDroneIdle + bcc277ca9a2ea247bf4ad6e427a787bf~Move: b3ba9abe-76d5-4580-8531-d1d1de2fc1ef:Drones/Animations/RocketDroneFly + Base: + BasePartAsset: aac84dfd-95cb-4a1f-8b00-00e61427e600:Drones/Prefabs/RocketDrone + BasePartId: ee748701-a6a0-4afd-b04c-ab208598af51 + InstanceId: 74c2afc1-c34a-4e31-8588-b107725c1594 + - Folder: Props + Entity: + Id: f395f468-bf64-4d3b-ae7e-f2a968f7395d + Name: ServerPad + Components: + 9cc2e85e539696db12c68eee89b22975: !TransformComponent + Id: 32fab0e1-e6bd-40ad-ae2b-d48e6c75b55b + Position*: {X: 3.5637207, Y: 0.0, Z: 2.03517652} + Rotation*: {X: 0.0, Y: 0.7081038, Z: 0.0, W: 0.7061084} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 5e41d1a6d51058f29a5a3bc92598c523: !ModelComponent + Id: f9112412-cd8f-4c77-aa76-c56e9439c1ca + Model: 5059af3d-ea9e-4027-8ccb-8f23dad0c063:Environment/Props/Models/ServerPad + Materials: {} + 14379b4b0534be9caba30c328363f241: !StaticColliderComponent + Id: 822dc4c6-2152-4d74-843b-4ecb6798d5e4 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 8715a3e62d75b1239fcd97f6036f90b4: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 1.0, Z: 1.6} + LocalOffset: {X: 0.0, Y: 0.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 4934e6045e93c470ed778353f6e18052: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.8, Y: 0.8, Z: 0.6} + LocalOffset: {X: 0.0, Y: 1.4, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 62552c0d-5f92-4a04-9cd7-fec7ca5d6e86:Environment/Props/Prefabs/ServerPad + BasePartId: 2f1b551e-174d-4545-890c-6dde16d947e2 + InstanceId: 1ea887ae-588e-4665-b991-a5ed38e2d664 + - Folder: Gameplay + Entity: + Id: f49abc2a-0104-44ff-8d1f-78332b441654 + Name: LaserFence_Barrier-1-2-3 + Components: + f8793a97e511d07b03ce5ff77e680a01: !TransformComponent + Id: cc15b711-7894-4bdc-b5b3-94c4a485da5c + Position: {X: -30.79835, Y: 0.0, Z: -34.3156128} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 960acb24b9f2bcb016e9f66e28f3c5ee: ref!! 5921e06c-7efb-43b2-8c05-74647cc611e4 + - Folder: Props + Entity: + Id: f565a058-b672-4413-87f1-88f4fcd22571 + Name: Generator + Components: + de0fb3707925efe900b58efb81c7ad0d: !TransformComponent + Id: 1601714d-5134-495c-af43-292f83c42d2d + Position*: {X: 0.8180721, Y: 0.0, Z: -27.2955265} + Rotation*: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 72403a3895b890f417b3890cc8f18086: !ModelComponent + Id: f62b1394-9c13-470b-b36a-9218f54936f1 + Model: 05ea29a9-fd0d-4b79-89c6-a2c1a305ceb1:Environment/Props/Models/Generator + Materials: {} + 987e2c0ee5606415e82190e656805745: !StaticColliderComponent + Id: 92ac6515-7ed0-4714-9665-fe125f757484 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 88599be37ebd4432d96d2d5886eab5ae: !CylinderColliderShapeDesc + Height: 6.0 + Radius: 2.0 + LocalOffset: {X: 0.0, Y: 3.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 6abfaba9bfb1775b361586d416b46ce9: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.2, Y: 0.5, Z: 1.25} + LocalOffset: {X: 0.0, Y: 0.25, Z: 2.625} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 12effa6c2bcdd1cb0a0d53cdb420a1aa: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.2, Y: 0.5, Z: 1.25} + LocalOffset: {X: 0.0, Y: 0.25, Z: -2.625} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 8e11d64a5d6c77764c2ed990d7cd5d58: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.25, Y: 0.5, Z: 0.2} + LocalOffset: {X: 2.625, Y: 0.25, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 1d9d570accf3112d0547dd60e94f27e2: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.25, Y: 0.5, Z: 0.2} + LocalOffset: {X: -2.625, Y: 0.25, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: bc63beb7-eb2f-4ddf-ada3-01dc3afb050e:Environment/Props/Prefabs/Generator + BasePartId: 6220a143-e8d6-4b49-aa8a-272b12a476d2 + InstanceId: c6499e90-1208-4516-b224-005a65096e9c + - Entity: + Id: f9590ca1-d7a9-4116-b8ad-b2acb5f6c19f + Name: vfx-Engine + Components: + 585f08a4c7e8554391f68583881993a2: !TransformComponent + Id: d3611400-a8ba-46e0-ae5e-15f3e5007aad + Position: {X: 0.0, Y: 0.2, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + c1ecc9674350ec47b258da4ab8ccf2ff: ref!! 369126c8-7243-4d71-b45a-9d7b8ebb5d23 + c141928df7725e448d9ee2d635345744: !AudioEmitterComponent + Id: f6b0b47c-8b56-49b3-a297-6d195f575a82 + Sounds: + 210c4fe5f3b4c243942a23a4b3f26e49~Engine: 1d4673e5-cfbf-45eb-a34f-6d0c93074702:Drones/Sounds/Engine0 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + Base: + BasePartAsset: aac85dfd-95cb-4a1f-8b00-00e61427e601:Drones/Prefabs/EnergyDrone + BasePartId: e84e5acd-b1a3-43f4-9066-a3247f4be1e3 + InstanceId: 7b70de62-56d2-4707-a468-af6485dac931 + - Entity: + Id: fb7485bf-7f43-4548-96e6-0d453cae5de7 + Name: Navigation bounding box + Components: + e0e8ad942bb048939e266ca4fd88d769: !TransformComponent + Id: ed1734cd-5e8a-4ed2-a6c4-42957d7e7c5c + Position: {X: -11.5, Y: 0.0, Z: -20.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 0.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c1a901325ffe4a19985ad5e4d1719f0e: !Xenko.Navigation.NavigationBoundingBoxComponent,Xenko.Navigation + Id: 992dfce3-af0f-4f26-9f38-dc99047af44e + Size: {X: 26.5, Y: 10.0, Z: 30.0} + - Folder: Gameplay + Entity: + Id: fd5a8bdc-d919-4458-b9ea-e070d0107d29 + Name: Plate 1 + Components: + a23ef04c5734504f64ff87b76942ef95: !TransformComponent + Id: ae5907a2-9087-4c1b-90c7-720fbc475b40 + Position: {X: -0.03522837, Y: 0.0, Z: -3.63728333} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 9170018133e53b91bb378bf718a06b40: ref!! 1cf608e7-06e6-422b-a98b-dbeaeb61605c diff --git a/Starbreach/Assets/Shared/Levels/Platform_1-3_NAV.xknavmesh b/Starbreach/Assets/Shared/Levels/Platform_1-3_NAV.xknavmesh new file mode 100644 index 0000000..cb5b6fc --- /dev/null +++ b/Starbreach/Assets/Shared/Levels/Platform_1-3_NAV.xknavmesh @@ -0,0 +1,18 @@ +!NavigationMeshAsset +Id: 82baba25-eddc-4983-a303-ef534133b0cc +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Scene: c19198c4-4894-4d04-bbad-e31a414da5d5:Levels/Platform_1-3 +IncludedCollisionGroups: DefaultFilter, StaticFilter, KinematicFilter, DebrisFilter, SensorTrigger, CharacterFilter, CustomFilter2, CustomFilter3, CustomFilter4, CustomFilter5, CustomFilter6, CustomFilter7, CustomFilter8, CustomFilter9, CustomFilter10 +BuildSettings: + CellHeight: 0.2 + CellSize: 0.3 + TileSize: 64 + MinRegionArea: 2 + RegionMergeArea: 20 + MaxEdgeLen: 12.0 + MaxEdgeError: 1.3 + DetailSamplingDistance: 6.0 + MaxDetailSamplingError: 1.0 +SelectedGroups: + 6fea2d7cdb7943dc81d7e38e25242626: 665dbfaa-d91a-ee40-d176-a5eaed1268bc diff --git a/Starbreach/Assets/Shared/Levels/Platform_1-4.xkscene b/Starbreach/Assets/Shared/Levels/Platform_1-4.xkscene new file mode 100644 index 0000000..ef14fe8 --- /dev/null +++ b/Starbreach/Assets/Shared/Levels/Platform_1-4.xkscene @@ -0,0 +1,6765 @@ +!SceneAsset +Id: 9dede2cf-fbc3-4f47-b9e3-31cd2650e3e4 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +ChildrenIds: [] +Parent: 6224d747-48a6-4736-a199-27785b9b7c3b:Levels/MainScene +Offset: {X: -65.5, Y: 0.0, Z: -124.9} +Hierarchy: + RootParts: + - ref!! ae911271-6282-4ea3-bf4f-bd83fe5c3e3b + - ref!! a38b3467-7bc0-443e-b90e-8ed75e25ab8f + - ref!! 8a1ca1ef-567f-4e4e-81f7-4d2ebb8c06c7 + - ref!! fc13159a-c2e7-4f47-a421-6c545f1ec422 + - ref!! 0a75c524-fbd4-46bd-aeeb-76482c10cd58 + - ref!! e1e7c11c-e0c1-4ec0-ad95-82fd9b4a4b66 + - ref!! 0ab98fde-1b3a-4346-af1c-cdd82cfdf7b0 + - ref!! 020c204f-875e-4559-b0d1-2086fdb9a66e + - ref!! 08d75fa2-0ff5-46a7-8c43-587ab55ef7bc + - ref!! 70347026-b3da-4313-857e-68d8db960477 + - ref!! daac6a41-736f-4ac9-ac8d-b3101d27a42e + - ref!! 7f631995-f984-4a9d-a88d-38c3ac9d11e0 + - ref!! 646b07f6-9faf-4a28-bec1-f917dc6c1cef + - ref!! 126e9db5-c7cc-4512-ae8b-ee62445ab86a + - ref!! 4a039557-1252-4ad3-baec-5af63d9716b7 + - ref!! 44f713ac-06ee-4725-8726-8a5af4c0b184 + - ref!! 56ad9e03-a770-4654-b15f-9a5b1fcb57cc + - ref!! fe0ac872-e303-4a4a-a50a-45a546a253e5 + - ref!! 8687d529-0ec1-4b2c-9f71-d88469bc40cf + - ref!! ee504509-b899-4144-a0ea-1ac76cf35152 + - ref!! 474a070d-b55e-4a04-b849-3f495430a8ab + - ref!! 07a8afbc-9f1f-41c3-a421-674d4fa3e95c + - ref!! c475a347-3620-488e-9c3b-5da75a4c3e06 + - ref!! 0a18efa1-bb77-4d3a-bae1-e2fc77673630 + - ref!! 9b9aa479-c992-475c-a331-165907e85618 + - ref!! 8bef4ca8-720b-403c-a1bd-e331f2dd28f2 + - ref!! 3729087d-f9e8-4bda-98da-50c1cd1f4fa3 + - ref!! 36fab3ff-8631-419e-85d6-7032045a4112 + - ref!! 68a42225-e9fc-4bf3-9349-b68d39a0d827 + - ref!! 8e34d161-892d-4c3b-b704-871b36cb482b + - ref!! 39bba4e9-af7b-4342-8dc4-a89351f29fcd + - ref!! 3aaf75fa-91f5-486a-af90-ab11b9877721 + - ref!! fc134bdc-d983-43f9-b4d4-82b223df5020 + - ref!! edd51f25-20bc-457b-86f0-1d7e35e33bd2 + - ref!! 08492f68-2638-48fb-9b6c-a01f5540995e + - ref!! e4c89f4a-fb37-4033-97c7-f9411b023138 + - ref!! 7e57928d-5166-4bdc-a383-a32319ff3c02 + - ref!! 601e5103-de15-4d50-ada3-d8ad117ba857 + - ref!! 7d118322-49ca-4b0b-baa6-9a00d7eac8e2 + - ref!! 783c14c8-91ce-4e17-831a-0704644602eb + - ref!! 3c768215-289c-4acb-af5a-0d21050f5483 + - ref!! c946ac0e-a58b-47ab-adfa-340717051ee3 + - ref!! e9849783-d529-42a6-ba80-ddaa0e3087f3 + - ref!! fc1f63a6-9559-4d9e-a166-b0482a54f3a4 + - ref!! 5b4e0aac-367c-459d-b68d-ca49e3ea0e55 + - ref!! c3f2e2b7-93ed-4278-9da5-c496a0c4e4f3 + - ref!! b9d650a1-fc18-448e-bcca-24a45942cd5b + - ref!! d554ec55-e0ab-4802-8887-5101d468fc9c + - ref!! bd38eaab-3cef-4ca4-b63a-c0d2bc6b1432 + - ref!! 52968a0a-ea91-4a53-852f-5b06a38533d3 + - ref!! 7b3b7062-4b53-40dc-8150-9699f28159d5 + - ref!! 4995a3b4-079e-44dc-aee6-f566f572d952 + - ref!! de4980cc-86bf-46cf-841f-b55aad6a9e73 + - ref!! 794a0ca3-6682-44fb-924e-c2d4d4cab5e3 + - ref!! 0d6aa292-93d4-499b-9fb8-d47590669e09 + - ref!! 49b8cb53-3ab4-4521-afa5-d1d758e4a396 + - ref!! 4ee64e82-41f7-422a-bbf3-5bdbe058f688 + - ref!! 743e528d-d9d9-49b2-b773-982e9a388035 + Parts: + - Entity: + Id: 01b41a3e-48d7-4f79-acef-c8537b4ea9cd + Name: LaserCylinder + Components: + 6565f891cdba2236dd5dbf1888a0f6e0: !TransformComponent + Id: 8fcf8111-ca5a-4246-b532-41b62a9b2d78 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: -0.707106769, W: 0.707106769} + Scale: {X: 1.0, Y: 10.0, Z: 1.0} + Children: {} + cec4407060699b5ddb4eeb6f5f980024: !ModelComponent + Id: 90cea9bc-964d-451e-a4c8-f4fe43c306f1 + Model: c11da5de-520a-4bd5-a691-5476b2a812e0:Gameplay/Models/Cylinder + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 30a095c2-8c9f-4cd2-9784-1ba35cc22331 + InstanceId: 8b7adf3d-a4b5-4ccc-8b1d-df62591c48d1 + - Folder: Props + Entity: + Id: 020c204f-875e-4559-b0d1-2086fdb9a66e + Name: DataSwitcher + Components: + ec3ee182ea7a0c1b20b9962a69b81666: !TransformComponent + Id: 93839dab-b7ef-4725-ae14-cae6d1e0fe8b + Position*: {X: 4.26325641E-14, Y: 0.0, Z: -8.5} + Rotation*: {X: 0.0, Y: 0.7071067, Z: 0.0, W: -0.7071068} + Scale*: {X: 0.5, Y: 0.5, Z: 0.5} + Children: {} + 30a5b8bb417210df31819b03c22e9bb4: !ModelComponent + Id: 51452aab-37b2-405c-a54b-6a59274c9089 + Model: 87c540c8-80aa-4d46-a28f-6f99109347f6:Environment/Props/Models/DataSwitcher + Materials: {} + 726c862c3e01529c1975b308e9ee07f4: !StaticColliderComponent + Id: be9fe917-fece-4d4f-8768-296b84ff132f + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 3c185efd0ffe017392955bb13e2b575c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 7.0, Z: 2.0} + LocalOffset: {X: 0.0, Y: 3.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + a3452e015314c275217bf6b46bc100a4: !CylinderColliderShapeDesc + Radius: 1.0 + LocalOffset: {X: 0.0, Y: 0.5, Z: -2.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 18a16e3d-5140-4db4-85a5-cd34e4fe1640:Environment/Props/Prefabs/DataSwitcher + BasePartId: bde5e4a6-c956-4cfd-9fa5-4f689c001ab2 + InstanceId: bca918f3-7c18-4041-93d9-91cc751bd41b + - Folder: null + Entity: + Id: 0564f439-a383-40bc-b64d-a134ccc58a71 + Name: PlatformRocks1 + Components: + dd43820955f856895d010ca56947a308: !TransformComponent + Id: 705293d3-6382-47ee-9f97-0d7cfe1caa6e + Position: {X: 1.90056992, Y: -1.5, Z: 2.47416544} + Rotation: {X: 0.0, Y: -0.803857, Z: 0.0, W: 0.5948226} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 2149de4d6c83774900fa431c4d3434fa: !ModelComponent + Id: e0cfe95a-ab0f-409d-92fa-9c05d94f4355 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + - Folder: Props + Entity: + Id: 07a8afbc-9f1f-41c3-a421-674d4fa3e95c + Name: box_1 + Components: + 809778ee97de74479d46b2b89cf3fd55: !TransformComponent + Id: aa4bc429-a94e-4be3-ac9a-f19ecc1a2b09 + Position*: {X: -29.57431, Y: 0.0, Z: -13.6155548} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + 46d65c287ed37b419febba3f2fc9e168: !ModelComponent + Id: 85583cce-101c-48bf-9da1-78520da10f65 + Model: 46441ab3-67fb-40d4-8b72-8dd1db5d988e:Environment/Props/Models/Box1 + Materials: {} + 97af1ceb4c685740b019dc46621ca5bd: !StaticColliderComponent + Id: 5a029429-1cea-4f2e-9ccb-f87d0e28fc5e + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 30ff71837d20084985383f3411cf2ed8: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.95, Y: 0.95, Z: 0.95} + LocalOffset: {X: 0.0, Y: 0.475, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b23b46aa-4d3f-45a8-ab4b-7c5a9e4d9d99:Environment/Props/Prefabs/Box1 + BasePartId: e8b2a223-8164-4e20-8309-f81a90ca09cc + InstanceId: d7a38405-3e91-4d9d-8284-f56abb03e901 + - Entity: + Id: 0828bab6-b452-4f84-8722-d8169c322b15 + Name: Steam + Components: + c1ecc9674350ec47b258da4ab8ccf2ff: !TransformComponent + Id: a5c4df49-31b2-4c12-986a-ff28d39db6dd + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8323bf5daa524c4fb5d833e41b08b32d: !ParticleSystemComponent + Id: 97aaeb98-e707-4dc5-bf41-e2b3cd5f7361 + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed*: 0.15 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + 9a3a5271a4a0934d9467f6b095793379: + ParticleLifetime: {X: 0.5, Y: 0.5} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 0383cd796e839e4b9667af5d0fe71756: + Key: 0.0 + Value: 0.2 + TangentType: Linear + 3c3bf45d6e50e542871470a99fdfd9f3: + Key: 0.3 + Value: 0.5 + TangentType: Linear + aa6cd07e77ba1c4da6e836dff7b31695: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: null + Material*: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild*: !ComputeFloat4 + Value: {X: 5.0, Y: 5.0, Z: 5.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8dbe2382-769c-45fe-9604-98c5ae5c434c:Textures/SMO001_3 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + fa12c9550522c24fa400d8ce84ef83a0: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 50.0 + Initializers: + 3994a4c9897c7049af5217d699e668a9: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.4, Y: 0.5} + 7fa5fb2d4e692c4aae5cda5ce081ca44: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: 0.0, Y: 0.0, Z: 0.0} + PositionMax: {X: 0.0, Y: 0.0, Z: 0.0} + Interpolate: false + 3d037e54f2051d42a511f75567a2d5eb*: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin*: {X: -0.05, Y: 2.0, Z: -0.05} + VelocityMax*: {X: 0.05, Y: 3.0, Z: 0.05} + d4d112e1ace7b944828fa9278f3938e1: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + Updaters: + 226c0f6bc8f05441a0eb6454e9f89045: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 82276cc03e3f854b9dc5c50ece2e25f9: + Key: 0.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + e3927f1e92cb4d4f80c729960776e1ca: + Key: 0.2 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.5} + TangentType: Linear + bb31441c3997734baf5d4b324f145da1: + Key: 1.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + Base: + BasePartAsset: 7e583813-c264-4c77-bb7f-23f0f609968d:VFXPrefabs/vfx-Steam + BasePartId: 39e6666d-d2d1-49c3-8f0e-31f321ca5b12 + InstanceId: 39efb2af-c11d-4aed-9f3a-e03220d444d3 + - Folder: Props + Entity: + Id: 08492f68-2638-48fb-9b6c-a01f5540995e + Name: Small_Wall + Components: + b169bb0a28fc365afeac43ee8f183ee6: !TransformComponent + Id: 8aa0d377-32ef-47ff-81b1-05cdac190622 + Position*: {X: -23.0, Y: 0.0, Z: 3.00000024} + Rotation*: {X: 0.0, Y: -1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 07ce1731b5c55346319dfe8de1941a66: !ModelComponent + Id: 389ecfd9-fa79-43fc-91a8-203835c43e67 + Model: 5d139f33-5b0c-4e35-ab70-78b928020552:Environment/Walls/PrefabModels/Small_Wall + Materials: {} + f67e43e13ee3fb89abc0bbaba3837c37: !StaticColliderComponent + Id: c1ec53f3-2608-46f5-b2be-041a2a8146ec + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + c40463507837835195777deb473f14de: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 1.5, Y: 1.0, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 76617c83803d5680acec68f22ab9ee48: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 0.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + a6227beb392d58cacc21431aa494be07: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 2.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + Base: + BasePartAsset: 35e9585d-5854-46bb-806b-d343b98a6b93:Environment/Walls/Prefabs/Small_Wall_Grouped + BasePartId: cfe6176c-8d73-4ab9-8cd5-43229726c1ff + InstanceId: a85b4192-7a7e-4fc1-9ef8-549e9b5e3411 + - Folder: Props + Entity: + Id: 08d75fa2-0ff5-46a7-8c43-587ab55ef7bc + Name: Vent + Components: + 9385595b1d62aa4bb2b4c469cfe0c781: !TransformComponent + Id: 5b598593-621d-4baa-b2b4-c469cfe0c781 + Position*: {X: -24.50764, Y: 0.0, Z: 1.41317368} + Rotation*: {X: 0.0, Y: 0.99999994, Z: 0.0, W: 0.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + fef582b5ce88153fe16e0207caff2767: ref!! 1cf3bec2-0cda-4385-946d-5092d2cc4382 + ad7e16aa5036ddb39dd344dbe2453ee0: ref!! ba4da222-0a15-4b47-bd0c-cf1a1909a4a2 + 1200685bbff2fe1e5c49bf133a5e169b: ref!! 5b149d64-d25c-49d2-8d83-796837ab2e4c + b506b0ff932d7e6f0853bd4acef69b6c: ref!! 03499c42-7aba-4665-9b93-87cec7e7ab78 + Base: + BasePartAsset: b5275603-ec75-4bf7-b9cd-6613fe69d2b9:Environment/Props/Prefabs/Vent + BasePartId: 5c398975-e1e7-4877-af93-881930263e94 + InstanceId: 3aa6b2cc-b25e-4d81-a018-00d3cd887de6 + - Folder: Props + Entity: + Id: 0a18efa1-bb77-4d3a-bae1-e2fc77673630 + Name: box_2 + Components: + a4a1352c38d8d946adbd0a9eb22ecf7a: !TransformComponent + Id: 37304ff4-efca-4756-a0cc-7af6e1594449 + Position*: {X: -28.1892357, Y: 0.0, Z: -11.6155548} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + 7a4dfc02f3a9234aa72a05fb7a824816: !ModelComponent + Id: 383d4745-870f-45b2-b5e4-946817948289 + Model: 41fc6c99-792b-46fe-942c-ef3763a2407a:Environment/Props/Models/Box2 + Materials: {} + d4b4d5f2d8369d46845444c61c1e61ec: !StaticColliderComponent + Id: 3d353d12-0240-4efd-8ec8-fd19412ffe7d + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 82ea61f172e46a4aab7ce970e3a3f887: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.9, Y: 0.9, Z: 0.95} + LocalOffset: {X: 0.0, Y: 0.45, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 5246c639-719c-4380-a886-7bdfb16f5cbd:Environment/Props/Prefabs/Box2 + BasePartId: f0b73707-1f65-435f-a5ba-5c09ec4ef144 + InstanceId: cc5d512e-7746-4fa9-97a7-8e19f10cee9d + - Folder: Props + Entity: + Id: 0a75c524-fbd4-46bd-aeeb-76482c10cd58 + Name: Tubes_base + Components: + 7cdd3b1a1396bae0df8d315686b47524: !TransformComponent + Id: cc2d1d25-48ee-4fec-96ae-2557559eed43 + Position*: {X: -0.5076598, Y: 0.0, Z: -10.5868063} + Rotation*: {X: 0.0, Y: 0.99999994, Z: 0.0, W: 0.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 4d4296f2a30a764d9d8fe6bea949fb8e: !ModelComponent + Id: 3d679303-ca1d-4a06-8e50-1c7b9fc022aa + Model: 734077ff-795c-4d1b-9f8c-688d142c4007:Environment/Props/Models/Tubes_base + Materials: {} + 14c6a602fe3acc99031df8e58a62d2c8: !StaticColliderComponent + Id: 41b92af8-4d01-46d7-88fa-10f32866da50 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 2f121f88c1f6896ca79a2939aa8a095c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.25, Z: 1.2} + LocalOffset: {X: 0.0, Y: 0.625, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 9a70c79d932274ae3d789c1b8e505eed: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 0.7, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.35, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + c693012fa2a7a493118f8d327a097904: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.6, Z: -0.3} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + ec075d7b9a08dd03f4591017a4bce1a2: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: -0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 7742036734daf5a2f5497973ad25733f: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: 0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: a9eaf641-84b9-4fe0-bb15-bc2c8a67319b:Environment/Props/Prefabs/Tubes_base + BasePartId: e5249e5a-b18b-46fe-96f1-6f11a587b647 + InstanceId: d996e211-f2f7-4bce-879a-e2923d38ee2f + - Folder: Props + Entity: + Id: 0ab98fde-1b3a-4346-af1c-cdd82cfdf7b0 + Name: DataSwitcher + Components: + ec3ee182ea7a0c1b20b9962a69b81666: !TransformComponent + Id: aca8912b-7a2c-45dc-8422-a8788d93b659 + Position*: {X: 2.13162821E-14, Y: 0.0, Z: -7.0} + Rotation*: {X: 0.0, Y: 0.7071067, Z: 0.0, W: -0.7071068} + Scale*: {X: 0.5, Y: 0.5, Z: 0.5} + Children: {} + 30a5b8bb417210df31819b03c22e9bb4: !ModelComponent + Id: 2a8a9317-594d-486b-99f8-178838a74383 + Model: 87c540c8-80aa-4d46-a28f-6f99109347f6:Environment/Props/Models/DataSwitcher + Materials: {} + 726c862c3e01529c1975b308e9ee07f4: !StaticColliderComponent + Id: 07e90547-dbd5-43e4-96ed-8453f48a821b + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 3c185efd0ffe017392955bb13e2b575c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 7.0, Z: 2.0} + LocalOffset: {X: 0.0, Y: 3.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + a3452e015314c275217bf6b46bc100a4: !CylinderColliderShapeDesc + Radius: 1.0 + LocalOffset: {X: 0.0, Y: 0.5, Z: -2.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 18a16e3d-5140-4db4-85a5-cd34e4fe1640:Environment/Props/Prefabs/DataSwitcher + BasePartId: bde5e4a6-c956-4cfd-9fa5-4f689c001ab2 + InstanceId: a3c629ba-8650-4507-8e04-d2328d821446 + - Folder: Gameplay + Entity: + Id: 0d6aa292-93d4-499b-9fb8-d47590669e09 + Name: Drone + Components: + bee1416b5e2d304389e20936f750b8b1: !TransformComponent + Id: 1f9444f4-db05-493d-b12d-58d98eb8e246 + Position*: {X: -28.781868, Y: 0.0, Z: -2.16256332} + Rotation*: {X: 0.0, Y: 0.99999994, Z: 0.0, W: 0.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 68b08d6ef4327063ddfe04b67a961aae: ref!! 40b2e072-3d18-41f1-b566-ba36c9eb5dfb + 963458a2c6c68927d38fec6a605500fa: ref!! 0beecaa8-bc1d-4767-baf1-7f32122fbb60 + aed3e642d5d71f48bdf23181156082f9: !CharacterComponent + Id: d8d05bc9-6078-42ac-8ef6-ef515fb7f089 + CollisionGroup: CustomFilter3 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + FallSpeed: 10.0 + MaxSlope: {Radians: 0.7853982} + JumpSpeed: 5.0 + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + ColliderShapes: + d27547538ff5dd4eb72e1d385d4862bd: !CylinderColliderShapeDesc + Height: 2.0 + Radius: 1.0 + LocalOffset: {X: 0.0, Y: 1.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 827cf65eb5dca148adaa7ef5bc60df35: !AudioEmitterComponent + Id: 446b60fc-e49a-4f46-a423-d0b30f017e1d + Sounds: + 9f0d8aaa3fc06a44bae1c6cff7aeef58~Death: 4c9333d4-d4d5-4f61-9390-6b2e2602cf1b:Drones/Sounds/Death + 062488fbcb22f344b134f663d4a59ff9~Explosion: 936a2dbe-31df-40cc-836b-18793ffcea22:Drones/Sounds/Explosion + 762f069faf274a408a2da257ca0f4736~Hit0: 732e562c-622b-4fff-8282-58a7efa0b204:Drones/Sounds/Hit0 + ba953638f1e5db4d852167189517624d~Hit1: 973a4551-7cd6-4b8d-8a53-5a61ca9e461b:Drones/Sounds/Hit1 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + c7262ebf0d468f43ba11ca1221215c08: !NavigationComponent + Id: 3e66daee-c468-4530-a247-1299333f7c6d + NavigationMesh*: cfed2a24-078a-4f6b-b086-27f1eb667e14:Levels/Platform_1-4_NAV + GroupId: 665dbfaa-d91a-ee40-d176-a5eaed1268bc + 238e55139b0b248973a65b6ba75f8d54: !Starbreach.Drones.Drone,Starbreach + Id: c8f43556-ec84-4fd8-86e9-c63d4601e720 + Priority: 4000 + Weapon: !Starbreach.Drones.MissileDroneWeapon,Starbreach + ProjectileSpawnPoint: ref!! d5140e70-3533-4405-a638-eb5f2203b50d + ReloadTime: 2.0 + ArraySize: {X: 3, Y: 3} + ArrayExtent: {X: 0.5, Y: 0.4} + MaximumRange: 20.0 + ProjectilePrefab: 35063ac9-350d-4c96-b28a-28abc68b4214:Drones/Prefabs/Rocket + AnimationDelay: 0.12 + SpreadAngle: {Radians: 0.1} + ShootingRange: 15.0 + MaximumSpeed: 1.5 + RotationSpeed: 6.283185 + HeadRotationSpeed: 6.283185 + Model: ref!! 7fb682e7-6697-4825-89d8-1548568cf1c7 + DefaultMaterial: b91deeaf-43f6-434a-8400-22a1c6cb0447:Drones/Materials/Drone/DroneUpper + AlertedMaterial: 70cfa151-cffc-4cf1-a0d5-2ac4ac94e4a6:Drones/Materials/Drone/DroneUpper_Alerted + EngineParticle: ref!! ac936d73-0e52-40e1-bfe0-41c07b3549ba + EngineAudioEmitter: ref!! 52711f4e-e8ba-495c-b859-083f87b1f0e4 + DroneExplosionPrefab: d1f82cfd-900e-4757-958c-1dd35a4ec775:Drones/Prefabs/DroneExplosion + e3d3d4a2c9c5e7676d484a7a5a41d498: !Starbreach.Drones.PatrollingDroneController,Starbreach + Id: 7c3aa625-5d9c-499f-9647-0501b0ed7fc5 + PathToFollow: null + ChaseAlertZoneRadius: 20.0 + IdleAlertZoneRadius: 15.0 + AlertZoneTriggerEntity: ref!! 2fc85d23-96c9-4229-b230-f9150aa25562 + Base: + BasePartAsset: aac84dfd-95cb-4a1f-8b00-00e61427e600:Drones/Prefabs/RocketDrone + BasePartId: fb95e431-53b2-4f1b-b194-74a16c023eef + InstanceId: 5028955a-58dc-402e-bd27-33135e096080 + - Entity: + Id: 0dec5c3a-884f-4506-820f-0fc2fc5c0bc5 + Name: Level_1-1_PlatformRocks + Components: + 6d373ab38682d148943d49f345bcf0df: !TransformComponent + Id: 756b86ab-eb18-41d4-bba9-4e43c7c3e79a + Position: {X: -17.0, Y: 0.0, Z: -20.0000019} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 0.9} + Children: {} + fffe65a205a24dd6c45bfeb55f3895ed: !ModelComponent + Id: 646d3c79-ac8d-4681-bcc0-d14e1b8f3da7 + Model: dfe97702-4103-44f9-91eb-7fedc0a5f2fc:Levels/PrefabModels/Level_1-1_PlatformRocks + Materials: {} + - Folder: null + Entity: + Id: 10054260-04ba-49cc-9543-e09580e1420a + Name: LargePillar + Components: + bd2015d36b46e16cc231215e719a3104: !TransformComponent + Id: e30ca3cf-5429-4d4e-ad53-2fa43b947704 + Position: {X: -24.5000038, Y: 3.0, Z: -30.4999981} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 106f6ebf350e9d18de7e2f304a6a107e: !ModelComponent + Id: 65ab8b39-8804-41d9-ab59-a902a443ea6e + Model: 258dfd07-ef55-4f3e-a0a8-afc05e4ca37b:Environment/Platforms/Models/LargePillar + Materials: {} + - Entity: + Id: 10f57a57-8d3e-43af-b5b6-0d4de375456d + Name: vfx-Steam + Components: + 777d3567c93a6eeed44d2e51035db757: !TransformComponent + Id: 5f27e80c-0657-490d-8915-217774ff4163 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 4.0, Y: 4.0, Z: 4.0} + Children: + 315debc2ba806228bdd531cd3237a07e: ref!! a5c4df49-31b2-4c12-986a-ff28d39db6dd + - Folder: Props + Entity: + Id: 126e9db5-c7cc-4512-ae8b-ee62445ab86a + Name: box_1 + Components: + 809778ee97de74479d46b2b89cf3fd55: !TransformComponent + Id: ee789780-de97-4774-9d46-b2b89cf3fd55 + Position*: {X: -16.77278, Y: 0.0, Z: -11.2359371} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + 46d65c287ed37b419febba3f2fc9e168: !ModelComponent + Id: 285cd646-d37e-417b-9feb-ba3f2fc9e168 + Model: 46441ab3-67fb-40d4-8b72-8dd1db5d988e:Environment/Props/Models/Box1 + Materials: {} + 97af1ceb4c685740b019dc46621ca5bd: !StaticColliderComponent + Id: eb1caf97-684c-4057-b019-dc46621ca5bd + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 30ff71837d20084985383f3411cf2ed8: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.95, Y: 0.95, Z: 0.95} + LocalOffset: {X: 0.0, Y: 0.475, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b23b46aa-4d3f-45a8-ab4b-7c5a9e4d9d99:Environment/Props/Prefabs/Box1 + BasePartId: e8b2a223-8164-4e20-8309-f81a90ca09cc + InstanceId: 3911355f-5f2f-4e0f-91c4-c464be1b08d6 + - Entity: + Id: 12974fcd-ee65-4a89-b291-1806ab211d7e + Name: LaserBeam + Components: + c2a61ac9cca3304c949c26193b0945c4: !TransformComponent + Id: ae9b5888-a93f-43d7-a32b-cab39b4d3941 + Position: {X: 0.5, Y: 1.75, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + fe89fc524a7b9ae686e1c8c7bf6e603c: ref!! 8fcf8111-ca5a-4246-b532-41b62a9b2d78 + 5ee7f85c3fbac746b5c31e169615a5c7: !ParticleSystemComponent + Id: bf71f12a-7df9-49d7-ac6b-e391f8d9faf0 + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 0.125490189, B: 0.125490189, A: 1.0} + Speed: 6.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + f239db465dd7354bbc55100bd300b151: + EmitterName: sparks + ParticleLifetime: {X: 1.0, Y: 5.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + ba54a1971cd84340b5ba37f508a3bd2c: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 881873fa3d3a744db46ae3db16b7d133: + Key: 1.0 + Value: 0.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 150.0, Y: 150.0, Z: 150.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: null + ForceTexCoords: false + Spawners: + 946a1b5e1895434284c7dbdaa728c786: !SpawnerBurst + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 100 + Initializers: + 581d30af2592fb41a520efcb0f64656c: !InitialPositionParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: true + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: true + ParentControlFlag: Group00 + SeedOffset: 0 + PositionMin: {X: -0.5, Y: -0.1, Z: -0.1} + PositionMax: {X: 0.5, Y: 0.1, Z: 0.1} + 0460848851abf642879131d04c839872: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.3 + SeedOffset: 24 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.05, Y: 0.2} + cd410cf87ddf07449ea894f8b8cb5238: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.02, Y: -0.01, Z: -0.02} + VelocityMax: {X: 0.02, Y: 0.04, Z: 0.02} + 855cafaded1b164dab92516ac877abf5: !InitialColorParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ParentControlFlag: Group00 + SeedOffset: 0 + ColorMin: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + ColorMax: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Updaters: {} + eabed859a30c6f409b30f3e5fa9295b2: + EmitterName: LaserEmitter02 + MaxParticlesOverride: 10 + ParticleLifetime: {X: 0.2, Y: 0.2} + ShapeBuilder: !ShapeBuilderRibbon + SmoothingPolicy: None + Segments: 5 + TextureCoordinatePolicy: AsIs + TexCoordsFactor: 1.0 + UVRotate: + FlipX: false + FlipY: false + UVClockwise: Degree0 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 100.0, Y: 100.0, Z: 100.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: da9b119e-ce87-4f7b-a4cc-2e93b158f137:Textures/Gradation01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: !UVBuilderScroll + StartFrame: {X: 0.0, Y: 0.0, Z: 1.0, W: 1.0} + EndFrame: {X: 0.0, Y: 1.0, Z: 1.0, W: 2.0} + ForceTexCoords: false + Spawners: + 771c66d89d336449959f8c37915bdb0e: !SpawnerPerFrame + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 10.0 + Framerate: 60.0 + Initializers: + af1eef0c052b814ab025d0cbeb5ef838: !InitialPositionArc + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + Target: ref!! 248bd911-35cf-4e5d-ae66-36b96c16b3d0 + DisplayParticleRotation: true + DisplayParticleScale: false + FallbackTarget: {X: 0.0, Y: 0.0, Z: -1.0} + DisplayParticleScaleUniform: false + ArcHeight: 0.0 + Sequential: true + FixedLength: 0 + PositionMin: {X: 0.0, Y: 0.0, Z: 0.0} + PositionMax: {X: 0.0, Y: 0.0, Z: 0.0} + SeedOffset: 0 + 6d09f593db786145af6ba89f386f9b48: !InitialSpawnOrder + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + d1dbc13de4fdfd44a592f202d7bed600: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.5 + SeedOffset: 1 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.5, Y: 0.6} + Updaters: {} + 2801c9087775c2ecc9518fa0f801c79c: !StaticColliderComponent + Id: 85251def-ca8d-4d6a-9ed3-a9ba079c1ed6 + CollisionGroup*: CustomFilter1 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + d9c023df8272c6145711f00ef8160b74: !BoxColliderShapeDesc + Is2D: false + Size: {X: 10.0, Y: 3.0, Z: 2.0} + LocalOffset: {X: 4.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 8512ce3d-9fb8-400b-bf88-7186abe432d8 + InstanceId: 8b7adf3d-a4b5-4ccc-8b1d-df62591c48d1 + - Entity: + Id: 1783ad6b-db2c-4545-81a6-05c149226572 + Name: Vent + Components: + 649d145b5cd2d2498d83796837ab2e4c: !TransformComponent + Id: f24b573e-dfd3-41df-aa3d-ba9b25cffa1e + Position: {X: 0.0, Y: 0.6601438, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.258819, W: 0.9659258} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 51f9a88cd6a06144a9c30a8efc81f0d6: !ModelComponent + Id: 90225d51-2de8-4c64-b483-124a22241298 + Model: 9ba50f3a-f535-4ad4-982d-ff342c69fce4:Environment/Props/Models/Vent + Materials: {} + 557237ad44bd2e4a9a6adfa72a07f828: !Starbreach.VFX.Fan,Starbreach + Id: 27e61cc0-01bc-4492-9091-1e18c26f03b8 + RotationSpeed: 0.5 + VentLightModelComponent: ref!! afe02895-3a24-4244-aa9c-a066a3a0a519 + LightTexture: 2ed2808b-0693-4a27-8cd8-4cccd2d48a70:Environment/Props/Materials/Vent/Vent_inner_E + Base: + BasePartAsset: b5275603-ec75-4bf7-b9cd-6613fe69d2b9:Environment/Props/Prefabs/Vent + BasePartId: 08e72601-63eb-4dcb-989d-5c65552896e8 + InstanceId: 184411f0-41af-42a5-963f-e2e24416425e + - Entity: + Id: 1946b74b-e4e3-430b-95ae-3dca29c46009 + Name: AlertZoneTrigger + Components: + 37741c7f7923b7e1ef2d73915a26c89b: !TransformComponent + Id: 43e8a561-77ca-417e-9229-3a641aae280e + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 557d0a5f00f82108bd3505f6850bc931: !RigidbodyComponent + Id: cdd4911b-f606-40c3-916b-4095af1cd5b5 + CollisionGroup: CustomFilter2 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: true + IsKinematic: true + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 65240769cedf3fbd99aca64e97ba4ae6: !SphereColliderShapeDesc + Is2D: false + Radius: 1.0 + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + Base: + BasePartAsset: aac85dfd-95cb-4a1f-8b00-00e61427e601:Drones/Prefabs/EnergyDrone + BasePartId: 79e33d69-4e12-473f-bdc6-0c107e3244ad + InstanceId: 0e049815-8747-42d9-8845-686ab06e488c + - Folder: null + Entity: + Id: 1c000900-d21f-47f6-8f74-66450a942222 + Name: Tubes_base + Components: + 7cdd3b1a1396bae0df8d315686b47524: !TransformComponent + Id: c3b7b362-4d8d-424a-b747-5891edbe6123 + Position: {X: 0.0, Y: 0.0, Z: 3.15} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: -1.0} + Children: {} + 14c6a602fe3acc99031df8e58a62d2c8: !StaticColliderComponent + Id: cbf6fe37-032b-4ba7-a004-fa8fd8061e25 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 2f121f88c1f6896ca79a2939aa8a095c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.25, Z: 1.2} + LocalOffset: {X: 0.0, Y: 0.625, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 9a70c79d932274ae3d789c1b8e505eed: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 0.7, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.35, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + c693012fa2a7a493118f8d327a097904: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.6, Z: -0.3} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + ec075d7b9a08dd03f4591017a4bce1a2: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: -0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 7742036734daf5a2f5497973ad25733f: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: 0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 62e87c0b-15d8-4628-95c9-7880f4cf2fe1:Environment/Props/Prefabs/Tubes + BasePartId: 6b5a24fa-0d02-4afd-abf9-40cf450e9674 + InstanceId: 4bab6ede-f407-4fd5-b6f2-0962e4c59a9d + - Entity: + Id: 1d3fc10c-6ad0-466d-9e0c-13aaf17ff6fc + Name: Steam + Components: + c1ecc9674350ec47b258da4ab8ccf2ff: !TransformComponent + Id: f4df23bd-3bba-4892-a8f7-2116e911ac79 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8323bf5daa524c4fb5d833e41b08b32d: !ParticleSystemComponent + Id: 15b9b472-fdb6-4a93-ab4b-3b208f07e1bc + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: !BoundingSpheretatic + DebugDraw: true + Radius: 4.0 + Emitters: + 9a3a5271a4a0934d9467f6b095793379: + ParticleLifetime: {X: 0.5, Y: 1.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 0383cd796e839e4b9667af5d0fe71756: + Key: 0.0 + Value: 0.5 + TangentType: Linear + 3c3bf45d6e50e542871470a99fdfd9f3: + Key: 0.3 + Value: 0.7 + TangentType: Linear + aa6cd07e77ba1c4da6e836dff7b31695: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ZOffset: 0.2 + SoftEdgeDistance: 0.3 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 5.0, Y: 5.0, Z: 5.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8dbe2382-769c-45fe-9604-98c5ae5c434c:Textures/SMO001_3 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + fa12c9550522c24fa400d8ce84ef83a0: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 80.0 + Initializers: + 3994a4c9897c7049af5217d699e668a9: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.4, Y: 0.5} + 7fa5fb2d4e692c4aae5cda5ce081ca44: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.5, Y: 0.0, Z: -0.5} + PositionMax: {X: 0.5, Y: 0.0, Z: 0.5} + Interpolate: false + 3d037e54f2051d42a511f75567a2d5eb: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.05, Y: -3.0, Z: -0.05} + VelocityMax: {X: 0.05, Y: -3.0, Z: 0.05} + d4d112e1ace7b944828fa9278f3938e1: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + Updaters: + 226c0f6bc8f05441a0eb6454e9f89045: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 82276cc03e3f854b9dc5c50ece2e25f9: + Key: 0.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + e3927f1e92cb4d4f80c729960776e1ca: + Key: 0.2 + Value: {R: 0.5, G: 0.5, B: 0.5, A: 0.25} + TangentType: Linear + bb31441c3997734baf5d4b324f145da1: + Key: 1.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + a788c7989777534fbc50541f7eebe631: !UpdaterForceField + InheritPosition: true + Position: {X: 0.0, Y: -1.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: true + FieldShape: !FieldShapeCylinder + HalfHeight: 1.0 + Radius: 1.0 + DisplayParticleRotation: true + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 1.0 + FalloffStart: 0.1 + StrengthOutside: 0.0 + FalloffEnd: 0.9 + EnergyConservation: 1.0 + ForceDirected: 0.0 + ForceVortex: 0.0 + ForceRepulsive: 4.0 + ForceFixed: {X: 0.0, Y: 8.0, Z: 0.0} + Base: + BasePartAsset: aac84dfd-95cb-4a1f-8b00-00e61427e600:Drones/Prefabs/RocketDrone + BasePartId: 67bf9668-b948-4e6a-8e59-ca5aebed6c09 + InstanceId: 0c4e18cd-79c1-4088-bf31-3e91c49ac6e0 + - Entity: + Id: 1f8524ec-106d-4728-904b-c837fcc9eff2 + Name: Model + Components: + 7dad9d7cd55ced4abbf2cb2bbbd70c1a: !TransformComponent + Id: d958cbd0-0cbd-429a-a093-c174cf9eeec9 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + d719b2b339248f17748edd917f6bc9b2: ref!! a61acf3b-4a05-414e-b800-a006f760322e + 827f49f9d5034b4acf8a8939110ddb8d: ref!! 9f83baba-df19-48dd-9116-4fd9ef2a60e6 + c212d189fcc79d46bbb83d892c85ce82: !ModelComponent + Id: c345f9fa-a410-4bc2-a674-ae00a06718c0 + Model: c1428709-fa5d-40a7-8e17-d2efb546bfef:Drones/Models/RocketDrone + Materials: + bff18010728c254c925bebf2f03be01b~0: 76636c37-5239-4cd3-ac8a-953e9e4d913e:Drones/Materials/Drone/DroneLower + bad52956f3fcbb45ac19f0a99abdf1d0~1: b91deeaf-43f6-434a-8400-22a1c6cb0447:Drones/Materials/Drone/DroneUpper + 8710bd731b44b446a6f9448a50fcd66b~2: b55d921d-b0d4-416f-85ad-2e1f468a1f7e:Drones/Materials/RocketDrone/RocketDrone + c123a40ea35064c3e5b77b9aaec447dc: !AnimationComponent + Id: 560c4abe-542a-429d-8815-90c2db12a933 + Animations: + a713ec907506354eb188aaba71f6039c~Fire: b476b79e-b408-4d80-8be5-e243b0355168:Drones/Animations/RocketDroneFire + 8df1171e0223014899b19b71b409f1b3~Idle: a980d9c8-1ff7-456c-87d6-312bb28c9a90:Drones/Animations/RocketDroneIdle + bcc277ca9a2ea247bf4ad6e427a787bf~Move: b3ba9abe-76d5-4580-8531-d1d1de2fc1ef:Drones/Animations/RocketDroneFly + Base: + BasePartAsset: aac84dfd-95cb-4a1f-8b00-00e61427e600:Drones/Prefabs/RocketDrone + BasePartId: ee748701-a6a0-4afd-b04c-ab208598af51 + InstanceId: 0c4e18cd-79c1-4088-bf31-3e91c49ac6e0 + - Entity: + Id: 23fb705f-dab5-4e55-91de-82986127e78d + Name: vfx-Steam + Components: + 777d3567c93a6eeed44d2e51035db757: !TransformComponent + Id: c29acb3e-9053-4510-aa3f-52540f6b1795 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 4.0, Y: 4.0, Z: 4.0} + Children: + 315debc2ba806228bdd531cd3237a07e: ref!! e0c6e8d4-267d-43fb-a23c-fcfcddae689e + - Entity: + Id: 28a02a22-627f-4404-baf4-d7fc373ddecd + Name: Steam + Components: + c1ecc9674350ec47b258da4ab8ccf2ff: !TransformComponent + Id: e0c6e8d4-267d-43fb-a23c-fcfcddae689e + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8323bf5daa524c4fb5d833e41b08b32d: !ParticleSystemComponent + Id: 813dbcf5-11de-4aeb-989e-e59bb10623ab + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed*: 0.15 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + 9a3a5271a4a0934d9467f6b095793379: + ParticleLifetime: {X: 0.5, Y: 0.5} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 0383cd796e839e4b9667af5d0fe71756: + Key: 0.0 + Value: 0.2 + TangentType: Linear + 3c3bf45d6e50e542871470a99fdfd9f3: + Key: 0.3 + Value: 0.5 + TangentType: Linear + aa6cd07e77ba1c4da6e836dff7b31695: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: null + Material*: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild*: !ComputeFloat4 + Value: {X: 5.0, Y: 5.0, Z: 5.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8dbe2382-769c-45fe-9604-98c5ae5c434c:Textures/SMO001_3 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + fa12c9550522c24fa400d8ce84ef83a0: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 50.0 + Initializers: + 3994a4c9897c7049af5217d699e668a9: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.4, Y: 0.5} + 7fa5fb2d4e692c4aae5cda5ce081ca44: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: 0.0, Y: 0.0, Z: 0.0} + PositionMax: {X: 0.0, Y: 0.0, Z: 0.0} + Interpolate: false + 3d037e54f2051d42a511f75567a2d5eb*: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin*: {X: -0.05, Y: 2.0, Z: -0.05} + VelocityMax*: {X: 0.05, Y: 3.0, Z: 0.05} + d4d112e1ace7b944828fa9278f3938e1: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + Updaters: + 226c0f6bc8f05441a0eb6454e9f89045: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 82276cc03e3f854b9dc5c50ece2e25f9: + Key: 0.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + e3927f1e92cb4d4f80c729960776e1ca: + Key: 0.2 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.5} + TangentType: Linear + bb31441c3997734baf5d4b324f145da1: + Key: 1.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + Base: + BasePartAsset: 7e583813-c264-4c77-bb7f-23f0f609968d:VFXPrefabs/vfx-Steam + BasePartId: 39e6666d-d2d1-49c3-8f0e-31f321ca5b12 + InstanceId: ee20489f-2f9a-497d-be79-2ba9170f46aa + - Entity: + Id: 29e88a79-11a4-41ff-9d97-04e939806f55 + Name: ProjectileSpawnPoint + Components: + ef320192025c3947bb1adb1c533630a6: !TransformComponent + Id: 920132ef-5c02-4739-bb1a-db1c533630a6 + Position: {X: 0.785251141, Y: 0.0, Z: 1.41112423E-07} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d3a20669d1ecb74791449a8d599302ad: !ModelNodeLinkComponent + Id: 6906a2d3-ecd1-47b7-9144-9a8d599302ad + Target: null + NodeName: Bone_turret + f2be80b1286b9c4495a77d23ce7fc8b5: !AudioEmitterComponent + Id: b180bef2-6b28-449c-95a7-7d23ce7fc8b5 + Sounds: + 68142dcfca753ffa32191b0615d93ade~Fire0: bba0e27c-3fb8-4ce6-99be-bc45ea5e03a7:Drones/Sounds/LaserFire0 + ec7e82125fa39f9cd037e85363f7d40f~Fire1: 10ee8241-9a28-45b6-aba4-00c4c39106b6:Drones/Sounds/LaserFire1 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + Base: + BasePartAsset: aac85dfd-95cb-4a1f-8b00-00e61427e601:Drones/Prefabs/EnergyDrone + BasePartId: 92eafacb-5258-4c7b-8040-b4b6d2721043 + InstanceId: 0e049815-8747-42d9-8845-686ab06e488c + - Entity: + Id: 2fc85d23-96c9-4229-b230-f9150aa25562 + Name: AlertZoneTrigger + Components: + 37741c7f7923b7e1ef2d73915a26c89b: !TransformComponent + Id: 0beecaa8-bc1d-4767-baf1-7f32122fbb60 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 557d0a5f00f82108bd3505f6850bc931: !RigidbodyComponent + Id: 0840ac69-bf22-4e07-af45-51df03e53aa8 + CollisionGroup: CustomFilter2 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: true + IsKinematic: true + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 65240769cedf3fbd99aca64e97ba4ae6: !SphereColliderShapeDesc + Is2D: false + Radius: 1.0 + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + Base: + BasePartAsset: aac84dfd-95cb-4a1f-8b00-00e61427e600:Drones/Prefabs/RocketDrone + BasePartId: 79e33d69-4e12-473f-bdc6-0c107e3244ad + InstanceId: 5028955a-58dc-402e-bd27-33135e096080 + - Entity: + Id: 32f784b4-02bd-4e47-bbed-e09f22ab9496 + Name: vfx-Steam + Components: + 777d3567c93a6eeed44d2e51035db757: !TransformComponent + Id: e9830bc8-989a-46bc-a989-8aa4f77eab3d + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 4.0, Y: 4.0, Z: 4.0} + Children: + 315debc2ba806228bdd531cd3237a07e: ref!! 9425fc7d-1140-4663-801f-302de48a6eca + - Entity: + Id: 35fbfbcc-458c-49e7-ac07-62ed0758a751 + Name: LaserFence_Static (2) + Components: + f08afbc357f5790406844c92d0539513: !TransformComponent + Id: 5eec44da-f4b3-4c55-897f-24237e4e5a75 + Position: {X: 3.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: -0.6, Y: 0.6, Z: 0.6} + Children: + 78f46892dc105a369fcd202c189df608: ref!! 2ebfef43-2d61-4f8c-9cc9-bfe1f82e8c76 + 5255162075021a6f951970991ca6608e: ref!! b0a8db10-9530-429a-84cd-a813a8500f1a + 536240f8fb1df6f999ea4a5d4ba7f1c1: ref!! 248bd911-35cf-4e5d-ae66-36b96c16b3d0 + 75e86890a45d2bdc1ba0006f7998e13e: ref!! 16212efb-e308-4024-ab4a-8ba1bead3a25 + 20f48c676e388f5f82ad7dda1063ae2d: !StaticColliderComponent + Id: 0906adec-2801-45c2-a4a4-031a1c9f7534 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 368adb9e6793798169337ef4de98022b: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 3.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 16d23f36-f4be-4509-9d47-60cb574be928 + InstanceId: 8b7adf3d-a4b5-4ccc-8b1d-df62591c48d1 + - Folder: Props + Entity: + Id: 36fab3ff-8631-419e-85d6-7032045a4112 + Name: box_1 + Components: + 809778ee97de74479d46b2b89cf3fd55: !TransformComponent + Id: 383485b1-9153-4125-9d25-e23826031c57 + Position*: {X: -30.5711937, Y: 0.0, Z: -11.1827011} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + 46d65c287ed37b419febba3f2fc9e168: !ModelComponent + Id: 3eeb7be0-e6cd-4cd4-8ac7-788dfb40723b + Model: 46441ab3-67fb-40d4-8b72-8dd1db5d988e:Environment/Props/Models/Box1 + Materials: {} + 97af1ceb4c685740b019dc46621ca5bd: !StaticColliderComponent + Id: fc4d02d8-6c79-486d-aca7-f2c7060bf0ff + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 30ff71837d20084985383f3411cf2ed8: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.95, Y: 0.95, Z: 0.95} + LocalOffset: {X: 0.0, Y: 0.475, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b23b46aa-4d3f-45a8-ab4b-7c5a9e4d9d99:Environment/Props/Prefabs/Box1 + BasePartId: e8b2a223-8164-4e20-8309-f81a90ca09cc + InstanceId: cd6032ee-25a9-421b-8938-1d08a20b12e3 + - Folder: Props + Entity: + Id: 3729087d-f9e8-4bda-98da-50c1cd1f4fa3 + Name: box_1 + Components: + 809778ee97de74479d46b2b89cf3fd55: !TransformComponent + Id: f18b9f46-77ff-4068-b788-c621f3405f86 + Position*: {X: -22.5005455, Y: 1.913842, Z: -12.3220406} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + 46d65c287ed37b419febba3f2fc9e168: !ModelComponent + Id: e5a93c72-58bf-4c68-8f37-007f21cd6bf2 + Model: 46441ab3-67fb-40d4-8b72-8dd1db5d988e:Environment/Props/Models/Box1 + Materials: {} + 97af1ceb4c685740b019dc46621ca5bd: !StaticColliderComponent + Id: 72300def-f061-4168-b698-1334803c06de + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 30ff71837d20084985383f3411cf2ed8: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.95, Y: 0.95, Z: 0.95} + LocalOffset: {X: 0.0, Y: 0.475, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b23b46aa-4d3f-45a8-ab4b-7c5a9e4d9d99:Environment/Props/Prefabs/Box1 + BasePartId: e8b2a223-8164-4e20-8309-f81a90ca09cc + InstanceId: c3233e87-0694-4cba-86f4-467eb588343a + - Folder: null + Entity: + Id: 37c00c17-d903-4b51-b3cc-92ef0d4bd6fd + Name: PlatformRocks1 + Components: + dd43820955f856895d010ca56947a308: !TransformComponent + Id: 0957bcb6-967a-4c9c-98f7-9eda9ec52d11 + Position: {X: -8.5, Y: -1.5, Z: 4.0} + Rotation: {X: 0.0, Y: -0.803857, Z: 0.0, W: 0.5948226} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 2149de4d6c83774900fa431c4d3434fa: !ModelComponent + Id: 63ec1b0a-c112-4ac8-b194-119814ad3db1 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + - Entity: + Id: 385a6526-49ef-49f2-8a1d-867e2343a47d + Name: Vent + Components: + 649d145b5cd2d2498d83796837ab2e4c: !TransformComponent + Id: 83f18cc1-170a-4a40-88dd-d76a39eb7a1f + Position: {X: 0.0, Y: 0.6601438, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.258819, W: 0.9659258} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 51f9a88cd6a06144a9c30a8efc81f0d6: !ModelComponent + Id: caa7e1e9-3c41-4652-ad3b-673422b1c398 + Model: 9ba50f3a-f535-4ad4-982d-ff342c69fce4:Environment/Props/Models/Vent + Materials: {} + 557237ad44bd2e4a9a6adfa72a07f828: !Starbreach.VFX.Fan,Starbreach + Id: 3083e2ef-abad-4ab3-88e3-ee7ecaeeb5df + RotationSpeed: 0.5 + VentLightModelComponent: ref!! 8e1cb411-c605-42f9-a296-00943b6d7716 + LightTexture: 2ed2808b-0693-4a27-8cd8-4cccd2d48a70:Environment/Props/Materials/Vent/Vent_inner_E + Base: + BasePartAsset: b5275603-ec75-4bf7-b9cd-6613fe69d2b9:Environment/Props/Prefabs/Vent + BasePartId: 08e72601-63eb-4dcb-989d-5c65552896e8 + InstanceId: 4b0e5c6b-2277-421a-bc7b-9ad494da90a0 + - Entity: + Id: 39bba4e9-af7b-4342-8dc4-a89351f29fcd + Name: Teleport + Components: + 91ea5b704f9e2ea46745470a4f76478e: !TransformComponent + Id: 17a350e4-a17e-4f8b-88f7-656b5cdee658 + Position: {X: -19.507658, Y: 0.0, Z: 9.941189} + Rotation: {X: 0.0, Y: 0.99999994, Z: 0.0, W: 0.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 134d09c1caf605734c5a00544ba12e77: ref!! 6a6a7dcb-6baf-450e-999f-bf6976b05be6 + - Folder: Props + Entity: + Id: 3aaf75fa-91f5-486a-af90-ab11b9877721 + Name: Small_Wall + Components: + b169bb0a28fc365afeac43ee8f183ee6: !TransformComponent + Id: fed12c5a-32a8-489e-993c-b0c36350c532 + Position*: {X: -5.0, Y: 0.0, Z: 1.99999952} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 07ce1731b5c55346319dfe8de1941a66: !ModelComponent + Id: cbddeefe-4707-4f08-9220-ed37ce69e6c1 + Model: 5d139f33-5b0c-4e35-ab70-78b928020552:Environment/Walls/PrefabModels/Small_Wall + Materials: {} + f67e43e13ee3fb89abc0bbaba3837c37: !StaticColliderComponent + Id: 05b6f1f5-b466-404e-b548-8d687e1ba11e + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + c40463507837835195777deb473f14de: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 1.5, Y: 1.0, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 76617c83803d5680acec68f22ab9ee48: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 0.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + a6227beb392d58cacc21431aa494be07: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 2.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + Base: + BasePartAsset: 35e9585d-5854-46bb-806b-d343b98a6b93:Environment/Walls/Prefabs/Small_Wall_Grouped + BasePartId: cfe6176c-8d73-4ab9-8cd5-43229726c1ff + InstanceId: 1a917045-44bc-4c20-8822-58715cc15dca + - Folder: Props + Entity: + Id: 3c768215-289c-4acb-af5a-0d21050f5483 + Name: Column + Components: + ae874bae5a72d2388b68ae806e484e5d: !TransformComponent + Id: e9ead25d-0362-4e63-9b8c-06f51b62f10c + Position*: {X: -24.0339622, Y: 1.765, Z: 9.941177} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + dfdc9bac4fb7b9696b9fa68f7cb87122: ref!! 83c22768-b300-4ad4-aa06-78b1af2a00d4 + a81d8f29faac04d87c1b6468b4115fdf: !ModelComponent + Id: 82ad002c-b28c-4b46-8a12-8c065b69e914 + Model: 153687de-2b93-4509-b567-93852598694b:Environment/Props/Models/Column + Materials: {} + a5c7ed4e4ed33cdc6fd350223aec48e8: !StaticColliderComponent + Id: 22c52348-3e49-4463-98e4-d962af11f881 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 91dcaff8c24c3dcc4c6c422b0c46a843: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 4.0, Z: 2.0} + LocalOffset: {X: 0.0, Y: 0.245, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + e83aa97f296f06c3c4b52601861900a0: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 4.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 4.245, Z: 0.25} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: ba3c136a-df3a-4f13-8171-5099a1dd3899:Environment/Props/Prefabs/Column + BasePartId: 34b78f82-3799-4830-900b-e9455fb561a2 + InstanceId: b82cc9bf-4283-46d7-ae5d-ee481965c099 + - Entity: + Id: 3f1f0aef-f752-4dc3-a162-59cd2db84347 + Name: Model + Components: + 7dad9d7cd55ced4abbf2cb2bbbd70c1a: !TransformComponent + Id: 40b2e072-3d18-41f1-b566-ba36c9eb5dfb + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + d719b2b339248f17748edd917f6bc9b2: ref!! f35608ef-0ce9-4511-bfb0-157524189b48 + 827f49f9d5034b4acf8a8939110ddb8d: ref!! 7120e20b-1a2d-4bb2-9d18-22bdd36a3440 + c212d189fcc79d46bbb83d892c85ce82: !ModelComponent + Id: 7fb682e7-6697-4825-89d8-1548568cf1c7 + Model: c1428709-fa5d-40a7-8e17-d2efb546bfef:Drones/Models/RocketDrone + Materials: + bff18010728c254c925bebf2f03be01b~0: 76636c37-5239-4cd3-ac8a-953e9e4d913e:Drones/Materials/Drone/DroneLower + bad52956f3fcbb45ac19f0a99abdf1d0~1: b91deeaf-43f6-434a-8400-22a1c6cb0447:Drones/Materials/Drone/DroneUpper + 8710bd731b44b446a6f9448a50fcd66b~2: b55d921d-b0d4-416f-85ad-2e1f468a1f7e:Drones/Materials/RocketDrone/RocketDrone + c123a40ea35064c3e5b77b9aaec447dc: !AnimationComponent + Id: 476c6706-e7ce-4943-8e75-e51c96901de4 + Animations: + a713ec907506354eb188aaba71f6039c~Fire: b476b79e-b408-4d80-8be5-e243b0355168:Drones/Animations/RocketDroneFire + 8df1171e0223014899b19b71b409f1b3~Idle: a980d9c8-1ff7-456c-87d6-312bb28c9a90:Drones/Animations/RocketDroneIdle + bcc277ca9a2ea247bf4ad6e427a787bf~Move: b3ba9abe-76d5-4580-8531-d1d1de2fc1ef:Drones/Animations/RocketDroneFly + Base: + BasePartAsset: aac84dfd-95cb-4a1f-8b00-00e61427e600:Drones/Prefabs/RocketDrone + BasePartId: ee748701-a6a0-4afd-b04c-ab208598af51 + InstanceId: 5028955a-58dc-402e-bd27-33135e096080 + - Entity: + Id: 43884606-9927-45ce-b7a0-0fd020594141 + Name: LaserFence + Components: + fb5e18952f86407dad838d0b5bc40bef: !TransformComponent + Id: cd897b24-0a4a-4663-bc90-3775e3df1ee2 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + f94a04d4dd9ca249d275be383b123cc7: ref!! ca190059-b688-4108-8af2-c3a969e77000 + e8af797a2f73bec8e5b3b407c77a04b3: ref!! 5eec44da-f4b3-4c55-897f-24237e4e5a75 + c4e1eb951c333060077478fec3e6f721: !Starbreach.Gameplay.LaserFence,Starbreach + Id: 42210777-514a-49d5-9b1d-4c3c552c7152 + ParticleSystemComponents: + d4e1b67fd72a014591445d886fdbd013: ref!! bf71f12a-7df9-49d7-ac6b-e391f8d9faf0 + 99ad129b17a7400624a0fdde856096e0: ref!! 3836fb7d-8356-4837-b6d2-01b04cffd6bb + ModelComponents: + 1e0b1119a150cc02dddd2f91b8f2f386: ref!! 90cea9bc-964d-451e-a4c8-f4fe43c306f1 + dd30ed9dc650b5d60c314f45e5431622: ref!! 75a98061-f215-4b8a-8622-5681e5b099c0 + LasetBlockade: + 23ae30509c9fbe5fb438d52a1b33c4c0: ref!! 85251def-ca8d-4d6a-9ed3-a9ba079c1ed6 + Triggers: + CombinationMode*: Conjunction + Inverted*: true + Activators: + 3d555d49162e487b3a4dce6c19b13a00*: !Starbreach.Gameplay.PressurePlate,Starbreach ref!! 0978978d-459e-4671-b71a-7a2cd7b0e0e6 + 42aed1f9f47ab80b4ed856c9d3b2c58f*: !Starbreach.Gameplay.PressurePlate,Starbreach ref!! 53b19976-78fe-4c05-abba-bf2168dbfc12 + d68d7d609cca2f051cb40bf545003462*: !Starbreach.Gameplay.PressurePlate,Starbreach ref!! 36944b70-6c63-4a71-9723-336cf781ab13 + 7dd02d782bd5e0b1f7d49cbd231f38e5*: !Starbreach.Gameplay.PressurePlate,Starbreach ref!! 725af287-ec2e-4be7-be4b-bf91babce518 + Enabled: true + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 945727d1-98d0-4a00-b29c-98f78daa9839 + InstanceId: 8b7adf3d-a4b5-4ccc-8b1d-df62591c48d1 + - Entity: + Id: 439efdfe-ba44-4260-bfd2-3489ba308b1b + Name: Steam + Components: + c1ecc9674350ec47b258da4ab8ccf2ff: !TransformComponent + Id: 9425fc7d-1140-4663-801f-302de48a6eca + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8323bf5daa524c4fb5d833e41b08b32d: !ParticleSystemComponent + Id: 03a2cd4c-bb27-48df-9d8b-9f1151a1e967 + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed*: 0.15 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + 9a3a5271a4a0934d9467f6b095793379: + ParticleLifetime: {X: 0.5, Y: 0.5} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 0383cd796e839e4b9667af5d0fe71756: + Key: 0.0 + Value: 0.2 + TangentType: Linear + 3c3bf45d6e50e542871470a99fdfd9f3: + Key: 0.3 + Value: 0.5 + TangentType: Linear + aa6cd07e77ba1c4da6e836dff7b31695: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: null + Material*: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild*: !ComputeFloat4 + Value: {X: 5.0, Y: 5.0, Z: 5.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8dbe2382-769c-45fe-9604-98c5ae5c434c:Textures/SMO001_3 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + fa12c9550522c24fa400d8ce84ef83a0: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 50.0 + Initializers: + 3994a4c9897c7049af5217d699e668a9: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.4, Y: 0.5} + 7fa5fb2d4e692c4aae5cda5ce081ca44: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: 0.0, Y: 0.0, Z: 0.0} + PositionMax: {X: 0.0, Y: 0.0, Z: 0.0} + Interpolate: false + 3d037e54f2051d42a511f75567a2d5eb*: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin*: {X: -0.05, Y: 2.0, Z: -0.05} + VelocityMax*: {X: 0.05, Y: 3.0, Z: 0.05} + d4d112e1ace7b944828fa9278f3938e1: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + Updaters: + 226c0f6bc8f05441a0eb6454e9f89045: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 82276cc03e3f854b9dc5c50ece2e25f9: + Key: 0.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + e3927f1e92cb4d4f80c729960776e1ca: + Key: 0.2 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.5} + TangentType: Linear + bb31441c3997734baf5d4b324f145da1: + Key: 1.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + Base: + BasePartAsset: 7e583813-c264-4c77-bb7f-23f0f609968d:VFXPrefabs/vfx-Steam + BasePartId: 39e6666d-d2d1-49c3-8f0e-31f321ca5b12 + InstanceId: 5ae4eb90-08cf-4e19-878f-8ce6e4578019 + - Entity: + Id: 43e30e4b-cfe9-485f-93f6-bcacc3f9e976 + Name: AlertZoneTrigger + Components: + 37741c7f7923b7e1ef2d73915a26c89b: !TransformComponent + Id: 39333a6e-06ae-434a-9ebf-089f65202bce + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 557d0a5f00f82108bd3505f6850bc931: !RigidbodyComponent + Id: 75b8acac-79e9-4ee4-833d-8d47de091c3e + CollisionGroup: CustomFilter2 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: true + IsKinematic: true + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 65240769cedf3fbd99aca64e97ba4ae6: !SphereColliderShapeDesc + Is2D: false + Radius: 1.0 + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + Base: + BasePartAsset: aac84dfd-95cb-4a1f-8b00-00e61427e600:Drones/Prefabs/RocketDrone + BasePartId: 79e33d69-4e12-473f-bdc6-0c107e3244ad + InstanceId: 0c4e18cd-79c1-4088-bf31-3e91c49ac6e0 + - Folder: Props + Entity: + Id: 44f713ac-06ee-4725-8726-8a5af4c0b184 + Name: Tubes + Components: + 8afe5b76881b508b37d688f2116c5186: !TransformComponent + Id: 1d669e58-0c84-448f-a595-ec9a0d303309 + Position*: {X: -28.7259636, Y: 0.0, Z: 9.542858} + Rotation*: {X: 0.0, Y: 0.99999994, Z: 0.0, W: 0.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 3d9885a44e7f71f8c14b788069e143bc: ref!! 87d9bdb3-e5ab-48d6-adb3-aeda517364e8 + 5055221356ed25e1daae7e8f4ed0e02c: ref!! b5db1211-c365-4bdc-b684-48c8c306a35c + d0526db95b412f4714f97c9e1e008f44: !ModelComponent + Id: 5c4ec356-0af5-417f-97bd-78be8db40f75 + Model: b71a38c2-5460-4a2e-8abf-77a0acec5aeb:Environment/Props/Models/Tubes + Materials: {} + Base: + BasePartAsset: 62e87c0b-15d8-4628-95c9-7880f4cf2fe1:Environment/Props/Prefabs/Tubes + BasePartId: 20f03481-611c-470f-b5ca-0917bf52f59a + InstanceId: ea2d012f-ad42-4e79-b402-81e63326bcb2 + - Entity: + Id: 45b1f568-89c4-4c06-8663-6deadb2d22bb + Name: Vent_light_mesh + Components: + 54af95a0dca10843911d079ccfaa0cfd: !TransformComponent + Id: ba4da222-0a15-4b47-bd0c-cf1a1909a4a2 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6f6f8132f03b9c4db90f22a935e18733: !ModelComponent + Id: 34d79ecc-2a4d-4d22-b95e-50de5cde09ab + Model: bcf6e9e7-0e5d-45f3-ba1b-0b2025d17e1c:Environment/Props/Models/Vent_light_mesh + Materials: {} + Base: + BasePartAsset: b5275603-ec75-4bf7-b9cd-6613fe69d2b9:Environment/Props/Prefabs/Vent + BasePartId: 9b350f50-f364-4653-8b82-1b0bf30e2f23 + InstanceId: 3aa6b2cc-b25e-4d81-a018-00d3cd887de6 + - Entity: + Id: 461972b9-b59a-44e2-b2f2-9710db33c7f6 + Name: Tubes_base + Components: + 7cdd3b1a1396bae0df8d315686b47524: !TransformComponent + Id: cb21a9e1-ba84-40fb-ab8f-c55a72e44a83 + Position: {X: 0.0, Y: 0.0, Z: -3.15} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 14c6a602fe3acc99031df8e58a62d2c8: !StaticColliderComponent + Id: 81b7c73e-aba4-4349-b67c-0c1be399f16b + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 2f121f88c1f6896ca79a2939aa8a095c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.25, Z: 1.2} + LocalOffset: {X: 0.0, Y: 0.625, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 9a70c79d932274ae3d789c1b8e505eed: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 0.7, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.35, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + c693012fa2a7a493118f8d327a097904: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.6, Z: -0.3} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + ec075d7b9a08dd03f4591017a4bce1a2: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: -0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 7742036734daf5a2f5497973ad25733f: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: 0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 62e87c0b-15d8-4628-95c9-7880f4cf2fe1:Environment/Props/Prefabs/Tubes + BasePartId: 33533809-4477-4c1f-90e3-f7c190afa66a + InstanceId: 88bb19fc-203f-4e0f-8b8f-6a6a2f72cf1b + - Folder: Props + Entity: + Id: 474a070d-b55e-4a04-b849-3f495430a8ab + Name: QuadBarrels + Components: + 6cba76ddfd1ccfe65a4c5a140756c8d4: !TransformComponent + Id: f250d0b9-1e98-461a-b4a5-7d97c3d63338 + Position*: {X: -20.57431, Y: 0.0, Z: -13.6155548} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3280e516b6ce697916b6f1c0823acd38: !ModelComponent + Id: ed05adb7-7f3a-4740-a338-d7268c580dff + Model: bd5c8df1-b6f8-4ae3-9099-b063300bc184:Environment/Props/Models/QuadBarrels + Materials: {} + a0046f2ff924d533f457904736235306: !StaticColliderComponent + Id: 696b9b16-ca2d-4f3a-a7f7-8e6b41258a42 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 73a42be32d471fc220f6ebc55d725e77: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 3.0, Z: 2.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: bceccb3f-3666-4864-aded-2230c759cbaf:Environment/Props/Prefabs/QuadBarrels + BasePartId: ae3cd2c6-ef7d-4ebb-9bf1-01ff9c1b034c + InstanceId: b5e9767a-f969-4dda-8f41-591d3c735c81 + - Entity: + Id: 48dc1137-8ccc-4774-8445-d48fd8dc3b17 + Name: FloorButton + Components: + 2bd9e5018fb815bd9e0ddf7b6c4f0377: !TransformComponent + Id: a90b071a-9983-4530-a060-9e6100a4862c + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a6932a4059e46dc7459b958c79f50336: !ModelComponent + Id: b8723012-7583-4dad-a262-58b1d69b0a2a + Model: b08b5432-96b6-4259-8a89-303ff9bd12e2:Gameplay/Models/FloorButton + Materials: + 1eb04cc22e2a20d26f26187814c7bdc3~0: 0347eda8-4648-4983-a223-713b43cea1d9:Gameplay/Materials/Plates/Plate2_Enabled_Off + daf84040e6ba39f4813001d91222a07f~1: ba76b6f1-63f6-44d9-ad48-aca96fbe79a3:Gameplay/Materials/Plates/Plate3_Enabled_Off + 2a52917f17e18564669f46063c397a81: !Starbreach.Gameplay.PressurePlate,Starbreach + Id: 0978978d-459e-4671-b71a-7a2cd7b0e0e6 + Material1EnabledOff: ba76b6f1-63f6-44d9-ad48-aca96fbe79a3:Gameplay/Materials/Plates/Plate3_Enabled_Off + Material1DisabledOn: 2746f702-7dd5-4ef5-9e93-d5e758da2800:Gameplay/Materials/Plates/Plate3_Disabled_On + Material1DisabledOff: d02e7fcd-9f9e-450f-bc56-6e50e9970ec2:Gameplay/Materials/Plates/Plate3_Disabled_Off + Material1EnabledOn: 1163e435-4f1b-4b16-8834-da23869292b4:Gameplay/Materials/Plates/Plate3_Enabled_On + Material0EnabledOff: 0347eda8-4648-4983-a223-713b43cea1d9:Gameplay/Materials/Plates/Plate2_Enabled_Off + Material0DisabledOn: eff5f692-9337-4d7b-8cd8-531e3e06b852:Gameplay/Materials/Plates/Plate2_Disabled_On + Material0DisabledOff: e74abd75-804a-4de0-acf7-924aa5bb3a20:Gameplay/Materials/Plates/Plate2_Disabled_Off + Material0EnabledOn: 903888ae-b297-487a-a708-5fd6cd38c7c7:Gameplay/Materials/Plates/Plate2_Enabled_On + Model: ref!! b8723012-7583-4dad-a262-58b1d69b0a2a + Trigger: ref!! 1ced0f7c-8856-4cfb-8156-049bc8543c95 + AudioEmitter: ref!! d48b5d44-07c1-439d-92cc-84bc905f58d8 + Enabled: true + Toggle: false + SingleActivation*: true + CurrentToggleState: false + TransitionTime: 0.15 + 48a3a1d7ea5c129742126bc8b4d7429c: !Starbreach.Gameplay.PressurePlateTrigger,Starbreach + Id: 1ced0f7c-8856-4cfb-8156-049bc8543c95 + CollisionFilterGroup: CharacterFilter + Trigger: ref!! a2fbb1be-f93f-4944-897f-9d68b134784a + 03c59a6169956fba8a31fd1f758dc46f: !AudioEmitterComponent + Id: d48b5d44-07c1-439d-92cc-84bc905f58d8 + Sounds: + adc799987a8ff52a579d44583cb2cde7~Enable: 5163c935-fe14-4496-8f44-eb64e8482b31:Gameplay/Sounds/Plate_Enable + 732e4c030c0a74345f1aed380bdb8533~Disable: 730d9dfc-a657-4d5b-b5ea-8fc7e14cfa7d:Gameplay/Sounds/Plate_Disable + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + 9c600aa0b00e9640a384d3666fe41f14: !RigidbodyComponent + Id: a2fbb1be-f93f-4944-897f-9d68b134784a + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: true + IsKinematic: true + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 4c0292725ab565154826fa81493eec99: !CylinderColliderShapeDesc + Height: 0.4 + Radius: 0.8 + LocalOffset: {X: 0.0, Y: 0.2, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 72f94a89-e47c-42ae-9264-b0c9881e3840:Gameplay/Prefabs/Plate + BasePartId: e4fdb89a-c2a0-4e83-a985-c4e087628455 + InstanceId: 57fa5db3-c35e-4e2d-9cab-387aa90f4d2a + - Folder: Gameplay + Entity: + Id: 4995a3b4-079e-44dc-aee6-f566f572d952 + Name: PlateA + Components: + a3df36179a43cd8c1d8717c74c3d557a: !TransformComponent + Id: 80b96e4f-4369-466b-a086-599fae3b980b + Position: {X: -29.737793, Y: 0.0, Z: -15.9514847} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 197a5f3ec2be91fe9cbe79259649629b: ref!! a90b071a-9983-4530-a060-9e6100a4862c + - Folder: Gameplay + Entity: + Id: 49b8cb53-3ab4-4521-afa5-d1d758e4a396 + Name: Drone + Components: + bee1416b5e2d304389e20936f750b8b1: !TransformComponent + Id: adf6d1ea-d883-432e-a243-99a90d485974 + Position*: {X: -3.354282, Y: 0.0, Z: 0.8043623} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 68b08d6ef4327063ddfe04b67a961aae: ref!! 3bdf8948-dfcc-4629-90da-b6d490b32d6b + 963458a2c6c68927d38fec6a605500fa: ref!! 11cce434-fcff-416b-8cf8-ddf18812946c + aed3e642d5d71f48bdf23181156082f9: !CharacterComponent + Id: 0bbe60bc-b74c-4f62-83fd-1a46df0cde94 + CollisionGroup: CustomFilter3 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + FallSpeed: 10.0 + MaxSlope: {Radians: 0.7853982} + JumpSpeed: 5.0 + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + ColliderShapes: + d27547538ff5dd4eb72e1d385d4862bd: !CylinderColliderShapeDesc + Height: 2.0 + Radius: 1.0 + LocalOffset: {X: 0.0, Y: 1.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 827cf65eb5dca148adaa7ef5bc60df35: !AudioEmitterComponent + Id: 2971a69e-5425-44e1-9a43-dc9832578936 + Sounds: + 9f0d8aaa3fc06a44bae1c6cff7aeef58~Death: 4c9333d4-d4d5-4f61-9390-6b2e2602cf1b:Drones/Sounds/Death + 062488fbcb22f344b134f663d4a59ff9~Explosion: 936a2dbe-31df-40cc-836b-18793ffcea22:Drones/Sounds/Explosion + 762f069faf274a408a2da257ca0f4736~Hit0: 732e562c-622b-4fff-8282-58a7efa0b204:Drones/Sounds/Hit0 + ba953638f1e5db4d852167189517624d~Hit1: 973a4551-7cd6-4b8d-8a53-5a61ca9e461b:Drones/Sounds/Hit1 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + c7262ebf0d468f43ba11ca1221215c08: !NavigationComponent + Id: fe040d3a-f276-4264-b211-473128cd3a2b + NavigationMesh*: cfed2a24-078a-4f6b-b086-27f1eb667e14:Levels/Platform_1-4_NAV + GroupId: 665dbfaa-d91a-ee40-d176-a5eaed1268bc + 238e55139b0b248973a65b6ba75f8d54: !Starbreach.Drones.Drone,Starbreach + Id: 2addd4e8-a88a-48b6-86cb-80a0b20f40d4 + Priority: 4000 + Weapon: !Starbreach.Drones.LaserDroneWeapon,Starbreach + ProjectileSpawnPoint: ref!! 85172063-be6b-4b52-8eea-7b4117d34cc4 + ReloadTime: 1.5 + ProjectilePrefab: 38b52cd2-bfc8-4128-b939-232ab85a9b82:Drones/Prefabs/Laser + AnimationDelay: 0.7 + MaximumSpeed: 1.5 + RotationSpeed: 6.283185 + HeadRotationSpeed: 6.283185 + Model: ref!! 1f0f43ca-5157-41e6-9e18-87c98bf40f1a + DefaultMaterial: b91deeaf-43f6-434a-8400-22a1c6cb0447:Drones/Materials/Drone/DroneUpper + AlertedMaterial: 70cfa151-cffc-4cf1-a0d5-2ac4ac94e4a6:Drones/Materials/Drone/DroneUpper_Alerted + EngineParticle: ref!! 4f059e41-5c37-43b2-9a06-c78fdc5522f1 + EngineAudioEmitter: ref!! 5125025d-4901-416f-9645-0ed196fb5324 + DroneExplosionPrefab: d1f82cfd-900e-4757-958c-1dd35a4ec775:Drones/Prefabs/DroneExplosion + e3d3d4a2c9c5e7676d484a7a5a41d498: !Starbreach.Drones.PatrollingDroneController,Starbreach + Id: f4767018-120c-4abf-877c-3f10c7dbc6f0 + PathToFollow: null + ChaseAlertZoneRadius: 20.0 + IdleAlertZoneRadius: 15.0 + AlertZoneTriggerEntity: ref!! 66fab98c-d50a-45b2-bba0-b5fac193d983 + Base: + BasePartAsset: aac85dfd-95cb-4a1f-8b00-00e61427e601:Drones/Prefabs/EnergyDrone + BasePartId: fb95e431-53b2-4f1b-b194-74a16c023eef + InstanceId: 9db2b9d8-5355-4afa-859a-f56c63d6a8d5 + - Folder: Props + Entity: + Id: 4a039557-1252-4ad3-baec-5af63d9716b7 + Name: box_1 + Components: + 809778ee97de74479d46b2b89cf3fd55: !TransformComponent + Id: 2b59829b-b628-4345-8344-3bc55f905831 + Position*: {X: -26.0278263, Y: 0.0, Z: -10.8521729} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + 46d65c287ed37b419febba3f2fc9e168: !ModelComponent + Id: b03d27aa-1167-470d-a449-2faefd883678 + Model: 46441ab3-67fb-40d4-8b72-8dd1db5d988e:Environment/Props/Models/Box1 + Materials: {} + 97af1ceb4c685740b019dc46621ca5bd: !StaticColliderComponent + Id: f1b2acba-97b8-4038-aeb2-a9ca9960fa09 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 30ff71837d20084985383f3411cf2ed8: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.95, Y: 0.95, Z: 0.95} + LocalOffset: {X: 0.0, Y: 0.475, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b23b46aa-4d3f-45a8-ab4b-7c5a9e4d9d99:Environment/Props/Prefabs/Box1 + BasePartId: e8b2a223-8164-4e20-8309-f81a90ca09cc + InstanceId: b324b2e6-d4de-49ce-88aa-cfe11dbec2fe + - Entity: + Id: 4dddd90d-f121-4f78-b837-dbe0d207f8cb + Name: Tubes_base + Components: + 7cdd3b1a1396bae0df8d315686b47524: !TransformComponent + Id: d0e6d466-9177-40b2-891d-6ce7a707b2cb + Position: {X: 0.0, Y: 0.0, Z: -3.15} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 14c6a602fe3acc99031df8e58a62d2c8: !StaticColliderComponent + Id: 3f456b0f-5142-4916-b83b-1d2caba97a68 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 2f121f88c1f6896ca79a2939aa8a095c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.25, Z: 1.2} + LocalOffset: {X: 0.0, Y: 0.625, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 9a70c79d932274ae3d789c1b8e505eed: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 0.7, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.35, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + c693012fa2a7a493118f8d327a097904: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.6, Z: -0.3} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + ec075d7b9a08dd03f4591017a4bce1a2: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: -0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 7742036734daf5a2f5497973ad25733f: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: 0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 62e87c0b-15d8-4628-95c9-7880f4cf2fe1:Environment/Props/Prefabs/Tubes + BasePartId: 33533809-4477-4c1f-90e3-f7c190afa66a + InstanceId: 4bab6ede-f407-4fd5-b6f2-0962e4c59a9d + - Entity: + Id: 4ebd34b1-fa13-43ac-a26d-f6e1fd0e0dc4 + Name: Tubes_base + Components: + 7cdd3b1a1396bae0df8d315686b47524: !TransformComponent + Id: 87d9bdb3-e5ab-48d6-adb3-aeda517364e8 + Position: {X: 0.0, Y: 0.0, Z: -3.15} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 14c6a602fe3acc99031df8e58a62d2c8: !StaticColliderComponent + Id: d61f65ac-f024-4a3e-9e56-859bd5c26649 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 2f121f88c1f6896ca79a2939aa8a095c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.25, Z: 1.2} + LocalOffset: {X: 0.0, Y: 0.625, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 9a70c79d932274ae3d789c1b8e505eed: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 0.7, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.35, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + c693012fa2a7a493118f8d327a097904: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.6, Z: -0.3} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + ec075d7b9a08dd03f4591017a4bce1a2: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: -0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 7742036734daf5a2f5497973ad25733f: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: 0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 62e87c0b-15d8-4628-95c9-7880f4cf2fe1:Environment/Props/Prefabs/Tubes + BasePartId: 33533809-4477-4c1f-90e3-f7c190afa66a + InstanceId: ea2d012f-ad42-4e79-b402-81e63326bcb2 + - Folder: Gameplay + Entity: + Id: 4ee64e82-41f7-422a-bbf3-5bdbe058f688 + Name: Drone + Components: + bee1416b5e2d304389e20936f750b8b1: !TransformComponent + Id: 6b41e1be-2d5e-4330-89e2-0936f750b8b1 + Position*: {X: -27.368681, Y: 0.0, Z: -15.818922} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 68b08d6ef4327063ddfe04b67a961aae: ref!! 7c9dad7d-5cd5-4aed-bbf2-cb2bbbd70c1a + 963458a2c6c68927d38fec6a605500fa: ref!! 43e8a561-77ca-417e-9229-3a641aae280e + aed3e642d5d71f48bdf23181156082f9: !CharacterComponent + Id: 42e6d3ae-d7d5-481f-bdf2-3181156082f9 + CollisionGroup: CustomFilter3 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + FallSpeed: 10.0 + MaxSlope: {Radians: 0.7853982} + JumpSpeed: 5.0 + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + ColliderShapes: + d27547538ff5dd4eb72e1d385d4862bd: !CylinderColliderShapeDesc + Height: 2.0 + Radius: 1.0 + LocalOffset: {X: 0.0, Y: 1.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 827cf65eb5dca148adaa7ef5bc60df35: !AudioEmitterComponent + Id: 5ef67c82-dcb5-48a1-adaa-7ef5bc60df35 + Sounds: + 9f0d8aaa3fc06a44bae1c6cff7aeef58~Death: 4c9333d4-d4d5-4f61-9390-6b2e2602cf1b:Drones/Sounds/Death + 062488fbcb22f344b134f663d4a59ff9~Explosion: 936a2dbe-31df-40cc-836b-18793ffcea22:Drones/Sounds/Explosion + 762f069faf274a408a2da257ca0f4736~Hit0: 732e562c-622b-4fff-8282-58a7efa0b204:Drones/Sounds/Hit0 + ba953638f1e5db4d852167189517624d~Hit1: 973a4551-7cd6-4b8d-8a53-5a61ca9e461b:Drones/Sounds/Hit1 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + c7262ebf0d468f43ba11ca1221215c08: !NavigationComponent + Id: bf2e26c7-460d-438f-ba11-ca1221215c08 + NavigationMesh*: cfed2a24-078a-4f6b-b086-27f1eb667e14:Levels/Platform_1-4_NAV + GroupId: 665dbfaa-d91a-ee40-d176-a5eaed1268bc + 238e55139b0b248973a65b6ba75f8d54: !Starbreach.Drones.Drone,Starbreach + Id: e798d19d-28f6-4813-8a83-16840915a06d + Priority: 4000 + Weapon: !Starbreach.Drones.LaserDroneWeapon,Starbreach + ProjectileSpawnPoint: ref!! 29e88a79-11a4-41ff-9d97-04e939806f55 + ReloadTime: 1.5 + ProjectilePrefab: 38b52cd2-bfc8-4128-b939-232ab85a9b82:Drones/Prefabs/Laser + AnimationDelay: 0.7 + MaximumSpeed: 1.5 + RotationSpeed: 6.283185 + HeadRotationSpeed: 6.283185 + Model: ref!! 89d112c2-c7fc-469d-bbb8-3d892c85ce82 + DefaultMaterial: b91deeaf-43f6-434a-8400-22a1c6cb0447:Drones/Materials/Drone/DroneUpper + AlertedMaterial: 70cfa151-cffc-4cf1-a0d5-2ac4ac94e4a6:Drones/Materials/Drone/DroneUpper_Alerted + EngineParticle: ref!! 5dbf2383-52aa-4f4c-b5d8-33e41b08b32d + EngineAudioEmitter: ref!! 8d9241c1-72f7-445e-8d9e-e2d635345744 + DroneExplosionPrefab: d1f82cfd-900e-4757-958c-1dd35a4ec775:Drones/Prefabs/DroneExplosion + e3d3d4a2c9c5e7676d484a7a5a41d498: !Starbreach.Drones.PatrollingDroneController,Starbreach + Id: b329b495-07e7-4fd5-8a3e-403ef5f2a170 + PathToFollow: null + ChaseAlertZoneRadius: 20.0 + IdleAlertZoneRadius: 15.0 + AlertZoneTriggerEntity: ref!! 1946b74b-e4e3-430b-95ae-3dca29c46009 + Base: + BasePartAsset: aac85dfd-95cb-4a1f-8b00-00e61427e601:Drones/Prefabs/EnergyDrone + BasePartId: fb95e431-53b2-4f1b-b194-74a16c023eef + InstanceId: 0e049815-8747-42d9-8845-686ab06e488c + - Entity: + Id: 50f01444-f77e-4e35-a93f-f828e254591a + Name: Level_1-1_PlatformRocks + Components: + 014e24ca54c683b17d7395b3fdaa5431: !TransformComponent + Id: c0afa873-7632-46e7-b3c5-8e8d0a10bcd5 + Position: {X: -3.0, Y: 0.0, Z: -4.499998} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.4, Y: 1.0, Z: 1.5} + Children: {} + 88ee3bdf78b94a51c0a711d50bb04b9e: !ModelComponent + Id: 0636aae2-a9f6-4715-a4c8-aae7295e74c4 + Model: dfe97702-4103-44f9-91eb-7fedc0a5f2fc:Levels/PrefabModels/Level_1-1_PlatformRocks + Materials: {} + - Folder: Gameplay + Entity: + Id: 52968a0a-ea91-4a53-852f-5b06a38533d3 + Name: PlateA + Components: + a3df36179a43cd8c1d8717c74c3d557a: !TransformComponent + Id: 9a546d4a-46b0-4c7b-994d-d3dcb4f2167e + Position: {X: 7.45592, Y: 0.0, Z: 1.16251516} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 197a5f3ec2be91fe9cbe79259649629b: ref!! 8f8417cb-2575-42ec-8c71-72eeea27ee48 + - Entity: + Id: 559e1f22-f872-47b4-a9a3-0b57887c0911 + Name: LaserBeam + Components: + c2a61ac9cca3304c949c26193b0945c4: !TransformComponent + Id: 57847509-d7f5-4c50-8f1d-057e14117d41 + Position: {X: 0.5, Y: 2.5, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 9406e2b7130bca40c2c768f5946242ff: ref!! d8843338-68f4-4a0f-ac6a-923517de0ed8 + 5ee7f85c3fbac746b5c31e169615a5c7: !ParticleSystemComponent + Id: 3836fb7d-8356-4837-b6d2-01b04cffd6bb + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 0.121568628, B: 0.121568628, A: 1.0} + Speed: 6.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + f239db465dd7354bbc55100bd300b151: + EmitterName: sparks + ParticleLifetime: {X: 1.0, Y: 5.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + ba54a1971cd84340b5ba37f508a3bd2c: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 881873fa3d3a744db46ae3db16b7d133: + Key: 1.0 + Value: 0.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 150.0, Y: 150.0, Z: 150.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: null + ForceTexCoords: false + Spawners: + 946a1b5e1895434284c7dbdaa728c786: !SpawnerBurst + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 100 + Initializers: + 581d30af2592fb41a520efcb0f64656c: !InitialPositionParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: true + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: true + ParentControlFlag: Group00 + SeedOffset: 0 + PositionMin: {X: -0.5, Y: -0.1, Z: -0.1} + PositionMax: {X: 0.5, Y: 0.1, Z: 0.1} + 0460848851abf642879131d04c839872: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.3 + SeedOffset: 24 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.05, Y: 0.2} + cd410cf87ddf07449ea894f8b8cb5238: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.02, Y: -0.01, Z: -0.02} + VelocityMax: {X: 0.02, Y: 0.04, Z: 0.02} + 855cafaded1b164dab92516ac877abf5: !InitialColorParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + ParentName: LaserEmitter02 + ParentSeedOffset: 0 + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ParentControlFlag: Group00 + SeedOffset: 0 + ColorMin: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + ColorMax: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Updaters: {} + eabed859a30c6f409b30f3e5fa9295b2: + EmitterName: LaserEmitter02 + MaxParticlesOverride: 10 + ParticleLifetime: {X: 0.2, Y: 0.2} + ShapeBuilder: !ShapeBuilderRibbon + SmoothingPolicy: None + Segments: 5 + TextureCoordinatePolicy: AsIs + TexCoordsFactor: 1.0 + UVRotate: + FlipX: false + FlipY: false + UVClockwise: Degree0 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 100.0, Y: 100.0, Z: 100.0, W: 1.0} + RightChild: !ComputeTextureColor + Texture: da9b119e-ce87-4f7b-a4cc-2e93b158f137:Textures/Gradation01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: !UVBuilderScroll + StartFrame: {X: 0.0, Y: 0.0, Z: 1.0, W: 1.0} + EndFrame: {X: 0.0, Y: 1.0, Z: 1.0, W: 2.0} + ForceTexCoords: false + Spawners: + 771c66d89d336449959f8c37915bdb0e: !SpawnerPerFrame + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 10.0 + Framerate: 60.0 + Initializers: + af1eef0c052b814ab025d0cbeb5ef838: !InitialPositionArc + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + Target: ref!! 16212efb-e308-4024-ab4a-8ba1bead3a25 + DisplayParticleRotation: true + DisplayParticleScale: false + FallbackTarget: {X: 0.0, Y: 0.0, Z: -1.0} + DisplayParticleScaleUniform: false + ArcHeight: 0.0 + Sequential: true + FixedLength: 0 + PositionMin: {X: 0.0, Y: 0.0, Z: 0.0} + PositionMax: {X: 0.0, Y: 0.0, Z: 0.0} + SeedOffset: 0 + 6d09f593db786145af6ba89f386f9b48: !InitialSpawnOrder + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + d1dbc13de4fdfd44a592f202d7bed600: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.5 + SeedOffset: 1 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.5, Y: 0.6} + Updaters: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: d0b8df39-fac2-48ce-bd8f-a2f847d3157d + InstanceId: 8b7adf3d-a4b5-4ccc-8b1d-df62591c48d1 + - Folder: Props + Entity: + Id: 56ad9e03-a770-4654-b15f-9a5b1fcb57cc + Name: Pillar1 + Components: + d2ecfd3949a7e4d5c5de0918cbf8d6bb: !TransformComponent + Id: 965df04a-1e5e-48ba-aac2-63b57e41d8d4 + Position*: {X: -12.1473427, Y: 0.0, Z: -4.08268547} + Rotation*: {X: 0.0, Y: 0.99999994, Z: 0.0, W: 0.0} + Scale: {X: 0.5, Y: 0.5, Z: 0.5} + Children: {} + f36058d7fd850c8a967d320a21f59efc: !ModelComponent + Id: 7ed228ea-2a5c-4eb5-8cae-0db7bf44f7f9 + Model: cf64cebf-e975-4b41-904d-3160bb54127f:Environment/Props/Models/Pillar1 + Materials: {} + c450fe5c75d529fe51b0c495a32b91b3: !StaticColliderComponent + Id: 099bb114-2faf-43b1-82bc-dc324968fbfe + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 1d67cc52a11e0847caf11de57e6ad84e: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 14.0, Z: 1.2} + LocalOffset: {X: 0.0, Y: 7.0, Z: -0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + ec18f000c860aedb1c7c2d1839b956d8: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 3.0, Z: 2.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 22e9dad3-d3c8-4e99-a60f-03e52029874e:Environment/Props/Prefabs/Pillar1 + BasePartId: 09ec4e12-8aa4-48f4-ad5f-fa4bbdc60ea8 + InstanceId: 69f59673-3143-4cd8-8944-4d3d94247fde + - Folder: Props + Entity: + Id: 5b4e0aac-367c-459d-b68d-ca49e3ea0e55 + Name: Satellite_spinning + Components: + 09a9408f5bec888ef8aa26dd54f9da0b: !TransformComponent + Id: 6d80ead2-3e3f-4a1a-8c21-7a76466bff05 + Position: {X: 6.0, Y: 0.0, Z: -14.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: + 109852ea8372782eedbd2963b87d0e09: ref!! 240f6701-4b5f-4601-9aec-da6847813104 + a28bf0610663bb3381228757ebdfada2: ref!! 5476bfe0-f499-4bc9-9742-5b741de1633f + - Folder: Props + Entity: + Id: 601e5103-de15-4d50-ada3-d8ad117ba857 + Name: Small_Wall + Components: + b169bb0a28fc365afeac43ee8f183ee6: !TransformComponent + Id: 9c2cf783-58fb-4315-9c22-13628045e86d + Position*: {X: -7.0, Y: 0.0, Z: 3.00000024} + Rotation*: {X: 0.0, Y: -1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 07ce1731b5c55346319dfe8de1941a66: !ModelComponent + Id: 6741ca9a-896f-4e6a-b308-84703d5ac78f + Model: 5d139f33-5b0c-4e35-ab70-78b928020552:Environment/Walls/PrefabModels/Small_Wall + Materials: {} + f67e43e13ee3fb89abc0bbaba3837c37: !StaticColliderComponent + Id: 301887ce-577c-4962-a53c-b63d3013b3ee + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + c40463507837835195777deb473f14de: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 1.5, Y: 1.0, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 76617c83803d5680acec68f22ab9ee48: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 0.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + a6227beb392d58cacc21431aa494be07: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 2.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + Base: + BasePartAsset: 35e9585d-5854-46bb-806b-d343b98a6b93:Environment/Walls/Prefabs/Small_Wall_Grouped + BasePartId: cfe6176c-8d73-4ab9-8cd5-43229726c1ff + InstanceId: e93dcfa9-0d13-470a-af79-ad20bf75998a + - Folder: Props + Entity: + Id: 646b07f6-9faf-4a28-bec1-f917dc6c1cef + Name: Vent + Components: + 9385595b1d62aa4bb2b4c469cfe0c781: !TransformComponent + Id: fdf2c79e-b2a2-4606-93c7-1909d9deb6ba + Position*: {X: -24.50766, Y: 0.0, Z: -6.58682251} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: 2.98023224E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + fef582b5ce88153fe16e0207caff2767: ref!! ccdb87cb-9f4f-40fa-8880-2c0a22ce4d20 + ad7e16aa5036ddb39dd344dbe2453ee0: ref!! 3ef4f9d6-4f9f-4127-a64a-bd192373621a + 1200685bbff2fe1e5c49bf133a5e169b: ref!! 83f18cc1-170a-4a40-88dd-d76a39eb7a1f + b506b0ff932d7e6f0853bd4acef69b6c: ref!! c29acb3e-9053-4510-aa3f-52540f6b1795 + Base: + BasePartAsset: b5275603-ec75-4bf7-b9cd-6613fe69d2b9:Environment/Props/Prefabs/Vent + BasePartId: 5c398975-e1e7-4877-af93-881930263e94 + InstanceId: 4b0e5c6b-2277-421a-bc7b-9ad494da90a0 + - Entity: + Id: 6699b146-1ebd-4d9f-ac33-bfe670908683 + Name: vfx-Engine + Components: + 585f08a4c7e8554391f68583881993a2: !TransformComponent + Id: 9f83baba-df19-48dd-9116-4fd9ef2a60e6 + Position: {X: 0.0, Y: 0.2, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + c1ecc9674350ec47b258da4ab8ccf2ff: ref!! f4df23bd-3bba-4892-a8f7-2116e911ac79 + c141928df7725e448d9ee2d635345744: !AudioEmitterComponent + Id: 3eaf9e53-5507-48ff-9368-9db5003b0afc + Sounds: + 210c4fe5f3b4c243942a23a4b3f26e49~Engine: 1d4673e5-cfbf-45eb-a34f-6d0c93074702:Drones/Sounds/Engine0 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + Base: + BasePartAsset: aac84dfd-95cb-4a1f-8b00-00e61427e600:Drones/Prefabs/RocketDrone + BasePartId: e84e5acd-b1a3-43f4-9066-a3247f4be1e3 + InstanceId: 0c4e18cd-79c1-4088-bf31-3e91c49ac6e0 + - Entity: + Id: 66fab98c-d50a-45b2-bba0-b5fac193d983 + Name: AlertZoneTrigger + Components: + 37741c7f7923b7e1ef2d73915a26c89b: !TransformComponent + Id: 11cce434-fcff-416b-8cf8-ddf18812946c + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 557d0a5f00f82108bd3505f6850bc931: !RigidbodyComponent + Id: 8b67f78f-9ef0-49db-8d3a-32f4e8de7842 + CollisionGroup: CustomFilter2 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: true + IsKinematic: true + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 65240769cedf3fbd99aca64e97ba4ae6: !SphereColliderShapeDesc + Is2D: false + Radius: 1.0 + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + Base: + BasePartAsset: aac85dfd-95cb-4a1f-8b00-00e61427e601:Drones/Prefabs/EnergyDrone + BasePartId: 79e33d69-4e12-473f-bdc6-0c107e3244ad + InstanceId: 9db2b9d8-5355-4afa-859a-f56c63d6a8d5 + - Entity: + Id: 6806f1db-9d7d-4caf-b2de-74226b540478 + Name: Sparks + Components: + ff26b404fd96534ba50fff60cdb5128a: !TransformComponent + Id: b6ac27ee-ff35-4474-9a18-3077ea83f6ac + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + eac5e46777b7354babea586ef30bd4d1: !ParticleSystemComponent + Id: f8a7d7d2-3aaa-48b0-a7a8-0e6e36e108ab + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + da465e53965ade4fabe172d1fb19dc30: + EmitterName: sparks + ParticleLifetime: {X: 1.5, Y: 2.0} + ShapeBuilder: !ShapeBuilderOrientedQuad + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 66179a362867ad4fa81c4828ed37b306: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 543edb979345114aaf57da0586b2b1f3: + Key: 0.25 + Value: 0.5 + TangentType: Linear + 48220905d438de4b959e474a415a16ce: + Key: 1.0 + Value: 0.1 + TangentType: Linear + ScaleLength: true + LengthFactor: 3.0 + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 200.0, Y: 200.0, Z: 200.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 91119660-137e-4be0-bcb9-32f8aeee6ca8:Textures/dota + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + c279c8c5a4ac5e4bb9dd74ae0c4ce522: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount*: 120.0 + Initializers: + 2bf8de46251ee442b293ab905c0871d1: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.3 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.05, Y: 0.02} + e9ae5eeccf4333458f3c00f2b2a75054: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.03, Y: -0.03, Z: -0.03} + PositionMax: {X: 0.03, Y: 0.03, Z: 0.03} + Interpolate: false + e3f2dfa8c4b2e14685c4b3aba307172d: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: 0.0, Y: 3.0, Z: 0.0} + VelocityMax: {X: 3.0, Y: 4.0, Z: 3.0} + Updaters: + b2b11ca17ffada469874b44e6649cfd4: !UpdaterGravity + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + GravitationalAcceleration: {X: 0.0, Y: -9.80665, Z: 0.0} + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + a79b1f60c1902143b6307dd66abf51d5: !UpdaterSpeedToDirection + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + 1f0893c277cc9944b3dd11dd4a146534: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + caf74a8c447ba4419561e5cf23beb6a1: + Key: 0.0 + Value: {R: 0.1, G: 0.3, B: 1.0, A: 0.1} + TangentType: Linear + c01c3713703bd1419e97bbe94289ab0a: + Key: 1.0 + Value: {R: 0.1, G: 0.3, B: 1.0, A: 0.5} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 0d41855c55cfcd419fb3035290400829: + EmitterName: smoke + ParticleLifetime: {X: 3.0, Y: 4.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: null + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 1.0, Y: 1.0, Z: 1.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: fa1018e4-c74d-4495-9535-134f5a06e4cd:Textures/SMO001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: !UVBuilderFlipbook + XDivisions: 8 + YDivisions: 8 + StartingFrame: 0 + AnimationSpeed: 64 + ForceTexCoords: false + Spawners: + e50d93489a30be44bbebd701dcb65f6a: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 10.0 + Initializers: + a21e9cb2a8bf8644b6169341be64314f: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.05, Y: 0.3, Z: -0.05} + VelocityMax: {X: 0.05, Y: 0.4, Z: 0.05} + e4a11e3acc820643ae48224552a9a515: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + e0b8f7c67c6ce9439ba76a1bd6cfa7f0: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.5 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.5, Y: 1.0} + 86147475590605478ba314d672d20660: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.1, Y: 0.0, Z: -0.1} + PositionMax: {X: 0.1, Y: 0.0, Z: 0.1} + Interpolate: false + Updaters: + b17cff875d669f499d203cc83e037c0c: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + d300a7e45c2a724db551167f0e543b0a: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.05} + TangentType: Linear + 7edeaa8dd1cba04b941cea8b0f3a0c00: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 08a5f70ad7c56f4ca2e4f64a3c798053: + EmitterName: light + ParticleLifetime: {X: 0.05, Y: 0.05} + DrawPriority: 5 + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: null + SamplerRotation: null + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 30.0, Y: 40.0, Z: 50.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 902938804c93fb4b861d53eee1ae2c0b: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 0.5, Y: 0.1} + SpawnCount: 8.0 + Initializers: + cefeaf78276ac545881e1c827aecc458: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: 0.0, Y: 360.0} + Updaters: + d12128e39a11eb4dac43c4ca32b9babf: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + fe6a13211f49d94498b31de2b381881e: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + 8751ea2a3f769648b7a2d7615393278b: + Key: 0.5 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.1} + TangentType: Linear + 4da52f14639c7d448abd17cdf528ee07: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + Base: + BasePartAsset: ded8b935-865e-4133-b438-79aa043e6a86:VFXPrefabs/vfx-Sparks + BasePartId: 4bb551db-595c-4c2f-928c-19e06785ef70 + InstanceId: d854ddd1-1a91-47b0-9306-fd7c1b78eb27 + - Folder: Props + Entity: + Id: 68a42225-e9fc-4bf3-9349-b68d39a0d827 + Name: box_1 + Components: + 809778ee97de74479d46b2b89cf3fd55: !TransformComponent + Id: 0afc7adb-e405-45c8-9fd5-e7020ec4e435 + Position*: {X: -23.5711937, Y: 0.0, Z: -11.1827011} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + 46d65c287ed37b419febba3f2fc9e168: !ModelComponent + Id: 94755e27-4640-4ead-9931-00df544eb99c + Model: 46441ab3-67fb-40d4-8b72-8dd1db5d988e:Environment/Props/Models/Box1 + Materials: {} + 97af1ceb4c685740b019dc46621ca5bd: !StaticColliderComponent + Id: 16d3a76e-b505-4b67-b48f-fcec4097401e + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 30ff71837d20084985383f3411cf2ed8: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.95, Y: 0.95, Z: 0.95} + LocalOffset: {X: 0.0, Y: 0.475, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b23b46aa-4d3f-45a8-ab4b-7c5a9e4d9d99:Environment/Props/Prefabs/Box1 + BasePartId: e8b2a223-8164-4e20-8309-f81a90ca09cc + InstanceId: 8d678e37-1dcf-4df2-9bf6-3ed744b385ec + - Folder: null + Entity: + Id: 69f99aa8-1905-4c2e-90ba-b4c77d3963a5 + Name: Tubes_base + Components: + 7cdd3b1a1396bae0df8d315686b47524: !TransformComponent + Id: b5db1211-c365-4bdc-b684-48c8c306a35c + Position: {X: 0.0, Y: 0.0, Z: 3.15} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: -1.0} + Children: {} + 14c6a602fe3acc99031df8e58a62d2c8: !StaticColliderComponent + Id: 719971d0-d262-45a6-84bc-ed43c1d274dc + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 2f121f88c1f6896ca79a2939aa8a095c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.25, Z: 1.2} + LocalOffset: {X: 0.0, Y: 0.625, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 9a70c79d932274ae3d789c1b8e505eed: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 0.7, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.35, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + c693012fa2a7a493118f8d327a097904: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.6, Z: -0.3} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + ec075d7b9a08dd03f4591017a4bce1a2: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: -0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 7742036734daf5a2f5497973ad25733f: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: 0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 62e87c0b-15d8-4628-95c9-7880f4cf2fe1:Environment/Props/Prefabs/Tubes + BasePartId: 6b5a24fa-0d02-4afd-abf9-40cf450e9674 + InstanceId: ea2d012f-ad42-4e79-b402-81e63326bcb2 + - Folder: Props + Entity: + Id: 70347026-b3da-4313-857e-68d8db960477 + Name: Vent + Components: + 9385595b1d62aa4bb2b4c469cfe0c781: !TransformComponent + Id: 4ceb3117-e1d8-4f04-b69a-5fa28a095efa + Position*: {X: -24.5076561, Y: 0.0, Z: -0.5868225} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: 2.98023224E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + fef582b5ce88153fe16e0207caff2767: ref!! 86c6bb97-9047-49af-830f-4676d162ea49 + ad7e16aa5036ddb39dd344dbe2453ee0: ref!! 8fe83e50-f372-46c7-a41f-18fa73a0ba9b + 1200685bbff2fe1e5c49bf133a5e169b: ref!! 5275df67-4e99-4f86-90b8-2b518133e683 + b506b0ff932d7e6f0853bd4acef69b6c: ref!! 5f27e80c-0657-490d-8915-217774ff4163 + Base: + BasePartAsset: b5275603-ec75-4bf7-b9cd-6613fe69d2b9:Environment/Props/Prefabs/Vent + BasePartId: 5c398975-e1e7-4877-af93-881930263e94 + InstanceId: 74d084a0-5d20-4a3a-8c9e-64f7c470d6c1 + - Entity: + Id: 70e325e3-11c2-40f5-ad3c-963d0ecfb02b + Name: LaserFence_Static + Components: + fb9b8e052602e60735334f7419c9e54a: !TransformComponent + Id: ca190059-b688-4108-8af2-c3a969e77000 + Position: {X: -3.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 0.6, Y: 0.6, Z: 0.6} + Children: + 72f98f4652f07969b02387bf80f44bb6: ref!! bf441281-ebe1-4409-ab4b-beb2ec2c58ea + ac54ba65908c8e57e9e7d04aaa225e10: ref!! 07c02567-3d49-4f95-931e-d834feee4e57 + c9f4bf3456ad38e4294e8f90e4bc16ba: ref!! ae9b5888-a93f-43d7-a32b-cab39b4d3941 + 985fa8fdb9571299e3e7f9b8b1f090f1: ref!! 57847509-d7f5-4c50-8f1d-057e14117d41 + eebd194cebc9a12cf0aa06c693e971b7: !StaticColliderComponent + Id: 27ceae4d-451f-46ac-97cd-c9f145cfa8d8 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 7e00afee3484d23f207fe6d6fac12d9a: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 3.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 6022993f-f245-4b95-ae81-8a6e80860cd7 + InstanceId: 8b7adf3d-a4b5-4ccc-8b1d-df62591c48d1 + - Entity: + Id: 72148bd5-1ed1-45c6-b0bb-78611512c97a + Name: Steam + Components: + c1ecc9674350ec47b258da4ab8ccf2ff: !TransformComponent + Id: 07442fa7-8db2-4ad9-8eb9-81e485b2f4f5 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8323bf5daa524c4fb5d833e41b08b32d: !ParticleSystemComponent + Id: 80df7671-16d8-4ac9-ad1c-389823b2a318 + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed*: 0.15 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + 9a3a5271a4a0934d9467f6b095793379: + ParticleLifetime: {X: 0.5, Y: 0.5} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 0383cd796e839e4b9667af5d0fe71756: + Key: 0.0 + Value: 0.2 + TangentType: Linear + 3c3bf45d6e50e542871470a99fdfd9f3: + Key: 0.3 + Value: 0.5 + TangentType: Linear + aa6cd07e77ba1c4da6e836dff7b31695: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 5.0, Y: 5.0, Z: 5.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture*: 9cbbe433-0bc7-48e9-91c8-c7f05f957afd:Textures/SMO001_2 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder*: !UVBuilderFlipbook + XDivisions: 8 + YDivisions: 8 + StartingFrame: 0 + AnimationSpeed: 64 + ForceTexCoords: false + Spawners: + fa12c9550522c24fa400d8ce84ef83a0: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 50.0 + Initializers: + 3994a4c9897c7049af5217d699e668a9: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.4, Y: 0.5} + 7fa5fb2d4e692c4aae5cda5ce081ca44: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: 0.0, Y: 0.0, Z: 0.0} + PositionMax: {X: 0.0, Y: 0.0, Z: 0.0} + Interpolate: false + 3d037e54f2051d42a511f75567a2d5eb: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin*: {X: -0.05, Y: 2.0, Z: -0.05} + VelocityMax*: {X: 0.05, Y: 3.0, Z: 0.05} + d4d112e1ace7b944828fa9278f3938e1: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + Updaters: + 226c0f6bc8f05441a0eb6454e9f89045: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 82276cc03e3f854b9dc5c50ece2e25f9: + Key: 0.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + e3927f1e92cb4d4f80c729960776e1ca: + Key: 0.2 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.5} + TangentType: Linear + bb31441c3997734baf5d4b324f145da1: + Key: 1.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + Base: + BasePartAsset: 7e583813-c264-4c77-bb7f-23f0f609968d:VFXPrefabs/vfx-Steam + BasePartId: 39e6666d-d2d1-49c3-8f0e-31f321ca5b12 + InstanceId: 3fd5b9f8-d60b-4934-a3cb-be2eb90c8f2a + - Entity: + Id: 731b7745-3f6e-4474-a6f8-f98690d4e46f + Name: vfx-Engine + Components: + 585f08a4c7e8554391f68583881993a2: !TransformComponent + Id: a4085f58-e8c7-4355-91f6-8583881993a2 + Position: {X: 0.0, Y: 0.2, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + c1ecc9674350ec47b258da4ab8ccf2ff: ref!! c11bb08b-f3d1-4904-a7f8-53f314aeb3a0 + c141928df7725e448d9ee2d635345744: !AudioEmitterComponent + Id: 8d9241c1-72f7-445e-8d9e-e2d635345744 + Sounds: + 210c4fe5f3b4c243942a23a4b3f26e49~Engine: 1d4673e5-cfbf-45eb-a34f-6d0c93074702:Drones/Sounds/Engine0 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + Base: + BasePartAsset: aac85dfd-95cb-4a1f-8b00-00e61427e601:Drones/Prefabs/EnergyDrone + BasePartId: e84e5acd-b1a3-43f4-9066-a3247f4be1e3 + InstanceId: 0e049815-8747-42d9-8845-686ab06e488c + - Entity: + Id: 743e528d-d9d9-49b2-b773-982e9a388035 + Name: Navigation bounding box + Components: + 446236b8dde44c51953f8299c0399ea5: !TransformComponent + Id: f87a56fc-75fc-42f1-bfaa-176469dbdbca + Position: {X: -10.1235828, Y: 0.0, Z: -0.20935607} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 0.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + bbf3cd509d4749718ebab465c3fd0661: !Xenko.Navigation.NavigationBoundingBoxComponent,Xenko.Navigation + Id: eab8ef1a-e0cd-41ba-b019-0edc89aefd9e + Size: {X: 22.5, Y: 10.0, Z: 17.5} + - Entity: + Id: 77c494a3-a7b6-4299-93fa-22bf6df20f8e + Name: Steam + Components: + c1ecc9674350ec47b258da4ab8ccf2ff: !TransformComponent + Id: 0f08ccff-1f07-4a6a-81cf-f46b2c7b650d + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8323bf5daa524c4fb5d833e41b08b32d: !ParticleSystemComponent + Id: 5157cf9f-a86c-470a-97ee-3601273f6b5a + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed*: 0.15 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + 9a3a5271a4a0934d9467f6b095793379: + ParticleLifetime: {X: 0.5, Y: 0.5} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 0383cd796e839e4b9667af5d0fe71756: + Key: 0.0 + Value: 0.2 + TangentType: Linear + 3c3bf45d6e50e542871470a99fdfd9f3: + Key: 0.3 + Value: 0.5 + TangentType: Linear + aa6cd07e77ba1c4da6e836dff7b31695: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: null + Material*: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild*: !ComputeFloat4 + Value: {X: 5.0, Y: 5.0, Z: 5.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8dbe2382-769c-45fe-9604-98c5ae5c434c:Textures/SMO001_3 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + fa12c9550522c24fa400d8ce84ef83a0: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 50.0 + Initializers: + 3994a4c9897c7049af5217d699e668a9: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.4, Y: 0.5} + 7fa5fb2d4e692c4aae5cda5ce081ca44: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: 0.0, Y: 0.0, Z: 0.0} + PositionMax: {X: 0.0, Y: 0.0, Z: 0.0} + Interpolate: false + 3d037e54f2051d42a511f75567a2d5eb*: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin*: {X: -0.05, Y: 2.0, Z: -0.05} + VelocityMax*: {X: 0.05, Y: 3.0, Z: 0.05} + d4d112e1ace7b944828fa9278f3938e1: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + Updaters: + 226c0f6bc8f05441a0eb6454e9f89045: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 82276cc03e3f854b9dc5c50ece2e25f9: + Key: 0.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + e3927f1e92cb4d4f80c729960776e1ca: + Key: 0.2 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.5} + TangentType: Linear + bb31441c3997734baf5d4b324f145da1: + Key: 1.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + Base: + BasePartAsset: 7e583813-c264-4c77-bb7f-23f0f609968d:VFXPrefabs/vfx-Steam + BasePartId: 39e6666d-d2d1-49c3-8f0e-31f321ca5b12 + InstanceId: d60d21ca-cf12-461d-999f-0f5b8f609630 + - Folder: Props + Entity: + Id: 783c14c8-91ce-4e17-831a-0704644602eb + Name: Column + Components: + ae874bae5a72d2388b68ae806e484e5d: !TransformComponent + Id: c6eda0d6-af3f-474c-9ff4-f007e5d0c006 + Position*: {X: -14.8093433, Y: 1.765, Z: 9.941175} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + dfdc9bac4fb7b9696b9fa68f7cb87122: ref!! b5c72ea0-f99d-431f-8d0c-3b165bbc1db5 + a81d8f29faac04d87c1b6468b4115fdf: !ModelComponent + Id: 991fb9ea-892d-4f4e-9454-eb5d8266917f + Model: 153687de-2b93-4509-b567-93852598694b:Environment/Props/Models/Column + Materials: {} + a5c7ed4e4ed33cdc6fd350223aec48e8: !StaticColliderComponent + Id: f0de6740-39e5-4df6-ba10-af2aade3cfa9 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 91dcaff8c24c3dcc4c6c422b0c46a843: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 4.0, Z: 2.0} + LocalOffset: {X: 0.0, Y: 0.245, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + e83aa97f296f06c3c4b52601861900a0: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 4.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 4.245, Z: 0.25} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: ba3c136a-df3a-4f13-8171-5099a1dd3899:Environment/Props/Prefabs/Column + BasePartId: 34b78f82-3799-4830-900b-e9455fb561a2 + InstanceId: 3f9e46e0-a359-4995-af17-4a764f3ef91a + - Folder: null + Entity: + Id: 7876d80d-5c2d-46cb-8fe9-e6e815577cf6 + Name: LargePillar + Components: + bd2015d36b46e16cc231215e719a3104: !TransformComponent + Id: 2d826bd8-7702-462a-ace8-d787894e575b + Position: {X: -15.0000057, Y: 3.0, Z: -7.49999762} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 106f6ebf350e9d18de7e2f304a6a107e: !ModelComponent + Id: 1c360b61-3d2d-4ff1-83a4-270a2448d79e + Model: 258dfd07-ef55-4f3e-a0a8-afc05e4ca37b:Environment/Platforms/Models/LargePillar + Materials: {} + - Folder: Gameplay + Entity: + Id: 794a0ca3-6682-44fb-924e-c2d4d4cab5e3 + Name: Drone + Components: + bee1416b5e2d304389e20936f750b8b1: !TransformComponent + Id: cefc3152-9c37-48ec-8edb-a90616e2683c + Position*: {X: -0.5337486, Y: 0.0, Z: -14.8862247} + Rotation*: {X: 0.0, Y: 0.7071067, Z: 0.0, W: -0.7071068} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 68b08d6ef4327063ddfe04b67a961aae: ref!! d958cbd0-0cbd-429a-a093-c174cf9eeec9 + 963458a2c6c68927d38fec6a605500fa: ref!! 39333a6e-06ae-434a-9ebf-089f65202bce + aed3e642d5d71f48bdf23181156082f9: !CharacterComponent + Id: ad1c1a6b-3f15-44ac-be96-5a58b9883ccd + CollisionGroup: CustomFilter3 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + FallSpeed: 10.0 + MaxSlope: {Radians: 0.7853982} + JumpSpeed: 5.0 + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + ColliderShapes: + d27547538ff5dd4eb72e1d385d4862bd: !CylinderColliderShapeDesc + Height: 2.0 + Radius: 1.0 + LocalOffset: {X: 0.0, Y: 1.0, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 827cf65eb5dca148adaa7ef5bc60df35: !AudioEmitterComponent + Id: c4b88ddf-1301-4984-8a0d-f480e143c0e0 + Sounds: + 9f0d8aaa3fc06a44bae1c6cff7aeef58~Death: 4c9333d4-d4d5-4f61-9390-6b2e2602cf1b:Drones/Sounds/Death + 062488fbcb22f344b134f663d4a59ff9~Explosion: 936a2dbe-31df-40cc-836b-18793ffcea22:Drones/Sounds/Explosion + 762f069faf274a408a2da257ca0f4736~Hit0: 732e562c-622b-4fff-8282-58a7efa0b204:Drones/Sounds/Hit0 + ba953638f1e5db4d852167189517624d~Hit1: 973a4551-7cd6-4b8d-8a53-5a61ca9e461b:Drones/Sounds/Hit1 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + c7262ebf0d468f43ba11ca1221215c08: !NavigationComponent + Id: 13cf50b3-29b1-491f-987e-35cf40e00bc6 + NavigationMesh*: cfed2a24-078a-4f6b-b086-27f1eb667e14:Levels/Platform_1-4_NAV + GroupId: 665dbfaa-d91a-ee40-d176-a5eaed1268bc + 238e55139b0b248973a65b6ba75f8d54: !Starbreach.Drones.Drone,Starbreach + Id: ae77928f-091a-4d5a-802a-a7739465b738 + Priority: 4000 + Weapon: !Starbreach.Drones.MissileDroneWeapon,Starbreach + ProjectileSpawnPoint: ref!! 9c027914-bf9c-4dff-859c-4cb82ecf56dc + ReloadTime: 2.0 + ArraySize: {X: 3, Y: 3} + ArrayExtent: {X: 0.5, Y: 0.4} + MaximumRange: 20.0 + ProjectilePrefab: 35063ac9-350d-4c96-b28a-28abc68b4214:Drones/Prefabs/Rocket + AnimationDelay: 0.12 + SpreadAngle: {Radians: 0.1} + ShootingRange: 15.0 + MaximumSpeed: 1.5 + RotationSpeed: 6.283185 + HeadRotationSpeed: 6.283185 + Model: ref!! c345f9fa-a410-4bc2-a674-ae00a06718c0 + DefaultMaterial: b91deeaf-43f6-434a-8400-22a1c6cb0447:Drones/Materials/Drone/DroneUpper + AlertedMaterial: 70cfa151-cffc-4cf1-a0d5-2ac4ac94e4a6:Drones/Materials/Drone/DroneUpper_Alerted + EngineParticle: ref!! 15b9b472-fdb6-4a93-ab4b-3b208f07e1bc + EngineAudioEmitter: ref!! 3eaf9e53-5507-48ff-9368-9db5003b0afc + DroneExplosionPrefab: d1f82cfd-900e-4757-958c-1dd35a4ec775:Drones/Prefabs/DroneExplosion + e3d3d4a2c9c5e7676d484a7a5a41d498: !Starbreach.Drones.PatrollingDroneController,Starbreach + Id: 79e5d828-80b7-4a24-9bb2-82099fecd720 + PathToFollow: null + ChaseAlertZoneRadius: 20.0 + IdleAlertZoneRadius: 15.0 + AlertZoneTriggerEntity: ref!! 43e30e4b-cfe9-485f-93f6-bcacc3f9e976 + Base: + BasePartAsset: aac84dfd-95cb-4a1f-8b00-00e61427e600:Drones/Prefabs/RocketDrone + BasePartId: fb95e431-53b2-4f1b-b194-74a16c023eef + InstanceId: 0c4e18cd-79c1-4088-bf31-3e91c49ac6e0 + - Folder: Gameplay + Entity: + Id: 7b3b7062-4b53-40dc-8150-9699f28159d5 + Name: PlateA + Components: + a3df36179a43cd8c1d8717c74c3d557a: !TransformComponent + Id: f989e288-4b7a-4a59-b130-80b3d9893e78 + Position: {X: 2.45592046, Y: 0.0, Z: -14.2862892} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 197a5f3ec2be91fe9cbe79259649629b: ref!! 8dc5238f-2df4-465a-81ad-dbe64f6efa53 + - Folder: Props + Entity: + Id: 7d118322-49ca-4b0b-baa6-9a00d7eac8e2 + Name: Small_Wall + Components: + b169bb0a28fc365afeac43ee8f183ee6: !TransformComponent + Id: bd4d998b-3d03-4f9e-a33b-f84633de4f13 + Position*: {X: -13.0, Y: 0.0, Z: 2.99999976} + Rotation*: {X: 0.0, Y: -1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 07ce1731b5c55346319dfe8de1941a66: !ModelComponent + Id: 8f503fcf-f8f1-4fb4-b7ac-b57819b3776b + Model: 5d139f33-5b0c-4e35-ab70-78b928020552:Environment/Walls/PrefabModels/Small_Wall + Materials: {} + f67e43e13ee3fb89abc0bbaba3837c37: !StaticColliderComponent + Id: c35ed6f6-0299-49f5-84c7-9e118d4b560d + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + c40463507837835195777deb473f14de: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 1.5, Y: 1.0, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 76617c83803d5680acec68f22ab9ee48: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 0.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + a6227beb392d58cacc21431aa494be07: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 2.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + Base: + BasePartAsset: 35e9585d-5854-46bb-806b-d343b98a6b93:Environment/Walls/Prefabs/Small_Wall_Grouped + BasePartId: cfe6176c-8d73-4ab9-8cd5-43229726c1ff + InstanceId: e3d3d869-cdd6-4903-8329-c1a2549baf44 + - Folder: Props + Entity: + Id: 7e57928d-5166-4bdc-a383-a32319ff3c02 + Name: Small_Wall + Components: + b169bb0a28fc365afeac43ee8f183ee6: !TransformComponent + Id: 1ee85c61-0554-44a2-850e-a14b54261a14 + Position*: {X: -10.0, Y: 0.0, Z: 3.0} + Rotation*: {X: 0.0, Y: -1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 07ce1731b5c55346319dfe8de1941a66: !ModelComponent + Id: d101868e-cd05-4bcd-aa02-0d4e14a3534a + Model: 5d139f33-5b0c-4e35-ab70-78b928020552:Environment/Walls/PrefabModels/Small_Wall + Materials: {} + f67e43e13ee3fb89abc0bbaba3837c37: !StaticColliderComponent + Id: a948bc4c-d422-4d14-9606-1569a71a470a + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + c40463507837835195777deb473f14de: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 1.5, Y: 1.0, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 76617c83803d5680acec68f22ab9ee48: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 0.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + a6227beb392d58cacc21431aa494be07: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 2.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + Base: + BasePartAsset: 35e9585d-5854-46bb-806b-d343b98a6b93:Environment/Walls/Prefabs/Small_Wall_Grouped + BasePartId: cfe6176c-8d73-4ab9-8cd5-43229726c1ff + InstanceId: 25da0c32-8246-4193-b385-2a2bf38b4b78 + - Folder: Props + Entity: + Id: 7f631995-f984-4a9d-a88d-38c3ac9d11e0 + Name: Vent + Components: + 9385595b1d62aa4bb2b4c469cfe0c781: !TransformComponent + Id: 77aa0383-9900-4fc4-a006-afa4cb387fb5 + Position*: {X: -24.507658, Y: 0.0, Z: -4.58682442} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: 2.98023224E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + fef582b5ce88153fe16e0207caff2767: ref!! 8fdcdb98-11d9-464f-a6ba-a2ad5fcab027 + ad7e16aa5036ddb39dd344dbe2453ee0: ref!! f0c56106-9215-49ae-a586-3de79e515a10 + 1200685bbff2fe1e5c49bf133a5e169b: ref!! f24b573e-dfd3-41df-aa3d-ba9b25cffa1e + b506b0ff932d7e6f0853bd4acef69b6c: ref!! e9830bc8-989a-46bc-a989-8aa4f77eab3d + Base: + BasePartAsset: b5275603-ec75-4bf7-b9cd-6613fe69d2b9:Environment/Props/Prefabs/Vent + BasePartId: 5c398975-e1e7-4877-af93-881930263e94 + InstanceId: 184411f0-41af-42a5-963f-e2e24416425e + - Entity: + Id: 81299bca-19e6-441c-83c8-d0253af83f3a + Name: LaserFence_up + Components: + c8c633e320d799468ba2a8e339362d2d: !TransformComponent + Id: b0a8db10-9530-429a-84cd-a813a8500f1a + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3e4e674bd6ad2f439da54f92a29a7eec: !ModelComponent + Id: b6fddfd6-d7ef-463d-8a5f-ab08b8c560cf + Model: ca14aec1-3989-485c-84c0-5d0cbf5858f4:Gameplay/Models/LaserFence_up + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 2051137f-5c3e-4877-b418-d6730043e667 + InstanceId: 8b7adf3d-a4b5-4ccc-8b1d-df62591c48d1 + - Entity: + Id: 85172063-be6b-4b52-8eea-7b4117d34cc4 + Name: ProjectileSpawnPoint + Components: + ef320192025c3947bb1adb1c533630a6: !TransformComponent + Id: f6c84da4-efa0-431f-8b22-adc57c427856 + Position: {X: 0.785251141, Y: 0.0, Z: 1.41112423E-07} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d3a20669d1ecb74791449a8d599302ad: !ModelNodeLinkComponent + Id: 1f57af9f-4d94-4d23-980e-f167fd74790e + Target: null + NodeName: Bone_turret + f2be80b1286b9c4495a77d23ce7fc8b5: !AudioEmitterComponent + Id: fba04372-c03d-4f74-b002-7e6e8f8e4600 + Sounds: + 68142dcfca753ffa32191b0615d93ade~Fire0: bba0e27c-3fb8-4ce6-99be-bc45ea5e03a7:Drones/Sounds/LaserFire0 + ec7e82125fa39f9cd037e85363f7d40f~Fire1: 10ee8241-9a28-45b6-aba4-00c4c39106b6:Drones/Sounds/LaserFire1 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + Base: + BasePartAsset: aac85dfd-95cb-4a1f-8b00-00e61427e601:Drones/Prefabs/EnergyDrone + BasePartId: 92eafacb-5258-4c7b-8040-b4b6d2721043 + InstanceId: 9db2b9d8-5355-4afa-859a-f56c63d6a8d5 + - Entity: + Id: 85642bfc-6423-4964-94e0-e69515eee208 + Name: LaserFence_down + Components: + a4c9a42f24d4c443bad3060f61018c7f: !TransformComponent + Id: 2ebfef43-2d61-4f8c-9cc9-bfe1f82e8c76 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e52519dff8a1534c8d3d763ba4d4e83e: !ModelComponent + Id: e0c4e5c9-ffb1-4d3e-b272-67af4a7bd282 + Model: 4658c1a9-b3b6-4481-b22c-ad61ea3c14d3:Gameplay/Models/LaserFence_down + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: b070b742-1285-4948-a158-2800ee11f5e7 + InstanceId: 8b7adf3d-a4b5-4ccc-8b1d-df62591c48d1 + - Entity: + Id: 866047c0-4fda-41cd-8734-d257a6eb042a + Name: Spot light + Components: + 081b800a6c87b2180231d487b3777aa2: !TransformComponent + Id: b5c72ea0-f99d-431f-8d0c-3b165bbc1db5 + Position: {X: 0.0, Y: 5.07600927, Z: -1.60325944} + Rotation: {X: -0.5616586, Y: 0.0, Z: 0.0, W: 0.8273691} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + badeae4de086452296f096b28cee789e: !LightComponent + Id: 747668a4-5f71-4f19-90a1-398f3791373c + Type: !LightSpot + Color: !ColorRgbProvider + Value: {R: 1.0, G: 1.0, B: 1.0} + Range: 300.0 + AngleOuter: 90.0 + UVScale: {X: 1.0, Y: 1.0} + UVOffset: {X: 0.0, Y: 0.0} + Shadow: + BiasParameters: + DepthBias: 0.001 + Intensity: 100.0 + Base: + BasePartAsset: ba3c136a-df3a-4f13-8171-5099a1dd3899:Environment/Props/Prefabs/Column + BasePartId: e2df8049-7d03-46bd-8171-1134c17d6980 + InstanceId: 3f9e46e0-a359-4995-af17-4a764f3ef91a + - Folder: Props + Entity: + Id: 8687d529-0ec1-4b2c-9f71-d88469bc40cf + Name: QuadBarrels + Components: + 6cba76ddfd1ccfe65a4c5a140756c8d4: !TransformComponent + Id: 9977e407-2491-4ad0-89ac-d43b7f93c013 + Position*: {X: -18.57431, Y: 0.0, Z: -11.6155529} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3280e516b6ce697916b6f1c0823acd38: !ModelComponent + Id: 99ac0fb5-3aff-45dd-ad26-38dc9fd91b49 + Model: bd5c8df1-b6f8-4ae3-9099-b063300bc184:Environment/Props/Models/QuadBarrels + Materials: {} + a0046f2ff924d533f457904736235306: !StaticColliderComponent + Id: 7e190d36-529d-4135-b70b-de90f439a4cd + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 73a42be32d471fc220f6ebc55d725e77: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 3.0, Z: 2.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: bceccb3f-3666-4864-aded-2230c759cbaf:Environment/Props/Prefabs/QuadBarrels + BasePartId: ae3cd2c6-ef7d-4ebb-9bf1-01ff9c1b034c + InstanceId: 9977a8d1-4a9a-4b40-a904-c2fb5873f140 + - Entity: + Id: 88735c0e-7a80-4492-84fe-33ce0ad85cb6 + Name: LaserCylinder + Components: + 6565f891cdba2236dd5dbf1888a0f6e0: !TransformComponent + Id: d8843338-68f4-4a0f-ac6a-923517de0ed8 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: -0.707106769, W: 0.707106769} + Scale: {X: 1.0, Y: 10.0, Z: 1.0} + Children: {} + cec4407060699b5ddb4eeb6f5f980024: !ModelComponent + Id: 75a98061-f215-4b8a-8622-5681e5b099c0 + Model: c11da5de-520a-4bd5-a691-5476b2a812e0:Gameplay/Models/Cylinder + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 6072d1ec-0d92-4855-a83a-bacfa7acc501 + InstanceId: 8b7adf3d-a4b5-4ccc-8b1d-df62591c48d1 + - Entity: + Id: 89bedb56-9ca2-44c8-b5c9-4d6994c0e2b4 + Name: PlatformRocks1 + Components: + dd43820955f856895d010ca56947a308: !TransformComponent + Id: 7cfd25a4-06d4-4bd6-8f70-3ab0e4f93f56 + Position: {X: -7.5, Y: -0.5, Z: 3.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 2149de4d6c83774900fa431c4d3434fa: !ModelComponent + Id: c11eda2a-8d95-4841-b0c5-3162b5cbeecb + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + - Folder: Props + Entity: + Id: 8a1ca1ef-567f-4e4e-81f7-4d2ebb8c06c7 + Name: Tubes_base + Components: + 7cdd3b1a1396bae0df8d315686b47524: !TransformComponent + Id: 1d2f6602-5213-4d2d-92f8-f068249ca8e9 + Position*: {X: 7.492338, Y: 0.0, Z: -10.5868053} + Rotation*: {X: 0.0, Y: 0.99999994, Z: 0.0, W: 0.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 4d4296f2a30a764d9d8fe6bea949fb8e: !ModelComponent + Id: 116b4ea8-69ce-4c5c-bd30-13ed315180d1 + Model: 734077ff-795c-4d1b-9f8c-688d142c4007:Environment/Props/Models/Tubes_base + Materials: {} + 14c6a602fe3acc99031df8e58a62d2c8: !StaticColliderComponent + Id: 9e930662-6db3-4483-9746-95829587f153 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 2f121f88c1f6896ca79a2939aa8a095c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.25, Z: 1.2} + LocalOffset: {X: 0.0, Y: 0.625, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 9a70c79d932274ae3d789c1b8e505eed: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 0.7, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.35, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + c693012fa2a7a493118f8d327a097904: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.6, Z: -0.3} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + ec075d7b9a08dd03f4591017a4bce1a2: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: -0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 7742036734daf5a2f5497973ad25733f: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: 0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: a9eaf641-84b9-4fe0-bb15-bc2c8a67319b:Environment/Props/Prefabs/Tubes_base + BasePartId: e5249e5a-b18b-46fe-96f1-6f11a587b647 + InstanceId: f4311c3a-4a7e-486a-9ceb-4fc855190354 + - Folder: Props + Entity: + Id: 8bef4ca8-720b-403c-a1bd-e331f2dd28f2 + Name: box_1 + Components: + 809778ee97de74479d46b2b89cf3fd55: !TransformComponent + Id: 877f1091-c0c6-412a-9a05-f6ba3c344eb8 + Position*: {X: -29.5005436, Y: 1.913842, Z: -12.3220406} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + 46d65c287ed37b419febba3f2fc9e168: !ModelComponent + Id: 919cd9c3-8e12-460a-8443-602f69e2a21f + Model: 46441ab3-67fb-40d4-8b72-8dd1db5d988e:Environment/Props/Models/Box1 + Materials: {} + 97af1ceb4c685740b019dc46621ca5bd: !StaticColliderComponent + Id: a2206346-076d-4859-81df-81278d564d0e + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 30ff71837d20084985383f3411cf2ed8: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.95, Y: 0.95, Z: 0.95} + LocalOffset: {X: 0.0, Y: 0.475, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b23b46aa-4d3f-45a8-ab4b-7c5a9e4d9d99:Environment/Props/Prefabs/Box1 + BasePartId: e8b2a223-8164-4e20-8309-f81a90ca09cc + InstanceId: 0ec35ff9-ca31-4376-861e-86847e171f2f + - Folder: Platform + Entity: + Id: 8e34d161-892d-4c3b-b704-871b36cb482b + Name: Level_1-2_Platform + Components: + 5c2b695b859f07b9dccd6c155ceb1f9d: !TransformComponent + Id: 397aa8e4-884a-4222-9e98-a9ef3adc8562 + Position: {X: 8.5058, Y: 0.0, Z: -9.586823} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 7addd5bc436e801ae23777a83e507869: ref!! 33689f64-37b0-41c0-9fd9-1788c1dc481f + 495f025795ce56835aeee7bd6fa12590: ref!! c0afa873-7632-46e7-b3c5-8e8d0a10bcd5 + a8f39a0ea7cd562655353a638ecca983: ref!! 756b86ab-eb18-41d4-bba9-4e43c7c3e79a + 7fab600b4158b4004b1c145e72c72652: ref!! 7cfd25a4-06d4-4bd6-8f70-3ab0e4f93f56 + a867d618ed9cb5724fb4408c61062ca6: ref!! 0957bcb6-967a-4c9c-98f7-9eda9ec52d11 + d8aadfb5bc2446e11273faadb2d1ae1f: ref!! 705293d3-6382-47ee-9f97-0d7cfe1caa6e + 77860d25cc866e3ba716f7148f761f7b: ref!! 2741b5ce-b6d4-4f90-b59a-a3af799cd043 + 3134ddfbdaf537587f1e68e37687ebe6: ref!! 2d826bd8-7702-462a-ace8-d787894e575b + 70f5851edc5904f6266b40e1c3264086: ref!! bafd387d-54e1-4dce-9567-9bde718bc905 + 93abf68f8d7fae231cef6b2282281504: ref!! e30ca3cf-5429-4d4e-ad53-2fa43b947704 + 958af9a828cca61a6e0c3887f8aca28c: !ModelComponent + Id: 64286e83-86fd-4b34-8c19-10b3d7360e88 + Model: 2ef48566-2890-4e61-97cd-e49d7e79e479:Levels/PrefabModels/Level_1-4_Platform + Materials: {} + - Entity: + Id: 92225be4-42ba-4e21-b15d-7062439a7061 + Name: vfx-Steam + Components: + 777d3567c93a6eeed44d2e51035db757: !TransformComponent + Id: 5db1fc30-34bf-4cd7-84f9-6e1ebc4b5aa2 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 4.0, Y: 4.0, Z: 4.0} + Children: + 315debc2ba806228bdd531cd3237a07e: ref!! 0f08ccff-1f07-4a6a-81cf-f46b2c7b650d + - Entity: + Id: 934458d2-c564-43ac-8f35-7f3061f99a2f + Name: LargePillar + Components: + bd2015d36b46e16cc231215e719a3104: !TransformComponent + Id: 2741b5ce-b6d4-4f90-b59a-a3af799cd043 + Position: {X: 8.499996, Y: 3.0, Z: -7.499996} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 106f6ebf350e9d18de7e2f304a6a107e: !ModelComponent + Id: 80dd23e1-50af-440b-af80-fd78329bf035 + Model: 258dfd07-ef55-4f3e-a0a8-afc05e4ca37b:Environment/Platforms/Models/LargePillar + Materials: {} + - Entity: + Id: 9521289e-c51c-4d5e-8443-a9b03ec9eea6 + Name: LaserArc + Components: + 336f7ce982182944823955cce7f2b5ee: !TransformComponent + Id: 248bd911-35cf-4e5d-ae66-36b96c16b3d0 + Position: {X: 0.5, Y: 1.75, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 6127bf25-0b62-4e22-863f-5009c2f77592 + InstanceId: 8b7adf3d-a4b5-4ccc-8b1d-df62591c48d1 + - Entity: + Id: 969f0915-bdf9-46f8-b8b0-5d7248b833ed + Name: Vent_light_mesh + Components: + 54af95a0dca10843911d079ccfaa0cfd: !TransformComponent + Id: f0c56106-9215-49ae-a586-3de79e515a10 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6f6f8132f03b9c4db90f22a935e18733: !ModelComponent + Id: afe02895-3a24-4244-aa9c-a066a3a0a519 + Model: bcf6e9e7-0e5d-45f3-ba1b-0b2025d17e1c:Environment/Props/Models/Vent_light_mesh + Materials: {} + Base: + BasePartAsset: b5275603-ec75-4bf7-b9cd-6613fe69d2b9:Environment/Props/Prefabs/Vent + BasePartId: 9b350f50-f364-4653-8b82-1b0bf30e2f23 + InstanceId: 184411f0-41af-42a5-963f-e2e24416425e + - Entity: + Id: 97789583-a5c9-4f52-947d-67b327a3ff26 + Name: vfx-Steam + Components: + 777d3567c93a6eeed44d2e51035db757: !TransformComponent + Id: 03499c42-7aba-4665-9b93-87cec7e7ab78 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 4.0, Y: 4.0, Z: 4.0} + Children: + 315debc2ba806228bdd531cd3237a07e: ref!! 07442fa7-8db2-4ad9-8eb9-81e485b2f4f5 + - Entity: + Id: 9a8aec37-462e-4d39-bd2a-96aca17b1104 + Name: PlatformColliders + Components: + 712c2a78d7a4b804c910fe6c380d66c3: !TransformComponent + Id: 33689f64-37b0-41c0-9fd9-1788c1dc481f + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 5285eb709655df5235af0527dbc0edac: !StaticColliderComponent + Id: 2622375a-682e-49ee-9df6-219f556f0762 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 4c32acecb9c8dda8e7090dfff42e9550: !BoxColliderShapeDesc + Is2D: false + Size: {X: 9.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 4.2, Y: 0.0, Z: 1.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 04ab39ed91785b0f88a2bec6281a8715: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 2.0, Z: 42.0} + LocalOffset: {X: 8.2, Y: 0.0, Z: -20.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 5b4f027073035190d32f2d411570fe9b: !BoxColliderShapeDesc + Is2D: false + Size: {X: 32.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: -8.3, Y: 0.0, Z: -40.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + dad6ee93b613eebe994a5ed541ca1f8a: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 2.0, Z: 24.0} + LocalOffset: {X: -24.0, Y: 0.0, Z: -28.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + d76d8328bbbc4a757e783670449ff44c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 11.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: -19.0, Y: 0.0, Z: -15.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 1bd04222d3e7b1df996cd35223ce9fcf: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 2.0, Z: 16.0} + LocalOffset: {X: -14.0, Y: 0.0, Z: -7.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 39560d1024ae2fd77a65aeda24abfc2f: !BoxColliderShapeDesc + Is2D: false + Size: {X: 9.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: -10.0, Y: 0.0, Z: 1.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + e584dcfbb8fa814e57c5e0cd619ff9cb: !StaticPlaneColliderShapeDesc + Normal: {X: 0.0, Y: 1.0, Z: 0.0} + Offset: 0.0 + - Folder: Props + Entity: + Id: 9b9aa479-c992-475c-a331-165907e85618 + Name: box_2 + Components: + a4a1352c38d8d946adbd0a9eb22ecf7a: !TransformComponent + Id: 8ee965f9-f271-436a-9251-854f8919978f + Position*: {X: -21.1892357, Y: 0.0, Z: -11.6155548} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + 7a4dfc02f3a9234aa72a05fb7a824816: !ModelComponent + Id: 9c801027-e63c-4f6d-8bba-8830b4145707 + Model: 41fc6c99-792b-46fe-942c-ef3763a2407a:Environment/Props/Models/Box2 + Materials: {} + d4b4d5f2d8369d46845444c61c1e61ec: !StaticColliderComponent + Id: d3d207d3-f10b-4484-8590-a7ad8da3b2d3 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 82ea61f172e46a4aab7ce970e3a3f887: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.9, Y: 0.9, Z: 0.95} + LocalOffset: {X: 0.0, Y: 0.45, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 5246c639-719c-4380-a886-7bdfb16f5cbd:Environment/Props/Prefabs/Box2 + BasePartId: f0b73707-1f65-435f-a5ba-5c09ec4ef144 + InstanceId: 087cbe2b-8fab-48af-9db1-878ae24a2fe9 + - Entity: + Id: 9c027914-bf9c-4dff-859c-4cb82ecf56dc + Name: ProjectileSpawnPoint + Components: + ef320192025c3947bb1adb1c533630a6: !TransformComponent + Id: a61acf3b-4a05-414e-b800-a006f760322e + Position: {X: 0.787716269, Y: -0.0260489322, Z: 1.45098568E-07} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d3a20669d1ecb74791449a8d599302ad: !ModelNodeLinkComponent + Id: 69786b39-5c4d-4ac9-bd3b-453d1db12134 + Target: null + NodeName: Bone_turret + f2be80b1286b9c4495a77d23ce7fc8b5: !AudioEmitterComponent + Id: 575d4e3e-a2e7-4811-bb1a-c819509f9231 + Sounds: + 483657d21a6056232b19c15d3e90763b~Fire: 3de4a0e3-c642-4aa1-9801-7583f510ed44:Drones/Sounds/RocketFire + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + Base: + BasePartAsset: aac84dfd-95cb-4a1f-8b00-00e61427e600:Drones/Prefabs/RocketDrone + BasePartId: 92eafacb-5258-4c7b-8040-b4b6d2721043 + InstanceId: 0c4e18cd-79c1-4088-bf31-3e91c49ac6e0 + - Entity: + Id: a32d3f16-6087-4d27-871e-c4a18a07982a + Name: LaserFence_up + Components: + c8c633e320d799468ba2a8e339362d2d: !TransformComponent + Id: 07c02567-3d49-4f95-931e-d834feee4e57 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3e4e674bd6ad2f439da54f92a29a7eec: !ModelComponent + Id: 00a4a343-2a8b-46ff-99b2-6e0f34198709 + Model: ca14aec1-3989-485c-84c0-5d0cbf5858f4:Gameplay/Models/LaserFence_up + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: e88381a2-6f10-476d-853f-56ea6884859f + InstanceId: 8b7adf3d-a4b5-4ccc-8b1d-df62591c48d1 + - Folder: Props + Entity: + Id: a38b3467-7bc0-443e-b90e-8ed75e25ab8f + Name: Tubes_base + Components: + 7cdd3b1a1396bae0df8d315686b47524: !TransformComponent + Id: 0d046f8d-5103-499a-934d-a4e09ac52d67 + Position*: {X: -4.50765848, Y: 0.0, Z: -10.5868073} + Rotation*: {X: 0.0, Y: 0.99999994, Z: 0.0, W: 0.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 4d4296f2a30a764d9d8fe6bea949fb8e: !ModelComponent + Id: 25285d3c-5f91-4e15-b3e5-c9c494ec5fda + Model: 734077ff-795c-4d1b-9f8c-688d142c4007:Environment/Props/Models/Tubes_base + Materials: {} + 14c6a602fe3acc99031df8e58a62d2c8: !StaticColliderComponent + Id: 340da692-ee7c-4c19-9706-28d911c1a1fa + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 2f121f88c1f6896ca79a2939aa8a095c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.25, Z: 1.2} + LocalOffset: {X: 0.0, Y: 0.625, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 9a70c79d932274ae3d789c1b8e505eed: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 0.7, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.35, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + c693012fa2a7a493118f8d327a097904: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.6, Z: -0.3} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + ec075d7b9a08dd03f4591017a4bce1a2: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: -0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 7742036734daf5a2f5497973ad25733f: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: 0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: a9eaf641-84b9-4fe0-bb15-bc2c8a67319b:Environment/Props/Prefabs/Tubes_base + BasePartId: e5249e5a-b18b-46fe-96f1-6f11a587b647 + InstanceId: 77c9adcf-f7db-4f18-b453-cfda63d3a495 + - Entity: + Id: a5e085d8-bcb2-4771-9058-32a1a27feab6 + Name: Vent_light_mesh + Components: + 54af95a0dca10843911d079ccfaa0cfd: !TransformComponent + Id: 8fe83e50-f372-46c7-a41f-18fa73a0ba9b + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6f6f8132f03b9c4db90f22a935e18733: !ModelComponent + Id: 5eadee94-b5e4-48ba-bbd2-09f5c069f114 + Model: bcf6e9e7-0e5d-45f3-ba1b-0b2025d17e1c:Environment/Props/Models/Vent_light_mesh + Materials: {} + Base: + BasePartAsset: b5275603-ec75-4bf7-b9cd-6613fe69d2b9:Environment/Props/Prefabs/Vent + BasePartId: 9b350f50-f364-4653-8b82-1b0bf30e2f23 + InstanceId: 74d084a0-5d20-4a3a-8c9e-64f7c470d6c1 + - Entity: + Id: a7232b7c-cb2b-4d3b-8bf6-2987105b119b + Name: FloorButton + Components: + 2bd9e5018fb815bd9e0ddf7b6c4f0377: !TransformComponent + Id: fbed6e03-efcf-4c5d-a207-72a8526aed96 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a6932a4059e46dc7459b958c79f50336: !ModelComponent + Id: ff7871c8-04a8-4138-9f34-f53ba54d69a4 + Model: b08b5432-96b6-4259-8a89-303ff9bd12e2:Gameplay/Models/FloorButton + Materials: + 1eb04cc22e2a20d26f26187814c7bdc3~0: 0347eda8-4648-4983-a223-713b43cea1d9:Gameplay/Materials/Plates/Plate2_Enabled_Off + daf84040e6ba39f4813001d91222a07f~1: ba76b6f1-63f6-44d9-ad48-aca96fbe79a3:Gameplay/Materials/Plates/Plate3_Enabled_Off + 2a52917f17e18564669f46063c397a81: !Starbreach.Gameplay.PressurePlate,Starbreach + Id: 725af287-ec2e-4be7-be4b-bf91babce518 + Material1EnabledOff: ba76b6f1-63f6-44d9-ad48-aca96fbe79a3:Gameplay/Materials/Plates/Plate3_Enabled_Off + Material1DisabledOn: 2746f702-7dd5-4ef5-9e93-d5e758da2800:Gameplay/Materials/Plates/Plate3_Disabled_On + Material1DisabledOff: d02e7fcd-9f9e-450f-bc56-6e50e9970ec2:Gameplay/Materials/Plates/Plate3_Disabled_Off + Material1EnabledOn: 1163e435-4f1b-4b16-8834-da23869292b4:Gameplay/Materials/Plates/Plate3_Enabled_On + Material0EnabledOff: 0347eda8-4648-4983-a223-713b43cea1d9:Gameplay/Materials/Plates/Plate2_Enabled_Off + Material0DisabledOn: eff5f692-9337-4d7b-8cd8-531e3e06b852:Gameplay/Materials/Plates/Plate2_Disabled_On + Material0DisabledOff: e74abd75-804a-4de0-acf7-924aa5bb3a20:Gameplay/Materials/Plates/Plate2_Disabled_Off + Material0EnabledOn: 903888ae-b297-487a-a708-5fd6cd38c7c7:Gameplay/Materials/Plates/Plate2_Enabled_On + Model: ref!! ff7871c8-04a8-4138-9f34-f53ba54d69a4 + Trigger: ref!! 7885ba20-6bf3-4616-bebc-4d4c74bca02f + AudioEmitter: ref!! b2485bee-5e4a-45c2-98aa-e744f3939a04 + Enabled: true + Toggle: false + SingleActivation*: true + CurrentToggleState: false + TransitionTime: 0.15 + 48a3a1d7ea5c129742126bc8b4d7429c: !Starbreach.Gameplay.PressurePlateTrigger,Starbreach + Id: 7885ba20-6bf3-4616-bebc-4d4c74bca02f + CollisionFilterGroup: CharacterFilter + Trigger: ref!! 82653dc0-ed47-4d99-97e5-145d2e369661 + 03c59a6169956fba8a31fd1f758dc46f: !AudioEmitterComponent + Id: b2485bee-5e4a-45c2-98aa-e744f3939a04 + Sounds: + adc799987a8ff52a579d44583cb2cde7~Enable: 5163c935-fe14-4496-8f44-eb64e8482b31:Gameplay/Sounds/Plate_Enable + 732e4c030c0a74345f1aed380bdb8533~Disable: 730d9dfc-a657-4d5b-b5ea-8fc7e14cfa7d:Gameplay/Sounds/Plate_Disable + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + 9c600aa0b00e9640a384d3666fe41f14: !RigidbodyComponent + Id: 82653dc0-ed47-4d99-97e5-145d2e369661 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: true + IsKinematic: true + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 4c0292725ab565154826fa81493eec99: !CylinderColliderShapeDesc + Height: 0.4 + Radius: 0.8 + LocalOffset: {X: 0.0, Y: 0.2, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 72f94a89-e47c-42ae-9264-b0c9881e3840:Gameplay/Prefabs/Plate + BasePartId: e4fdb89a-c2a0-4e83-a985-c4e087628455 + InstanceId: a30c3e7b-7e49-4230-9528-71cbaaabd734 + - Entity: + Id: ab974d8a-90d3-42af-ab5d-fe6b8910e39f + Name: Steam + Components: + c1ecc9674350ec47b258da4ab8ccf2ff: !TransformComponent + Id: c11bb08b-f3d1-4904-a7f8-53f314aeb3a0 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8323bf5daa524c4fb5d833e41b08b32d: !ParticleSystemComponent + Id: 5dbf2383-52aa-4f4c-b5d8-33e41b08b32d + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: !BoundingSpheretatic + DebugDraw: true + Radius: 4.0 + Emitters: + 9a3a5271a4a0934d9467f6b095793379: + ParticleLifetime: {X: 0.5, Y: 1.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 0383cd796e839e4b9667af5d0fe71756: + Key: 0.0 + Value: 0.5 + TangentType: Linear + 3c3bf45d6e50e542871470a99fdfd9f3: + Key: 0.3 + Value: 0.7 + TangentType: Linear + aa6cd07e77ba1c4da6e836dff7b31695: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ZOffset: 0.2 + SoftEdgeDistance: 0.3 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 5.0, Y: 5.0, Z: 5.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8dbe2382-769c-45fe-9604-98c5ae5c434c:Textures/SMO001_3 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + fa12c9550522c24fa400d8ce84ef83a0: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 80.0 + Initializers: + 3994a4c9897c7049af5217d699e668a9: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.4, Y: 0.5} + 7fa5fb2d4e692c4aae5cda5ce081ca44: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.5, Y: 0.0, Z: -0.5} + PositionMax: {X: 0.5, Y: 0.0, Z: 0.5} + Interpolate: false + 3d037e54f2051d42a511f75567a2d5eb: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.05, Y: -3.0, Z: -0.05} + VelocityMax: {X: 0.05, Y: -3.0, Z: 0.05} + d4d112e1ace7b944828fa9278f3938e1: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + Updaters: + 226c0f6bc8f05441a0eb6454e9f89045: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 82276cc03e3f854b9dc5c50ece2e25f9: + Key: 0.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + e3927f1e92cb4d4f80c729960776e1ca: + Key: 0.2 + Value: {R: 0.5, G: 0.5, B: 0.5, A: 0.25} + TangentType: Linear + bb31441c3997734baf5d4b324f145da1: + Key: 1.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + a788c7989777534fbc50541f7eebe631: !UpdaterForceField + InheritPosition: true + Position: {X: 0.0, Y: -1.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: true + FieldShape: !FieldShapeCylinder + HalfHeight: 1.0 + Radius: 1.0 + DisplayParticleRotation: true + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 1.0 + FalloffStart: 0.1 + StrengthOutside: 0.0 + FalloffEnd: 0.9 + EnergyConservation: 1.0 + ForceDirected: 0.0 + ForceVortex: 0.0 + ForceRepulsive: 4.0 + ForceFixed: {X: 0.0, Y: 8.0, Z: 0.0} + Base: + BasePartAsset: aac85dfd-95cb-4a1f-8b00-00e61427e601:Drones/Prefabs/EnergyDrone + BasePartId: 67bf9668-b948-4e6a-8e59-ca5aebed6c09 + InstanceId: 0e049815-8747-42d9-8845-686ab06e488c + - Folder: Props + Entity: + Id: ae911271-6282-4ea3-bf4f-bd83fe5c3e3b + Name: Tubes_base + Components: + 7cdd3b1a1396bae0df8d315686b47524: !TransformComponent + Id: 6d9fb083-f941-4aff-92a7-e5093dbd7f10 + Position*: {X: 3.492339, Y: 0.0, Z: -10.5868053} + Rotation*: {X: 0.0, Y: 0.99999994, Z: 0.0, W: 0.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 4d4296f2a30a764d9d8fe6bea949fb8e: !ModelComponent + Id: 7c32058e-d281-4f5c-adcc-642a0f019e64 + Model: 734077ff-795c-4d1b-9f8c-688d142c4007:Environment/Props/Models/Tubes_base + Materials: {} + 14c6a602fe3acc99031df8e58a62d2c8: !StaticColliderComponent + Id: 91eecc91-3767-479c-b9bc-c293717689b9 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 2f121f88c1f6896ca79a2939aa8a095c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.25, Z: 1.2} + LocalOffset: {X: 0.0, Y: 0.625, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 9a70c79d932274ae3d789c1b8e505eed: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 0.7, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.35, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + c693012fa2a7a493118f8d327a097904: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.6, Z: -0.3} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + ec075d7b9a08dd03f4591017a4bce1a2: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: -0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 7742036734daf5a2f5497973ad25733f: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: 0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: a9eaf641-84b9-4fe0-bb15-bc2c8a67319b:Environment/Props/Prefabs/Tubes_base + BasePartId: e5249e5a-b18b-46fe-96f1-6f11a587b647 + InstanceId: 9bfd5c5f-1dc2-48ee-89e0-3231da63c1fd + - Entity: + Id: b42cbe8f-71ea-4eaa-98cf-652cfc7e2650 + Name: Vent + Components: + 649d145b5cd2d2498d83796837ab2e4c: !TransformComponent + Id: 5275df67-4e99-4f86-90b8-2b518133e683 + Position: {X: 0.0, Y: 0.6601438, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.258819, W: 0.9659258} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 51f9a88cd6a06144a9c30a8efc81f0d6: !ModelComponent + Id: c195df65-63f6-4d97-b80d-83ec97367382 + Model: 9ba50f3a-f535-4ad4-982d-ff342c69fce4:Environment/Props/Models/Vent + Materials: {} + 557237ad44bd2e4a9a6adfa72a07f828: !Starbreach.VFX.Fan,Starbreach + Id: 1b892700-a3f2-4652-9f78-a37efc9a099c + RotationSpeed: 0.5 + VentLightModelComponent: ref!! 5eadee94-b5e4-48ba-bbd2-09f5c069f114 + LightTexture: 2ed2808b-0693-4a27-8cd8-4cccd2d48a70:Environment/Props/Materials/Vent/Vent_inner_E + Base: + BasePartAsset: b5275603-ec75-4bf7-b9cd-6613fe69d2b9:Environment/Props/Prefabs/Vent + BasePartId: 08e72601-63eb-4dcb-989d-5c65552896e8 + InstanceId: 74d084a0-5d20-4a3a-8c9e-64f7c470d6c1 + - Entity: + Id: b4606e0f-ef30-4ee5-bccc-ad0b00f7f4a1 + Name: Vent_base + Components: + c2bef31cda0c8543946d5092d2cc4382: !TransformComponent + Id: 1cf3bec2-0cda-4385-946d-5092d2cc4382 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 74a44ff7b53fd347b1bc0108f4e39f53: !ModelComponent + Id: 80954140-0450-47c0-8aa0-2f5562a68143 + Model: 9fb440c2-5c68-4b4c-a1c1-fe92481dc4d4:Environment/Props/Models/Vent_base + Materials: {} + 06cf1aa272609644a75ae1164968be17: !StaticColliderComponent + Id: 92a8f464-c3b6-4380-8690-7277495f0828 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 18cf11ad3eabc040ac2705991dacfea7: !CylinderColliderShapeDesc + Height: 1.4 + Radius: 0.9 + LocalOffset: {X: 0.0, Y: 0.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b5275603-ec75-4bf7-b9cd-6613fe69d2b9:Environment/Props/Prefabs/Vent + BasePartId: 94fd4929-dc17-406a-b101-7d999144f384 + InstanceId: 3aa6b2cc-b25e-4d81-a018-00d3cd887de6 + - Entity: + Id: b97ca695-85f8-4c4c-9b1b-a742a2503ca4 + Name: Vent_base + Components: + c2bef31cda0c8543946d5092d2cc4382: !TransformComponent + Id: 86c6bb97-9047-49af-830f-4676d162ea49 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 74a44ff7b53fd347b1bc0108f4e39f53: !ModelComponent + Id: 74c14597-82c3-4477-8857-e26f65dac6b3 + Model: 9fb440c2-5c68-4b4c-a1c1-fe92481dc4d4:Environment/Props/Models/Vent_base + Materials: {} + 06cf1aa272609644a75ae1164968be17: !StaticColliderComponent + Id: 12a3866f-9e3f-438e-81d2-fb2e7a3ecaba + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 18cf11ad3eabc040ac2705991dacfea7: !CylinderColliderShapeDesc + Height: 1.4 + Radius: 0.9 + LocalOffset: {X: 0.0, Y: 0.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b5275603-ec75-4bf7-b9cd-6613fe69d2b9:Environment/Props/Prefabs/Vent + BasePartId: 94fd4929-dc17-406a-b101-7d999144f384 + InstanceId: 74d084a0-5d20-4a3a-8c9e-64f7c470d6c1 + - Folder: Props + Entity: + Id: b9d650a1-fc18-448e-bcca-24a45942cd5b + Name: vfx-Sparks + Components: + dc1de986ffdbe649a0415ef21773b262: !TransformComponent + Id: ddfe9f78-14ed-4f9f-af93-891809438bf6 + Position: {X: 0.116699621, Y: 0.180055365, Z: -6.21887875} + Rotation: {X: 0.0, Y: 0.1950903, Z: 0.0, W: 0.980785251} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 6ca9a5e041fa92fe7c21c77bcd0207df: ref!! eeedb988-2367-4a08-9fc5-6a037fac2f5a + - Entity: + Id: baed54b3-ee8f-47d0-8d9c-823dafd0c3ec + Name: FloorButton + Components: + 2bd9e5018fb815bd9e0ddf7b6c4f0377: !TransformComponent + Id: 8f8417cb-2575-42ec-8c71-72eeea27ee48 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a6932a4059e46dc7459b958c79f50336: !ModelComponent + Id: a47efa38-3545-4495-b3cd-794fab9b7a55 + Model: b08b5432-96b6-4259-8a89-303ff9bd12e2:Gameplay/Models/FloorButton + Materials: + 1eb04cc22e2a20d26f26187814c7bdc3~0: 0347eda8-4648-4983-a223-713b43cea1d9:Gameplay/Materials/Plates/Plate2_Enabled_Off + daf84040e6ba39f4813001d91222a07f~1: ba76b6f1-63f6-44d9-ad48-aca96fbe79a3:Gameplay/Materials/Plates/Plate3_Enabled_Off + 2a52917f17e18564669f46063c397a81: !Starbreach.Gameplay.PressurePlate,Starbreach + Id: 36944b70-6c63-4a71-9723-336cf781ab13 + Material1EnabledOff: ba76b6f1-63f6-44d9-ad48-aca96fbe79a3:Gameplay/Materials/Plates/Plate3_Enabled_Off + Material1DisabledOn: 2746f702-7dd5-4ef5-9e93-d5e758da2800:Gameplay/Materials/Plates/Plate3_Disabled_On + Material1DisabledOff: d02e7fcd-9f9e-450f-bc56-6e50e9970ec2:Gameplay/Materials/Plates/Plate3_Disabled_Off + Material1EnabledOn: 1163e435-4f1b-4b16-8834-da23869292b4:Gameplay/Materials/Plates/Plate3_Enabled_On + Material0EnabledOff: 0347eda8-4648-4983-a223-713b43cea1d9:Gameplay/Materials/Plates/Plate2_Enabled_Off + Material0DisabledOn: eff5f692-9337-4d7b-8cd8-531e3e06b852:Gameplay/Materials/Plates/Plate2_Disabled_On + Material0DisabledOff: e74abd75-804a-4de0-acf7-924aa5bb3a20:Gameplay/Materials/Plates/Plate2_Disabled_Off + Material0EnabledOn: 903888ae-b297-487a-a708-5fd6cd38c7c7:Gameplay/Materials/Plates/Plate2_Enabled_On + Model: ref!! a47efa38-3545-4495-b3cd-794fab9b7a55 + Trigger: ref!! 7a3bb123-742c-4495-a442-5ebfde9eed7d + AudioEmitter: ref!! 4b81d003-a268-4250-8d95-1b83a6636f5d + Enabled: true + Toggle: false + SingleActivation*: true + CurrentToggleState: false + TransitionTime: 0.15 + 48a3a1d7ea5c129742126bc8b4d7429c: !Starbreach.Gameplay.PressurePlateTrigger,Starbreach + Id: 7a3bb123-742c-4495-a442-5ebfde9eed7d + CollisionFilterGroup: CharacterFilter + Trigger: ref!! 716d5b86-4846-45ef-84de-7fddba7a0bbe + 03c59a6169956fba8a31fd1f758dc46f: !AudioEmitterComponent + Id: 4b81d003-a268-4250-8d95-1b83a6636f5d + Sounds: + adc799987a8ff52a579d44583cb2cde7~Enable: 5163c935-fe14-4496-8f44-eb64e8482b31:Gameplay/Sounds/Plate_Enable + 732e4c030c0a74345f1aed380bdb8533~Disable: 730d9dfc-a657-4d5b-b5ea-8fc7e14cfa7d:Gameplay/Sounds/Plate_Disable + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + 9c600aa0b00e9640a384d3666fe41f14: !RigidbodyComponent + Id: 716d5b86-4846-45ef-84de-7fddba7a0bbe + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: true + IsKinematic: true + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 4c0292725ab565154826fa81493eec99: !CylinderColliderShapeDesc + Height: 0.4 + Radius: 0.8 + LocalOffset: {X: 0.0, Y: 0.2, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 72f94a89-e47c-42ae-9264-b0c9881e3840:Gameplay/Prefabs/Plate + BasePartId: e4fdb89a-c2a0-4e83-a985-c4e087628455 + InstanceId: 1bbbb692-2009-434b-81c7-50ed69fa1891 + - Folder: Gameplay + Entity: + Id: bd38eaab-3cef-4ca4-b63a-c0d2bc6b1432 + Name: PlateB + Components: + 946c63be496aa2034a3e00f5a83677df: !TransformComponent + Id: 79be0465-adc0-4cbb-9340-10f26cc35f95 + Position: {X: -29.0076561, Y: 0.0, Z: 0.4131775} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + b983c0b874972151020df6ad3062ac23: ref!! fbed6e03-efcf-4c5d-a207-72a8526aed96 + - Entity: + Id: c3d5bbbf-9500-4f63-abb4-e4756578bdda + Name: Teleport + Components: + 8954766badcc7aefa23c04e3693487f4: !TransformComponent + Id: 6a6a7dcb-6baf-450e-999f-bf6976b05be6 + Position: {X: 0.0, Y: -0.116503835, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 5aff464ea6197c41081788a1ee01b850: !ModelComponent + Id: 0e0800bf-884c-46d7-80b7-4230a1a0eca1 + Model: 74ed18b5-f993-49d7-8d3e-170411c88201:Environment/Props/Models/Teleport + Materials: {} + fb452f16718eee0a0701c893d6248fc6: !StaticColliderComponent + Id: 11b31b3b-ae7d-4c05-9415-82b47ea3884f + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 95d55168ece39fce6c45fb238bb81ddd: !CylinderColliderShapeDesc + Height: 0.5 + Radius: 2.7 + LocalOffset: {X: 0.0, Y: 0.225, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 2b5e579dc9d3fb215280cb3eddbf2e60: !CylinderColliderShapeDesc + Height: 0.6 + Radius: 1.8 + LocalOffset: {X: 0.0, Y: 0.275, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + e041fdcf8ad2beb11c6df6e835526292: !CylinderColliderShapeDesc + Height: 0.275 + Radius: 2.9 + LocalOffset: {X: 0.0, Y: 0.15, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + e390ae9b92ae19edfd91c178b3ea6597: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.75, Y: 5.0, Z: 1.2} + LocalOffset: {X: 2.45, Y: 2.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 2642c26812a542f2ef3c8201ed5ad4da: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.75, Y: 5.0, Z: 1.2} + LocalOffset: {X: -2.45, Y: 2.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: d45cc866-3bbb-407e-84aa-52ad3ab6446a:Environment/Props/Prefabs/Teleport + BasePartId: df056d3a-bcae-4fb5-ba2e-61dc239fe17c + InstanceId: e03b60ec-01c9-4523-9761-ef5c6b9a0d86 + - Folder: Props + Entity: + Id: c3f2e2b7-93ed-4278-9da5-c496a0c4e4f3 + Name: Tubes + Components: + a4f53b51ac1efa2dd97aea85c1a4980c: !TransformComponent + Id: 1d453f52-8eb8-4c8b-80bf-a0a9d47b65d7 + Position: {X: -2.507659, Y: 0.0, Z: -3.58682346} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + aff1e78dff4bb1be8dd7c717ddb6228c: ref!! c5b1a601-68b5-4f8e-82d9-6f0de5d2b6fc + - Entity: + Id: c3f4bbff-7468-4e1d-8118-d5a1d03c75a8 + Name: Steam + Components: + c1ecc9674350ec47b258da4ab8ccf2ff: !TransformComponent + Id: 67c9ecc1-5043-47ec-b258-da4ab8ccf2ff + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8323bf5daa524c4fb5d833e41b08b32d: !ParticleSystemComponent + Id: ac936d73-0e52-40e1-bfe0-41c07b3549ba + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: !BoundingSpheretatic + DebugDraw: true + Radius: 4.0 + Emitters: + 9a3a5271a4a0934d9467f6b095793379: + ParticleLifetime: {X: 0.5, Y: 1.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 0383cd796e839e4b9667af5d0fe71756: + Key: 0.0 + Value: 0.5 + TangentType: Linear + 3c3bf45d6e50e542871470a99fdfd9f3: + Key: 0.3 + Value: 0.7 + TangentType: Linear + aa6cd07e77ba1c4da6e836dff7b31695: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ZOffset: 0.2 + SoftEdgeDistance: 0.3 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 5.0, Y: 5.0, Z: 5.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8dbe2382-769c-45fe-9604-98c5ae5c434c:Textures/SMO001_3 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + fa12c9550522c24fa400d8ce84ef83a0: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 80.0 + Initializers: + 3994a4c9897c7049af5217d699e668a9: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.4, Y: 0.5} + 7fa5fb2d4e692c4aae5cda5ce081ca44: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.5, Y: 0.0, Z: -0.5} + PositionMax: {X: 0.5, Y: 0.0, Z: 0.5} + Interpolate: false + 3d037e54f2051d42a511f75567a2d5eb: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.05, Y: -3.0, Z: -0.05} + VelocityMax: {X: 0.05, Y: -3.0, Z: 0.05} + d4d112e1ace7b944828fa9278f3938e1: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + Updaters: + 226c0f6bc8f05441a0eb6454e9f89045: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 82276cc03e3f854b9dc5c50ece2e25f9: + Key: 0.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + e3927f1e92cb4d4f80c729960776e1ca: + Key: 0.2 + Value: {R: 0.5, G: 0.5, B: 0.5, A: 0.25} + TangentType: Linear + bb31441c3997734baf5d4b324f145da1: + Key: 1.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + a788c7989777534fbc50541f7eebe631: !UpdaterForceField + InheritPosition: true + Position: {X: 0.0, Y: -1.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: true + FieldShape: !FieldShapeCylinder + HalfHeight: 1.0 + Radius: 1.0 + DisplayParticleRotation: true + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 1.0 + FalloffStart: 0.1 + StrengthOutside: 0.0 + FalloffEnd: 0.9 + EnergyConservation: 1.0 + ForceDirected: 0.0 + ForceVortex: 0.0 + ForceRepulsive: 4.0 + ForceFixed: {X: 0.0, Y: 8.0, Z: 0.0} + Base: + BasePartAsset: aac84dfd-95cb-4a1f-8b00-00e61427e600:Drones/Prefabs/RocketDrone + BasePartId: 67bf9668-b948-4e6a-8e59-ca5aebed6c09 + InstanceId: 5028955a-58dc-402e-bd27-33135e096080 + - Folder: Props + Entity: + Id: c475a347-3620-488e-9c3b-5da75a4c3e06 + Name: box_1 + Components: + 809778ee97de74479d46b2b89cf3fd55: !TransformComponent + Id: 553f1c79-d222-4894-b7a4-115781994503 + Position*: {X: -22.5743084, Y: 0.0, Z: -13.6155548} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + 46d65c287ed37b419febba3f2fc9e168: !ModelComponent + Id: ede9fd2f-7c8e-4366-a41c-9386abe4c395 + Model: 46441ab3-67fb-40d4-8b72-8dd1db5d988e:Environment/Props/Models/Box1 + Materials: {} + 97af1ceb4c685740b019dc46621ca5bd: !StaticColliderComponent + Id: 4e77d198-2348-4d92-bacd-0e6358e034c3 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 30ff71837d20084985383f3411cf2ed8: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.95, Y: 0.95, Z: 0.95} + LocalOffset: {X: 0.0, Y: 0.475, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b23b46aa-4d3f-45a8-ab4b-7c5a9e4d9d99:Environment/Props/Prefabs/Box1 + BasePartId: e8b2a223-8164-4e20-8309-f81a90ca09cc + InstanceId: 6b5f429d-9ddd-4ecf-be8b-43a754c076b5 + - Entity: + Id: c4bb6c89-06a5-40af-881a-ce07086644b8 + Name: Vent_light_mesh + Components: + 54af95a0dca10843911d079ccfaa0cfd: !TransformComponent + Id: 3ef4f9d6-4f9f-4127-a64a-bd192373621a + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6f6f8132f03b9c4db90f22a935e18733: !ModelComponent + Id: 8e1cb411-c605-42f9-a296-00943b6d7716 + Model: bcf6e9e7-0e5d-45f3-ba1b-0b2025d17e1c:Environment/Props/Models/Vent_light_mesh + Materials: {} + Base: + BasePartAsset: b5275603-ec75-4bf7-b9cd-6613fe69d2b9:Environment/Props/Prefabs/Vent + BasePartId: 9b350f50-f364-4653-8b82-1b0bf30e2f23 + InstanceId: 4b0e5c6b-2277-421a-bc7b-9ad494da90a0 + - Entity: + Id: c570c4db-29fb-443e-8e9b-0e7aafcbf94c + Name: Vent_base + Components: + c2bef31cda0c8543946d5092d2cc4382: !TransformComponent + Id: c0394913-b91d-48e5-bc93-b8b582ea5590 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 74a44ff7b53fd347b1bc0108f4e39f53: !ModelComponent + Id: 5796d022-42c6-4859-ba88-8a4f837b6ce6 + Model: 9fb440c2-5c68-4b4c-a1c1-fe92481dc4d4:Environment/Props/Models/Vent_base + Materials: {} + 06cf1aa272609644a75ae1164968be17: !StaticColliderComponent + Id: ac4c6dab-80e4-4cac-ac5b-3562736b40ac + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 18cf11ad3eabc040ac2705991dacfea7: !CylinderColliderShapeDesc + Height: 1.4 + Radius: 0.9 + LocalOffset: {X: 0.0, Y: 0.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b5275603-ec75-4bf7-b9cd-6613fe69d2b9:Environment/Props/Prefabs/Vent + BasePartId: 94fd4929-dc17-406a-b101-7d999144f384 + InstanceId: 33bcd5b9-6e80-4cd2-ac83-f2b652cb0e5f + - Entity: + Id: c586c699-859b-4276-a0d7-ad77ba8c114a + Name: vfx-Engine + Components: + 585f08a4c7e8554391f68583881993a2: !TransformComponent + Id: 2f860003-b23e-4038-a264-cc24102de337 + Position: {X: 0.0, Y: 0.2, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + c1ecc9674350ec47b258da4ab8ccf2ff: ref!! 0ac29aa3-f382-4eee-87cf-c53085cf694f + c141928df7725e448d9ee2d635345744: !AudioEmitterComponent + Id: 5125025d-4901-416f-9645-0ed196fb5324 + Sounds: + 210c4fe5f3b4c243942a23a4b3f26e49~Engine: 1d4673e5-cfbf-45eb-a34f-6d0c93074702:Drones/Sounds/Engine0 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + Base: + BasePartAsset: aac85dfd-95cb-4a1f-8b00-00e61427e601:Drones/Prefabs/EnergyDrone + BasePartId: e84e5acd-b1a3-43f4-9066-a3247f4be1e3 + InstanceId: 9db2b9d8-5355-4afa-859a-f56c63d6a8d5 + - Entity: + Id: c5c88089-70b3-4a24-a46b-029f4b53e6cc + Name: LaserFence_down + Components: + a4c9a42f24d4c443bad3060f61018c7f: !TransformComponent + Id: bf441281-ebe1-4409-ab4b-beb2ec2c58ea + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e52519dff8a1534c8d3d763ba4d4e83e: !ModelComponent + Id: bf12e0aa-2034-407f-81d6-2b8aea149dcc + Model: 4658c1a9-b3b6-4481-b22c-ad61ea3c14d3:Gameplay/Models/LaserFence_down + Materials: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: fea06acd-bec3-4873-8a99-eeb324c05565 + InstanceId: 8b7adf3d-a4b5-4ccc-8b1d-df62591c48d1 + - Entity: + Id: c6c4f0c3-f1a9-4116-82d6-239ef3f1da01 + Name: Vent + Components: + 649d145b5cd2d2498d83796837ab2e4c: !TransformComponent + Id: ed1abd62-2c58-450d-8b7e-cf9858db7150 + Position: {X: 0.0, Y: 0.6601438, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.258819, W: 0.9659258} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 51f9a88cd6a06144a9c30a8efc81f0d6: !ModelComponent + Id: 468228cf-541e-4140-a3f3-91177571e77f + Model: 9ba50f3a-f535-4ad4-982d-ff342c69fce4:Environment/Props/Models/Vent + Materials: {} + 557237ad44bd2e4a9a6adfa72a07f828: !Starbreach.VFX.Fan,Starbreach + Id: 5b365630-6350-47f1-8e99-bed30cac8bb7 + RotationSpeed: 0.5 + VentLightModelComponent: ref!! 67203e67-a961-4b75-a266-e3abda61dd02 + LightTexture: 2ed2808b-0693-4a27-8cd8-4cccd2d48a70:Environment/Props/Materials/Vent/Vent_inner_E + Base: + BasePartAsset: b5275603-ec75-4bf7-b9cd-6613fe69d2b9:Environment/Props/Prefabs/Vent + BasePartId: 08e72601-63eb-4dcb-989d-5c65552896e8 + InstanceId: 33bcd5b9-6e80-4cd2-ac83-f2b652cb0e5f + - Folder: null + Entity: + Id: c6f4e48b-166a-446e-ab49-2e812a2fb18a + Name: LargePillar + Components: + bd2015d36b46e16cc231215e719a3104: !TransformComponent + Id: bafd387d-54e1-4dce-9567-9bde718bc905 + Position: {X: 8.499997, Y: 3.0, Z: -30.4999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 106f6ebf350e9d18de7e2f304a6a107e: !ModelComponent + Id: 8e89bacd-c4c4-4c14-86f4-99814055c2d4 + Model: 258dfd07-ef55-4f3e-a0a8-afc05e4ca37b:Environment/Platforms/Models/LargePillar + Materials: {} + - Folder: Platform + Entity: + Id: c946ac0e-a58b-47ab-adfa-340717051ee3 + Name: Cell_loop_half + Components: + e8a5c0543fe407204641fcccbb892282: !TransformComponent + Id: 9be343e5-b063-41cd-83a1-78c16b283bec + Position: {X: 10.5, Y: 0.0, Z: -4.580207} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6c3a4d2e267a8680ed7e456f3c257e40: !ModelComponent + Id: c7f95587-cc40-4a17-82ac-73869565b96c + Model: 37fe538d-f8a5-4516-9d2e-5f86ac23eac5:Environment/Platforms/Models/Cell_loop_half + Materials: {} + - Entity: + Id: ca17f9ce-dc9f-4f4a-9eb9-f7cf8705cca1 + Name: vfx-Engine + Components: + 585f08a4c7e8554391f68583881993a2: !TransformComponent + Id: 7120e20b-1a2d-4bb2-9d18-22bdd36a3440 + Position: {X: 0.0, Y: 0.2, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + c1ecc9674350ec47b258da4ab8ccf2ff: ref!! 67c9ecc1-5043-47ec-b258-da4ab8ccf2ff + c141928df7725e448d9ee2d635345744: !AudioEmitterComponent + Id: 52711f4e-e8ba-495c-b859-083f87b1f0e4 + Sounds: + 210c4fe5f3b4c243942a23a4b3f26e49~Engine: 1d4673e5-cfbf-45eb-a34f-6d0c93074702:Drones/Sounds/Engine0 + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + Base: + BasePartAsset: aac84dfd-95cb-4a1f-8b00-00e61427e600:Drones/Prefabs/RocketDrone + BasePartId: e84e5acd-b1a3-43f4-9066-a3247f4be1e3 + InstanceId: 5028955a-58dc-402e-bd27-33135e096080 + - Entity: + Id: cb708442-b171-4dea-8fe7-8e9a9e2d321b + Name: Spot light + Components: + 081b800a6c87b2180231d487b3777aa2: !TransformComponent + Id: 83c22768-b300-4ad4-aa06-78b1af2a00d4 + Position: {X: 0.0, Y: 5.07600927, Z: -1.60325944} + Rotation: {X: -0.5616586, Y: 0.0, Z: 0.0, W: 0.8273691} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + badeae4de086452296f096b28cee789e: !LightComponent + Id: 7137b734-4f02-46e9-ba12-bb3addef58c9 + Type: !LightSpot + Color: !ColorRgbProvider + Value: {R: 1.0, G: 1.0, B: 1.0} + Range: 300.0 + AngleOuter: 90.0 + UVScale: {X: 1.0, Y: 1.0} + UVOffset: {X: 0.0, Y: 0.0} + Shadow: + BiasParameters: + DepthBias: 0.001 + Intensity: 100.0 + Base: + BasePartAsset: ba3c136a-df3a-4f13-8171-5099a1dd3899:Environment/Props/Prefabs/Column + BasePartId: e2df8049-7d03-46bd-8171-1134c17d6980 + InstanceId: b82cc9bf-4283-46d7-ae5d-ee481965c099 + - Entity: + Id: cb9e4c1d-6e88-40a9-8ec6-489739065c3c + Name: Model + Components: + 7dad9d7cd55ced4abbf2cb2bbbd70c1a: !TransformComponent + Id: 7c9dad7d-5cd5-4aed-bbf2-cb2bbbd70c1a + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + d719b2b339248f17748edd917f6bc9b2: ref!! 920132ef-5c02-4739-bb1a-db1c533630a6 + 827f49f9d5034b4acf8a8939110ddb8d: ref!! a4085f58-e8c7-4355-91f6-8583881993a2 + c212d189fcc79d46bbb83d892c85ce82: !ModelComponent + Id: 89d112c2-c7fc-469d-bbb8-3d892c85ce82 + Model: 8b6b1e4a-7de0-4524-8851-23d9e11339b5:Drones/Models/EnergyDrone + Materials: + bff18010728c254c925bebf2f03be01b~0: 76636c37-5239-4cd3-ac8a-953e9e4d913e:Drones/Materials/Drone/DroneLower + bad52956f3fcbb45ac19f0a99abdf1d0~1: b91deeaf-43f6-434a-8400-22a1c6cb0447:Drones/Materials/Drone/DroneUpper + 8710bd731b44b446a6f9448a50fcd66b~2: c2292c76-631b-4a19-b984-096e90ede1ed:Drones/Materials/EnergyDrone/EnergyDrone + c123a40ea35064c3e5b77b9aaec447dc: !AnimationComponent + Id: 02b2b2f2-f679-407f-abf6-7abdf572fee5 + Animations: + a713ec907506354eb188aaba71f6039c~Fire: bbff5c1d-80bb-4c8c-bd8e-edd752029865:Drones/Animations/EnergyDroneFire + 8df1171e0223014899b19b71b409f1b3~Idle: c9f1abb3-03e4-41b0-b65e-95168f7c3a5f:Drones/Animations/EnergyDroneIdle + bcc277ca9a2ea247bf4ad6e427a787bf~Move: 1ed61017-cfb9-4a44-9ff7-effd95f4e6c2:Drones/Animations/EnergyDroneFly + Base: + BasePartAsset: aac85dfd-95cb-4a1f-8b00-00e61427e601:Drones/Prefabs/EnergyDrone + BasePartId: ee748701-a6a0-4afd-b04c-ab208598af51 + InstanceId: 0e049815-8747-42d9-8845-686ab06e488c + - Entity: + Id: cda2d056-66cd-47de-8b17-571b5ff2a57c + Name: LaserArc + Components: + 336f7ce982182944823955cce7f2b5ee: !TransformComponent + Id: 16212efb-e308-4024-ab4a-8ba1bead3a25 + Position: {X: 0.5, Y: 2.5, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + Base: + BasePartAsset: b6f5ec31-ef0a-41cf-b1cb-575cbe5bdba5:Gameplay/Prefabs/LaserFence_Barrier + BasePartId: 28b6b224-b4bb-48a9-bccb-71f0e16cf1be + InstanceId: 8b7adf3d-a4b5-4ccc-8b1d-df62591c48d1 + - Entity: + Id: d5140e70-3533-4405-a638-eb5f2203b50d + Name: ProjectileSpawnPoint + Components: + ef320192025c3947bb1adb1c533630a6: !TransformComponent + Id: f35608ef-0ce9-4511-bfb0-157524189b48 + Position: {X: 0.787716269, Y: -0.0260489322, Z: 1.45098568E-07} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d3a20669d1ecb74791449a8d599302ad: !ModelNodeLinkComponent + Id: f9d7dc75-db51-49ad-bedc-259768eace9a + Target: null + NodeName: Bone_turret + f2be80b1286b9c4495a77d23ce7fc8b5: !AudioEmitterComponent + Id: b0077e23-16f4-4ebb-a427-4f309edacf72 + Sounds: + 483657d21a6056232b19c15d3e90763b~Fire: 3de4a0e3-c642-4aa1-9801-7583f510ed44:Drones/Sounds/RocketFire + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + Base: + BasePartAsset: aac84dfd-95cb-4a1f-8b00-00e61427e600:Drones/Prefabs/RocketDrone + BasePartId: 92eafacb-5258-4c7b-8040-b4b6d2721043 + InstanceId: 5028955a-58dc-402e-bd27-33135e096080 + - Folder: Props + Entity: + Id: d554ec55-e0ab-4802-8887-5101d468fc9c + Name: vfx-Sparks + Components: + dc1de986ffdbe649a0415ef21773b262: !TransformComponent + Id: 3ad611e4-e0c0-4bae-9e91-cfaef5c2b0ba + Position: {X: 0.005422771, Y: 0.180055365, Z: -9.278513} + Rotation: {X: 0.0, Y: 0.1950903, Z: 0.0, W: 0.980785251} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 6ca9a5e041fa92fe7c21c77bcd0207df: ref!! b6ac27ee-ff35-4474-9a18-3077ea83f6ac + - Entity: + Id: d8b1aa36-c0f9-453d-b97a-e74203f059ef + Name: Model + Components: + 7dad9d7cd55ced4abbf2cb2bbbd70c1a: !TransformComponent + Id: 3bdf8948-dfcc-4629-90da-b6d490b32d6b + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + d719b2b339248f17748edd917f6bc9b2: ref!! f6c84da4-efa0-431f-8b22-adc57c427856 + 827f49f9d5034b4acf8a8939110ddb8d: ref!! 2f860003-b23e-4038-a264-cc24102de337 + c212d189fcc79d46bbb83d892c85ce82: !ModelComponent + Id: 1f0f43ca-5157-41e6-9e18-87c98bf40f1a + Model: 8b6b1e4a-7de0-4524-8851-23d9e11339b5:Drones/Models/EnergyDrone + Materials: + bff18010728c254c925bebf2f03be01b~0: 76636c37-5239-4cd3-ac8a-953e9e4d913e:Drones/Materials/Drone/DroneLower + bad52956f3fcbb45ac19f0a99abdf1d0~1: b91deeaf-43f6-434a-8400-22a1c6cb0447:Drones/Materials/Drone/DroneUpper + 8710bd731b44b446a6f9448a50fcd66b~2: c2292c76-631b-4a19-b984-096e90ede1ed:Drones/Materials/EnergyDrone/EnergyDrone + c123a40ea35064c3e5b77b9aaec447dc: !AnimationComponent + Id: 5c0afe55-843c-46b4-ab2f-54b650a65698 + Animations: + a713ec907506354eb188aaba71f6039c~Fire: bbff5c1d-80bb-4c8c-bd8e-edd752029865:Drones/Animations/EnergyDroneFire + 8df1171e0223014899b19b71b409f1b3~Idle: c9f1abb3-03e4-41b0-b65e-95168f7c3a5f:Drones/Animations/EnergyDroneIdle + bcc277ca9a2ea247bf4ad6e427a787bf~Move: 1ed61017-cfb9-4a44-9ff7-effd95f4e6c2:Drones/Animations/EnergyDroneFly + Base: + BasePartAsset: aac85dfd-95cb-4a1f-8b00-00e61427e601:Drones/Prefabs/EnergyDrone + BasePartId: ee748701-a6a0-4afd-b04c-ab208598af51 + InstanceId: 9db2b9d8-5355-4afa-859a-f56c63d6a8d5 + - Entity: + Id: d996a4c1-227e-4acb-a7b3-59b97a137f4d + Name: Satellite_base + Components: + e08c46afdfd0782fc35ec4aee21c1509: !TransformComponent + Id: 240f6701-4b5f-4601-9aec-da6847813104 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 7092850f3cdb96fe6050dd9f6f7a2344: !ModelComponent + Id: 30e56948-4f29-4aaf-99d6-4374a56e3b18 + Model: dd67fffa-abb2-4d8b-917c-13ba8da3ae60:Environment/Props/Models/Satellite_base + Materials: {} + 6d22954a9e7e0e24d7ee9098bc106fcf: !StaticColliderComponent + Id: c03705f2-e0b9-40c1-8c1b-ad7353b1694a + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 40ee7ddde5e60f8c314a36175b8b8dbe: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.25, Y: 1.5, Z: 2.0} + LocalOffset: {X: 0.125, Y: 0.75, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 208c0dab-6c53-4535-b0e9-7b27658aed0d:Environment/Props/Prefabs/Satellite_spinning + BasePartId: 19b4400e-9003-47dd-a724-86bc8c09c96b + InstanceId: 0fbdf265-1f88-41bf-8f13-ca739c447900 + - Entity: + Id: d99abbc2-7557-4a1c-8eaf-e2521976addd + Name: Vent + Components: + 649d145b5cd2d2498d83796837ab2e4c: !TransformComponent + Id: 5b149d64-d25c-49d2-8d83-796837ab2e4c + Position: {X: 0.0, Y: 0.6601438, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.258819, W: 0.9659258} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 51f9a88cd6a06144a9c30a8efc81f0d6: !ModelComponent + Id: 8ca8f951-a0d6-4461-a9c3-0a8efc81f0d6 + Model: 9ba50f3a-f535-4ad4-982d-ff342c69fce4:Environment/Props/Models/Vent + Materials: {} + 557237ad44bd2e4a9a6adfa72a07f828: !Starbreach.VFX.Fan,Starbreach + Id: ad377255-bd44-4a2e-9a6a-dfa72a07f828 + RotationSpeed: 0.5 + VentLightModelComponent: ref!! 34d79ecc-2a4d-4d22-b95e-50de5cde09ab + LightTexture: 2ed2808b-0693-4a27-8cd8-4cccd2d48a70:Environment/Props/Materials/Vent/Vent_inner_E + Base: + BasePartAsset: b5275603-ec75-4bf7-b9cd-6613fe69d2b9:Environment/Props/Prefabs/Vent + BasePartId: 08e72601-63eb-4dcb-989d-5c65552896e8 + InstanceId: 3aa6b2cc-b25e-4d81-a018-00d3cd887de6 + - Folder: Props + Entity: + Id: daac6a41-736f-4ac9-ac8d-b3101d27a42e + Name: Vent + Components: + 9385595b1d62aa4bb2b4c469cfe0c781: !TransformComponent + Id: b98643dd-e12a-499b-be31-318bd0497064 + Position*: {X: -24.507658, Y: 0.0, Z: -2.58682632} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: 2.98023224E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + fef582b5ce88153fe16e0207caff2767: ref!! c0394913-b91d-48e5-bc93-b8b582ea5590 + ad7e16aa5036ddb39dd344dbe2453ee0: ref!! df4f4aa5-effc-4d2b-bdb5-f60a693fe318 + 1200685bbff2fe1e5c49bf133a5e169b: ref!! ed1abd62-2c58-450d-8b7e-cf9858db7150 + b506b0ff932d7e6f0853bd4acef69b6c: ref!! 5db1fc30-34bf-4cd7-84f9-6e1ebc4b5aa2 + Base: + BasePartAsset: b5275603-ec75-4bf7-b9cd-6613fe69d2b9:Environment/Props/Prefabs/Vent + BasePartId: 5c398975-e1e7-4877-af93-881930263e94 + InstanceId: 33bcd5b9-6e80-4cd2-ac83-f2b652cb0e5f + - Entity: + Id: dc71b3fa-6a4e-4942-93f6-c1641fa7b3e8 + Name: Tubes + Components: + 8afe5b76881b508b37d688f2116c5186: !TransformComponent + Id: c5b1a601-68b5-4f8e-82d9-6f0de5d2b6fc + Position*: {X: -0.7356779, Y: 0.0, Z: 4.38498233E-08} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 5a51c9768d13bc9dee7cf6786a2152eb: ref!! d0e6d466-9177-40b2-891d-6ce7a707b2cb + 5da256e9e8800992b346c5fa626efbcc: ref!! c3b7b362-4d8d-424a-b747-5891edbe6123 + d0526db95b412f4714f97c9e1e008f44: !ModelComponent + Id: d6437b9e-e0d5-45da-81da-edab080b72d8 + Model: b71a38c2-5460-4a2e-8abf-77a0acec5aeb:Environment/Props/Models/Tubes + Materials: {} + Base: + BasePartAsset: 62e87c0b-15d8-4628-95c9-7880f4cf2fe1:Environment/Props/Prefabs/Tubes + BasePartId: 20f03481-611c-470f-b5ca-0917bf52f59a + InstanceId: 4bab6ede-f407-4fd5-b6f2-0962e4c59a9d + - Entity: + Id: dccce8f5-b4ec-4918-be1e-b83c2e6cffaf + Name: Sparks + Components: + ff26b404fd96534ba50fff60cdb5128a: !TransformComponent + Id: eeedb988-2367-4a08-9fc5-6a037fac2f5a + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + eac5e46777b7354babea586ef30bd4d1: !ParticleSystemComponent + Id: ec60a87d-0c7b-4da5-b9f5-d5a03ea19137 + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + da465e53965ade4fabe172d1fb19dc30: + EmitterName: sparks + ParticleLifetime: {X: 1.5, Y: 2.0} + ShapeBuilder: !ShapeBuilderOrientedQuad + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 66179a362867ad4fa81c4828ed37b306: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 543edb979345114aaf57da0586b2b1f3: + Key: 0.25 + Value: 0.5 + TangentType: Linear + 48220905d438de4b959e474a415a16ce: + Key: 1.0 + Value: 0.1 + TangentType: Linear + ScaleLength: true + LengthFactor: 3.0 + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 200.0, Y: 200.0, Z: 200.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 91119660-137e-4be0-bcb9-32f8aeee6ca8:Textures/dota + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + c279c8c5a4ac5e4bb9dd74ae0c4ce522: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount*: 120.0 + Initializers: + 2bf8de46251ee442b293ab905c0871d1: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.3 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.05, Y: 0.02} + e9ae5eeccf4333458f3c00f2b2a75054: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.03, Y: -0.03, Z: -0.03} + PositionMax: {X: 0.03, Y: 0.03, Z: 0.03} + Interpolate: false + e3f2dfa8c4b2e14685c4b3aba307172d: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: 0.0, Y: 3.0, Z: 0.0} + VelocityMax: {X: 3.0, Y: 4.0, Z: 3.0} + Updaters: + b2b11ca17ffada469874b44e6649cfd4: !UpdaterGravity + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + GravitationalAcceleration: {X: 0.0, Y: -9.80665, Z: 0.0} + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + a79b1f60c1902143b6307dd66abf51d5: !UpdaterSpeedToDirection + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + 1f0893c277cc9944b3dd11dd4a146534: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + caf74a8c447ba4419561e5cf23beb6a1: + Key: 0.0 + Value: {R: 0.1, G: 0.3, B: 1.0, A: 0.1} + TangentType: Linear + c01c3713703bd1419e97bbe94289ab0a: + Key: 1.0 + Value: {R: 0.1, G: 0.3, B: 1.0, A: 0.5} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 0d41855c55cfcd419fb3035290400829: + EmitterName: smoke + ParticleLifetime: {X: 3.0, Y: 4.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: null + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 1.0, Y: 1.0, Z: 1.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: fa1018e4-c74d-4495-9535-134f5a06e4cd:Textures/SMO001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: !UVBuilderFlipbook + XDivisions: 8 + YDivisions: 8 + StartingFrame: 0 + AnimationSpeed: 64 + ForceTexCoords: false + Spawners: + e50d93489a30be44bbebd701dcb65f6a: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 10.0 + Initializers: + a21e9cb2a8bf8644b6169341be64314f: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.05, Y: 0.3, Z: -0.05} + VelocityMax: {X: 0.05, Y: 0.4, Z: 0.05} + e4a11e3acc820643ae48224552a9a515: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + e0b8f7c67c6ce9439ba76a1bd6cfa7f0: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.5 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.5, Y: 1.0} + 86147475590605478ba314d672d20660: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.1, Y: 0.0, Z: -0.1} + PositionMax: {X: 0.1, Y: 0.0, Z: 0.1} + Interpolate: false + Updaters: + b17cff875d669f499d203cc83e037c0c: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + d300a7e45c2a724db551167f0e543b0a: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.05} + TangentType: Linear + 7edeaa8dd1cba04b941cea8b0f3a0c00: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 08a5f70ad7c56f4ca2e4f64a3c798053: + EmitterName: light + ParticleLifetime: {X: 0.05, Y: 0.05} + DrawPriority: 5 + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: null + SamplerRotation: null + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 30.0, Y: 40.0, Z: 50.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 902938804c93fb4b861d53eee1ae2c0b: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 0.5, Y: 0.1} + SpawnCount: 8.0 + Initializers: + cefeaf78276ac545881e1c827aecc458: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: 0.0, Y: 360.0} + Updaters: + d12128e39a11eb4dac43c4ca32b9babf: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + fe6a13211f49d94498b31de2b381881e: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + 8751ea2a3f769648b7a2d7615393278b: + Key: 0.5 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.1} + TangentType: Linear + 4da52f14639c7d448abd17cdf528ee07: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + Base: + BasePartAsset: ded8b935-865e-4133-b438-79aa043e6a86:VFXPrefabs/vfx-Sparks + BasePartId: 4bb551db-595c-4c2f-928c-19e06785ef70 + InstanceId: 321cfec0-21cc-4b92-bda9-74fab63bb809 + - Folder: Gameplay + Entity: + Id: de4980cc-86bf-46cf-841f-b55aad6a9e73 + Name: LaserFence_BarrierFinal + Components: + 84e6fe9d2b9d31020b4c38eae467638e: !TransformComponent + Id: 3afe843f-e8b2-44a1-ae8d-9841ae7b375e + Position: {X: -19.523571, Y: 0.0, Z: 3.42580986} + Rotation: {X: 0.0, Y: 0.99999994, Z: 0.0, W: 0.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 28b004aafacb384131e1957e3bddd611: ref!! cd897b24-0a4a-4663-bc90-3775e3df1ee2 + - Folder: Props + Entity: + Id: e1e7c11c-e0c1-4ec0-ad95-82fd9b4a4b66 + Name: DataSwitcher + Components: + ec3ee182ea7a0c1b20b9962a69b81666: !TransformComponent + Id: e2868b41-a96f-42f8-af81-249ba393e8a2 + Position*: {X: 0.0, Y: 0.0, Z: -5.5} + Rotation*: {X: 0.0, Y: 0.7071067, Z: 0.0, W: -0.7071068} + Scale*: {X: 0.5, Y: 0.5, Z: 0.5} + Children: {} + 30a5b8bb417210df31819b03c22e9bb4: !ModelComponent + Id: f09d4b11-a506-4e03-ab4d-04f9fa6cd2b0 + Model: 87c540c8-80aa-4d46-a28f-6f99109347f6:Environment/Props/Models/DataSwitcher + Materials: {} + 726c862c3e01529c1975b308e9ee07f4: !StaticColliderComponent + Id: ef185fab-2af7-450d-b7bb-04a3a12ba1dd + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 3c185efd0ffe017392955bb13e2b575c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 7.0, Z: 2.0} + LocalOffset: {X: 0.0, Y: 3.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + a3452e015314c275217bf6b46bc100a4: !CylinderColliderShapeDesc + Radius: 1.0 + LocalOffset: {X: 0.0, Y: 0.5, Z: -2.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 18a16e3d-5140-4db4-85a5-cd34e4fe1640:Environment/Props/Prefabs/DataSwitcher + BasePartId: bde5e4a6-c956-4cfd-9fa5-4f689c001ab2 + InstanceId: b935d371-f0ba-4c59-8e14-4f423f0a132b + - Entity: + Id: e37c20c9-60e1-4a38-ab7f-e54d5a7cc09e + Name: FloorButton + Components: + 2bd9e5018fb815bd9e0ddf7b6c4f0377: !TransformComponent + Id: 8dc5238f-2df4-465a-81ad-dbe64f6efa53 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a6932a4059e46dc7459b958c79f50336: !ModelComponent + Id: fbbb2324-6d93-4c99-ad2e-50943ee0769f + Model: b08b5432-96b6-4259-8a89-303ff9bd12e2:Gameplay/Models/FloorButton + Materials: + 1eb04cc22e2a20d26f26187814c7bdc3~0: 0347eda8-4648-4983-a223-713b43cea1d9:Gameplay/Materials/Plates/Plate2_Enabled_Off + daf84040e6ba39f4813001d91222a07f~1: ba76b6f1-63f6-44d9-ad48-aca96fbe79a3:Gameplay/Materials/Plates/Plate3_Enabled_Off + 2a52917f17e18564669f46063c397a81: !Starbreach.Gameplay.PressurePlate,Starbreach + Id: 53b19976-78fe-4c05-abba-bf2168dbfc12 + Material1EnabledOff: ba76b6f1-63f6-44d9-ad48-aca96fbe79a3:Gameplay/Materials/Plates/Plate3_Enabled_Off + Material1DisabledOn: 2746f702-7dd5-4ef5-9e93-d5e758da2800:Gameplay/Materials/Plates/Plate3_Disabled_On + Material1DisabledOff: d02e7fcd-9f9e-450f-bc56-6e50e9970ec2:Gameplay/Materials/Plates/Plate3_Disabled_Off + Material1EnabledOn: 1163e435-4f1b-4b16-8834-da23869292b4:Gameplay/Materials/Plates/Plate3_Enabled_On + Material0EnabledOff: 0347eda8-4648-4983-a223-713b43cea1d9:Gameplay/Materials/Plates/Plate2_Enabled_Off + Material0DisabledOn: eff5f692-9337-4d7b-8cd8-531e3e06b852:Gameplay/Materials/Plates/Plate2_Disabled_On + Material0DisabledOff: e74abd75-804a-4de0-acf7-924aa5bb3a20:Gameplay/Materials/Plates/Plate2_Disabled_Off + Material0EnabledOn: 903888ae-b297-487a-a708-5fd6cd38c7c7:Gameplay/Materials/Plates/Plate2_Enabled_On + Model: ref!! fbbb2324-6d93-4c99-ad2e-50943ee0769f + Trigger: ref!! 73c83585-23ef-4e86-b6e0-fd9f5fd25fa9 + AudioEmitter: ref!! 4d77712d-e736-4e06-896d-552a8c336c8a + Enabled: true + Toggle: false + SingleActivation*: true + CurrentToggleState: false + TransitionTime: 0.15 + 48a3a1d7ea5c129742126bc8b4d7429c: !Starbreach.Gameplay.PressurePlateTrigger,Starbreach + Id: 73c83585-23ef-4e86-b6e0-fd9f5fd25fa9 + CollisionFilterGroup: CharacterFilter + Trigger: ref!! df2cb3d5-654e-42a3-b9fc-b1bb5e49306f + 03c59a6169956fba8a31fd1f758dc46f: !AudioEmitterComponent + Id: 4d77712d-e736-4e06-896d-552a8c336c8a + Sounds: + adc799987a8ff52a579d44583cb2cde7~Enable: 5163c935-fe14-4496-8f44-eb64e8482b31:Gameplay/Sounds/Plate_Enable + 732e4c030c0a74345f1aed380bdb8533~Disable: 730d9dfc-a657-4d5b-b5ea-8fc7e14cfa7d:Gameplay/Sounds/Plate_Disable + UseHRTF: false + DirectionalFactor: 0.0 + Environment: Small + 9c600aa0b00e9640a384d3666fe41f14: !RigidbodyComponent + Id: df2cb3d5-654e-42a3-b9fc-b1bb5e49306f + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: true + IsKinematic: true + Mass: 1.0 + LinearDamping: 0.0 + AngularDamping: 0.0 + OverrideGravity: false + Gravity: {X: 0.0, Y: 0.0, Z: 0.0} + NodeName: null + ColliderShapes: + 4c0292725ab565154826fa81493eec99: !CylinderColliderShapeDesc + Height: 0.4 + Radius: 0.8 + LocalOffset: {X: 0.0, Y: 0.2, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 72f94a89-e47c-42ae-9264-b0c9881e3840:Gameplay/Prefabs/Plate + BasePartId: e4fdb89a-c2a0-4e83-a985-c4e087628455 + InstanceId: 27cc133a-35ad-4835-859e-164fa6bbd717 + - Folder: Props + Entity: + Id: e4c89f4a-fb37-4033-97c7-f9411b023138 + Name: Small_Wall + Components: + b169bb0a28fc365afeac43ee8f183ee6: !TransformComponent + Id: 7fa56ede-2af0-4ace-b832-8eec73307cee + Position*: {X: -26.0, Y: 0.0, Z: 3.0} + Rotation*: {X: 0.0, Y: -1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 07ce1731b5c55346319dfe8de1941a66: !ModelComponent + Id: ddef89ed-bea5-4b7e-8bcc-9af43314b2d3 + Model: 5d139f33-5b0c-4e35-ab70-78b928020552:Environment/Walls/PrefabModels/Small_Wall + Materials: {} + f67e43e13ee3fb89abc0bbaba3837c37: !StaticColliderComponent + Id: 7c3036d6-e863-4c1c-9732-f9ba007d40f7 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + c40463507837835195777deb473f14de: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 1.5, Y: 1.0, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 76617c83803d5680acec68f22ab9ee48: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 0.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + a6227beb392d58cacc21431aa494be07: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 2.5, Y: 0.0, Z: 0.0} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + Base: + BasePartAsset: 35e9585d-5854-46bb-806b-d343b98a6b93:Environment/Walls/Prefabs/Small_Wall_Grouped + BasePartId: cfe6176c-8d73-4ab9-8cd5-43229726c1ff + InstanceId: f8724139-8328-4f35-b1c0-ff262995314f + - Folder: Platform + Entity: + Id: e9849783-d529-42a6-ba80-ddaa0e3087f3 + Name: Cell_loop_half + Components: + e8a5c0543fe407204641fcccbb892282: !TransformComponent + Id: 653a215a-8540-4ded-ae5e-0554d9551520 + Position: {X: 10.5, Y: 0.0, Z: -1.58020687} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6c3a4d2e267a8680ed7e456f3c257e40: !ModelComponent + Id: 191557a1-023e-4955-b964-4447a5ab1e2e + Model: 37fe538d-f8a5-4516-9d2e-5f86ac23eac5:Environment/Platforms/Models/Cell_loop_half + Materials: {} + - Folder: Props + Entity: + Id: edd51f25-20bc-457b-86f0-1d7e35e33bd2 + Name: Small_Angle + Components: + f59e2ade343b886c0ca1f125a2504c1c: !TransformComponent + Id: de499d8a-d528-4e85-8bd8-95439321e001 + Position*: {X: -6.0, Y: 0.0, Z: 4.0} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 55d6ee3d08a260c07fdcbe9efb9741fe: !ModelComponent + Id: c00410f8-9c76-45de-aca3-13a79546443d + Model: 26958e5a-54e8-4c78-915b-ff9b33a6e742:Environment/Walls/PrefabModels/Small_Angle + Materials: {} + d9656997474c6f7b8bbd23de2fa86f31: !StaticColliderComponent + Id: 5e45eea4-77bb-4517-8460-93448f36ee00 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + c222d643bda9467ac12372fe4e854a41: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 1.0, Y: 1.0, Z: 0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 5ac88fde6f08e8fabb87c9bd14c8f2b7: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 0.5, Y: 1.0, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 11f45f58b26e798879e9e2b7a3c6160b: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 0.5, Y: 0.0, Z: -1.0} + LocalRotation: {X: 0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + Base: + BasePartAsset: bdf4ab4d-73bd-4722-9158-c7d19b5a4602:Environment/Walls/Prefabs/Small_Angle_Grouped + BasePartId: 1f8be153-d7e6-4961-880b-44efc358b7cb + InstanceId: b50685d0-1c29-45ee-a80d-2963c3b4f6ad + - Folder: Props + Entity: + Id: ee504509-b899-4144-a0ea-1ac76cf35152 + Name: QuadBarrels + Components: + 6cba76ddfd1ccfe65a4c5a140756c8d4: !TransformComponent + Id: f888cc95-e5f6-49ce-83c7-14db3b2ba6f6 + Position*: {X: -27.5743046, Y: 0.0, Z: -13.6155548} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3280e516b6ce697916b6f1c0823acd38: !ModelComponent + Id: 1a12a541-c27c-4b9a-b5e9-14af4aab8f40 + Model: bd5c8df1-b6f8-4ae3-9099-b063300bc184:Environment/Props/Models/QuadBarrels + Materials: {} + a0046f2ff924d533f457904736235306: !StaticColliderComponent + Id: cd0a37b4-f383-42e1-a2e2-89ebc15c623d + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 73a42be32d471fc220f6ebc55d725e77: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 3.0, Z: 2.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: bceccb3f-3666-4864-aded-2230c759cbaf:Environment/Props/Prefabs/QuadBarrels + BasePartId: ae3cd2c6-ef7d-4ebb-9bf1-01ff9c1b034c + InstanceId: 02132086-54a1-48de-a72c-66c910864c01 + - Entity: + Id: f00ed56e-4261-4306-bcf7-88caf3e10714 + Name: Vent_base + Components: + c2bef31cda0c8543946d5092d2cc4382: !TransformComponent + Id: 8fdcdb98-11d9-464f-a6ba-a2ad5fcab027 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 74a44ff7b53fd347b1bc0108f4e39f53: !ModelComponent + Id: d61a25c7-b7f7-447e-8f9c-7680d9335567 + Model: 9fb440c2-5c68-4b4c-a1c1-fe92481dc4d4:Environment/Props/Models/Vent_base + Materials: {} + 06cf1aa272609644a75ae1164968be17: !StaticColliderComponent + Id: 983e1176-b014-447d-8229-c1b5822771d3 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 18cf11ad3eabc040ac2705991dacfea7: !CylinderColliderShapeDesc + Height: 1.4 + Radius: 0.9 + LocalOffset: {X: 0.0, Y: 0.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b5275603-ec75-4bf7-b9cd-6613fe69d2b9:Environment/Props/Prefabs/Vent + BasePartId: 94fd4929-dc17-406a-b101-7d999144f384 + InstanceId: 184411f0-41af-42a5-963f-e2e24416425e + - Folder: null + Entity: + Id: f0dce9cd-dcaf-4184-adfe-0f1cab9cc2ef + Name: Tubes_base + Components: + 7cdd3b1a1396bae0df8d315686b47524: !TransformComponent + Id: 050ba5a8-aa8d-41bb-b9c1-65bb1ae08aa6 + Position: {X: 0.0, Y: 0.0, Z: 3.15} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: -1.0} + Children: {} + 14c6a602fe3acc99031df8e58a62d2c8: !StaticColliderComponent + Id: 95f19d9b-965b-418a-ace9-04312ef980a6 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 2f121f88c1f6896ca79a2939aa8a095c: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.25, Z: 1.2} + LocalOffset: {X: 0.0, Y: 0.625, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 9a70c79d932274ae3d789c1b8e505eed: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 0.7, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.35, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + c693012fa2a7a493118f8d327a097904: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.6, Y: 1.0, Z: 1.0} + LocalOffset: {X: 0.0, Y: 0.6, Z: -0.3} + LocalRotation: {X: -0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + ec075d7b9a08dd03f4591017a4bce1a2: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: -0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 7742036734daf5a2f5497973ad25733f: !CylinderColliderShapeDesc + Height: 1.2 + LocalOffset: {X: 0.6, Y: 1.85, Z: 0.4} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: 62e87c0b-15d8-4628-95c9-7880f4cf2fe1:Environment/Props/Prefabs/Tubes + BasePartId: 6b5a24fa-0d02-4afd-abf9-40cf450e9674 + InstanceId: 88bb19fc-203f-4e0f-8b8f-6a6a2f72cf1b + - Entity: + Id: f22e3f65-8632-40c8-8630-9f1c3a80b39f + Name: Vent_light_mesh + Components: + 54af95a0dca10843911d079ccfaa0cfd: !TransformComponent + Id: df4f4aa5-effc-4d2b-bdb5-f60a693fe318 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6f6f8132f03b9c4db90f22a935e18733: !ModelComponent + Id: 67203e67-a961-4b75-a266-e3abda61dd02 + Model: bcf6e9e7-0e5d-45f3-ba1b-0b2025d17e1c:Environment/Props/Models/Vent_light_mesh + Materials: {} + Base: + BasePartAsset: b5275603-ec75-4bf7-b9cd-6613fe69d2b9:Environment/Props/Prefabs/Vent + BasePartId: 9b350f50-f364-4653-8b82-1b0bf30e2f23 + InstanceId: 33bcd5b9-6e80-4cd2-ac83-f2b652cb0e5f + - Folder: Props + Entity: + Id: fc13159a-c2e7-4f47-a421-6c545f1ec422 + Name: Tubes + Components: + 8afe5b76881b508b37d688f2116c5186: !TransformComponent + Id: 0e3b0293-8eb1-4c62-a177-c4eeaa873229 + Position*: {X: -10.16874, Y: 0.0, Z: 9.447697} + Rotation*: {X: 0.0, Y: 0.99999994, Z: 0.0, W: 0.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 0ebe9d56d930a1174b9ce7185f437b7e: ref!! cb21a9e1-ba84-40fb-ab8f-c55a72e44a83 + b4c67e21ab8987bd12d64b37b9aedc70: ref!! 050ba5a8-aa8d-41bb-b9c1-65bb1ae08aa6 + d0526db95b412f4714f97c9e1e008f44: !ModelComponent + Id: 44cdc044-a504-4357-8a57-09141433f0af + Model: b71a38c2-5460-4a2e-8abf-77a0acec5aeb:Environment/Props/Models/Tubes + Materials: {} + Base: + BasePartAsset: 62e87c0b-15d8-4628-95c9-7880f4cf2fe1:Environment/Props/Prefabs/Tubes + BasePartId: 20f03481-611c-470f-b5ca-0917bf52f59a + InstanceId: 88bb19fc-203f-4e0f-8b8f-6a6a2f72cf1b + - Folder: Props + Entity: + Id: fc134bdc-d983-43f9-b4d4-82b223df5020 + Name: Small_Angle + Components: + f59e2ade343b886c0ca1f125a2504c1c: !TransformComponent + Id: 36230fd2-f41d-470d-8f66-c902e0d02497 + Position*: {X: -31.0, Y: 0.0, Z: 4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: -1.0} + Children: {} + 55d6ee3d08a260c07fdcbe9efb9741fe: !ModelComponent + Id: f39aaf58-59e3-4a98-984a-c98b4a553c35 + Model: 26958e5a-54e8-4c78-915b-ff9b33a6e742:Environment/Walls/PrefabModels/Small_Angle + Materials: {} + d9656997474c6f7b8bbd23de2fa86f31: !StaticColliderComponent + Id: e33f8d58-f5ac-4b3e-92d2-f00058ae8d15 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + c222d643bda9467ac12372fe4e854a41: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 1.0, Y: 1.0, Z: 0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 5ac88fde6f08e8fabb87c9bd14c8f2b7: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 0.5, Y: 1.0, Z: -0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 11f45f58b26e798879e9e2b7a3c6160b: !BoxColliderShapeDesc + Is2D: false + Size: {X: 0.8, Y: 1.2, Z: 0.8} + LocalOffset: {X: 0.5, Y: 0.0, Z: -1.0} + LocalRotation: {X: 0.2923717, Y: 0.0, Z: 0.0, W: 0.9563048} + Base: + BasePartAsset: bdf4ab4d-73bd-4722-9158-c7d19b5a4602:Environment/Walls/Prefabs/Small_Angle_Grouped + BasePartId: 1f8be153-d7e6-4961-880b-44efc358b7cb + InstanceId: 5718d40d-51a9-4409-9763-362ac751981c + - Folder: Platform + Entity: + Id: fc1f63a6-9559-4d9e-a166-b0482a54f3a4 + Name: Cell_loop_half + Components: + e8a5c0543fe407204641fcccbb892282: !TransformComponent + Id: eebc3986-e8a7-429d-b831-aa5c8e0670bd + Position: {X: 10.5, Y: 0.0, Z: -7.577582} + Rotation: {X: 0.0, Y: 8.742278E-08, Z: 0.0, W: -1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6c3a4d2e267a8680ed7e456f3c257e40: !ModelComponent + Id: fb22e7d2-7798-4498-b0fd-854e2852cdf8 + Model: 37fe538d-f8a5-4516-9d2e-5f86ac23eac5:Environment/Platforms/Models/Cell_loop_half + Materials: {} + - Entity: + Id: fcc00bb0-a54b-4227-9be2-46b04d6b01a4 + Name: Steam + Components: + c1ecc9674350ec47b258da4ab8ccf2ff: !TransformComponent + Id: 0ac29aa3-f382-4eee-87cf-c53085cf694f + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8323bf5daa524c4fb5d833e41b08b32d: !ParticleSystemComponent + Id: 4f059e41-5c37-43b2-9a06-c78fdc5522f1 + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: !BoundingSpheretatic + DebugDraw: true + Radius: 4.0 + Emitters: + 9a3a5271a4a0934d9467f6b095793379: + ParticleLifetime: {X: 0.5, Y: 1.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 0383cd796e839e4b9667af5d0fe71756: + Key: 0.0 + Value: 0.5 + TangentType: Linear + 3c3bf45d6e50e542871470a99fdfd9f3: + Key: 0.3 + Value: 0.7 + TangentType: Linear + aa6cd07e77ba1c4da6e836dff7b31695: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ZOffset: 0.2 + SoftEdgeDistance: 0.3 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 5.0, Y: 5.0, Z: 5.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8dbe2382-769c-45fe-9604-98c5ae5c434c:Textures/SMO001_3 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + fa12c9550522c24fa400d8ce84ef83a0: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 80.0 + Initializers: + 3994a4c9897c7049af5217d699e668a9: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.4, Y: 0.5} + 7fa5fb2d4e692c4aae5cda5ce081ca44: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.5, Y: 0.0, Z: -0.5} + PositionMax: {X: 0.5, Y: 0.0, Z: 0.5} + Interpolate: false + 3d037e54f2051d42a511f75567a2d5eb: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.05, Y: -3.0, Z: -0.05} + VelocityMax: {X: 0.05, Y: -3.0, Z: 0.05} + d4d112e1ace7b944828fa9278f3938e1: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + Updaters: + 226c0f6bc8f05441a0eb6454e9f89045: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 82276cc03e3f854b9dc5c50ece2e25f9: + Key: 0.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + e3927f1e92cb4d4f80c729960776e1ca: + Key: 0.2 + Value: {R: 0.5, G: 0.5, B: 0.5, A: 0.25} + TangentType: Linear + bb31441c3997734baf5d4b324f145da1: + Key: 1.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + a788c7989777534fbc50541f7eebe631: !UpdaterForceField + InheritPosition: true + Position: {X: 0.0, Y: -1.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: true + FieldShape: !FieldShapeCylinder + HalfHeight: 1.0 + Radius: 1.0 + DisplayParticleRotation: true + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 1.0 + FalloffStart: 0.1 + StrengthOutside: 0.0 + FalloffEnd: 0.9 + EnergyConservation: 1.0 + ForceDirected: 0.0 + ForceVortex: 0.0 + ForceRepulsive: 4.0 + ForceFixed: {X: 0.0, Y: 8.0, Z: 0.0} + Base: + BasePartAsset: aac85dfd-95cb-4a1f-8b00-00e61427e601:Drones/Prefabs/EnergyDrone + BasePartId: 67bf9668-b948-4e6a-8e59-ca5aebed6c09 + InstanceId: 9db2b9d8-5355-4afa-859a-f56c63d6a8d5 + - Entity: + Id: fdd1bb34-081c-4920-9112-862576645a82 + Name: Satellite_dish + Components: + 0f8725c156532fc81f5e016477d17c39: !TransformComponent + Id: 5476bfe0-f499-4bc9-9742-5b741de1633f + Position: {X: -0.443379432, Y: 1.59516716, Z: -0.4901473} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 79d849f104142d4ba2b605eeb57c5c34: !ModelComponent + Id: 987e178a-95f7-49af-85f8-defeeeace767 + Model: e554b48a-fc71-4ba3-94cb-a6112a000237:Environment/Props/Models/Satellite_dish + Materials: {} + 6fd63941ed6b372565409c190442e87d: !Starbreach.Environment.SpinModel,Starbreach + Id: 26975d10-7147-4838-81c4-9f676e804a7d + TurnPerSecond: 0.25 + Base: + BasePartAsset: 208c0dab-6c53-4535-b0e9-7b27658aed0d:Environment/Props/Prefabs/Satellite_spinning + BasePartId: 13fa0d4d-6c70-423a-a463-33195d3ae793 + InstanceId: 0fbdf265-1f88-41bf-8f13-ca739c447900 + - Folder: Props + Entity: + Id: fe0ac872-e303-4a4a-a50a-45a546a253e5 + Name: QuadBarrels + Components: + 6cba76ddfd1ccfe65a4c5a140756c8d4: !TransformComponent + Id: 581c15d8-e0e7-4136-b656-3bff42e5dfa2 + Position*: {X: -25.5743084, Y: 0.0, Z: -12.6155586} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3280e516b6ce697916b6f1c0823acd38: !ModelComponent + Id: 36147c94-74a3-48af-bb70-0292d789032a + Model: bd5c8df1-b6f8-4ae3-9099-b063300bc184:Environment/Props/Models/QuadBarrels + Materials: {} + a0046f2ff924d533f457904736235306: !StaticColliderComponent + Id: 3ca385bb-b6a1-4053-bb9a-503fb205b0a1 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 73a42be32d471fc220f6ebc55d725e77: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 3.0, Z: 2.0} + LocalOffset: {X: 0.0, Y: 1.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: bceccb3f-3666-4864-aded-2230c759cbaf:Environment/Props/Prefabs/QuadBarrels + BasePartId: ae3cd2c6-ef7d-4ebb-9bf1-01ff9c1b034c + InstanceId: f5fff8f5-1960-4880-9cb4-9f65cc6f85ac + - Entity: + Id: fef9a8a5-8111-45b3-aa28-4f57d53162a7 + Name: Vent_base + Components: + c2bef31cda0c8543946d5092d2cc4382: !TransformComponent + Id: ccdb87cb-9f4f-40fa-8880-2c0a22ce4d20 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 74a44ff7b53fd347b1bc0108f4e39f53: !ModelComponent + Id: 5da72ef6-1aae-4a71-90d5-49e408577385 + Model: 9fb440c2-5c68-4b4c-a1c1-fe92481dc4d4:Environment/Props/Models/Vent_base + Materials: {} + 06cf1aa272609644a75ae1164968be17: !StaticColliderComponent + Id: 51f1601a-293a-4dc4-98e1-a5c6c42ad8fe + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 18cf11ad3eabc040ac2705991dacfea7: !CylinderColliderShapeDesc + Height: 1.4 + Radius: 0.9 + LocalOffset: {X: 0.0, Y: 0.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Base: + BasePartAsset: b5275603-ec75-4bf7-b9cd-6613fe69d2b9:Environment/Props/Prefabs/Vent + BasePartId: 94fd4929-dc17-406a-b101-7d999144f384 + InstanceId: 4b0e5c6b-2277-421a-bc7b-9ad494da90a0 diff --git a/Starbreach/Assets/Shared/Levels/Platform_1-4_NAV.xknavmesh b/Starbreach/Assets/Shared/Levels/Platform_1-4_NAV.xknavmesh new file mode 100644 index 0000000..3ebe753 --- /dev/null +++ b/Starbreach/Assets/Shared/Levels/Platform_1-4_NAV.xknavmesh @@ -0,0 +1,18 @@ +!NavigationMeshAsset +Id: cfed2a24-078a-4f6b-b086-27f1eb667e14 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Scene: 9dede2cf-fbc3-4f47-b9e3-31cd2650e3e4:Levels/Platform_1-4 +IncludedCollisionGroups: DefaultFilter, StaticFilter, KinematicFilter, DebrisFilter, SensorTrigger, CharacterFilter, CustomFilter2, CustomFilter3, CustomFilter4, CustomFilter5, CustomFilter6, CustomFilter7, CustomFilter8, CustomFilter9, CustomFilter10 +BuildSettings: + CellHeight: 0.2 + CellSize: 0.3 + TileSize: 64 + MinRegionArea: 2 + RegionMergeArea: 20 + MaxEdgeLen: 12.0 + MaxEdgeError: 1.3 + DetailSamplingDistance: 6.0 + MaxDetailSamplingError: 1.0 +SelectedGroups: + 3b813ef84cde4f9584f18c21bbd4af9f: 665dbfaa-d91a-ee40-d176-a5eaed1268bc diff --git a/Starbreach/Assets/Shared/Levels/PrefabModels/Bridge_straight_NS.xkprefabmodel b/Starbreach/Assets/Shared/Levels/PrefabModels/Bridge_straight_NS.xkprefabmodel new file mode 100644 index 0000000..86efe6b --- /dev/null +++ b/Starbreach/Assets/Shared/Levels/PrefabModels/Bridge_straight_NS.xkprefabmodel @@ -0,0 +1,6 @@ +!PrefabModelAsset +Id: bf243266-fbbe-49dc-90c6-92fff60fadb3 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Materials: {} +Prefab: 3f315b5b-46cd-46ad-96d4-3605bfe69107:Levels/Prefabs/Bridge_straight_NS diff --git a/Starbreach/Assets/Shared/Levels/PrefabModels/Bridge_straight_WE.xkprefabmodel b/Starbreach/Assets/Shared/Levels/PrefabModels/Bridge_straight_WE.xkprefabmodel new file mode 100644 index 0000000..f1d6667 --- /dev/null +++ b/Starbreach/Assets/Shared/Levels/PrefabModels/Bridge_straight_WE.xkprefabmodel @@ -0,0 +1,6 @@ +!PrefabModelAsset +Id: 06c87220-6edf-4c6b-8c73-164f06fa11af +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Materials: {} +Prefab: cc3f00a4-ed3f-458f-a7b9-408d90ec6292:Levels/Prefabs/Bridge_straight_WE diff --git a/Starbreach/Assets/Shared/Levels/PrefabModels/FloatingRocksVideo.xkprefabmodel b/Starbreach/Assets/Shared/Levels/PrefabModels/FloatingRocksVideo.xkprefabmodel new file mode 100644 index 0000000..529b8ea --- /dev/null +++ b/Starbreach/Assets/Shared/Levels/PrefabModels/FloatingRocksVideo.xkprefabmodel @@ -0,0 +1,6 @@ +!PrefabModelAsset +Id: 43dc3c3b-ef0d-4784-bb39-91cd6f55373b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Materials: {} +Prefab: bbdbd698-8c47-4c49-b79e-c7721b626b34:Levels/Prefabs/FloatingRocksVideo diff --git a/Starbreach/Assets/Shared/Levels/PrefabModels/Level_1-1_Platform.xkprefabmodel b/Starbreach/Assets/Shared/Levels/PrefabModels/Level_1-1_Platform.xkprefabmodel new file mode 100644 index 0000000..97e42f0 --- /dev/null +++ b/Starbreach/Assets/Shared/Levels/PrefabModels/Level_1-1_Platform.xkprefabmodel @@ -0,0 +1,6 @@ +!PrefabModelAsset +Id: a7957da4-182e-48a7-ae81-b402874bdac6 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Materials: {} +Prefab: 9cfcd9eb-ccfd-4878-a92c-eabaaaeba75d:Levels/Prefabs/Level_1-1_Platform diff --git a/Starbreach/Assets/Shared/Levels/PrefabModels/Level_1-1_PlatformRocks.xkprefabmodel b/Starbreach/Assets/Shared/Levels/PrefabModels/Level_1-1_PlatformRocks.xkprefabmodel new file mode 100644 index 0000000..1913a25 --- /dev/null +++ b/Starbreach/Assets/Shared/Levels/PrefabModels/Level_1-1_PlatformRocks.xkprefabmodel @@ -0,0 +1,6 @@ +!PrefabModelAsset +Id: dfe97702-4103-44f9-91eb-7fedc0a5f2fc +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Materials: {} +Prefab: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1:Levels/Prefabs/Level_1-1_PlatformRocks diff --git a/Starbreach/Assets/Shared/Levels/PrefabModels/Level_1-2_Platform.xkprefabmodel b/Starbreach/Assets/Shared/Levels/PrefabModels/Level_1-2_Platform.xkprefabmodel new file mode 100644 index 0000000..c97cd5e --- /dev/null +++ b/Starbreach/Assets/Shared/Levels/PrefabModels/Level_1-2_Platform.xkprefabmodel @@ -0,0 +1,6 @@ +!PrefabModelAsset +Id: e5f401a5-9a3b-4413-aacd-ae40d016b1f7 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Materials: {} +Prefab: fb46d7f0-9838-4ccf-ab83-e8acddc78746:Levels/Prefabs/Level_1-2_Platform diff --git a/Starbreach/Assets/Shared/Levels/PrefabModels/Level_1-3_Platform.xkprefabmodel b/Starbreach/Assets/Shared/Levels/PrefabModels/Level_1-3_Platform.xkprefabmodel new file mode 100644 index 0000000..08d0737 --- /dev/null +++ b/Starbreach/Assets/Shared/Levels/PrefabModels/Level_1-3_Platform.xkprefabmodel @@ -0,0 +1,6 @@ +!PrefabModelAsset +Id: d4b80dc1-d62f-49a4-ad5d-32d4f47612ff +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Materials: {} +Prefab: f61931ad-a946-4e01-a913-6f11671bb52b:Levels/Prefabs/Level_1-3_Platform diff --git a/Starbreach/Assets/Shared/Levels/PrefabModels/Level_1-3_PlatformRocks.xkprefabmodel b/Starbreach/Assets/Shared/Levels/PrefabModels/Level_1-3_PlatformRocks.xkprefabmodel new file mode 100644 index 0000000..8c80e56 --- /dev/null +++ b/Starbreach/Assets/Shared/Levels/PrefabModels/Level_1-3_PlatformRocks.xkprefabmodel @@ -0,0 +1,6 @@ +!PrefabModelAsset +Id: d6f89bd5-a63d-4050-8117-3e155ff86ced +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Materials: {} +Prefab: 004999bd-0369-4bae-9955-4821c850e829:Levels/Level_1-3_PlatformRocks diff --git a/Starbreach/Assets/Shared/Levels/PrefabModels/Level_1-4_Platform.xkprefabmodel b/Starbreach/Assets/Shared/Levels/PrefabModels/Level_1-4_Platform.xkprefabmodel new file mode 100644 index 0000000..480dc70 --- /dev/null +++ b/Starbreach/Assets/Shared/Levels/PrefabModels/Level_1-4_Platform.xkprefabmodel @@ -0,0 +1,6 @@ +!PrefabModelAsset +Id: 2ef48566-2890-4e61-97cd-e49d7e79e479 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Materials: {} +Prefab: daa024b6-392e-4d8f-bf39-0cdce85cca5d:Levels/Prefabs/Level_1-4_Platform diff --git a/Starbreach/Assets/Shared/Levels/Prefabs/Bridge_straight_NS.xkprefab b/Starbreach/Assets/Shared/Levels/Prefabs/Bridge_straight_NS.xkprefab new file mode 100644 index 0000000..3d489ef --- /dev/null +++ b/Starbreach/Assets/Shared/Levels/Prefabs/Bridge_straight_NS.xkprefab @@ -0,0 +1,695 @@ +!PrefabAsset +Id: 3f315b5b-46cd-46ad-96d4-3605bfe69107 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! b0d1075c-a216-4a88-a17f-797a7fdbaa82 + - ref!! 949f7e3a-dc3f-4368-a72c-0f49d8618ed5 + - ref!! bb54bb2e-0e69-4216-9d49-113ebcb75a16 + - ref!! 5abe4074-a44b-48cb-9f64-99658ada8227 + - ref!! 39461fc4-7557-4cea-a678-7ba9226dd432 + - ref!! 53200ec4-c772-47c9-b2eb-ddf2d712b03b + - ref!! 1a193419-c84f-4bb0-ada3-79db8b2d3b3c + - ref!! ca3cf173-06c6-41f4-b7d1-ff5f8f90973e + - ref!! 98e501fe-1a62-4103-9452-56a36841ac5a + - ref!! b73b31f0-7f4f-440f-b11d-c4fc5f6e6d1b + - ref!! 135c4471-0372-452c-a872-571458136196 + - ref!! 576a1723-87d3-4233-b929-708214fab12b + - ref!! 2f65752f-dc08-4506-9b51-dc4d382cf24a + - ref!! b41f4fb5-839b-41b8-ac3e-193204fe51f3 + - ref!! 9289dd13-905f-4a41-8845-338edbea5353 + - ref!! 1e365bad-5797-4145-ad38-8e19be1b4db7 + - ref!! f299dda2-df5a-4c6f-8fa4-c65c72a967a6 + - ref!! 76959d46-4df2-4c52-b544-26a1858eccb8 + - ref!! a3c8fd6e-2cca-4f96-a8fc-3a2c927e4b05 + - ref!! f9a682df-c3e9-4e0c-a9aa-fac3edd736ef + - ref!! b78b5b17-c4ba-45de-85d4-9d82d2fa6521 + - ref!! e16ddf00-b358-4c85-8abe-7377eea0341b + - ref!! 8832c607-3d00-4a47-be1d-4c126b307d7d + - ref!! 9e10f464-33d6-4d98-9459-afe44646bd49 + - ref!! 7319bc2c-3551-48a0-b42b-b0ec9d50e135 + - ref!! 010a1498-b38b-4500-a227-dfa963154dc8 + - ref!! 90769d69-2068-4ece-984c-31d646060174 + - ref!! b9eb0572-de14-411a-89be-69af70e9b9e9 + - ref!! 7d4c9c1c-6919-4676-9e07-c91953917f1a + - ref!! afe323a8-17b4-499d-93e5-6d83e205ab06 + - ref!! e020fdf0-7660-4df0-aaf0-45ae53aed5a2 + - ref!! 5695de99-6bfa-4d24-86b3-b29056cc8982 + - ref!! b6a44635-b659-491a-941a-72a7d994ae4a + - ref!! a3bb658f-0ad6-4e3f-adc2-6dad23aace36 + - ref!! 4bad8305-3e83-4cdb-a9eb-b885c7bff446 + - ref!! 73cb3d9b-4eab-4b84-bbbd-7d8cb9b118c4 + - ref!! 486337af-dad2-424c-95df-7e55c6b8a32b + Parts: + - Folder: Platform + Entity: + Id: 010a1498-b38b-4500-a227-dfa963154dc8 + Name: Cell_Loop (92) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 5078308c-2f6a-482b-bcf3-9cd088356c52 + Position: {X: 3.99999952, Y: 0.0, Z: -14.999999} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: de38f1a1-7fe8-49ca-93ab-fd0f091aa81f + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 135c4471-0372-452c-a872-571458136196 + Name: Cell_Loop (85) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 8b52b7eb-9dea-4c1f-9b18-8d7aa313b9ce + Position: {X: 0.0, Y: 0.0, Z: -6.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 4bca53b7-ce8a-4145-88af-fac34d8f6b1d + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 1a193419-c84f-4bb0-ada3-79db8b2d3b3c + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 108601ab-c041-426d-be0b-8134cb0278f6 + Position*: {X: -0.5000005, Y: 0.0, Z: -6.999999} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 9b21acc7-dd54-4ffd-8fb9-936279731be7 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: c58f49f2-7ccf-422c-8c0f-7d1675a42e71 + - Folder: Platform + Entity: + Id: 1e365bad-5797-4145-ad38-8e19be1b4db7 + Name: Cell_Loop (81) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: a42ca67b-2443-4af4-a9ca-0eee1a81d269 + Position: {X: 1.99999952, Y: 0.0, Z: -2.99999881} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: f25bcc71-231c-4a3b-8def-f61d81b2432f + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 2f65752f-dc08-4506-9b51-dc4d382cf24a + Name: Cell_Loop (91) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 92cd51fe-dfe7-4c68-a518-7e14df53bb04 + Position: {X: 0.0, Y: 0.0, Z: -12.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: f9893d56-5415-44c9-81ab-06bfe3c651e2 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 39461fc4-7557-4cea-a678-7ba9226dd432 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 16a19ae7-1238-46cc-9440-9c71592b37c3 + Position*: {X: -0.5000005, Y: 0.0, Z: -4.999999} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 822a8de8-891f-4704-b4b4-6449213d2211 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 753e4143-0fe6-41cc-9ed7-411e2c136be8 + - Folder: null + Entity: + Id: 486337af-dad2-424c-95df-7e55c6b8a32b + Name: Wall + Components: + aa8e1c95be6f763acb252c88bc9b4e3c: !TransformComponent + Id: c4f7ffae-2319-479c-948c-9c82328b9d1b + Position: {X: -0.0286345482, Y: 2.384424, Z: -9.030725} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e11428463ff2a5448fe76cbecb8ebabf: !StaticColliderComponent + Id: 7f2a4c03-fc21-4cd9-92e0-8dba6901ad97 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + ce5db6f77a52c5350697c41612a04526: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 8.0, Z: 20.0} + LocalOffset: {X: 0.0, Y: -0.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + - Entity: + Id: 4bad8305-3e83-4cdb-a9eb-b885c7bff446 + Name: Floor + Components: + aa8e1c95be6f763acb252c88bc9b4e3c: !TransformComponent + Id: 88c86ace-2cc1-4681-b5ea-3bf74f39b5f3 + Position: {X: 2.97296429, Y: 0.0, Z: -9.030725} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e11428463ff2a5448fe76cbecb8ebabf: !StaticColliderComponent + Id: e2db7082-3b7a-4f99-bfdf-ce388a025e2f + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + ce5db6f77a52c5350697c41612a04526: !BoxColliderShapeDesc + Is2D: false + Size: {X: 8.0, Y: 1.0, Z: 20.0} + LocalOffset: {X: 0.0, Y: -0.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + - Folder: Borders + Entity: + Id: 53200ec4-c772-47c9-b2eb-ddf2d712b03b + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 8bfa3b6e-482b-4f01-b5c4-b67e9ae366ce + Position*: {X: -0.5000005, Y: 0.0, Z: -12.999999} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 129c0b59-8481-4f62-a7f0-0a2faf834c3d + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 49e06922-b6b0-440d-96c1-6f896e988646 + - Folder: Borders + Entity: + Id: 5695de99-6bfa-4d24-86b3-b29056cc8982 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: ae8f5355-35ff-483f-91f5-07b2e54df24c + Position*: {X: 6.49999762, Y: 0.0, Z: -14.999999} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 56593e88-462d-44d8-8e16-78f964a6e413 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 9673eb5a-bdb8-4cd3-a9c4-ee5de1ad13c8 + - Folder: Platform + Entity: + Id: 576a1723-87d3-4233-b929-708214fab12b + Name: Cell_Loop (88) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 573bbd8b-6d88-4dad-89a0-6b89321c637e + Position: {X: 0.0, Y: 0.0, Z: -9.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: c5bffa42-3991-4caf-887f-ed8e5877630e + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 5abe4074-a44b-48cb-9f64-99658ada8227 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 0c36273b-04e3-4cab-98f2-f3f1460cb186 + Position*: {X: -0.5000005, Y: 0.0, Z: -10.999999} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 04cf5365-ebc9-4c47-a968-593f9593c3e8 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 71440264-8b73-4da9-8b3c-69c7b14cc484 + - Folder: Platform + Entity: + Id: 7319bc2c-3551-48a0-b42b-b0ec9d50e135 + Name: Cell_Loop (89) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: a4811867-8316-4ecb-9abb-fad95224a56f + Position: {X: 3.99999952, Y: 0.0, Z: -11.999999} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 0cc78b8b-8b8c-465f-a9a2-b27f3976c087 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: null + Entity: + Id: 73cb3d9b-4eab-4b84-bbbd-7d8cb9b118c4 + Name: Wall + Components: + aa8e1c95be6f763acb252c88bc9b4e3c: !TransformComponent + Id: b9ca888a-07cc-4c97-8907-73d59f7e29fc + Position: {X: 6.10576248, Y: 2.384424, Z: -9.030725} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e11428463ff2a5448fe76cbecb8ebabf: !StaticColliderComponent + Id: 2a46f6a3-e5af-47f3-a3f9-7d98e3e1f6fe + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + ce5db6f77a52c5350697c41612a04526: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 8.0, Z: 20.0} + LocalOffset: {X: 0.0, Y: -0.5, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + - Folder: Platform + Entity: + Id: 76959d46-4df2-4c52-b544-26a1858eccb8 + Name: Cell_Loop (87) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: de18f309-1258-46b0-9e95-8e44e27b3110 + Position: {X: 1.99999952, Y: 0.0, Z: -8.999999} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 1d4839bd-3e1a-421d-bc9f-5df338615363 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 7d4c9c1c-6919-4676-9e07-c91953917f1a + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 1c7e6369-4cb4-4f23-b311-81a19ebc4904 + Position*: {X: 6.49999762, Y: 0.0, Z: -4.999999} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 886d53f4-712f-4610-b083-3c203b9a9b3c + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: c80dc9e8-6442-4400-b0a3-b8f956ee607d + - Folder: Platform + Entity: + Id: 8832c607-3d00-4a47-be1d-4c126b307d7d + Name: Cell_Loop (83) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: b52e2605-7055-4909-875e-b21a8342389b + Position: {X: 3.99999952, Y: 0.0, Z: -5.999999} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: d020fe48-eb1f-4139-bb53-b25757b22cbc + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 90769d69-2068-4ece-984c-31d646060174 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 286ed511-77a9-4f15-8a24-c570b75e178d + Position*: {X: 6.49999762, Y: 0.0, Z: -2.999999} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: c8dc7256-4fc8-4863-a99a-a9a907d83fdb + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 8d742d61-1ed5-4e1a-a7cb-9da7c3c44e42 + - Folder: Platform + Entity: + Id: 9289dd13-905f-4a41-8845-338edbea5353 + Name: Cell_Loop (78) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: eb4ebe23-d4ad-4b4d-a924-8b436c6d3bcd + Position: {X: 1.99999952, Y: 0.0, Z: 9.536743E-07} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 3d32855c-5c65-47d5-80ab-e70b21889e19 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 949f7e3a-dc3f-4368-a72c-0f49d8618ed5 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 1692632e-6c37-44fa-81a2-17e680a1770d + Position*: {X: -0.5000005, Y: 0.0, Z: -8.999999} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: c7cc63ab-16ca-4c0a-ac15-68257daf37ea + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: ac97c65e-04c5-416b-9ae3-0907a07265a3 + - Folder: Platform + Entity: + Id: 98e501fe-1a62-4103-9452-56a36841ac5a + Name: Cell_Loop (77) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 6896a3d4-1292-4141-91bf-46084e9078fb + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: a1556480-0a90-410b-84e7-c746d12b7e6a + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 9e10f464-33d6-4d98-9459-afe44646bd49 + Name: Cell_Loop (86) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: ed2421d6-4ebf-4583-ba6a-51c2b204b692 + Position: {X: 3.99999952, Y: 0.0, Z: -8.999999} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 865dbfbe-259f-4efe-8a95-4e4a8cbb2b54 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: a3bb658f-0ad6-4e3f-adc2-6dad23aace36 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: c84a0dcb-43b8-4e4d-8571-2b9732fe9ebc + Position*: {X: 6.49999762, Y: 0.0, Z: -17.0} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: b6b46d54-d5d0-471c-9526-792fd066bf49 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: df62d220-1057-418e-b079-9a1223461d6a + - Folder: Platform + Entity: + Id: a3c8fd6e-2cca-4f96-a8fc-3a2c927e4b05 + Name: Cell_Loop (90) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 8d3f7ca7-da01-497d-b40f-70428a339dd2 + Position: {X: 1.99999952, Y: 0.0, Z: -11.999999} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 3169b7a4-8521-4fd2-b00f-b5ac749fd481 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: afe323a8-17b4-499d-93e5-6d83e205ab06 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 60226536-04c3-43df-93e8-fd8a2d233d2d + Position*: {X: 6.49999762, Y: 0.0, Z: -12.999999} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 9ae1fcad-7808-4419-adb5-596fc60a7d6f + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: b22dc88c-8f9c-4ede-8482-8d84b36a9513 + - Folder: Borders + Entity: + Id: b0d1075c-a216-4a88-a17f-797a7fdbaa82 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 218d71c4-7359-48be-b252-4b03ae58c22c + Position*: {X: -0.5000005, Y: 0.0, Z: -0.999999046} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: a011d74f-1f2c-49a0-912d-fc7c4efbd577 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: bfb70446-4ce1-48d4-8d86-9c2786a5161a + - Folder: Platform + Entity: + Id: b41f4fb5-839b-41b8-ac3e-193204fe51f3 + Name: Cell_Loop (94) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 01857012-5910-47de-b2ae-780e89e5d3b4 + Position: {X: 0.0, Y: 0.0, Z: -15.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: c2eda887-f600-4b32-979b-d92493d91274 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: b6a44635-b659-491a-941a-72a7d994ae4a + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: f128ec4e-3bee-4904-aad7-2e65f1f0ee7a + Position*: {X: 6.49999762, Y: 0.0, Z: -8.999999} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: f3f50fd0-cbef-4438-85ad-b4509b7805e0 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: c77eac34-f7a7-4728-9e7c-75b4bcadac2a + - Folder: Platform + Entity: + Id: b73b31f0-7f4f-440f-b11d-c4fc5f6e6d1b + Name: Cell_Loop (82) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: ea9c09db-8436-42cf-842e-13d696e03883 + Position: {X: 0.0, Y: 0.0, Z: -2.99999976} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 1e05eb77-5eee-4e56-b2d2-b21fd2b48dee + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: b78b5b17-c4ba-45de-85d4-9d82d2fa6521 + Name: Cell_Loop (79) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 18e90557-e7a6-410a-aa82-a823ee71a2b7 + Position: {X: 3.99999952, Y: 0.0, Z: 9.536743E-07} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: b46faae5-ee9f-4858-b251-e465ac654e5c + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: b9eb0572-de14-411a-89be-69af70e9b9e9 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 4edd2518-5026-4482-af14-eebff6d12285 + Position*: {X: 6.49999762, Y: 0.0, Z: -10.999999} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 57d28f54-1442-476d-a3d6-255f84020074 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 7a7973dd-acef-46bc-883d-b4d8b1636a22 + - Folder: Borders + Entity: + Id: bb54bb2e-0e69-4216-9d49-113ebcb75a16 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: e385ec7c-efe4-4aa6-8b80-28d06959aa35 + Position*: {X: -0.5000005, Y: 0.0, Z: -2.999999} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 8141b91e-1fbd-441f-8ecc-653986208e8f + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: c0104529-ae7b-4030-95e6-0c3ca6734ee2 + - Folder: Borders + Entity: + Id: ca3cf173-06c6-41f4-b7d1-ff5f8f90973e + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: e5b6dd91-065e-4303-bd0d-0d6913d1ee6b + Position*: {X: -0.5000005, Y: 0.0, Z: -14.999999} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: f4a11981-cf2c-45c6-b046-72aad4bb7807 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 95a1b189-5994-4f94-88cd-2d73a1e6ffff + - Folder: Borders + Entity: + Id: e020fdf0-7660-4df0-aaf0-45ae53aed5a2 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 73c31806-eecc-4b41-ac42-c3efb29cf923 + Position*: {X: 6.49999762, Y: 0.0, Z: -6.999999} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 1d5d66c7-7834-4eab-aec7-d99acfaa7cf8 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: b76ed3b5-c115-4702-aa23-93af309b24a7 + - Folder: Platform + Entity: + Id: e16ddf00-b358-4c85-8abe-7377eea0341b + Name: Cell_Loop (80) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: ad94f513-ae9a-42bb-addc-60f9993963a3 + Position: {X: 3.99999952, Y: 0.0, Z: -2.99999881} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: e0e76654-ab56-4335-9b39-b31a6dd8a5c4 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: f299dda2-df5a-4c6f-8fa4-c65c72a967a6 + Name: Cell_Loop (84) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 2223f00d-fe92-4595-aa65-95717c433d1b + Position: {X: 1.99999952, Y: 0.0, Z: -5.999999} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 39365ade-eab4-4c8e-9b65-40a81d3b25a7 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: f9a682df-c3e9-4e0c-a9aa-fac3edd736ef + Name: Cell_Loop (93) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: e7c0bea8-c3f1-4637-b785-2f5a07147c6b + Position: {X: 1.99999952, Y: 0.0, Z: -14.999999} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 763a9744-979b-4d34-8729-61a9df871bc0 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} diff --git a/Starbreach/Assets/Shared/Levels/Prefabs/Bridge_straight_WE.xkprefab b/Starbreach/Assets/Shared/Levels/Prefabs/Bridge_straight_WE.xkprefab new file mode 100644 index 0000000..a149cd3 --- /dev/null +++ b/Starbreach/Assets/Shared/Levels/Prefabs/Bridge_straight_WE.xkprefab @@ -0,0 +1,583 @@ +!PrefabAsset +Id: cc3f00a4-ed3f-458f-a7b9-408d90ec6292 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 23645242-5e38-4343-97e6-cb05446a4514 + - ref!! 14802bb7-3ded-45cb-bb86-6ef4759c312d + - ref!! d44b693b-93d3-4b16-933c-181a379adacd + - ref!! a532d65f-9a2f-4895-b6fc-49d4c58ecd0d + - ref!! 26783464-dc55-48ba-8d7c-e70e3a38cab6 + - ref!! 71ec5e26-fce8-4f97-85a9-a212e9d10aba + - ref!! 0453e733-5b72-4351-b874-b2eb9263e23f + - ref!! 4ddcf7fa-9064-4da9-b700-8fcf8a58fba1 + - ref!! ad8585ac-c9cd-46ce-9044-0748033492f8 + - ref!! b0a74bd6-f5c2-44d2-9cb7-6efacb668e87 + - ref!! 1f6816cc-3586-4863-8ede-cde3bdde2fe0 + - ref!! fc3078c2-c5f3-408a-89a4-e6cde820ae48 + - ref!! dd85780f-1abe-40e4-b9e7-eec33ffcd2a4 + - ref!! 9bc9608a-e45c-4c77-ac14-e67ea3af2d48 + - ref!! b4b5baad-76ae-4700-aa0d-c2013a6701c1 + - ref!! 6260c260-19aa-49b0-9479-4508d8977fba + - ref!! 52ac5287-6253-4776-97e1-c013e30c0eb3 + - ref!! 393e277f-2255-424c-8471-082645ea38ca + - ref!! c2e0be03-c957-491c-a236-b3c187085f19 + - ref!! 86eb897c-aaaa-4202-ac0c-24b0c4d3c46f + - ref!! 774604cd-5726-4d68-b619-782d4674ca76 + - ref!! dc6517a7-ab1f-42a5-a624-0dc79d81e359 + - ref!! 178fcde5-0fee-443d-b325-5f4f5349d6a0 + - ref!! cb644db6-1610-4bee-982b-775a842c5bfe + - ref!! 7fb9bba6-4a12-4336-8554-e0be60e99403 + - ref!! 19c81438-84d7-4bba-be1d-eede5c67af87 + - ref!! 63b53eab-bedf-40a6-b2b1-9bef2ef08949 + - ref!! 210da9f6-221b-4109-bcb7-7902ec26cf3d + - ref!! 8fd28bca-241b-4d72-b878-7c0c7da0416c + - ref!! fe6d5e80-7c69-496c-a598-255914f0f250 + - ref!! 94db2b5a-be9b-49e8-b137-8baaf14fae4b + - ref!! d5715a5a-609f-4b56-af84-f9b303eb6b49 + Parts: + - Folder: Borders + Entity: + Id: 0453e733-5b72-4351-b874-b2eb9263e23f + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 1abab871-8db9-4e3a-82b4-fdc28a609425 + Position*: {X: 10.9999981, Y: 0.0, Z: 0.500000954} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 887f9128-0714-459a-ab8c-ee20e198655b + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 4dbaf00e-0575-49fb-ab3d-e483db342dd2 + - Folder: Borders + Entity: + Id: 14802bb7-3ded-45cb-bb86-6ef4759c312d + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 753986af-1499-4da5-86cd-a5b7cdc9ea1e + Position*: {X: 8.999998, Y: 0.0, Z: 0.500000954} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 5cfcd928-1af7-4a61-8a5c-513dfaf7bad3 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 5d96aeaa-1c34-44c3-b30f-ab5116ba91af + - Folder: Platform + Entity: + Id: 178fcde5-0fee-443d-b325-5f4f5349d6a0 + Name: Cell_Loop (84) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 7f0e597a-9819-492b-9490-48d65a3ce55a + Position: {X: 6.99999952, Y: 0.0, Z: 9.536743E-07} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 7a58eefc-35fd-4e2a-a3cd-30671b115b89 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 19c81438-84d7-4bba-be1d-eede5c67af87 + Name: Cell_Loop (93) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: fee1a21f-9cfa-4cca-95bf-1a40de134dd2 + Position: {X: 13.0, Y: 0.0, Z: -2.999998} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: bfaf5bae-9f81-4186-8275-46174a71613f + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 1f6816cc-3586-4863-8ede-cde3bdde2fe0 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 05a95b52-a4de-4d4f-ac16-283e66920f1b + Position*: {X: 2.999998, Y: 0.0, Z: -6.499999} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: bc957e0d-19f7-4a91-ba59-6607eaf78096 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: f5fcf290-611a-4708-9655-dedbd78a6c34 + - Folder: Platform + Entity: + Id: 210da9f6-221b-4109-bcb7-7902ec26cf3d + Name: Cell_Loop (80) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: b817fcf8-5897-46d0-80f6-abd72115d97e + Position: {X: 2.99999952, Y: 0.0, Z: -2.99999881} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 4658ca49-5189-499e-8e16-0abfb952a693 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 23645242-5e38-4343-97e6-cb05446a4514 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: e9c9542f-00f0-4fb3-9698-ca94c6380426 + Position*: {X: 16.9999981, Y: 0.0, Z: 0.500000954} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 1cea08cc-57ab-4e3e-ab26-8918efcb17cd + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 8ad31785-4b1d-4ef5-92c6-09a9f03c22cd + - Folder: Borders + Entity: + Id: 26783464-dc55-48ba-8d7c-e70e3a38cab6 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 16fa8640-5fdd-4b07-8de0-e095ef4f49aa + Position*: {X: 12.9999981, Y: 0.0, Z: 0.500000954} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: fed9938e-05b8-4662-8cdf-787fb8640481 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 993fd0ac-8ddb-4c52-97d0-b3387465aa84 + - Folder: Platform + Entity: + Id: 393e277f-2255-424c-8471-082645ea38ca + Name: Cell_Loop (88) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: ef479e67-9186-4250-80fe-801b5d173047 + Position: {X: 5.0, Y: 0.0, Z: -3.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: ce231fbd-d557-4b87-b710-16cf431a93f8 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 4ddcf7fa-9064-4da9-b700-8fcf8a58fba1 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 2f1a421f-a713-4bab-9d81-752670532969 + Position*: {X: 2.999999, Y: 0.0, Z: 0.5} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: aaec5de9-3961-4185-bc1e-82180d0d3b5c + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 91ae64e7-3e22-4f9b-be37-3f691cc0b2de + - Folder: Platform + Entity: + Id: 52ac5287-6253-4776-97e1-c013e30c0eb3 + Name: Cell_Loop (85) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 5aa55ffe-bd7e-4385-8df7-d5d968781f1a + Position: {X: 5.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 5c245829-7a58-428b-81d9-572a875f82fa + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 6260c260-19aa-49b0-9479-4508d8977fba + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 9eb7d161-80d1-4854-9ce3-3b86cce842a5 + Position*: {X: 14.9999962, Y: 0.0, Z: -6.500001} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: d361028a-487a-4aad-91a2-c7765acec246 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: da7b0081-0881-4066-aa43-2ecaf6b5936b + - Folder: Platform + Entity: + Id: 63b53eab-bedf-40a6-b2b1-9bef2ef08949 + Name: Cell_Loop (79) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 723d5a10-7bd9-4ef2-82e0-f3ee07c7e16a + Position: {X: 2.99999952, Y: 0.0, Z: 9.536743E-07} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: a0fc1388-b20f-4d12-be1f-a7503850b447 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 71ec5e26-fce8-4f97-85a9-a212e9d10aba + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 0eb51b00-de65-4175-b60f-4f6e67be2681 + Position*: {X: 4.999999, Y: 0.0, Z: 0.500000238} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: e3f2c371-22a7-4e2b-b623-efa1084a72f2 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 1b574f45-8da3-4143-b482-9ce939d13891 + - Folder: Platform + Entity: + Id: 774604cd-5726-4d68-b619-782d4674ca76 + Name: Cell_Loop (78) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 72dc7419-f561-48d9-a0b5-e02e1154b8af + Position: {X: 0.9999995, Y: 0.0, Z: 9.536743E-07} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 5f810ecc-41bb-4ce1-8cf8-010714423b4f + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 7fb9bba6-4a12-4336-8554-e0be60e99403 + Name: Cell_Loop (90) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: ec465c82-5953-487d-9db9-a84ac0968af1 + Position: {X: 13.0, Y: 0.0, Z: 1.90734863E-06} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: f15821da-be8d-4a11-a3a7-c8618cc69f4a + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 86eb897c-aaaa-4202-ac0c-24b0c4d3c46f + Name: Cell_Loop (94) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 088ced2f-6dda-456c-a583-dba22bcd6b82 + Position: {X: 11.000001, Y: 0.0, Z: -2.999999} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: ba4f2112-e02c-4494-a133-082758f17b96 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 8fd28bca-241b-4d72-b878-7c0c7da0416c + Name: Cell_Loop (83) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 41a3b457-c9ec-4d5b-a1bd-dab34c77ddb1 + Position: {X: 9.0, Y: 0.0, Z: 9.536743E-07} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: ce07804f-715b-48cb-b773-8903efd9541d + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 94db2b5a-be9b-49e8-b137-8baaf14fae4b + Name: Cell_Loop (89) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 189b2b24-a920-44eb-b475-22fecfa2168e + Position: {X: 15.0, Y: 0.0, Z: 1.90734863E-06} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: af7027a4-df69-41cf-b37e-67f60328526b + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 9bc9608a-e45c-4c77-ac14-e67ea3af2d48 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 02b4e6ab-f4d7-4571-8873-8506f1f4c9cd + Position*: {X: 12.9999971, Y: 0.0, Z: -6.5} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 431b6e85-eaf7-47e7-8590-663e6b5b2ced + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: f1f91b97-1ad4-4899-9853-fcb66365b025 + - Folder: Borders + Entity: + Id: a532d65f-9a2f-4895-b6fc-49d4c58ecd0d + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 8d0ade47-fb90-4d68-b034-31609963f9af + Position*: {X: 6.99999857, Y: 0.0, Z: 0.5000005} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: c0010c49-5c41-4b1a-9500-9631ece67bda + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 8a106372-a921-43c5-bffb-121222833289 + - Folder: Borders + Entity: + Id: ad8585ac-c9cd-46ce-9044-0748033492f8 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: df269662-bcee-443c-afbc-6f5a25c7957d + Position*: {X: 0.999998569, Y: 0.0, Z: -6.49999857} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 30a8ae48-96e4-4473-b977-6a6a9113b93f + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: dcd6b5e1-4395-4698-b901-51312d40fd76 + - Folder: Borders + Entity: + Id: b0a74bd6-f5c2-44d2-9cb7-6efacb668e87 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: d799d1b3-783e-4296-84f5-11f6078a6ffd + Position*: {X: 8.999997, Y: 0.0, Z: -6.5} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 8dd572d6-558f-4a27-ae1f-0c1ca0b95d87 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 5fffd66b-77d3-420c-84ae-09b632da23f0 + - Folder: Borders + Entity: + Id: b4b5baad-76ae-4700-aa0d-c2013a6701c1 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 1e52bcad-54ee-4d48-9895-4b09311c49a8 + Position*: {X: 6.99999762, Y: 0.0, Z: -6.499999} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: ff3431b9-4e36-4ab8-a35c-513a31f9199f + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: f5cba257-e466-4734-b1f3-6b4204168f93 + - Folder: Platform + Entity: + Id: c2e0be03-c957-491c-a236-b3c187085f19 + Name: Cell_Loop (91) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: b7930cac-694c-4dce-a841-da5c1b145559 + Position: {X: 11.000001, Y: 0.0, Z: 9.536743E-07} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: f8889c6c-bcf1-4a98-b721-fc7d3c5fe65e + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: cb644db6-1610-4bee-982b-775a842c5bfe + Name: Cell_Loop (87) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 4950d881-6be6-4012-955f-0f72598ca2ed + Position: {X: 6.99999952, Y: 0.0, Z: -2.999999} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 523d3798-838a-4ee8-93b9-a0480083d6d2 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: d44b693b-93d3-4b16-933c-181a379adacd + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 5f2734cd-03ee-42db-922c-13c789d57602 + Position*: {X: 14.9999981, Y: 0.0, Z: 0.500000954} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 1214a8e3-2410-4642-b284-aca385c5026d + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: faa27efe-6df0-4361-a9fb-594972cef941 + - Folder: Platform + Entity: + Id: d5715a5a-609f-4b56-af84-f9b303eb6b49 + Name: Cell_Loop (92) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: f63d167e-e13c-40ff-9970-35b8b30bec67 + Position: {X: 15.0, Y: 0.0, Z: -2.999998} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: d881962e-40d4-4bfb-b5e7-b9ddb5e6dadf + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: dc6517a7-ab1f-42a5-a624-0dc79d81e359 + Name: Cell_Loop (81) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 20c7667a-36c3-4809-b00e-0d3919fc556e + Position: {X: 0.9999995, Y: 0.0, Z: -2.99999881} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 39012cf5-48f4-41fb-9a46-ff92dfaca4b2 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: dd85780f-1abe-40e4-b9e7-eec33ffcd2a4 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: cb411852-ecd1-4c32-afd2-8b0fce35f2d5 + Position*: {X: 4.99999762, Y: 0.0, Z: -6.499999} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: d4923dc8-c3d3-4bf6-8114-bc14a9621dae + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 970a7894-6221-499d-bc97-5ff87381f9ff + - Folder: Borders + Entity: + Id: fc3078c2-c5f3-408a-89a4-e6cde820ae48 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: b44bc4af-b580-4198-9cef-7ddb60e43d1c + Position*: {X: 10.9999971, Y: 0.0, Z: -6.5} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 56416afb-ff92-4ab8-a9f2-cb150e86485d + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 2a9cc83e-6d51-487e-b52f-ca01a1f6f901 + - Folder: Platform + Entity: + Id: fe6d5e80-7c69-496c-a598-255914f0f250 + Name: Cell_Loop (86) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 7dd17599-a500-4071-b057-c2b89b87ce79 + Position: {X: 9.0, Y: 0.0, Z: -2.999999} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: ba706456-dfe0-474f-b21e-cc295297a2f1 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} diff --git a/Starbreach/Assets/Shared/Levels/Prefabs/FloatingRocksVideo.xkprefab b/Starbreach/Assets/Shared/Levels/Prefabs/FloatingRocksVideo.xkprefab new file mode 100644 index 0000000..52a10df --- /dev/null +++ b/Starbreach/Assets/Shared/Levels/Prefabs/FloatingRocksVideo.xkprefab @@ -0,0 +1,1329 @@ +!PrefabAsset +Id: bbdbd698-8c47-4c49-b79e-c7721b626b34 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! fa77249e-546c-4c5a-963c-3eb3df9c66f0 + - ref!! b53990e9-7cd7-40e4-884d-0c3910cdb3d2 + - ref!! def87cdf-e3e2-4fd3-a0e5-a08c7f43f65d + - ref!! 86b49dca-1602-4518-8f2b-99f2c0d7781a + - ref!! 6a3c09a1-ca78-451b-aced-736d61e8c23e + - ref!! cf4d5061-10c4-4bd8-8dcf-a531cedf70ae + - ref!! 0bf7f70c-9ca8-49a8-a8a0-e4419fd6cad6 + - ref!! ae58bcee-186b-4d62-bde9-42e41c54538f + - ref!! 299ac365-002a-43b6-82da-f0c24f887f53 + - ref!! 1afd9697-e6bb-4621-9632-31e5e0a0049b + - ref!! 3bd00af8-b980-45a4-be7a-29ab3fe34ad0 + - ref!! 0c7de2c9-0051-4fe5-9c46-2479b5989418 + - ref!! 215340cd-12d0-4fe5-8dc2-ba50f185e1c1 + - ref!! 60cb23b7-5f70-4adb-820c-ff92cdd6b693 + - ref!! 090dbb08-a2ef-44af-a3ef-923f2aacb055 + - ref!! f90cc49d-6df9-41b1-b6b2-91f7531191c6 + - ref!! d9b58605-ff06-455d-8e67-d22b81c33c72 + - ref!! bf6de033-444b-4bd5-bd8f-c3185f3c9733 + - ref!! 87e24d5c-0b55-4cab-8600-c47ae9d96a88 + - ref!! dabeae09-2425-4673-a352-1c49b5ed279f + - ref!! acfc3ecc-4a35-4e8a-a3d0-de99c812599c + - ref!! 5d80a4f6-8b07-4edc-9610-37233ead6ba2 + - ref!! f4cfce88-7467-439e-b338-c8e77c426d4b + - ref!! b093dae9-c2bd-4afb-aafd-ea42a546cf94 + - ref!! 4e76192f-e800-41b4-8880-3db21a52bb4e + - ref!! 7071cfca-a27a-4407-b191-2be2842aa8ec + - ref!! 17e8fdd5-3746-4d02-9d96-c5099eb60671 + - ref!! 15312ec6-4c78-4637-b900-45ab32cd1858 + - ref!! 46ac8a3f-e946-4281-a708-641e22396bc5 + - ref!! 0100abfd-bed7-40e7-81b9-ad88fc31ae5f + - ref!! f63a4c88-b3cb-459a-8d04-76d2e246c8f8 + - ref!! 8b7cefb2-98f0-41df-9c8e-452d0fac711f + - ref!! 194efa68-8776-4370-b223-6e7f8681cba6 + - ref!! d3efeb11-e580-4ca8-bb88-f39517020a6b + - ref!! ff38e382-95bc-4373-bde5-256ff0532b72 + - ref!! 41e04cf3-3ab4-457f-9ebf-98f7e807774d + - ref!! a0d78a85-e687-4dc6-977c-36e8247dbb8b + - ref!! a0b15e32-390c-403b-9a79-af068ef67667 + - ref!! 4ca8d53a-d1f6-4ef2-bd81-3da18791cd2c + - ref!! 66cda794-a1ab-424f-8126-cb21829b8333 + - ref!! 5ee4758f-462e-465e-9cbb-9325dfeb9dcd + - ref!! 61ee4915-3476-445e-9881-d5bd266e5c4e + - ref!! fedb4f1e-0894-48b5-8f8c-cc886a428695 + - ref!! 0f92d7aa-f5a8-41e6-87e1-b752119f6137 + - ref!! 767f0fbb-6a04-4982-825f-57331584d723 + - ref!! 0dc3e7f1-5734-4538-bd1c-ba308ad3f71f + - ref!! ba3f410b-7d6e-4f02-b154-0b4d9ab5cd74 + - ref!! 50e1697c-18a8-4f90-bb2b-4b6a9a0f27ee + - ref!! 044b3240-4f86-49ba-9222-3a64e9b615e6 + - ref!! 9bde73dd-b83f-4ab5-b19e-4a46a1bb94a4 + - ref!! 56fed0c6-be39-423b-8f1d-afc65dbea65e + - ref!! 0037312e-e519-4f9d-ba94-2084d01c2405 + - ref!! be2bdad3-447b-4afa-8ffb-52c0a7f92f7d + - ref!! 826b3d97-4caa-4c62-9f7a-463c9e8d7c17 + - ref!! 4782f360-2f8d-496a-8a95-85cd9c697f4b + - ref!! ed961637-43cd-44dc-992e-5e37dc800a8d + - ref!! 3726d081-3e45-4ee5-b415-6d9542957c28 + - ref!! e96b8613-d4f3-4090-b926-d86852e0dd2e + - ref!! 6d4ef719-206f-4b80-940b-9944f13c0818 + - ref!! 9dedb689-72b9-44ab-b22b-5c652b9e946b + - ref!! d4c3412b-d163-42b4-88cc-f7e13eac45da + - ref!! 195bfd5a-91c1-40cf-9c0d-d56575eee42e + - ref!! 1651caf5-9030-4b6d-86c3-1865d831b41d + - ref!! 11ad57f1-dcf6-47b0-96b3-62899a291667 + - ref!! 661c40bb-900a-42be-8c92-f9c7711f23ee + - ref!! 335ac97c-1d48-4c5f-afd8-d6e589b4b94b + Parts: + - Folder: Background + Entity: + Id: 0037312e-e519-4f9d-ba94-2084d01c2405 + Name: FloatingRock2_3 + Components: + 2dd20f6a087b1c11acdfacf28a0ea16d: !TransformComponent + Id: 11bd625c-ceed-43f0-8a22-b0d64aca3bca + Position*: {X: 33.8752975, Y: -1.5, Z: -143.1644} + Rotation*: {X: 0.0, Y: -0.9865515, Z: 0.0, W: 0.163450539} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + da2ee4d13edd8daff07d8952ff3a4dcc: !ModelComponent + Id: 8e01c0bc-a093-4cb2-a43a-529de29e7c77 + Model: e1555e64-a386-4bc0-93b5-f9d0a4ec9051:Environment/Background/Models/FloatingRock2_3 + Materials: {} + Base: + BasePartAsset: 84e0f4f9-ff6e-40e3-9790-b150bb5dcaee:Environment/Background/Prefabs/FloatingRocks2_3 + BasePartId: 80111dc1-fd93-4f0e-831e-e6232fa142d5 + InstanceId: a8ee5340-387b-484f-9c02-0134ae88b322 + - Folder: Background + Entity: + Id: 0100abfd-bed7-40e7-81b9-ad88fc31ae5f + Name: FloatingRock1_2 + Components: + f7d435da00a4f0db8567f052b2dd775b: !TransformComponent + Id: 38a9473b-977f-4957-8917-987d786d8c0b + Position*: {X: -41.6247253, Y: 19.9999981, Z: -77.16441} + Rotation*: {X: 0.0, Y: -0.7580468, Z: 0.0, W: -0.6522002} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + dfee743743e4c3abf742a67210a57784: !ModelComponent + Id: 23bd3ced-b99e-464d-92ee-edfb93f90852 + Model: 6a331abf-6ede-4170-9bb4-ae1d6e7896ea:Environment/Background/Models/FloatingRock1_2 + Materials: {} + Base: + BasePartAsset: cb48cca7-c22e-4485-a6e6-07aa698fbf3e:Environment/Background/Prefabs/FloatingRocks1_2 + BasePartId: 9b604468-8d1b-431d-adf9-79f53eaab11f + InstanceId: 0905b72f-5a17-4854-9163-b11faa528928 + - Folder: Background + Entity: + Id: 044b3240-4f86-49ba-9222-3a64e9b615e6 + Name: FloatingRock1_1 + Components: + 4eb1e899f0420cb437485b0c397af954: !TransformComponent + Id: 6e10900a-bcbb-46eb-b404-8108125abd8c + Position*: {X: -36.3491821, Y: 10.5, Z: -6.76170349} + Rotation*: {X: 0.0, Y: -0.9432111, Z: 0.0, W: 0.33219406} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8178b4303bd1ecfde7f3858f4b9e328d: !ModelComponent + Id: 99182495-59c6-45e2-8121-1894c9078fc0 + Model: b5ed7a0b-a015-43af-bd56-7d0964e9eb9a:Environment/Background/Models/FloatingRock1_1 + Materials: {} + Base: + BasePartAsset: 29d13e5f-59dc-48d3-90fd-5b98939827d3:Environment/Background/Prefabs/FloatingRocks1_1 + BasePartId: 4316bcaa-2539-4f3a-87a7-a35e248c93c5 + InstanceId: 77e0ee77-6ffe-465e-94a4-d413e9d3e111 + - Folder: Background + Entity: + Id: 090dbb08-a2ef-44af-a3ef-923f2aacb055 + Name: FloatingRock1_1 + Components: + 4eb1e899f0420cb437485b0c397af954: !TransformComponent + Id: ee7fb6dd-410e-40c0-9853-bd5238e886e1 + Position*: {X: 33.3280029, Y: 5.0, Z: -111.64415} + Rotation*: {X: 0.0, Y: -0.9344705, Z: 0.0, W: -0.356040537} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8178b4303bd1ecfde7f3858f4b9e328d: !ModelComponent + Id: 2441efc0-06d6-4d09-b342-ac2c605ca6bb + Model: b5ed7a0b-a015-43af-bd56-7d0964e9eb9a:Environment/Background/Models/FloatingRock1_1 + Materials: {} + Base: + BasePartAsset: 29d13e5f-59dc-48d3-90fd-5b98939827d3:Environment/Background/Prefabs/FloatingRocks1_1 + BasePartId: 4316bcaa-2539-4f3a-87a7-a35e248c93c5 + InstanceId: 3566be22-4e5c-401e-81fe-019f28ee0fa4 + - Folder: Background + Entity: + Id: 0bf7f70c-9ca8-49a8-a8a0-e4419fd6cad6 + Name: FloatingRock1_3 + Components: + 9f77ddc721fcf761064fcaea91cd58c2: !TransformComponent + Id: a67666ce-ea5a-43a5-9530-5cf779f49738 + Position*: {X: 28.4405518, Y: 13.0000019, Z: -117.196274} + Rotation*: {X: 0.0, Y: -0.9756751, Z: 0.0, W: -0.219221592} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 003b6267d30ac19d0238e9954e151363: !ModelComponent + Id: 2debad09-a49e-4a76-8de3-6d0e17375f6d + Model: 9cefcfc9-d76f-4a63-9224-7cad03209790:Environment/Background/Models/FloatingRock1_3 + Materials: {} + Base: + BasePartAsset: 9316ed7f-c095-4823-b523-c529a4056673:Environment/Background/Prefabs/FloatingRocks1_3 + BasePartId: 7e626d1c-b6a5-4e91-8a1c-5e2d92a77ee9 + InstanceId: c9fc6859-1ce2-4221-bcf9-5c10fa6d00c5 + - Folder: Background + Entity: + Id: 0c7de2c9-0051-4fe5-9c46-2479b5989418 + Name: FloatingRock1_2 + Components: + f7d435da00a4f0db8567f052b2dd775b: !TransformComponent + Id: f093da1c-0c7a-45ad-a242-bed583844b39 + Position*: {X: 19.42205, Y: 8.500001, Z: -158.998322} + Rotation*: {X: 0.0, Y: -0.9978026, Z: 0.0, W: -0.06625663} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + dfee743743e4c3abf742a67210a57784: !ModelComponent + Id: 97ec64a3-83f6-42ea-958e-927bead024cd + Model: 6a331abf-6ede-4170-9bb4-ae1d6e7896ea:Environment/Background/Models/FloatingRock1_2 + Materials: {} + Base: + BasePartAsset: cb48cca7-c22e-4485-a6e6-07aa698fbf3e:Environment/Background/Prefabs/FloatingRocks1_2 + BasePartId: 9b604468-8d1b-431d-adf9-79f53eaab11f + InstanceId: 42bc16d4-6029-4a9e-827b-55ebea0a3bb6 + - Folder: Background + Entity: + Id: 0dc3e7f1-5734-4538-bd1c-ba308ad3f71f + Name: FloatingRock1_2 + Components: + f7d435da00a4f0db8567f052b2dd775b: !TransformComponent + Id: 4ca99272-29e3-4656-b61f-3a7853d706d2 + Position*: {X: -57.9833679, Y: 14.4999981, Z: -146.96196} + Rotation*: {X: 0.0, Y: -0.6040171, Z: 0.0, W: -0.7969713} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + dfee743743e4c3abf742a67210a57784: !ModelComponent + Id: 45f55391-e37a-4b64-a9c4-20c8e1425514 + Model: 6a331abf-6ede-4170-9bb4-ae1d6e7896ea:Environment/Background/Models/FloatingRock1_2 + Materials: {} + Base: + BasePartAsset: cb48cca7-c22e-4485-a6e6-07aa698fbf3e:Environment/Background/Prefabs/FloatingRocks1_2 + BasePartId: 9b604468-8d1b-431d-adf9-79f53eaab11f + InstanceId: 529cdc6b-f01e-4456-9a05-0147ebe5fc32 + - Folder: Background + Entity: + Id: 0f92d7aa-f5a8-41e6-87e1-b752119f6137 + Name: FloatingRock1_3 + Components: + 9f77ddc721fcf761064fcaea91cd58c2: !TransformComponent + Id: f1df478f-f5e7-42a2-aa13-b4062dc0231e + Position*: {X: 52.0148163, Y: -40.9999962, Z: -116.960587} + Rotation*: {X: 0.0, Y: 0.133481324, Z: 0.0, W: -0.991051257} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 003b6267d30ac19d0238e9954e151363: !ModelComponent + Id: a1fd71ef-d90f-441c-a84e-7eda0cc1917c + Model: 9cefcfc9-d76f-4a63-9224-7cad03209790:Environment/Background/Models/FloatingRock1_3 + Materials: {} + Base: + BasePartAsset: 9316ed7f-c095-4823-b523-c529a4056673:Environment/Background/Prefabs/FloatingRocks1_3 + BasePartId: 7e626d1c-b6a5-4e91-8a1c-5e2d92a77ee9 + InstanceId: 95ed3295-c02d-4b27-b1bf-2e2ae2729588 + - Folder: Background + Entity: + Id: 11ad57f1-dcf6-47b0-96b3-62899a291667 + Name: FloatingRock1_2 + Components: + f7d435da00a4f0db8567f052b2dd775b: !TransformComponent + Id: e4b69cd2-3107-4909-bd12-543e132ad4ef + Position*: {X: -45.1852722, Y: -8.999999, Z: -112.00499} + Rotation*: {X: 0.0, Y: -0.9812006, Z: 0.0, W: 0.192990735} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + dfee743743e4c3abf742a67210a57784: !ModelComponent + Id: 901c7408-514b-451a-a62b-6a7a7cc02ed3 + Model: 6a331abf-6ede-4170-9bb4-ae1d6e7896ea:Environment/Background/Models/FloatingRock1_2 + Materials: {} + Base: + BasePartAsset: cb48cca7-c22e-4485-a6e6-07aa698fbf3e:Environment/Background/Prefabs/FloatingRocks1_2 + BasePartId: 9b604468-8d1b-431d-adf9-79f53eaab11f + InstanceId: e1f95418-ad7e-4c5f-a849-29e1c5cbf7c6 + - Folder: Background + Entity: + Id: 15312ec6-4c78-4637-b900-45ab32cd1858 + Name: FloatingRock1_3 + Components: + 9f77ddc721fcf761064fcaea91cd58c2: !TransformComponent + Id: 6df3da13-dd2c-4e2a-b4e8-42346372fab6 + Position*: {X: -56.5261536, Y: 3.5, Z: -127.069977} + Rotation*: {X: 0.0, Y: -0.2099698, Z: 0.0, W: -0.977707863} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 003b6267d30ac19d0238e9954e151363: !ModelComponent + Id: b89f6611-3954-4847-a85f-02a74ab4ca60 + Model: 9cefcfc9-d76f-4a63-9224-7cad03209790:Environment/Background/Models/FloatingRock1_3 + Materials: {} + Base: + BasePartAsset: 9316ed7f-c095-4823-b523-c529a4056673:Environment/Background/Prefabs/FloatingRocks1_3 + BasePartId: 7e626d1c-b6a5-4e91-8a1c-5e2d92a77ee9 + InstanceId: 83708af1-dfb0-44df-b20f-be2c976a1fc5 + - Folder: Background + Entity: + Id: 1651caf5-9030-4b6d-86c3-1865d831b41d + Name: FloatingRock1_2 + Components: + f7d435da00a4f0db8567f052b2dd775b: !TransformComponent + Id: 0651d5e6-a64f-4d8c-9410-8221dcfa0220 + Position*: {X: -21.6247253, Y: -8.999999, Z: -113.6644} + Rotation*: {X: 0.0, Y: -0.730135441, Z: 0.0, W: 0.683302462} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + dfee743743e4c3abf742a67210a57784: !ModelComponent + Id: 09fede69-611d-4041-97d5-1d783720c558 + Model: 6a331abf-6ede-4170-9bb4-ae1d6e7896ea:Environment/Background/Models/FloatingRock1_2 + Materials: {} + Base: + BasePartAsset: cb48cca7-c22e-4485-a6e6-07aa698fbf3e:Environment/Background/Prefabs/FloatingRocks1_2 + BasePartId: 9b604468-8d1b-431d-adf9-79f53eaab11f + InstanceId: 831220f5-ce80-4bb0-b21c-e0fd99683aed + - Folder: Background + Entity: + Id: 17e8fdd5-3746-4d02-9d96-c5099eb60671 + Name: FloatingRock1_3 + Components: + 9f77ddc721fcf761064fcaea91cd58c2: !TransformComponent + Id: b442479d-de94-4815-9e5a-9a8f52bbd1b8 + Position*: {X: 17.3545456, Y: -33.4999962, Z: -16.0693588} + Rotation*: {X: 0.0, Y: 0.0157865584, Z: 0.0, W: -0.9998754} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 003b6267d30ac19d0238e9954e151363: !ModelComponent + Id: 95e9af44-a3f9-48aa-a443-a8098990b330 + Model: 9cefcfc9-d76f-4a63-9224-7cad03209790:Environment/Background/Models/FloatingRock1_3 + Materials: {} + Base: + BasePartAsset: 9316ed7f-c095-4823-b523-c529a4056673:Environment/Background/Prefabs/FloatingRocks1_3 + BasePartId: 7e626d1c-b6a5-4e91-8a1c-5e2d92a77ee9 + InstanceId: 2ded9a0b-15b0-4d91-8d1b-91d628744a13 + - Folder: Background + Entity: + Id: 194efa68-8776-4370-b223-6e7f8681cba6 + Name: FloatingRock1_1 + Components: + 4eb1e899f0420cb437485b0c397af954: !TransformComponent + Id: f90ba3d1-e6b9-4f34-b76d-321eaccdbdd1 + Position*: {X: -89.8974152, Y: 0.0, Z: -103.724945} + Rotation*: {X: 0.0, Y: -0.6860165, Z: 0.0, W: -0.727586} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8178b4303bd1ecfde7f3858f4b9e328d: !ModelComponent + Id: 6fee2d16-8c8b-4b93-9f3b-89db15145576 + Model: b5ed7a0b-a015-43af-bd56-7d0964e9eb9a:Environment/Background/Models/FloatingRock1_1 + Materials: {} + Base: + BasePartAsset: 29d13e5f-59dc-48d3-90fd-5b98939827d3:Environment/Background/Prefabs/FloatingRocks1_1 + BasePartId: 4316bcaa-2539-4f3a-87a7-a35e248c93c5 + InstanceId: 8feb82d7-6bbf-40d7-a895-9c2ccf68eb8e + - Folder: Background + Entity: + Id: 195bfd5a-91c1-40cf-9c0d-d56575eee42e + Name: FloatingRock1_3 + Components: + 9f77ddc721fcf761064fcaea91cd58c2: !TransformComponent + Id: 4ee1c6a9-18f4-4c02-bc64-a0788d3e89f4 + Position*: {X: -75.1697845, Y: 7.0, Z: -128.11644} + Rotation*: {X: 0.0, Y: -0.9984739, Z: 0.0, W: 0.0552258939} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 003b6267d30ac19d0238e9954e151363: !ModelComponent + Id: 02887df6-bd12-45b0-b97e-57ba8f3e9c5d + Model: 9cefcfc9-d76f-4a63-9224-7cad03209790:Environment/Background/Models/FloatingRock1_3 + Materials: {} + Base: + BasePartAsset: 9316ed7f-c095-4823-b523-c529a4056673:Environment/Background/Prefabs/FloatingRocks1_3 + BasePartId: 7e626d1c-b6a5-4e91-8a1c-5e2d92a77ee9 + InstanceId: dcc2e211-c5fd-4555-b612-3e348e277534 + - Folder: Background + Entity: + Id: 1afd9697-e6bb-4621-9632-31e5e0a0049b + Name: FloatingRock1_2 + Components: + f7d435da00a4f0db8567f052b2dd775b: !TransformComponent + Id: ef08be36-4e91-4b6c-8b6a-2e3289a9e881 + Position*: {X: 27.8752823, Y: 8.500001, Z: -97.1644} + Rotation*: {X: 0.0, Y: -0.88150233, Z: 0.0, W: 0.472179651} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + dfee743743e4c3abf742a67210a57784: !ModelComponent + Id: 83cb6e6f-a170-42ce-b97f-d0b0f30688c6 + Model: 6a331abf-6ede-4170-9bb4-ae1d6e7896ea:Environment/Background/Models/FloatingRock1_2 + Materials: {} + Base: + BasePartAsset: cb48cca7-c22e-4485-a6e6-07aa698fbf3e:Environment/Background/Prefabs/FloatingRocks1_2 + BasePartId: 9b604468-8d1b-431d-adf9-79f53eaab11f + InstanceId: f688833d-0b26-44c7-aead-0ef57361aeeb + - Folder: Background + Entity: + Id: 215340cd-12d0-4fe5-8dc2-ba50f185e1c1 + Name: FloatingRock1_1 + Components: + 4eb1e899f0420cb437485b0c397af954: !TransformComponent + Id: 1355419e-9d38-4d1e-84af-646a9c581260 + Position*: {X: -36.1247253, Y: 5.0, Z: -107.664413} + Rotation*: {X: 0.0, Y: -0.9812333, Z: 0.0, W: 0.192824259} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8178b4303bd1ecfde7f3858f4b9e328d: !ModelComponent + Id: 97797234-0e81-4056-8cb4-31e84202f4bf + Model: b5ed7a0b-a015-43af-bd56-7d0964e9eb9a:Environment/Background/Models/FloatingRock1_1 + Materials: {} + Base: + BasePartAsset: 29d13e5f-59dc-48d3-90fd-5b98939827d3:Environment/Background/Prefabs/FloatingRocks1_1 + BasePartId: 4316bcaa-2539-4f3a-87a7-a35e248c93c5 + InstanceId: f2f556cd-bc02-416a-9d5f-ba2aa780e0b0 + - Folder: Background + Entity: + Id: 299ac365-002a-43b6-82da-f0c24f887f53 + Name: FloatingRock1_3 + Components: + 9f77ddc721fcf761064fcaea91cd58c2: !TransformComponent + Id: eccc165f-dea7-483c-b1f6-1d486de82be3 + Position*: {X: 58.7216339, Y: -23.9999943, Z: -4.686928} + Rotation*: {X: 0.0, Y: -0.00631445646, Z: 0.0, W: -0.999980032} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 003b6267d30ac19d0238e9954e151363: !ModelComponent + Id: 7dfac415-30e5-4336-85c0-ff121e2322d9 + Model: 9cefcfc9-d76f-4a63-9224-7cad03209790:Environment/Background/Models/FloatingRock1_3 + Materials: {} + Base: + BasePartAsset: 9316ed7f-c095-4823-b523-c529a4056673:Environment/Background/Prefabs/FloatingRocks1_3 + BasePartId: 7e626d1c-b6a5-4e91-8a1c-5e2d92a77ee9 + InstanceId: 56990ef5-b81f-4461-830c-32c20ba279e5 + - Folder: Background + Entity: + Id: 335ac97c-1d48-4c5f-afd8-d6e589b4b94b + Name: FloatingRock1_1 + Components: + 4eb1e899f0420cb437485b0c397af954: !TransformComponent + Id: 2919c511-e8c5-4463-bc3a-3eaa415d731f + Position*: {X: 0.2157898, Y: 4.5, Z: -164.379974} + Rotation*: {X: 0.0, Y: 0.6400965, Z: 0.0, W: -0.7682945} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8178b4303bd1ecfde7f3858f4b9e328d: !ModelComponent + Id: 6310ef66-aae8-4540-8104-2e6a2ea3e94c + Model: b5ed7a0b-a015-43af-bd56-7d0964e9eb9a:Environment/Background/Models/FloatingRock1_1 + Materials: {} + Base: + BasePartAsset: 29d13e5f-59dc-48d3-90fd-5b98939827d3:Environment/Background/Prefabs/FloatingRocks1_1 + BasePartId: 4316bcaa-2539-4f3a-87a7-a35e248c93c5 + InstanceId: 68d1c778-7e25-4855-83c9-c6643d2bae1b + - Folder: Background + Entity: + Id: 3726d081-3e45-4ee5-b415-6d9542957c28 + Name: FloatingRock2_2 + Components: + 5e4b0e71b6336787d1cda626d11089be: !TransformComponent + Id: e3ef3a6e-07be-46ac-9f70-d535c4c686dc + Position*: {X: 65.99843, Y: -1.5, Z: -58.14554} + Rotation*: {X: 0.0, Y: -0.342596918, Z: 0.0, W: -0.93948245} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + be4998ad68c8459667a7284a8d99157b: !ModelComponent + Id: c920169b-f442-48ec-8d02-5c58ed670fe0 + Model: 4a2f9278-e0c6-44fb-9c01-be4b1d8df07d:Environment/Background/Models/FloatingRock2_2 + Materials: {} + Base: + BasePartAsset: 015d5639-6ba5-4172-a09e-83d0c9decb1f:Environment/Background/Prefabs/FloatingRocks2_2 + BasePartId: acd14fa1-66b9-41ba-a956-d373b2a8694b + InstanceId: dff8a923-a50d-4372-90fb-aa2b2759b02b + - Folder: Background + Entity: + Id: 3bd00af8-b980-45a4-be7a-29ab3fe34ad0 + Name: FloatingRock1_2 + Components: + f7d435da00a4f0db8567f052b2dd775b: !TransformComponent + Id: 5ea06612-a90c-4fc5-816b-ed057ffa8e9a + Position*: {X: 47.2736359, Y: -28.4999962, Z: -15.9443512} + Rotation*: {X: 0.0, Y: -0.9571977, Z: 0.0, W: -0.28943485} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + dfee743743e4c3abf742a67210a57784: !ModelComponent + Id: 1bbcc851-69e0-4b1f-b26b-2c757ceb5a0c + Model: 6a331abf-6ede-4170-9bb4-ae1d6e7896ea:Environment/Background/Models/FloatingRock1_2 + Materials: {} + Base: + BasePartAsset: cb48cca7-c22e-4485-a6e6-07aa698fbf3e:Environment/Background/Prefabs/FloatingRocks1_2 + BasePartId: 9b604468-8d1b-431d-adf9-79f53eaab11f + InstanceId: 3cf966fc-96ca-4b94-b222-76aabab3a7df + - Folder: Background + Entity: + Id: 41e04cf3-3ab4-457f-9ebf-98f7e807774d + Name: FloatingRock2_3 + Components: + 2dd20f6a087b1c11acdfacf28a0ea16d: !TransformComponent + Id: 159f30e1-c86e-4ddf-97cf-f7d7971a6ffc + Position*: {X: 43.4978333, Y: 4.5, Z: -152.468933} + Rotation*: {X: 0.0, Y: -0.999984741, Z: 0.0, W: -0.00552551355} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + da2ee4d13edd8daff07d8952ff3a4dcc: !ModelComponent + Id: 785b59b7-9e2e-4d23-a125-ede24e148b70 + Model: e1555e64-a386-4bc0-93b5-f9d0a4ec9051:Environment/Background/Models/FloatingRock2_3 + Materials: {} + Base: + BasePartAsset: 84e0f4f9-ff6e-40e3-9790-b150bb5dcaee:Environment/Background/Prefabs/FloatingRocks2_3 + BasePartId: 80111dc1-fd93-4f0e-831e-e6232fa142d5 + InstanceId: 9eb26325-0d6f-4928-8445-3a3d13044844 + - Folder: Background + Entity: + Id: 46ac8a3f-e946-4281-a708-641e22396bc5 + Name: FloatingRock1_2 + Components: + f7d435da00a4f0db8567f052b2dd775b: !TransformComponent + Id: cf5c11cf-667a-4bdd-81a3-b81b5d14d5ed + Position*: {X: 38.0, Y: 19.9999981, Z: -19.4999981} + Rotation*: {X: 0.0, Y: -0.652200162, Z: 0.0, W: 0.7580468} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + dfee743743e4c3abf742a67210a57784: !ModelComponent + Id: 537d635f-3983-4940-aa01-10cf90aea4a9 + Model: 6a331abf-6ede-4170-9bb4-ae1d6e7896ea:Environment/Background/Models/FloatingRock1_2 + Materials: + 731accdf357b60435b1c1d6309587617*~0: 43c89a20-2b17-43a1-84c0-ef4dac24663e:Environment/Background/Materials/FloatingRocks/FloatingRocks1_MT + Base: + BasePartAsset: cb48cca7-c22e-4485-a6e6-07aa698fbf3e:Environment/Background/Prefabs/FloatingRocks1_2 + BasePartId: 9b604468-8d1b-431d-adf9-79f53eaab11f + InstanceId: 90bbbb94-0eaa-4e65-be74-249940447277 + - Folder: Background + Entity: + Id: 4782f360-2f8d-496a-8a95-85cd9c697f4b + Name: FloatingRock2_2 + Components: + 5e4b0e71b6336787d1cda626d11089be: !TransformComponent + Id: 385ebdee-7768-46a5-979c-1f709ec41112 + Position*: {X: -69.62315, Y: -1.5, Z: -38.5189133} + Rotation*: {X: 0.0, Y: -0.93948245, Z: 0.0, W: 0.342596948} + Scale*: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + be4998ad68c8459667a7284a8d99157b: !ModelComponent + Id: 2fc2c65d-960e-4846-bdfb-5323065484f3 + Model: 4a2f9278-e0c6-44fb-9c01-be4b1d8df07d:Environment/Background/Models/FloatingRock2_2 + Materials: {} + Base: + BasePartAsset: 015d5639-6ba5-4172-a09e-83d0c9decb1f:Environment/Background/Prefabs/FloatingRocks2_2 + BasePartId: acd14fa1-66b9-41ba-a956-d373b2a8694b + InstanceId: a3f479d9-6d49-43e8-94da-2dac13dab650 + - Folder: Background + Entity: + Id: 4ca8d53a-d1f6-4ef2-bd81-3da18791cd2c + Name: FloatingRock2_2 + Components: + 5e4b0e71b6336787d1cda626d11089be: !TransformComponent + Id: 033124b0-3d23-4f58-a928-8c39eebf577d + Position*: {X: -13.8704758, Y: 0.0, Z: -170.874969} + Rotation*: {X: 0.0, Y: -0.3477825, Z: 0.0, W: -0.9375752} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + be4998ad68c8459667a7284a8d99157b: !ModelComponent + Id: 96acd17f-f789-4fac-83af-a223304d2411 + Model: 4a2f9278-e0c6-44fb-9c01-be4b1d8df07d:Environment/Background/Models/FloatingRock2_2 + Materials: {} + Base: + BasePartAsset: 015d5639-6ba5-4172-a09e-83d0c9decb1f:Environment/Background/Prefabs/FloatingRocks2_2 + BasePartId: acd14fa1-66b9-41ba-a956-d373b2a8694b + InstanceId: 62e01c9b-d016-4efc-a06d-4e1e9e7710fc + - Folder: Background + Entity: + Id: 4e76192f-e800-41b4-8880-3db21a52bb4e + Name: FloatingRock1_3 + Components: + 9f77ddc721fcf761064fcaea91cd58c2: !TransformComponent + Id: e0bc22da-72a2-4335-8ae7-58d90d294200 + Position*: {X: -20.47168, Y: -33.4999962, Z: -75.19459} + Rotation*: {X: 0.0, Y: -0.9998754, Z: 0.0, W: -0.01578644} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 003b6267d30ac19d0238e9954e151363: !ModelComponent + Id: 7d967bbb-face-4740-92be-2f159b16e7e7 + Model: 9cefcfc9-d76f-4a63-9224-7cad03209790:Environment/Background/Models/FloatingRock1_3 + Materials: {} + Base: + BasePartAsset: 9316ed7f-c095-4823-b523-c529a4056673:Environment/Background/Prefabs/FloatingRocks1_3 + BasePartId: 7e626d1c-b6a5-4e91-8a1c-5e2d92a77ee9 + InstanceId: ac216092-5188-459e-97d1-bab7c8237737 + - Folder: Background + Entity: + Id: 50e1697c-18a8-4f90-bb2b-4b6a9a0f27ee + Name: FloatingRock1_1 + Components: + 4eb1e899f0420cb437485b0c397af954: !TransformComponent + Id: 462bc20a-c010-45c6-8587-69fb078fb4e9 + Position*: {X: -29.12471, Y: 10.5, Z: -64.6644} + Rotation*: {X: 0.0, Y: -0.7812687, Z: 0.0, W: -0.6241949} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8178b4303bd1ecfde7f3858f4b9e328d: !ModelComponent + Id: d813dc8a-a692-4d57-b466-5764eae9f3ee + Model: b5ed7a0b-a015-43af-bd56-7d0964e9eb9a:Environment/Background/Models/FloatingRock1_1 + Materials: {} + Base: + BasePartAsset: 29d13e5f-59dc-48d3-90fd-5b98939827d3:Environment/Background/Prefabs/FloatingRocks1_1 + BasePartId: 4316bcaa-2539-4f3a-87a7-a35e248c93c5 + InstanceId: cae81217-d826-4fb1-ac11-a68a7bd055c7 + - Folder: Background + Entity: + Id: 56fed0c6-be39-423b-8f1d-afc65dbea65e + Name: FloatingRock1_1 + Components: + 4eb1e899f0420cb437485b0c397af954: !TransformComponent + Id: d37be3e6-e426-459b-afa8-60d24cd44bb2 + Position*: {X: 32.7244568, Y: 10.5, Z: -89.90268} + Rotation*: {X: 0.0, Y: -0.33219403, Z: 0.0, W: -0.9432111} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8178b4303bd1ecfde7f3858f4b9e328d: !ModelComponent + Id: 295eb770-6a33-4a3f-bed3-47c991f38fc9 + Model: b5ed7a0b-a015-43af-bd56-7d0964e9eb9a:Environment/Background/Models/FloatingRock1_1 + Materials: {} + Base: + BasePartAsset: 29d13e5f-59dc-48d3-90fd-5b98939827d3:Environment/Background/Prefabs/FloatingRocks1_1 + BasePartId: 4316bcaa-2539-4f3a-87a7-a35e248c93c5 + InstanceId: 411b3714-faa3-4fe4-9639-a5c29355a73d + - Folder: Background + Entity: + Id: 5d80a4f6-8b07-4edc-9610-37233ead6ba2 + Name: FloatingRock2_1 + Components: + e1c1c29771d528372e8df9fe0ec258df: !TransformComponent + Id: 61afd33f-c6f0-43dc-b919-bc5e0c76e4bf + Position*: {X: -25.62471, Y: 3.5, Z: -88.16443} + Rotation*: {X: 0.0, Y: -0.830342531, Z: 0.0, W: 0.557253242} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + cd6c3efe59d092dd1a8bf308dac643d1: !ModelComponent + Id: 5d866350-f32e-49de-b32f-af980c502271 + Model: d023b593-355e-4956-b6c2-76cc69aa956c:Environment/Background/Models/FloatingRock2_1 + Materials: {} + Base: + BasePartAsset: cd1fe62d-b637-416f-85bb-1b017bd85424:Environment/Background/Prefabs/FloatingRocks2_1 + BasePartId: d8012c4c-375c-4001-ba06-8834ca57a8a6 + InstanceId: cc401477-8c90-4ad2-ba84-2d374de499af + - Folder: Background + Entity: + Id: 5ee4758f-462e-465e-9cbb-9325dfeb9dcd + Name: FloatingRock2_1 + Components: + e1c1c29771d528372e8df9fe0ec258df: !TransformComponent + Id: bd0ccdb1-a6c0-4c35-92ca-5a2b69160e25 + Position*: {X: 51.960495, Y: 13.4999981, Z: -100.323166} + Rotation*: {X: 0.0, Y: -0.468696862, Z: 0.0, W: -0.8833591} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + cd6c3efe59d092dd1a8bf308dac643d1: !ModelComponent + Id: d0da4c69-cee7-4732-bc16-438a03963aad + Model: d023b593-355e-4956-b6c2-76cc69aa956c:Environment/Background/Models/FloatingRock2_1 + Materials: {} + Base: + BasePartAsset: cd1fe62d-b637-416f-85bb-1b017bd85424:Environment/Background/Prefabs/FloatingRocks2_1 + BasePartId: d8012c4c-375c-4001-ba06-8834ca57a8a6 + InstanceId: fedb6498-fa20-4d6c-a7a9-113d8a9e9ef9 + - Folder: Background + Entity: + Id: 60cb23b7-5f70-4adb-820c-ff92cdd6b693 + Name: FloatingRock1_1 + Components: + 4eb1e899f0420cb437485b0c397af954: !TransformComponent + Id: bc0a449e-775b-4485-96ca-cb20b611bf31 + Position*: {X: 57.77362, Y: -31.9999962, Z: -79.94435} + Rotation*: {X: 0.0, Y: -0.830184042, Z: 0.0, W: -0.557489336} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8178b4303bd1ecfde7f3858f4b9e328d: !ModelComponent + Id: 5a025006-fa28-47d4-b4ec-b41f5cd0fd6e + Model: b5ed7a0b-a015-43af-bd56-7d0964e9eb9a:Environment/Background/Models/FloatingRock1_1 + Materials: {} + Base: + BasePartAsset: 29d13e5f-59dc-48d3-90fd-5b98939827d3:Environment/Background/Prefabs/FloatingRocks1_1 + BasePartId: 4316bcaa-2539-4f3a-87a7-a35e248c93c5 + InstanceId: 5cadc902-37d9-4913-aa1c-44d3495f445b + - Folder: Background + Entity: + Id: 61ee4915-3476-445e-9881-d5bd266e5c4e + Name: FloatingRock1_3 + Components: + 9f77ddc721fcf761064fcaea91cd58c2: !TransformComponent + Id: 6ed99f1b-fa6d-410f-be48-8f940415f880 + Position*: {X: 41.8752823, Y: -3.99999976, Z: -125.6644} + Rotation*: {X: 0.0, Y: -0.935469151, Z: 0.0, W: -0.353408366} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 003b6267d30ac19d0238e9954e151363: !ModelComponent + Id: 54fd3b5a-1ebe-40b4-97d3-5f7280a08616 + Model: 9cefcfc9-d76f-4a63-9224-7cad03209790:Environment/Background/Models/FloatingRock1_3 + Materials: {} + Base: + BasePartAsset: 9316ed7f-c095-4823-b523-c529a4056673:Environment/Background/Prefabs/FloatingRocks1_3 + BasePartId: 7e626d1c-b6a5-4e91-8a1c-5e2d92a77ee9 + InstanceId: c788417e-b7e3-4da9-b5b2-5856ad8f3a94 + - Folder: Background + Entity: + Id: 661c40bb-900a-42be-8c92-f9c7711f23ee + Name: FloatingRock1_1 + Components: + 4eb1e899f0420cb437485b0c397af954: !TransformComponent + Id: 18ad23d8-2864-45d4-934c-7e1e7b6abff9 + Position*: {X: 23.37532, Y: 4.5, Z: -143.664444} + Rotation*: {X: 0.0, Y: 0.136132821, Z: 0.0, W: -0.9906906} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8178b4303bd1ecfde7f3858f4b9e328d: !ModelComponent + Id: 9adea6a0-d53c-4427-b8c2-fb469c88bf17 + Model: b5ed7a0b-a015-43af-bd56-7d0964e9eb9a:Environment/Background/Models/FloatingRock1_1 + Materials: {} + Base: + BasePartAsset: 29d13e5f-59dc-48d3-90fd-5b98939827d3:Environment/Background/Prefabs/FloatingRocks1_1 + BasePartId: 4316bcaa-2539-4f3a-87a7-a35e248c93c5 + InstanceId: 8a3ba895-8d6e-4de0-bbb6-ea1a0ed727a6 + - Folder: Background + Entity: + Id: 66cda794-a1ab-424f-8126-cb21829b8333 + Name: FloatingRock2_1 + Components: + e1c1c29771d528372e8df9fe0ec258df: !TransformComponent + Id: 57553437-d684-4453-9a9e-0d774cf75a15 + Position*: {X: -53.6247253, Y: 13.4999981, Z: -112.664383} + Rotation*: {X: 0.0, Y: -0.8653669, Z: 0.0, W: -0.5011389} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + cd6c3efe59d092dd1a8bf308dac643d1: !ModelComponent + Id: 37cf9165-c8c8-48d7-bb17-40b9b7503f33 + Model: d023b593-355e-4956-b6c2-76cc69aa956c:Environment/Background/Models/FloatingRock2_1 + Materials: {} + Base: + BasePartAsset: cd1fe62d-b637-416f-85bb-1b017bd85424:Environment/Background/Prefabs/FloatingRocks2_1 + BasePartId: d8012c4c-375c-4001-ba06-8834ca57a8a6 + InstanceId: 48f4b3d6-e51b-4bee-83d9-b129520dece2 + - Folder: Background + Entity: + Id: 6a3c09a1-ca78-451b-aced-736d61e8c23e + Name: FloatingRock2_1 + Components: + e1c1c29771d528372e8df9fe0ec258df: !TransformComponent + Id: cc98529c-1938-4670-803e-b573ac293684 + Position*: {X: 8.875282, Y: 0.0, Z: -124.1644} + Rotation*: {X: 0.0, Y: -0.996094644, Z: 0.0, W: 0.08829185} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + cd6c3efe59d092dd1a8bf308dac643d1: !ModelComponent + Id: 53a06eb4-32b2-45c5-aa2d-6bfe9de7f33b + Model: d023b593-355e-4956-b6c2-76cc69aa956c:Environment/Background/Models/FloatingRock2_1 + Materials: {} + Base: + BasePartAsset: cd1fe62d-b637-416f-85bb-1b017bd85424:Environment/Background/Prefabs/FloatingRocks2_1 + BasePartId: d8012c4c-375c-4001-ba06-8834ca57a8a6 + InstanceId: a641d0f6-4b68-4d95-8c3c-0dc657f7212f + - Folder: Background + Entity: + Id: 6d4ef719-206f-4b80-940b-9944f13c0818 + Name: FloatingRock2_1 + Components: + e1c1c29771d528372e8df9fe0ec258df: !TransformComponent + Id: 529efebb-13fe-491c-b7b9-f0c5dd3ec344 + Position*: {X: -80.58824, Y: 7.999999, Z: -29.63755} + Rotation*: {X: 0.0, Y: -0.529547453, Z: 0.0, W: 0.8482803} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + cd6c3efe59d092dd1a8bf308dac643d1: !ModelComponent + Id: 4e92538e-219f-40b3-b8ef-b196b59ad119 + Model: d023b593-355e-4956-b6c2-76cc69aa956c:Environment/Background/Models/FloatingRock2_1 + Materials: {} + Base: + BasePartAsset: cd1fe62d-b637-416f-85bb-1b017bd85424:Environment/Background/Prefabs/FloatingRocks2_1 + BasePartId: d8012c4c-375c-4001-ba06-8834ca57a8a6 + InstanceId: dde436cb-bc5d-4846-bba6-6b1719f249b2 + - Folder: Background + Entity: + Id: 7071cfca-a27a-4407-b191-2be2842aa8ec + Name: FloatingRock1_3 + Components: + 9f77ddc721fcf761064fcaea91cd58c2: !TransformComponent + Id: 4524bbde-d60d-491e-9301-9bfb784076b7 + Position*: {X: 27.75026, Y: 3.5, Z: -67.2453156} + Rotation*: {X: 0.0, Y: -0.6958559, Z: 0.0, W: -0.718181431} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 003b6267d30ac19d0238e9954e151363: !ModelComponent + Id: 82d868a6-551d-4f0f-a37b-eb8fd0ecad3e + Model: 9cefcfc9-d76f-4a63-9224-7cad03209790:Environment/Background/Models/FloatingRock1_3 + Materials: {} + Base: + BasePartAsset: 9316ed7f-c095-4823-b523-c529a4056673:Environment/Background/Prefabs/FloatingRocks1_3 + BasePartId: 7e626d1c-b6a5-4e91-8a1c-5e2d92a77ee9 + InstanceId: af21c411-4631-4d30-b7a4-fed79c214d69 + - Folder: Background + Entity: + Id: 767f0fbb-6a04-4982-825f-57331584d723 + Name: FloatingRock1_2 + Components: + f7d435da00a4f0db8567f052b2dd775b: !TransformComponent + Id: 387ef57f-12bf-49ea-b447-7458384485cf + Position*: {X: 6.37529, Y: 14.4999981, Z: -145.6644} + Rotation*: {X: 0.0, Y: -0.93441, Z: 0.0, W: -0.3561994} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + dfee743743e4c3abf742a67210a57784: !ModelComponent + Id: 863715da-0bd2-4885-ba8f-6ec61fc64cbb + Model: 6a331abf-6ede-4170-9bb4-ae1d6e7896ea:Environment/Background/Models/FloatingRock1_2 + Materials: {} + Base: + BasePartAsset: cb48cca7-c22e-4485-a6e6-07aa698fbf3e:Environment/Background/Prefabs/FloatingRocks1_2 + BasePartId: 9b604468-8d1b-431d-adf9-79f53eaab11f + InstanceId: 4516b1ff-44da-4a3d-9acc-59703840b2cc + - Folder: Background + Entity: + Id: 826b3d97-4caa-4c62-9f7a-463c9e8d7c17 + Name: FloatingRock2_2 + Components: + 5e4b0e71b6336787d1cda626d11089be: !TransformComponent + Id: 8a5d0b1e-52a1-4e8e-9af2-8a143a7ea771 + Position*: {X: -11.1247406, Y: -1.5, Z: -116.6644} + Rotation*: {X: 0.0, Y: -0.7881188, Z: 0.0, W: -0.6155232} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + be4998ad68c8459667a7284a8d99157b: !ModelComponent + Id: 9a67ebc3-db10-4dfe-8ea5-c3bbbd37dadd + Model: 4a2f9278-e0c6-44fb-9c01-be4b1d8df07d:Environment/Background/Models/FloatingRock2_2 + Materials: {} + Base: + BasePartAsset: 015d5639-6ba5-4172-a09e-83d0c9decb1f:Environment/Background/Prefabs/FloatingRocks2_2 + BasePartId: acd14fa1-66b9-41ba-a956-d373b2a8694b + InstanceId: b5054698-6b40-44f0-96b7-1ffc3dccf436 + - Folder: Background + Entity: + Id: 86b49dca-1602-4518-8f2b-99f2c0d7781a + Name: FloatingRock2_2 + Components: + 5e4b0e71b6336787d1cda626d11089be: !TransformComponent + Id: 45b1b78f-752e-49a1-a25f-15e1538903ca + Position*: {X: 55.11378, Y: 8.0, Z: -148.382629} + Rotation*: {X: 0.0, Y: -0.2476192, Z: 0.0, W: -0.9688574} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + be4998ad68c8459667a7284a8d99157b: !ModelComponent + Id: eb791f3e-a5ba-4a3f-a20a-d8e42f9857fd + Model: 4a2f9278-e0c6-44fb-9c01-be4b1d8df07d:Environment/Background/Models/FloatingRock2_2 + Materials: {} + Base: + BasePartAsset: 015d5639-6ba5-4172-a09e-83d0c9decb1f:Environment/Background/Prefabs/FloatingRocks2_2 + BasePartId: acd14fa1-66b9-41ba-a956-d373b2a8694b + InstanceId: 7c0d560d-cb82-403d-aa66-b956329522b6 + - Folder: Background + Entity: + Id: 87e24d5c-0b55-4cab-8600-c47ae9d96a88 + Name: FloatingRock2_3 + Components: + 2dd20f6a087b1c11acdfacf28a0ea16d: !TransformComponent + Id: 911b30dc-034f-466e-8e87-3ec975043e40 + Position*: {X: 42.738266, Y: 9.5, Z: -69.6898956} + Rotation*: {X: 0.0, Y: -0.5858675, Z: 0.0, W: -0.8104068} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + da2ee4d13edd8daff07d8952ff3a4dcc: !ModelComponent + Id: a8c1939b-4ef9-4f9a-8bf9-4c9c8df5c454 + Model: e1555e64-a386-4bc0-93b5-f9d0a4ec9051:Environment/Background/Models/FloatingRock2_3 + Materials: {} + Base: + BasePartAsset: 84e0f4f9-ff6e-40e3-9790-b150bb5dcaee:Environment/Background/Prefabs/FloatingRocks2_3 + BasePartId: 80111dc1-fd93-4f0e-831e-e6232fa142d5 + InstanceId: 8ecd9587-7a90-458a-9fa6-9493911b5201 + - Folder: Background + Entity: + Id: 8b7cefb2-98f0-41df-9c8e-452d0fac711f + Name: FloatingRock1_1 + Components: + 4eb1e899f0420cb437485b0c397af954: !TransformComponent + Id: ae4ba1e5-1a0f-4e2f-9ecf-425cea8dbfb7 + Position*: {X: -49.1246948, Y: 0.0, Z: -97.16441} + Rotation*: {X: 0.0, Y: -0.9672256, Z: 0.0, W: -0.253918558} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8178b4303bd1ecfde7f3858f4b9e328d: !ModelComponent + Id: 2bd1caba-2598-4adb-ab37-12f75e340d6e + Model: b5ed7a0b-a015-43af-bd56-7d0964e9eb9a:Environment/Background/Models/FloatingRock1_1 + Materials: {} + Base: + BasePartAsset: 29d13e5f-59dc-48d3-90fd-5b98939827d3:Environment/Background/Prefabs/FloatingRocks1_1 + BasePartId: 4316bcaa-2539-4f3a-87a7-a35e248c93c5 + InstanceId: ac1e998d-76f3-4206-8774-70d77cac0449 + - Folder: Background + Entity: + Id: 9bde73dd-b83f-4ab5-b19e-4a46a1bb94a4 + Name: FloatingRock1_1 + Components: + 4eb1e899f0420cb437485b0c397af954: !TransformComponent + Id: 0a7a553d-fc33-461a-a0ab-b63dd0f7c9c3 + Position*: {X: -43.12905, Y: -26.4999962, Z: -80.1688} + Rotation*: {X: 0.0, Y: -0.9018476, Z: 0.0, W: -0.432054281} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8178b4303bd1ecfde7f3858f4b9e328d: !ModelComponent + Id: 9c49ef6e-0943-4e36-8aa9-9c795c704b01 + Model: b5ed7a0b-a015-43af-bd56-7d0964e9eb9a:Environment/Background/Models/FloatingRock1_1 + Materials: {} + Base: + BasePartAsset: 29d13e5f-59dc-48d3-90fd-5b98939827d3:Environment/Background/Prefabs/FloatingRocks1_1 + BasePartId: 4316bcaa-2539-4f3a-87a7-a35e248c93c5 + InstanceId: 7a137652-eded-45c6-a26d-26dddf7c000b + - Folder: Background + Entity: + Id: 9dedb689-72b9-44ab-b22b-5c652b9e946b + Name: FloatingRock2_1 + Components: + e1c1c29771d528372e8df9fe0ec258df: !TransformComponent + Id: 374150f4-a647-4ee4-aaa8-0dae4acad5ae + Position*: {X: 76.96354, Y: 7.999999, Z: -67.02687} + Rotation*: {X: 0.0, Y: -0.8482803, Z: 0.0, W: -0.5295475} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + cd6c3efe59d092dd1a8bf308dac643d1: !ModelComponent + Id: 81dfa8b1-2627-4821-bb93-a110451505fc + Model: d023b593-355e-4956-b6c2-76cc69aa956c:Environment/Background/Models/FloatingRock2_1 + Materials: {} + Base: + BasePartAsset: cd1fe62d-b637-416f-85bb-1b017bd85424:Environment/Background/Prefabs/FloatingRocks2_1 + BasePartId: d8012c4c-375c-4001-ba06-8834ca57a8a6 + InstanceId: 7fe4cd72-f396-411b-8d3a-05addcadecc3 + - Folder: Background + Entity: + Id: a0b15e32-390c-403b-9a79-af068ef67667 + Name: FloatingRock2_2 + Components: + 5e4b0e71b6336787d1cda626d11089be: !TransformComponent + Id: 2a8aca96-f5dd-4e43-a3c8-15c98b5d18cd + Position*: {X: -52.12474, Y: 0.0, Z: -84.1644} + Rotation*: {X: 0.0, Y: -0.791507661, Z: 0.0, W: -0.611159265} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + be4998ad68c8459667a7284a8d99157b: !ModelComponent + Id: 95356a09-d00b-4b3c-9e06-67c006c50aaf + Model: 4a2f9278-e0c6-44fb-9c01-be4b1d8df07d:Environment/Background/Models/FloatingRock2_2 + Materials: {} + Base: + BasePartAsset: 015d5639-6ba5-4172-a09e-83d0c9decb1f:Environment/Background/Prefabs/FloatingRocks2_2 + BasePartId: acd14fa1-66b9-41ba-a956-d373b2a8694b + InstanceId: 9f8c85aa-25dc-4041-8604-3a874542299f + - Folder: Background + Entity: + Id: a0d78a85-e687-4dc6-977c-36e8247dbb8b + Name: FloatingRock2_2 + Components: + 5e4b0e71b6336787d1cda626d11089be: !TransformComponent + Id: 72f618ff-677e-4c06-9f8c-d49f0257faf1 + Position*: {X: 48.5, Y: 0.0, Z: -12.5} + Rotation*: {X: 0.0, Y: -0.6111592, Z: 0.0, W: 0.791507661} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + be4998ad68c8459667a7284a8d99157b: !ModelComponent + Id: 50ad044a-cb74-440c-bdb7-aaa7f3533ecc + Model: 4a2f9278-e0c6-44fb-9c01-be4b1d8df07d:Environment/Background/Models/FloatingRock2_2 + Materials: {} + Base: + BasePartAsset: 015d5639-6ba5-4172-a09e-83d0c9decb1f:Environment/Background/Prefabs/FloatingRocks2_2 + BasePartId: acd14fa1-66b9-41ba-a956-d373b2a8694b + InstanceId: ec486a36-0da8-4c0c-b974-429d46e3cf02 + - Folder: Background + Entity: + Id: acfc3ecc-4a35-4e8a-a3d0-de99c812599c + Name: FloatingRock2_2 + Components: + 5e4b0e71b6336787d1cda626d11089be: !TransformComponent + Id: 517e97ea-f51d-495f-ac63-fc21c1d9d6e5 + Position*: {X: 34.1632843, Y: 5.00000048, Z: -163.392944} + Rotation*: {X: 0.0, Y: -0.9768715, Z: 0.0, W: -0.213827386} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + be4998ad68c8459667a7284a8d99157b: !ModelComponent + Id: c71d35fe-9802-4c08-ace9-d5dfbdddadc1 + Model: 4a2f9278-e0c6-44fb-9c01-be4b1d8df07d:Environment/Background/Models/FloatingRock2_2 + Materials: {} + Base: + BasePartAsset: 015d5639-6ba5-4172-a09e-83d0c9decb1f:Environment/Background/Prefabs/FloatingRocks2_2 + BasePartId: acd14fa1-66b9-41ba-a956-d373b2a8694b + InstanceId: 8d43a8d8-c6a7-4f7a-ae7a-5998898ed4e7 + - Folder: Background + Entity: + Id: ae58bcee-186b-4d62-bde9-42e41c54538f + Name: FloatingRock1_3 + Components: + 9f77ddc721fcf761064fcaea91cd58c2: !TransformComponent + Id: b6ea34e0-4f7a-475c-ac47-4878066233fd + Position*: {X: 39.1327057, Y: 13.0000019, Z: -108.612411} + Rotation*: {X: 0.0, Y: -0.7115577, Z: 0.0, W: -0.702627659} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 003b6267d30ac19d0238e9954e151363: !ModelComponent + Id: 2169fcd2-1a48-4f95-9548-00b3ee3fa8ff + Model: 9cefcfc9-d76f-4a63-9224-7cad03209790:Environment/Background/Models/FloatingRock1_3 + Materials: {} + Base: + BasePartAsset: 9316ed7f-c095-4823-b523-c529a4056673:Environment/Background/Prefabs/FloatingRocks1_3 + BasePartId: 7e626d1c-b6a5-4e91-8a1c-5e2d92a77ee9 + InstanceId: 2b1c6840-62c0-4bf6-8b94-96ebb15c5231 + - Folder: Background + Entity: + Id: b093dae9-c2bd-4afb-aafd-ea42a546cf94 + Name: FloatingRock1_3 + Components: + 9f77ddc721fcf761064fcaea91cd58c2: !TransformComponent + Id: 4bb37eea-a055-437f-ba44-0a617234e9da + Position*: {X: -31.37497, Y: 3.5, Z: -29.4190826} + Rotation*: {X: 0.0, Y: -0.7181814, Z: 0.0, W: 0.695856} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 003b6267d30ac19d0238e9954e151363: !ModelComponent + Id: 25d3a403-8807-44ce-8a07-50fe7927d0f2 + Model: 9cefcfc9-d76f-4a63-9224-7cad03209790:Environment/Background/Models/FloatingRock1_3 + Materials: {} + Base: + BasePartAsset: 9316ed7f-c095-4823-b523-c529a4056673:Environment/Background/Prefabs/FloatingRocks1_3 + BasePartId: 7e626d1c-b6a5-4e91-8a1c-5e2d92a77ee9 + InstanceId: 3b070aed-6290-4a6f-a373-c8bf2713bbfd + - Folder: Background + Entity: + Id: b53990e9-7cd7-40e4-884d-0c3910cdb3d2 + Name: FloatingRock2_3 + Components: + 2dd20f6a087b1c11acdfacf28a0ea16d: !TransformComponent + Id: f7bc2820-7605-497b-94e4-f695f0870d7f + Position*: {X: -0.274459839, Y: 5.0, Z: -151.3829} + Rotation*: {X: 0.0, Y: -0.946512938, Z: 0.0, W: 0.3226657} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + da2ee4d13edd8daff07d8952ff3a4dcc: !ModelComponent + Id: 528ff669-a3c1-45b3-86cf-4f5313f10c1e + Model: e1555e64-a386-4bc0-93b5-f9d0a4ec9051:Environment/Background/Models/FloatingRock2_3 + Materials: {} + Base: + BasePartAsset: 84e0f4f9-ff6e-40e3-9790-b150bb5dcaee:Environment/Background/Prefabs/FloatingRocks2_3 + BasePartId: 80111dc1-fd93-4f0e-831e-e6232fa142d5 + InstanceId: 04ca51ac-1af2-4eac-b2a5-00109e616bb5 + - Folder: Background + Entity: + Id: ba3f410b-7d6e-4f02-b154-0b4d9ab5cd74 + Name: FloatingRock1_1 + Components: + 4eb1e899f0420cb437485b0c397af954: !TransformComponent + Id: d2081aca-65f3-40bb-9191-9352f024bc6e + Position*: {X: 25.5, Y: 10.5, Z: -32.0} + Rotation*: {X: 0.0, Y: -0.62419486, Z: 0.0, W: 0.7812687} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8178b4303bd1ecfde7f3858f4b9e328d: !ModelComponent + Id: f0d35a05-05ce-463a-92e8-6926d1348b16 + Model: b5ed7a0b-a015-43af-bd56-7d0964e9eb9a:Environment/Background/Models/FloatingRock1_1 + Materials: + 766d9f4ec02ddc621d9b71c3e661dd5a*~0: 43c89a20-2b17-43a1-84c0-ef4dac24663e:Environment/Background/Materials/FloatingRocks/FloatingRocks1_MT + Base: + BasePartAsset: 29d13e5f-59dc-48d3-90fd-5b98939827d3:Environment/Background/Prefabs/FloatingRocks1_1 + BasePartId: 4316bcaa-2539-4f3a-87a7-a35e248c93c5 + InstanceId: 9a897a82-529d-4278-aa0d-f6e3268d4f71 + - Folder: Background + Entity: + Id: be2bdad3-447b-4afa-8ffb-52c0a7f92f7d + Name: FloatingRock2_3 + Components: + 2dd20f6a087b1c11acdfacf28a0ea16d: !TransformComponent + Id: b7a82adf-0a81-4365-ae38-b1315c3e682f + Position*: {X: 16.3792648, Y: -1.5, Z: -111.284485} + Rotation*: {X: 0.0, Y: -0.923427045, Z: 0.0, W: -0.383773953} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + da2ee4d13edd8daff07d8952ff3a4dcc: !ModelComponent + Id: 038a2050-e9f3-4a4d-9bb7-79c783e12534 + Model: e1555e64-a386-4bc0-93b5-f9d0a4ec9051:Environment/Background/Models/FloatingRock2_3 + Materials: {} + Base: + BasePartAsset: 84e0f4f9-ff6e-40e3-9790-b150bb5dcaee:Environment/Background/Prefabs/FloatingRocks2_3 + BasePartId: 80111dc1-fd93-4f0e-831e-e6232fa142d5 + InstanceId: 1db73f99-4463-471e-9c02-78d8ff574d88 + - Folder: Background + Entity: + Id: bf6de033-444b-4bd5-bd8f-c3185f3c9733 + Name: FloatingRock2_3 + Components: + 2dd20f6a087b1c11acdfacf28a0ea16d: !TransformComponent + Id: 48f31e65-4040-41d1-90a3-56b4c496ce68 + Position*: {X: -22.9162445, Y: -27.4999962, Z: -90.18262} + Rotation*: {X: 0.0, Y: -0.987315059, Z: 0.0, W: -0.158773184} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + da2ee4d13edd8daff07d8952ff3a4dcc: !ModelComponent + Id: c40cad59-e353-4009-9ce5-3c704c8b21b3 + Model: e1555e64-a386-4bc0-93b5-f9d0a4ec9051:Environment/Background/Models/FloatingRock2_3 + Materials: {} + Base: + BasePartAsset: 84e0f4f9-ff6e-40e3-9790-b150bb5dcaee:Environment/Background/Prefabs/FloatingRocks2_3 + BasePartId: 80111dc1-fd93-4f0e-831e-e6232fa142d5 + InstanceId: 3cd08a2d-9c60-4fee-ab2c-7bdedeccc170 + - Folder: Background + Entity: + Id: cf4d5061-10c4-4bd8-8dcf-a531cedf70ae + Name: FloatingRock2_1 + Components: + e1c1c29771d528372e8df9fe0ec258df: !TransformComponent + Id: dbc8d74e-c59a-451d-accb-68c3fe13d41f + Position*: {X: 47.48535, Y: 0.0, Z: -139.302856} + Rotation*: {X: 0.0, Y: -0.891722262, Z: 0.0, W: -0.452583164} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + cd6c3efe59d092dd1a8bf308dac643d1: !ModelComponent + Id: 92be2d61-12bc-42b7-b589-12043e719111 + Model: d023b593-355e-4956-b6c2-76cc69aa956c:Environment/Background/Models/FloatingRock2_1 + Materials: {} + Base: + BasePartAsset: cd1fe62d-b637-416f-85bb-1b017bd85424:Environment/Background/Prefabs/FloatingRocks2_1 + BasePartId: d8012c4c-375c-4001-ba06-8834ca57a8a6 + InstanceId: 943d4c0e-65a9-43f6-afaf-aa075d727191 + - Folder: Background + Entity: + Id: d3efeb11-e580-4ca8-bb88-f39517020a6b + Name: FloatingRock2_3 + Components: + 2dd20f6a087b1c11acdfacf28a0ea16d: !TransformComponent + Id: 21a0e51e-e941-4a5b-94a8-064db27dd96f + Position*: {X: -22.5, Y: 4.5, Z: -14.5} + Rotation*: {X: 0.0, Y: 0.5248522, Z: 0.0, W: 0.851193368} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + da2ee4d13edd8daff07d8952ff3a4dcc: !ModelComponent + Id: 6c170994-03f2-4c09-be50-bca00d2453f1 + Model: e1555e64-a386-4bc0-93b5-f9d0a4ec9051:Environment/Background/Models/FloatingRock2_3 + Materials: {} + Base: + BasePartAsset: 84e0f4f9-ff6e-40e3-9790-b150bb5dcaee:Environment/Background/Prefabs/FloatingRocks2_3 + BasePartId: 80111dc1-fd93-4f0e-831e-e6232fa142d5 + InstanceId: 41bbf9e1-9f44-4ebd-a441-17b84bdcafb8 + - Folder: Background + Entity: + Id: d4c3412b-d163-42b4-88cc-f7e13eac45da + Name: FloatingRock1_3 + Components: + 9f77ddc721fcf761064fcaea91cd58c2: !TransformComponent + Id: fcc55601-fcb4-4e8e-9f18-0bcd8956ce17 + Position*: {X: -5.62472534, Y: 7.0, Z: -136.664429} + Rotation*: {X: 0.0, Y: -0.817741, Z: 0.0, W: 0.5755863} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 003b6267d30ac19d0238e9954e151363: !ModelComponent + Id: cb376c99-6041-47d7-96f1-5f945592c055 + Model: 9cefcfc9-d76f-4a63-9224-7cad03209790:Environment/Background/Models/FloatingRock1_3 + Materials: {} + Base: + BasePartAsset: 9316ed7f-c095-4823-b523-c529a4056673:Environment/Background/Prefabs/FloatingRocks1_3 + BasePartId: 7e626d1c-b6a5-4e91-8a1c-5e2d92a77ee9 + InstanceId: d7d9773f-d072-42dd-9c94-d08de2f237af + - Folder: Background + Entity: + Id: d9b58605-ff06-455d-8e67-d22b81c33c72 + Name: FloatingRock2_3 + Components: + 2dd20f6a087b1c11acdfacf28a0ea16d: !TransformComponent + Id: 636e1117-05bb-41d4-a998-e1dfb7704203 + Position*: {X: -46.36299, Y: 9.5, Z: -26.9745178} + Rotation*: {X: 0.0, Y: -0.8104068, Z: 0.0, W: 0.5858676} + Scale*: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + da2ee4d13edd8daff07d8952ff3a4dcc: !ModelComponent + Id: b9d14ba4-6da3-47a4-a6d3-785f420f64f8 + Model: e1555e64-a386-4bc0-93b5-f9d0a4ec9051:Environment/Background/Models/FloatingRock2_3 + Materials: {} + Base: + BasePartAsset: 84e0f4f9-ff6e-40e3-9790-b150bb5dcaee:Environment/Background/Prefabs/FloatingRocks2_3 + BasePartId: 80111dc1-fd93-4f0e-831e-e6232fa142d5 + InstanceId: aad3d31a-7bcf-4bfe-b0db-b20c6df54b9f + - Folder: Background + Entity: + Id: dabeae09-2425-4673-a352-1c49b5ed279f + Name: FloatingRock2_2 + Components: + 5e4b0e71b6336787d1cda626d11089be: !TransformComponent + Id: 5ba1a528-4b43-482c-8065-2e66c0c2dbe9 + Position*: {X: 17.3733368, Y: 5.00000048, Z: -100.953964} + Rotation*: {X: 0.0, Y: -0.941892564, Z: 0.0, W: 0.335914224} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + be4998ad68c8459667a7284a8d99157b: !ModelComponent + Id: b00f91b5-b857-4eed-8d42-98198152f6c1 + Model: 4a2f9278-e0c6-44fb-9c01-be4b1d8df07d:Environment/Background/Models/FloatingRock2_2 + Materials: {} + Base: + BasePartAsset: 015d5639-6ba5-4172-a09e-83d0c9decb1f:Environment/Background/Prefabs/FloatingRocks2_2 + BasePartId: acd14fa1-66b9-41ba-a956-d373b2a8694b + InstanceId: 51cac7ff-e71b-4fe5-b192-d975ff208bd3 + - Folder: Background + Entity: + Id: def87cdf-e3e2-4fd3-a0e5-a08c7f43f65d + Name: FloatingRock2_2 + Components: + 5e4b0e71b6336787d1cda626d11089be: !TransformComponent + Id: 1a925d52-a09b-4c5e-80cb-7239ba108d67 + Position*: {X: -25.6247253, Y: 8.0, Z: -105.164383} + Rotation*: {X: 0.0, Y: -0.723106444, Z: 0.0, W: -0.6907366} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + be4998ad68c8459667a7284a8d99157b: !ModelComponent + Id: bf5c90f5-9162-40b7-8c1c-3dd160860558 + Model: 4a2f9278-e0c6-44fb-9c01-be4b1d8df07d:Environment/Background/Models/FloatingRock2_2 + Materials: {} + Base: + BasePartAsset: 015d5639-6ba5-4172-a09e-83d0c9decb1f:Environment/Background/Prefabs/FloatingRocks2_2 + BasePartId: acd14fa1-66b9-41ba-a956-d373b2a8694b + InstanceId: b0a69ff0-d359-4851-b6b9-44c9f0b593b8 + - Folder: Background + Entity: + Id: e96b8613-d4f3-4090-b926-d86852e0dd2e + Name: FloatingRock2_1 + Components: + e1c1c29771d528372e8df9fe0ec258df: !TransformComponent + Id: 630ce0c8-0fa8-4dd3-8c47-4df3380557fa + Position*: {X: -32.1247253, Y: 7.999999, Z: -93.16443} + Rotation*: {X: 0.0, Y: -1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + cd6c3efe59d092dd1a8bf308dac643d1: !ModelComponent + Id: 37b2ec0d-b739-4ea2-9548-2f1c8083aeb1 + Model: d023b593-355e-4956-b6c2-76cc69aa956c:Environment/Background/Models/FloatingRock2_1 + Materials: {} + Base: + BasePartAsset: cd1fe62d-b637-416f-85bb-1b017bd85424:Environment/Background/Prefabs/FloatingRocks2_1 + BasePartId: d8012c4c-375c-4001-ba06-8834ca57a8a6 + InstanceId: c169ba82-464a-4a29-bc03-159b0a629bde + - Folder: Background + Entity: + Id: ed961637-43cd-44dc-992e-5e37dc800a8d + Name: FloatingRock2_2 + Components: + 5e4b0e71b6336787d1cda626d11089be: !TransformComponent + Id: b2342c87-c712-4e29-b5a2-ab572129a0f6 + Position*: {X: -11.3718338, Y: -38.4999962, Z: -113.442757} + Rotation*: {X: 0.0, Y: -0.906567, Z: 0.0, W: -0.422061771} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + be4998ad68c8459667a7284a8d99157b: !ModelComponent + Id: 68f9bcaa-5dff-442f-a10b-ca1f4adebf27 + Model: 4a2f9278-e0c6-44fb-9c01-be4b1d8df07d:Environment/Background/Models/FloatingRock2_2 + Materials: {} + Base: + BasePartAsset: 015d5639-6ba5-4172-a09e-83d0c9decb1f:Environment/Background/Prefabs/FloatingRocks2_2 + BasePartId: acd14fa1-66b9-41ba-a956-d373b2a8694b + InstanceId: 1dfb5373-d4a1-4651-93f8-f4d373062f3a + - Folder: Background + Entity: + Id: f4cfce88-7467-439e-b338-c8e77c426d4b + Name: FloatingRock2_1 + Components: + e1c1c29771d528372e8df9fe0ec258df: !TransformComponent + Id: 0c75ac61-3564-42a9-b2b2-75575076aa2e + Position*: {X: 78.5667953, Y: 3.5, Z: -80.94034} + Rotation*: {X: 0.0, Y: -0.999455333, Z: 0.0, W: 0.0330012} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + cd6c3efe59d092dd1a8bf308dac643d1: !ModelComponent + Id: 42b5515a-dd97-44f5-8937-f4acb35c8b6a + Model: d023b593-355e-4956-b6c2-76cc69aa956c:Environment/Background/Models/FloatingRock2_1 + Materials: {} + Base: + BasePartAsset: cd1fe62d-b637-416f-85bb-1b017bd85424:Environment/Background/Prefabs/FloatingRocks2_1 + BasePartId: d8012c4c-375c-4001-ba06-8834ca57a8a6 + InstanceId: c4c8f5da-2cf7-44cf-96fe-1be3b1760998 + - Folder: Background + Entity: + Id: f63a4c88-b3cb-459a-8d04-76d2e246c8f8 + Name: FloatingRock1_2 + Components: + f7d435da00a4f0db8567f052b2dd775b: !TransformComponent + Id: f5213c79-7767-429c-b315-011f7bf185c6 + Position*: {X: 49.24311, Y: 19.9999981, Z: -90.00035} + Rotation*: {X: 0.0, Y: -0.2976652, Z: 0.0, W: -0.9546703} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + dfee743743e4c3abf742a67210a57784: !ModelComponent + Id: 86fc7737-a869-4d6b-9fbb-273b76d0faca + Model: 6a331abf-6ede-4170-9bb4-ae1d6e7896ea:Environment/Background/Models/FloatingRock1_2 + Materials: {} + Base: + BasePartAsset: cb48cca7-c22e-4485-a6e6-07aa698fbf3e:Environment/Background/Prefabs/FloatingRocks1_2 + BasePartId: 9b604468-8d1b-431d-adf9-79f53eaab11f + InstanceId: d5f42155-d9c2-4a02-ac6a-99ac95e2d21b + - Folder: Background + Entity: + Id: f90cc49d-6df9-41b1-b6b2-91f7531191c6 + Name: FloatingRock2_3 + Components: + 2dd20f6a087b1c11acdfacf28a0ea16d: !TransformComponent + Id: cdf145dd-2cb5-403b-8ddc-d495a77fb32d + Position*: {X: 3.37528229, Y: 9.5, Z: -114.164429} + Rotation*: {X: 0.0, Y: -0.9261288, Z: 0.0, W: -0.377207428} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + da2ee4d13edd8daff07d8952ff3a4dcc: !ModelComponent + Id: 50b83ed9-a8f3-4883-a59c-4a3684a5a861 + Model: e1555e64-a386-4bc0-93b5-f9d0a4ec9051:Environment/Background/Models/FloatingRock2_3 + Materials: {} + Base: + BasePartAsset: 84e0f4f9-ff6e-40e3-9790-b150bb5dcaee:Environment/Background/Prefabs/FloatingRocks2_3 + BasePartId: 80111dc1-fd93-4f0e-831e-e6232fa142d5 + InstanceId: fc660bc9-a2df-4b23-b70b-bbd00ad50406 + - Folder: Background + Entity: + Id: fa77249e-546c-4c5a-963c-3eb3df9c66f0 + Name: FloatingRock2_3 + Components: + 2dd20f6a087b1c11acdfacf28a0ea16d: !TransformComponent + Id: 6d9366ca-f01d-4a65-9581-43398c547b37 + Position*: {X: -1.92002869, Y: 5.0, Z: -128.15} + Rotation*: {X: 0.0, Y: -0.6320416, Z: 0.0, W: 0.77493453} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + da2ee4d13edd8daff07d8952ff3a4dcc: !ModelComponent + Id: 6cdcd927-99ed-4b5d-a4fc-128df005a4d0 + Model: e1555e64-a386-4bc0-93b5-f9d0a4ec9051:Environment/Background/Models/FloatingRock2_3 + Materials: {} + Base: + BasePartAsset: 84e0f4f9-ff6e-40e3-9790-b150bb5dcaee:Environment/Background/Prefabs/FloatingRocks2_3 + BasePartId: 80111dc1-fd93-4f0e-831e-e6232fa142d5 + InstanceId: b1f1201a-6102-4794-a5bc-7e828f6bc8ee + - Folder: Background + Entity: + Id: fedb4f1e-0894-48b5-8f8c-cc886a428695 + Name: FloatingRock1_3 + Components: + 9f77ddc721fcf761064fcaea91cd58c2: !TransformComponent + Id: 81108f9f-9d89-47e7-90c0-1c4dbc1ff59b + Position*: {X: -73.140976, Y: -3.99999976, Z: -101.905518} + Rotation*: {X: 0.0, Y: -0.6063935, Z: 0.0, W: -0.795164645} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 003b6267d30ac19d0238e9954e151363: !ModelComponent + Id: 4abf9e02-2a1e-4e9a-a206-14a03fed0c08 + Model: 9cefcfc9-d76f-4a63-9224-7cad03209790:Environment/Background/Models/FloatingRock1_3 + Materials: {} + Base: + BasePartAsset: 9316ed7f-c095-4823-b523-c529a4056673:Environment/Background/Prefabs/FloatingRocks1_3 + BasePartId: 7e626d1c-b6a5-4e91-8a1c-5e2d92a77ee9 + InstanceId: 27de48a5-6a78-49c6-b5d8-0f786815573b + - Folder: Background + Entity: + Id: ff38e382-95bc-4373-bde5-256ff0532b72 + Name: FloatingRock2_3 + Components: + 2dd20f6a087b1c11acdfacf28a0ea16d: !TransformComponent + Id: a8c44e1a-ec06-4d95-a021-249c413a40fa + Position*: {X: 18.87529, Y: 4.5, Z: -82.1644} + Rotation*: {X: 0.0, Y: -0.851193368, Z: 0.0, W: 0.524852157} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + da2ee4d13edd8daff07d8952ff3a4dcc: !ModelComponent + Id: b8aedcc8-5aa2-469f-ade8-ca2315ca4db2 + Model: e1555e64-a386-4bc0-93b5-f9d0a4ec9051:Environment/Background/Models/FloatingRock2_3 + Materials: {} + Base: + BasePartAsset: 84e0f4f9-ff6e-40e3-9790-b150bb5dcaee:Environment/Background/Prefabs/FloatingRocks2_3 + BasePartId: 80111dc1-fd93-4f0e-831e-e6232fa142d5 + InstanceId: 14c2a809-bc1b-452f-bd05-807a1a1cff07 diff --git a/Starbreach/Assets/Shared/Levels/Prefabs/Level_1-1_Platform.xkprefab b/Starbreach/Assets/Shared/Levels/Prefabs/Level_1-1_Platform.xkprefab new file mode 100644 index 0000000..33ddcc4 --- /dev/null +++ b/Starbreach/Assets/Shared/Levels/Prefabs/Level_1-1_Platform.xkprefab @@ -0,0 +1,1627 @@ +!PrefabAsset +Id: 9cfcd9eb-ccfd-4878-a92c-eabaaaeba75d +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 8ffc821e-9207-4d84-8d43-7e7f81adc7e6 + - ref!! b1899681-5e9b-478a-9521-2667885a4771 + - ref!! c020b124-c348-4f0d-9d06-f306636c40f2 + - ref!! f0bbf31e-d212-41dd-9695-2dac5b00bffb + - ref!! 04e97bfe-0e9d-4244-ba51-8a055dd91bc7 + - ref!! 60881bc1-c4eb-4817-a729-2b9ab930496a + - ref!! b08b7862-5c3e-4b06-9139-3dec5bf37cc1 + - ref!! dd509fee-8170-4e5f-a9e3-c2915d6930fc + - ref!! 1a8f357e-c527-4d05-b437-1e21f5e14b95 + - ref!! 82ca715e-b545-4311-9ba5-a97b139e4635 + - ref!! 361ee1ae-22fe-4ead-ae5f-7b4037f1d8a4 + - ref!! 97610e23-b36b-416d-8db4-ed16540b6c5d + - ref!! 89001e40-9585-46f8-b412-d728d80d38d2 + - ref!! 60e4cabb-e755-4e18-8b09-4fd004d351d1 + - ref!! e4ad8ee4-1232-4af5-9cbe-bce20e8dee8c + - ref!! 67f40c67-084d-4db9-8155-5e68c72e6591 + - ref!! 0a910195-6435-42c6-8855-9f029a05e08f + - ref!! f96f1c7a-31f4-4e0b-995c-fcab336712a5 + - ref!! 358c0854-2a07-48a4-aded-65560ceb52b2 + - ref!! f8a2cffa-8b21-4438-bc7f-f63af19fc575 + - ref!! 4274594e-7dff-40b5-a826-a3e9a2b39e70 + - ref!! ae98cc53-b1c0-4bc9-9d35-2edf30be8bac + - ref!! b585b21c-7354-4a7b-ad89-29843592a0ed + - ref!! 3b6dd2a6-3fe6-464e-908f-e39692b96312 + - ref!! 7a55fb38-f132-4653-b921-ce202f972678 + - ref!! fb204ef5-72bb-4cb6-9ae6-47f238c90f61 + - ref!! 19dc3583-49a8-4aa6-b929-17c2c08c2629 + - ref!! ab06031b-14b8-463c-8edc-f7c919a26c0f + - ref!! dcfb21bf-808c-4a63-ba09-d5181e337628 + - ref!! b80b3602-8532-41aa-8ec3-057cfc7c6f96 + - ref!! e4d2c854-34fd-4657-9d20-59425dc5a961 + - ref!! 76e4288d-ff20-49ac-b5b6-291ee67d2b4c + - ref!! a6b5498d-4d1c-440a-b869-2506d0b4cc2f + - ref!! 36fe0e9b-e43c-4249-9e14-c8dfe5bb1035 + - ref!! 4cb77329-0111-40bf-b686-8876506c01c3 + - ref!! 23ac5b8b-0ff7-4c9b-be6a-0b11e4909c6a + - ref!! 0d9ad6bd-6b4b-43bf-990f-43882ee58689 + - ref!! b676c128-2b5d-4a51-a0b9-164d6b0c56e9 + - ref!! de847d62-1367-4ef6-b467-49efecaef711 + - ref!! b8c93340-c16a-47d8-874c-a6c61a31e493 + - ref!! 20202c1e-b941-4ff5-92cc-7c8f5d1aa8d8 + - ref!! 98c7fb64-d6f2-40e2-96d1-e40b34d46281 + - ref!! 33155ba0-3885-4f57-b74e-38b2790064c2 + - ref!! cb3cee1e-3066-4eff-991e-8d6f53daca65 + - ref!! 026729b0-3be7-4146-9718-8f7e277e7b39 + - ref!! faef0d0f-1005-4b54-98c9-071ad8886861 + - ref!! dc1b3afd-070b-4b43-a8fe-7f9b945d075c + - ref!! 0c1104e6-094d-4273-bc63-36f7713be5f0 + - ref!! 2698e39c-f6b6-47b1-bb1d-a312c4c2e425 + - ref!! ab052794-107e-4dd1-8989-f80f4bebbc9f + - ref!! 160c7155-4ba9-4649-894d-f582e065f42b + - ref!! e0756393-7ba0-4054-9693-324934f874c3 + - ref!! 55703676-8fe1-4633-a792-6edeaca6c46e + - ref!! 80e1d1bb-2076-4420-adb9-9498a4ff667c + - ref!! a5164d90-c77f-4334-8088-7dea3db63360 + - ref!! 14b7b7b2-f164-4dab-bbc4-6c87ed0d2f68 + - ref!! 861dad92-f02a-4b9e-96de-9e4b401ed3a3 + - ref!! 2725f3ba-f99b-4fd2-bccf-cc9c526725d0 + - ref!! 30a8c8ab-5d53-49be-b6e7-5f7318aa8a2d + - ref!! 010ed35e-20a8-4c49-bf6f-6b0e0cc33b98 + - ref!! eb723d78-7b86-4e5a-a71f-3d48297988cb + - ref!! be90b316-8b65-4b69-a0ec-083bc5dcdaad + - ref!! 099ae7c3-0e12-47fd-bfe0-c966b0c5e3fe + - ref!! e2c0d339-98a6-41f1-81c8-de04368a64d9 + - ref!! aad08869-3de4-4f03-a007-4ef855d7aa90 + - ref!! cfcd83a6-1fd0-4db1-8ad5-6284393ee2c6 + - ref!! d8275911-4062-486f-aa48-2b24084fd002 + - ref!! 6fd4139b-4562-4ed1-9003-6900e32f5218 + - ref!! 204dfb91-c4c1-4ad2-9e97-e469c4850da6 + - ref!! c252d934-2d16-4062-a509-9254f467c440 + - ref!! e158f29d-dfd0-4681-8ff3-0bce264e9d84 + - ref!! 1754630e-94e3-48b1-9af6-2ad520918122 + - ref!! 977cf492-d947-45b5-b808-8ddec78c6467 + - ref!! 74fd40d6-bccb-484d-a856-439b45daf26d + - ref!! ce64eb79-ade9-4db5-b060-c6a7ce717d5f + - ref!! 22443012-3b6e-4bf9-aa37-b8dbe1e2b284 + - ref!! 07404be7-1729-43e9-9670-bd89ead15c2b + - ref!! 32f22371-4005-45b3-a78d-3272118f7556 + - ref!! a6a1d9e1-6e13-4676-adf6-fa4190e908e3 + - ref!! 86f27d69-daf6-4b8c-a3fc-91bd634941c7 + - ref!! ba728bdf-baeb-4d98-b251-f0c3e0bdbd16 + - ref!! 8aceea2d-dde2-44c8-a866-923e65416633 + - ref!! c3277142-a2ca-4e7b-9c18-6388f7a29da7 + - ref!! 07797653-2b98-4fc7-8a6e-d7c77613571f + - ref!! 428c0f22-80cd-4f38-a8a3-cdf8c81417bb + - ref!! 3da9b6bd-46b4-46bb-a38b-0e90d998e98c + - ref!! dda059a3-2940-46fa-a9ec-1eac82bb579d + - ref!! 13c2531c-ff68-427b-b23c-a7396593f266 + - ref!! beb53734-8310-4cf7-8ca5-b96ceb1e0006 + - ref!! 41a7eef1-13ff-49e7-8497-ba1f6fba56de + - ref!! ff2ab5cf-eaf9-4f8d-bb34-df584bfc028d + - ref!! 6b0c74df-96ae-4f70-814b-7f15f9c86372 + - ref!! 5da15f00-07b0-44a4-a90d-9028fcf5e461 + - ref!! c70c590b-2d99-492f-9d23-cd7c5f7753aa + - ref!! 3a37bc35-ba77-49ac-9f97-708de6c8e619 + Parts: + - Folder: Platform + Entity: + Id: 010ed35e-20a8-4c49-bf6f-6b0e0cc33b98 + Name: Cell_Loop (66) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 5078308c-2f6a-482b-bcf3-9cd088356c52 + Position: {X: -5.0, Y: 0.0, Z: -20.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: de38f1a1-7fe8-49ca-93ab-fd0f091aa81f + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 026729b0-3be7-4146-9718-8f7e277e7b39 + Name: Cell_Loop (54) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 5e20af78-0395-45f4-8430-b157aa247382 + Position: {X: 3.0, Y: 0.0, Z: -14.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 5de3a081-a611-4ac3-b95c-c0024440df73 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 04e97bfe-0e9d-4244-ba51-8a055dd91bc7 + Name: Cell_Loop (9) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 31c6bd67-671b-4140-b198-89d7b21c4e77 + Position: {X: -1.0, Y: 0.0, Z: 1.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 685380b3-66d0-4a01-99bb-fa843034df04 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 07404be7-1729-43e9-9670-bd89ead15c2b + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 108601ab-c041-426d-be0b-8134cb0278f6 + Position*: {X: -7.499999, Y: 0.0, Z: -5.0} + Rotation*: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 9b21acc7-dd54-4ffd-8fb9-936279731be7 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 46292255-7e5a-4a26-8b35-7ad249593738 + - Folder: Borders + Entity: + Id: 07797653-2b98-4fc7-8a6e-d7c77613571f + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 6440c625-fdab-4a99-9347-954918c96414 + Position*: {X: 7.499998, Y: 0.0, Z: -14.0} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.37113847E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: cddc5d09-4da2-404d-a871-076ce341f518 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 4bdeabe2-3a59-48b8-ba41-575c23ab5e78 + - Folder: Platform + Entity: + Id: 099ae7c3-0e12-47fd-bfe0-c966b0c5e3fe + Name: Cell_Loop (69) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: bd3f5a93-9cc5-462a-8fec-64d52e185ee3 + Position: {X: 5.0, Y: 0.0, Z: -20.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 923887d9-9c33-43b1-be45-4bf57635c9f8 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 0a910195-6435-42c6-8855-9f029a05e08f + Name: Cell_Loop (22) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 987df867-c962-4c6c-992c-8f6bf9926f89 + Position: {X: 3.0, Y: 0.0, Z: -2.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 86f54f94-7a82-4ae4-b7c3-c1db14bedc0e + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 0c1104e6-094d-4273-bc63-36f7713be5f0 + Name: Cell_Loop (7) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: eb62128d-8193-4af2-b388-cff6a0805805 + Position: {X: 3.0, Y: 0.0, Z: 4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 4f6b92c3-9e07-48dc-87af-ae3a5efca358 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 0d9ad6bd-6b4b-43bf-990f-43882ee58689 + Name: Cell_Loop (45) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 1062d492-3f94-4b28-ac31-d1dcdc068b27 + Position: {X: -7.0, Y: 0.0, Z: -11.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: b5abf199-5ece-42f8-8c07-34f3a2bc3fa2 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 13c2531c-ff68-427b-b23c-a7396593f266 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 4cb79b84-adf7-4c3c-95ed-9d474c4dd346 + Position*: {X: 7.5, Y: 0.0, Z: -1.99999952} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.37113847E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: d134aec2-480d-4884-aac6-f00718f2dce6 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: a1e45a80-266c-4b97-afee-7d7e5a1e22a4 + - Folder: Platform + Entity: + Id: 14b7b7b2-f164-4dab-bbc4-6c87ed0d2f68 + Name: Cell_Loop (62) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 8fb9b82b-bf78-4f70-b799-839c7f636e0b + Position: {X: 5.0, Y: 0.0, Z: -17.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: ab8c20fd-9d80-4871-8d2c-cbad67ab0c1f + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 160c7155-4ba9-4649-894d-f582e065f42b + Name: Cell_Loop (57) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 35aae8da-6ad0-4c83-b46a-73a90a74f70a + Position: {X: 1.0, Y: 0.0, Z: -17.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: dc47b76b-a9aa-45d9-a13a-1b309e54a499 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 1754630e-94e3-48b1-9af6-2ad520918122 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 4b819d28-69ae-4d02-a67d-ea3ce82d3bbe + Position*: {X: -7.500002, Y: 0.0, Z: -20.0} + Rotation*: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: a231f68a-207f-47ee-84a2-0493fadc3618 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 7b7610de-fa54-4fcd-a7d3-5a594f924529 + - Folder: Platform + Entity: + Id: 19dc3583-49a8-4aa6-b929-17c2c08c2629 + Name: Cell_Loop (34) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: ee6348fb-2ed5-49aa-984d-e7f4154f0180 + Position: {X: 1.0, Y: 0.0, Z: -8.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 31aa6894-4707-48ea-a224-a89ecb1686ad + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 1a8f357e-c527-4d05-b437-1e21f5e14b95 + Name: Cell_Loop (13) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 2b53622a-27a2-4469-aae6-c49d58b92ada + Position: {X: -7.0, Y: 0.0, Z: 1.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: b108d411-848e-4986-b33c-69b6ae2c582b + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 20202c1e-b941-4ff5-92cc-7c8f5d1aa8d8 + Name: Cell_Loop (50) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 868875c3-30a0-448b-a00e-3e58b5342ca6 + Position: {X: 1.0, Y: 0.0, Z: -14.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: d898cf13-4ee9-4d00-9b92-83112739f00e + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 204dfb91-c4c1-4ad2-9e97-e469c4850da6 + Name: Cell_Loop (75) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 3990325c-c4e5-4bb1-ab81-c4b4bfc07096 + Position: {X: 1.0, Y: 0.0, Z: -23.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 045d9ee7-6852-46fd-9c6f-e0e8b1062db6 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 22443012-3b6e-4bf9-aa37-b8dbe1e2b284 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 3398c25c-5188-4db2-b907-1e21cd41c8c9 + Position*: {X: -7.5, Y: 0.0, Z: -8.0} + Rotation*: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: f3f838e5-4a74-4ade-9beb-1230cefe0902 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 02dcc4a4-b15e-4ff6-99ea-878f81955823 + - Folder: Platform + Entity: + Id: 23ac5b8b-0ff7-4c9b-be6a-0b11e4909c6a + Name: Cell_Loop (44) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 46ab4f03-696f-4b56-b0cc-d5c637ad3d6f + Position: {X: -5.0, Y: 0.0, Z: -11.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: facbce26-9881-4703-9f7e-80acf7afccce + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 2698e39c-f6b6-47b1-bb1d-a312c4c2e425 + Name: Cell_Loop (8) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 17fe969d-4591-49bb-8c9b-7a21888d69a8 + Position: {X: 5.0, Y: 0.0, Z: 4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: e4330317-883d-4ada-a187-479d7b254b64 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 2725f3ba-f99b-4fd2-bccf-cc9c526725d0 + Name: Cell_Loop (64) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 5211cabb-6216-4bd3-8269-bd3ba9cd7d32 + Position: {X: 1.0, Y: 0.0, Z: -20.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: ade497ac-03df-424a-8c0e-8634527a1fb4 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 30a8c8ab-5d53-49be-b6e7-5f7318aa8a2d + Name: Cell_Loop (65) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 80921364-22bb-4274-ba1b-67078e11e9b0 + Position: {X: -3.0, Y: 0.0, Z: -20.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 9d236fc0-bd86-461b-9194-f6d0559088e3 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 32f22371-4005-45b3-a78d-3272118f7556 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: cb7888ea-4452-4a4b-911a-53f278453af5 + Position*: {X: -7.499998, Y: 0.0, Z: -1.99999952} + Rotation*: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 911c2e8c-e203-4cba-b799-74d583afd010 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 458b2094-b47e-45f2-9570-8035196db513 + - Folder: Platform + Entity: + Id: 33155ba0-3885-4f57-b74e-38b2790064c2 + Name: Cell_Loop (52) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: e32ae3ee-29af-4027-96e9-9a7f40a3f1ec + Position: {X: -5.0, Y: 0.0, Z: -14.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: b4006351-f792-4200-9fe5-d0128223bf8e + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 358c0854-2a07-48a4-aded-65560ceb52b2 + Name: Cell_Loop (25) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 5923c9b3-426b-40c1-b8ef-ede0b2971937 + Position: {X: -1.0, Y: 0.0, Z: -5.00000048} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 1a153626-5cd7-4d3b-8b86-2e8e7fb44eb9 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 361ee1ae-22fe-4ead-ae5f-7b4037f1d8a4 + Name: Cell_Loop (15) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 2091d3e9-403f-408e-bff8-fed9fcb2fe37 + Position: {X: 5.0, Y: 0.0, Z: 1.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: d8cd95a0-07f9-4bd0-b0a5-fa74db006ee7 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 36fe0e9b-e43c-4249-9e14-c8dfe5bb1035 + Name: Cell_Loop (42) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: aa24bee2-a5c3-4379-8c45-1a1029d6d760 + Position: {X: 1.0, Y: 0.0, Z: -11.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 770dcf86-ade2-4254-9a61-6cbbc7e7f259 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 3a37bc35-ba77-49ac-9f97-708de6c8e619 + Name: Border_in_corner_90 + Components: + 8dd5441a9e0f7cc9cdac7e64be0bcc32: !TransformComponent + Id: 1b317662-a8ff-49ad-bc68-ed13825d4d8c + Position*: {X: 4.5, Y: 0.0, Z: -25.9999981} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 21e6c7c4ce05ff264d998193015bbbbe: !ModelComponent + Id: 53ff143b-8f73-446f-913e-e184eb6784e1 + Model: 1c9753bc-679d-4677-8f9f-9c88dd878d10:Environment/Platforms/Models/Border_in_corner_90 + Materials: {} + Base: + BasePartAsset: 21ebc8de-2500-440f-9e0f-d399cc3e5896:Environment/Platforms/Prefabs/Border_corner_in + BasePartId: 4bb90be4-e7c6-4e5e-b845-2c84f915a3d9 + InstanceId: 65c795c2-4874-42de-af19-4d58526f1525 + - Folder: Platform + Entity: + Id: 3b6dd2a6-3fe6-464e-908f-e39692b96312 + Name: Cell_Loop (30) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: bacd650a-d767-4bd1-9106-fbb2daa0e428 + Position: {X: 3.0, Y: 0.0, Z: -5.00000048} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 04081a35-299b-4c71-84a0-44f6c13fb14f + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 3da9b6bd-46b4-46bb-a38b-0e90d998e98c + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 05d15549-a3dc-48ca-86cf-cf7892e14ddb + Position*: {X: 7.499999, Y: 0.0, Z: -8.0} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.37113847E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 36441778-897a-4a7a-b572-fa6667ae256e + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: a14c702d-ab65-427f-9c78-83c3936e9c0f + - Folder: Borders + Entity: + Id: 41a7eef1-13ff-49e7-8497-ba1f6fba56de + Name: Border_out_corner_90 + Components: + b923f0caab27e8703f9f8ee1a8dd1d18: !TransformComponent + Id: eb1f7db1-b009-45d5-809f-697574fd8a47 + Position*: {X: 7.5, Y: 0.0, Z: 4.0} + Rotation*: {X: 0.0, Y: 0.7071067, Z: 0.0, W: 0.7071068} + Scale*: {X: 0.99999994, Y: 1.0, Z: 0.99999994} + Children: {} + 6098c87ff6246e074f03b48bd2941bf8: !ModelComponent + Id: 5d30085c-f624-4289-a7b1-7da0e5156084 + Model: e2199908-ce19-4e35-843e-6ade71089032:Environment/Platforms/Models/Border_out_corner_90 + Materials: {} + Base: + BasePartAsset: efe073eb-d2bd-4eb9-a065-4a103cc52d7c:Environment/Platforms/Prefabs/Border_corner_out + BasePartId: a08bbac9-bc4d-404a-84b2-5093fedf0e77 + InstanceId: 5a3803e2-b919-4704-99e1-3f3a8d944d84 + - Folder: Platform + Entity: + Id: 4274594e-7dff-40b5-a826-a3e9a2b39e70 + Name: Cell_Loop (27) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 400798cf-a344-445e-9501-5ee929f582ea + Position: {X: -3.0, Y: 0.0, Z: -5.00000048} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 6ae52cf1-9253-4123-b68a-36639a4540a0 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 428c0f22-80cd-4f38-a8a3-cdf8c81417bb + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: c209ed56-1776-4254-a091-f4f2eb6e8391 + Position*: {X: 7.49999857, Y: 0.0, Z: -11.0} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.37113847E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 45365346-10de-4cd2-84d3-6f5e49058692 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 4e65490a-159c-4cc1-ae5f-55f2be3e743c + - Folder: Platform + Entity: + Id: 4cb77329-0111-40bf-b686-8876506c01c3 + Name: Cell_Loop (43) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: c2f325e5-7d35-45a3-9a7b-e7c57afd897a + Position: {X: -3.0, Y: 0.0, Z: -11.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: d82963ed-ea35-4f4f-b358-886a714f459c + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 55703676-8fe1-4633-a792-6edeaca6c46e + Name: Cell_Loop (59) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 8254ce91-d246-4350-8ddd-613f9f7003f8 + Position: {X: -5.0, Y: 0.0, Z: -17.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: bd405eee-f8ac-4dee-b132-ed146ec2ae58 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 5da15f00-07b0-44a4-a90d-9028fcf5e461 + Name: Border_out_corner_90 + Components: + b923f0caab27e8703f9f8ee1a8dd1d18: !TransformComponent + Id: 661d69b3-cf32-4ad3-85da-16394188320c + Position*: {X: -7.5, Y: 0.0, Z: 4.0} + Rotation*: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6098c87ff6246e074f03b48bd2941bf8: !ModelComponent + Id: 042d1343-9ffd-48d6-8acb-1c19a3ddf00e + Model: e2199908-ce19-4e35-843e-6ade71089032:Environment/Platforms/Models/Border_out_corner_90 + Materials: {} + Base: + BasePartAsset: efe073eb-d2bd-4eb9-a065-4a103cc52d7c:Environment/Platforms/Prefabs/Border_corner_out + BasePartId: a08bbac9-bc4d-404a-84b2-5093fedf0e77 + InstanceId: 3c32eb72-1812-453d-bced-fe3178925f3f + - Folder: Platform + Entity: + Id: 60881bc1-c4eb-4817-a729-2b9ab930496a + Name: Cell_Loop (10) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 5447753e-35fc-4a5e-a3b1-5b0641ae22c9 + Position: {X: 1.0, Y: 0.0, Z: 1.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 42e8b786-4c36-433a-a847-d13a2272132c + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 60e4cabb-e755-4e18-8b09-4fd004d351d1 + Name: Cell_Loop (19) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 00802eb5-b476-4a84-b130-20267c85ce0c + Position: {X: -3.0, Y: 0.0, Z: -2.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 8df4a31b-2a99-4949-9afa-c3c766f19dcd + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 67f40c67-084d-4db9-8155-5e68c72e6591 + Name: Cell_Loop (21) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 4a35c3b5-a3ad-4b38-b6dd-03e67be98c17 + Position: {X: -7.0, Y: 0.0, Z: -2.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: cc6431d5-4f74-4b1c-8f36-86c1dbccad6d + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 6b0c74df-96ae-4f70-814b-7f15f9c86372 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 71324cc6-9f3f-4908-a6dc-2f30e35baab6 + Position*: {X: -1.50000012, Y: 0.0, Z: 4.0} + Rotation*: {X: 0.0, Y: 0.7071067, Z: 0.0, W: 0.7071068} + Scale*: {X: 0.99999994, Y: 0.99999994, Z: 1.49999988} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: ef7da1d6-f776-4619-a1fe-65c0c1c0b177 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 47ad774f-4f57-44b9-be2b-5fefc83460ce + - Folder: Platform + Entity: + Id: 6fd4139b-4562-4ed1-9003-6900e32f5218 + Name: Cell_Loop (74) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 87d74b29-551f-4024-8005-31769e4583df + Position: {X: -3.0, Y: 0.0, Z: -23.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: fa5c342d-4a29-4ca6-928f-4a2ade22f4d5 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 74fd40d6-bccb-484d-a856-439b45daf26d + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 4e860630-f372-42ae-977b-e58c518d042e + Position*: {X: -7.5, Y: 0.0, Z: -14.0} + Rotation*: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: d75f947c-6509-4879-a488-86ba7adfef24 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: b44e0e51-ae5d-4038-84b5-8a3824fe2ca3 + - Folder: Platform + Entity: + Id: 76e4288d-ff20-49ac-b5b6-291ee67d2b4c + Name: Cell_Loop (39) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: bb349f21-8c62-45f9-aa5b-91e81b04fdfe + Position: {X: 5.0, Y: 0.0, Z: -8.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 9bbdfd46-5659-4f9d-9bd1-f583e69bf893 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 7a55fb38-f132-4653-b921-ce202f972678 + Name: Cell_Loop (31) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 92f269fb-d214-49ff-9da6-40640b1dfdea + Position: {X: 5.0, Y: 0.0, Z: -5.00000048} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: c284c5f1-a865-45f8-9fff-14cf4c6217ad + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 80e1d1bb-2076-4420-adb9-9498a4ff667c + Name: Cell_Loop (60) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: c9863575-2798-4cbd-8b83-adc0e81a4050 + Position: {X: -7.0, Y: 0.0, Z: -17.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: e689b08c-8fe4-4bec-aaf5-b8d24234d6f0 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 82ca715e-b545-4311-9ba5-a97b139e4635 + Name: Cell_Loop (14) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 23b59a32-9ef4-4094-bd00-4680e427f7e8 + Position: {X: 3.0, Y: 0.0, Z: 1.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 7152cd52-4bdb-4df7-9102-7ab1cf6a0604 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 861dad92-f02a-4b9e-96de-9e4b401ed3a3 + Name: Cell_Loop (63) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 75047eb5-4e7d-459e-a9a2-63689db0da2e + Position: {X: -1.0, Y: 0.0, Z: -20.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 6d491daf-3af7-40fa-aa2f-d57be86e1b69 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 86f27d69-daf6-4b8c-a3fc-91bd634941c7 + Name: Border_out_corner_90 + Components: + b923f0caab27e8703f9f8ee1a8dd1d18: !TransformComponent + Id: cce4159f-61bf-4d1c-a0f5-28f521deae1c + Position*: {X: 7.500002, Y: 0.0, Z: -25.9999981} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: 0.0} + Scale*: {X: 0.999999762, Y: 1.0, Z: 0.999999762} + Children: {} + 6098c87ff6246e074f03b48bd2941bf8: !ModelComponent + Id: 48d99237-380d-4403-82e7-71424d70c2a2 + Model: e2199908-ce19-4e35-843e-6ade71089032:Environment/Platforms/Models/Border_out_corner_90 + Materials: {} + Base: + BasePartAsset: efe073eb-d2bd-4eb9-a065-4a103cc52d7c:Environment/Platforms/Prefabs/Border_corner_out + BasePartId: a08bbac9-bc4d-404a-84b2-5093fedf0e77 + InstanceId: 151315ff-dca7-497f-8e7b-fe821632ad4d + - Folder: Platform + Entity: + Id: 89001e40-9585-46f8-b412-d728d80d38d2 + Name: Cell_Loop (18) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 04f2a304-51a2-4975-a5df-0a62924f4cfd + Position: {X: 1.0, Y: 0.0, Z: -2.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: f1651168-8956-41f6-8a3d-b607acdce308 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 8aceea2d-dde2-44c8-a866-923e65416633 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 4d14be4d-dd28-4edb-b3be-51883e4b84a5 + Position*: {X: 7.499997, Y: 0.0, Z: -20.0} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.37113847E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 55d804bb-170f-45a8-b8c7-2a7a5b9bd3d6 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 87fb211d-5522-42f3-998f-fa762e5ffe62 + - Folder: Platform + Entity: + Id: 8ffc821e-9207-4d84-8d43-7e7f81adc7e6 + Name: Cell_Loop + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 4b0fac4b-2457-4403-8962-4fe5cfacf2f3 + Position: {X: -1.0, Y: 0.0, Z: 4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: e74718a3-9608-46a4-8d4c-60ff16ee3c18 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 97610e23-b36b-416d-8db4-ed16540b6c5d + Name: Cell_Loop (17) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 7c114ff0-c778-488e-a462-537b1dfa681b + Position: {X: -1.0, Y: 0.0, Z: -2.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 6f0fbea3-09d5-4d50-9585-926081e032fd + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 977cf492-d947-45b5-b808-8ddec78c6467 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 1513330f-f09a-4053-b6ea-73147b51c73a + Position*: {X: -7.500001, Y: 0.0, Z: -17.0} + Rotation*: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 4e9260bc-74e0-43fe-b6a3-7cd11845525a + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 91bfddc2-eb64-46e6-bca3-700869143dd0 + - Folder: Platform + Entity: + Id: 98c7fb64-d6f2-40e2-96d1-e40b34d46281 + Name: Cell_Loop (51) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: b34062e0-af8c-48d5-8fdc-da348c04da42 + Position: {X: -3.0, Y: 0.0, Z: -14.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: a048ce36-7341-4213-b8b8-96f2b16421d7 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: a5164d90-c77f-4334-8088-7dea3db63360 + Name: Cell_Loop (61) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 10bdc82a-fe37-49af-8afd-bc5a73d82a53 + Position: {X: 3.0, Y: 0.0, Z: -17.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: da06a142-02a9-4fb3-a397-3c7a960a1eb6 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: a6a1d9e1-6e13-4676-adf6-fa4190e908e3 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 5a84eb38-acc2-4f04-9bac-306cc652cac3 + Position*: {X: -7.499998, Y: 0.0, Z: 1.00000048} + Rotation*: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 73d30af6-3f08-4cc5-a63a-0a84c6feaebb + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: fbc11aa5-0e0c-40b7-b6b5-692522459fd0 + - Folder: Platform + Entity: + Id: a6b5498d-4d1c-440a-b869-2506d0b4cc2f + Name: Cell_Loop (41) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: caa5ce25-a807-4df2-8d5a-e87ff1788da6 + Position: {X: -1.0, Y: 0.0, Z: -11.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: d7619560-e713-4cd5-881f-dab6562ecb27 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: aad08869-3de4-4f03-a007-4ef855d7aa90 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 241eae2d-afe9-420c-a572-7c9e8fa8ad17 + Position: {X: 3.0, Y: 0.0, Z: -23.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 11d92c89-3044-4d2a-a366-dafd5520ae1b + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: ab052794-107e-4dd1-8989-f80f4bebbc9f + Name: Cell_Loop (56) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 527e520c-bc79-4903-83a1-35e3ba2b7600 + Position: {X: -1.0, Y: 0.0, Z: -17.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: c1887cb6-6296-4cfb-b1e7-7889dc63abd5 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: ab06031b-14b8-463c-8edc-f7c919a26c0f + Name: Cell_Loop (35) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: c4de32e5-5bda-491a-a044-b9a820aaa7a4 + Position: {X: -3.0, Y: 0.0, Z: -8.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 9c183327-66d4-4c3a-84df-50798ca831a0 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: ae98cc53-b1c0-4bc9-9d35-2edf30be8bac + Name: Cell_Loop (28) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: bbbd52da-f89f-4c7b-aa79-c34a7b301903 + Position: {X: -5.0, Y: 0.0, Z: -5.00000048} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 2000740f-3b5f-44c0-b86e-8507a181ab1c + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: b08b7862-5c3e-4b06-9139-3dec5bf37cc1 + Name: Cell_Loop (11) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 8a8a467d-bf89-4c34-9585-950140b3a96e + Position: {X: -3.0, Y: 0.0, Z: 1.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 0e22e62f-bb4d-445f-bf27-2da32ead6687 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: b1899681-5e9b-478a-9521-2667885a4771 + Name: Cell_Loop (3) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 93b611d6-6def-439a-aa25-3758b5bb037a + Position: {X: -3.0, Y: 0.0, Z: 4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: a13f2868-d7cb-414f-ac6b-f1dcf0bbf0f6 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: b585b21c-7354-4a7b-ad89-29843592a0ed + Name: Cell_Loop (29) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 0cf7f4a9-d902-4ede-aeae-c7b2244800a2 + Position: {X: -7.0, Y: 0.0, Z: -5.00000048} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 162c1b22-ed07-46ae-a808-190dec946189 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: b676c128-2b5d-4a51-a0b9-164d6b0c56e9 + Name: Cell_Loop (46) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 7ec94ce8-e17e-4ff9-bb00-cbf523f38f21 + Position: {X: 3.0, Y: 0.0, Z: -11.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 0f7bcacf-fea8-4de2-bc43-099dc45edad5 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: b80b3602-8532-41aa-8ec3-057cfc7c6f96 + Name: Cell_Loop (37) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 73a673ca-9ccb-4fa9-be0e-0d50abd69d17 + Position: {X: -7.0, Y: 0.0, Z: -8.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: f1c4f3e7-8b90-470c-a069-f3785a4afa97 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: b8c93340-c16a-47d8-874c-a6c61a31e493 + Name: Cell_Loop (49) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: db6872f7-47f1-4d84-8073-efcd992a49e0 + Position: {X: -1.0, Y: 0.0, Z: -14.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 2efef466-9a4b-440a-b7cc-6d2970153fd0 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: ba728bdf-baeb-4d98-b251-f0c3e0bdbd16 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 24e8fec5-1815-4e6b-84c6-9fe77e87ffa3 + Position*: {X: 7.49999666, Y: 0.0, Z: -23.0} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.37113847E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: e65dba1f-b491-4132-bfa2-262a69c835a9 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: a018bdde-0378-492f-86c9-55dde9ea6302 + - Folder: Platform + Entity: + Id: be90b316-8b65-4b69-a0ec-083bc5dcdaad + Name: Cell_Loop (68) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 488bf018-fa75-4e35-a84d-0debb5c9cb9a + Position: {X: 3.0, Y: 0.0, Z: -20.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 4c732c59-d1e8-4f3d-a487-2d12c81fcded + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: beb53734-8310-4cf7-8ca5-b96ceb1e0006 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: b9dda194-ef44-40d1-b190-cc5da66edbef + Position*: {X: 4.5, Y: 0.0, Z: 4.0} + Rotation*: {X: 0.0, Y: 0.7071067, Z: 0.0, W: 0.7071068} + Scale*: {X: 0.99999994, Y: 0.99999994, Z: 1.49999988} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 2fd182bc-6fd7-4b2c-8860-4ccbd2827b46 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 17650e05-79fc-418d-8935-7c2d8ad127cc + - Folder: Platform + Entity: + Id: c020b124-c348-4f0d-9d06-f306636c40f2 + Name: Cell_Loop (4) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 8ca51961-94ab-49d1-99e6-408663b6e591 + Position: {X: -5.0, Y: 0.0, Z: 4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: f8bdabe9-d7fe-46d1-9020-ddae8406c2a2 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: c252d934-2d16-4062-a509-9254f467c440 + Name: Cell_Loop (76) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 678fc59b-57ca-4e64-9c5d-a830c28432c1 + Position: {X: -1.0, Y: 0.0, Z: -23.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: ce801028-2fc7-4b08-b36f-c6b03ce08988 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: c3277142-a2ca-4e7b-9c18-6388f7a29da7 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: b25f8b7e-1514-4c4d-a1c3-6ef1fcc160db + Position*: {X: 7.49999762, Y: 0.0, Z: -17.0} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.37113847E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 4fdd1820-0bdc-4408-9c2e-f8ca97ebcfca + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: bf095d6e-132d-4d6f-a7dc-e249b08aff82 + - Folder: Borders + Entity: + Id: c70c590b-2d99-492f-9d23-cd7c5f7753aa + Name: Border_in_corner_90 + Components: + 8dd5441a9e0f7cc9cdac7e64be0bcc32: !TransformComponent + Id: 40f0f552-58a7-4f2b-986f-f82ae28d749d + Position*: {X: -3.49999976, Y: 0.0, Z: -27.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 21e6c7c4ce05ff264d998193015bbbbe: !ModelComponent + Id: 60f51542-4040-40dd-8cc2-f5e303b8d782 + Model: 1c9753bc-679d-4677-8f9f-9c88dd878d10:Environment/Platforms/Models/Border_in_corner_90 + Materials: {} + Base: + BasePartAsset: 21ebc8de-2500-440f-9e0f-d399cc3e5896:Environment/Platforms/Prefabs/Border_corner_in + BasePartId: 4bb90be4-e7c6-4e5e-b845-2c84f915a3d9 + InstanceId: bef4ccc0-cff9-4098-85d8-937cb01f277e + - Folder: Platform + Entity: + Id: cb3cee1e-3066-4eff-991e-8d6f53daca65 + Name: Cell_Loop (53) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 7d9c8acb-41d5-443b-bed1-543e2ff30aab + Position: {X: -7.0, Y: 0.0, Z: -14.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 784d8d73-54be-4d60-891c-47284c9ec547 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: ce64eb79-ade9-4db5-b060-c6a7ce717d5f + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 90f850c7-55a3-45b0-9ffa-63c14120ecdb + Position*: {X: -7.5, Y: 0.0, Z: -11.0} + Rotation*: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 803c6842-d35b-4fb5-839b-2053f8574f8f + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: e85af4f9-3c59-4147-8ebf-b2eca8d3f124 + - Folder: Platform + Entity: + Id: cfcd83a6-1fd0-4db1-8ad5-6284393ee2c6 + Name: Cell_Loop (72) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 444120eb-1035-4081-995a-a9944066b46a + Position: {X: -7.0, Y: 0.0, Z: -23.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 47d3935a-b51e-4ce9-b5c9-7c7a711c5b90 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: d8275911-4062-486f-aa48-2b24084fd002 + Name: Cell_Loop (73) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: e277bdf0-cb63-470c-accf-ae12e7655d91 + Position: {X: -5.0, Y: 0.0, Z: -23.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 83d59b23-5f05-47e2-b463-413b0d995762 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: dc1b3afd-070b-4b43-a8fe-7f9b945d075c + Name: Cell_Loop (6) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: eee47dd4-52b6-496c-b60c-06784b7c27ff + Position: {X: 1.0, Y: 0.0, Z: 4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 8538135a-c539-49ca-8863-43393f9098b0 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: dcfb21bf-808c-4a63-ba09-d5181e337628 + Name: Cell_Loop (36) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 3b0049a9-43a8-4135-9ed2-3333359e89c0 + Position: {X: -5.0, Y: 0.0, Z: -8.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: acf8268a-53ef-4135-9df3-4a45be001906 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: dd509fee-8170-4e5f-a9e3-c2915d6930fc + Name: Cell_Loop (12) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: ebdcb0f6-1b6d-4753-8aae-6562eef4a670 + Position: {X: -5.0, Y: 0.0, Z: 1.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 29402011-1bdb-40f1-aa98-5561d4c31366 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: dda059a3-2940-46fa-a9ec-1eac82bb579d + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 5c29129a-e105-48e4-ba27-8641dde21373 + Position*: {X: 7.49999952, Y: 0.0, Z: -4.99999952} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.37113847E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 2bad03a5-dbb0-4f31-86b6-05cca022f839 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 557b9b9a-6a7a-40fd-960d-6f0af8275824 + - Folder: Platform + Entity: + Id: de847d62-1367-4ef6-b467-49efecaef711 + Name: Cell_Loop (47) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 7a53a03a-15d8-40ab-aaba-3846fd1363a1 + Position: {X: 5.0, Y: 0.0, Z: -11.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 711e539d-79dc-4c1a-9913-002407d34721 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: e0756393-7ba0-4054-9693-324934f874c3 + Name: Cell_Loop (58) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 6ea4ef97-308c-4833-8785-f40b7f9e7b41 + Position: {X: -3.0, Y: 0.0, Z: -17.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 2d2ed6a0-f616-4daf-8de6-96e13cea512a + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: e158f29d-dfd0-4681-8ff3-0bce264e9d84 + Name: Border_out_corner_90 + Components: + b923f0caab27e8703f9f8ee1a8dd1d18: !TransformComponent + Id: 897fef29-7705-4669-883e-e77301cdb536 + Position*: {X: -7.499998, Y: 0.0, Z: -25.9999981} + Rotation*: {X: 0.0, Y: -0.7071067, Z: 0.0, W: 0.7071068} + Scale*: {X: 0.99999994, Y: 1.0, Z: 0.99999994} + Children: {} + 6098c87ff6246e074f03b48bd2941bf8: !ModelComponent + Id: 8307b68e-b07c-4a9f-9286-d6d99012ae71 + Model: e2199908-ce19-4e35-843e-6ade71089032:Environment/Platforms/Models/Border_out_corner_90 + Materials: {} + Base: + BasePartAsset: efe073eb-d2bd-4eb9-a065-4a103cc52d7c:Environment/Platforms/Prefabs/Border_corner_out + BasePartId: a08bbac9-bc4d-404a-84b2-5093fedf0e77 + InstanceId: 8a238ebe-37e5-4317-9079-54a6d805f0b5 + - Folder: Platform + Entity: + Id: e2c0d339-98a6-41f1-81c8-de04368a64d9 + Name: Cell_Loop (70) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 0eeec3c2-3dd4-49e2-87c4-91f9984f86d8 + Position: {X: 5.0, Y: 0.0, Z: -23.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: b3dc85d1-5d7a-415b-bbc2-218969e7548d + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: e4ad8ee4-1232-4af5-9cbe-bce20e8dee8c + Name: Cell_Loop (20) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: f32c9c3a-f601-45e5-aaf5-2e76f6409ade + Position: {X: -5.0, Y: 0.0, Z: -2.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: e011ff76-1858-4245-916a-edbb3530f07c + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: e4d2c854-34fd-4657-9d20-59425dc5a961 + Name: Cell_Loop (38) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 7c64475c-6835-45d4-bebe-55b2b5eafde1 + Position: {X: 3.0, Y: 0.0, Z: -8.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: b3a008bb-fd73-47e0-833b-fc3c7c511218 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: eb723d78-7b86-4e5a-a71f-3d48297988cb + Name: Cell_Loop (67) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: bb9b05ac-7bfc-4c90-8f4f-f7946a94afd4 + Position: {X: -7.0, Y: 0.0, Z: -20.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 5ba3d551-4ee0-4867-aaf2-42abc10b91fd + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: f0bbf31e-d212-41dd-9695-2dac5b00bffb + Name: Cell_Loop (5) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: c2b463f0-fdd1-4dc9-91df-c880b180ce57 + Position: {X: -7.0, Y: 0.0, Z: 4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 961bc889-c12f-46e5-b6ac-42139068fe61 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: f8a2cffa-8b21-4438-bc7f-f63af19fc575 + Name: Cell_Loop (26) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 6b3e92ac-12a5-429b-8b0c-3b3f539114b4 + Position: {X: 1.0, Y: 0.0, Z: -5.00000048} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: bf157fba-27ea-4f84-9baa-09b4ecfe6d9a + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: f96f1c7a-31f4-4e0b-995c-fcab336712a5 + Name: Cell_Loop (23) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 2dc04f25-3e3f-4acb-b6ee-ef8ec0f0fc8f + Position*: {X: 5.0, Y: 0.0, Z: -2.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: ed58797c-95df-4676-a416-00bacebbde5d + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: faef0d0f-1005-4b54-98c9-071ad8886861 + Name: Cell_Loop (55) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 676cfdf6-8e78-4d23-a71d-beedc8161324 + Position: {X: 5.0, Y: 0.0, Z: -14.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: b81f2567-35d6-4dee-bd3d-f3c1fc7d8dd1 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: fb204ef5-72bb-4cb6-9ae6-47f238c90f61 + Name: Cell_Loop (33) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: fa07f9f3-98e7-42ea-8d82-0867e1c208e7 + Position: {X: -1.0, Y: 0.0, Z: -8.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 9c14020d-7f70-43f4-acb7-de8e763a8240 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: ff2ab5cf-eaf9-4f8d-bb34-df584bfc028d + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 64126464-0b42-4b5d-8fe6-e5bdd36f03d9 + Position*: {X: 1.49999988, Y: 0.0, Z: 4.0} + Rotation*: {X: 0.0, Y: 0.7071067, Z: 0.0, W: 0.7071068} + Scale*: {X: 0.99999994, Y: 0.99999994, Z: 1.49999988} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 109378a1-a1bd-482d-9bc3-374ba5f07e2f + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 8cba7009-3112-4fd6-a74f-30f74e98774c diff --git a/Starbreach/Assets/Shared/Levels/Prefabs/Level_1-1_PlatformRocks.xkprefab b/Starbreach/Assets/Shared/Levels/Prefabs/Level_1-1_PlatformRocks.xkprefab new file mode 100644 index 0000000..aaffe51 --- /dev/null +++ b/Starbreach/Assets/Shared/Levels/Prefabs/Level_1-1_PlatformRocks.xkprefab @@ -0,0 +1,935 @@ +!PrefabAsset +Id: 45b47313-a4c8-46a9-83ef-2a5cda23ebf1 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 5a470dc9-eb02-408c-9ca0-a3f9262adaee + - ref!! 0213aa0d-2cf3-4691-9232-4f8981f8b47f + - ref!! 238c60ba-a19d-48c5-9e28-c50f5dc6a632 + - ref!! b4bb02fb-d7f3-4726-94f2-acd7a739c5cf + - ref!! 9c19b36a-c9e2-4963-926c-86b884e9325f + - ref!! b894229b-66cd-4a08-9589-1a55cd8d17f7 + - ref!! 366b0ad4-958e-4c89-a25a-25aef9f65fc8 + - ref!! 7131b32b-6ead-4b19-88cf-b8e9b560eb5b + - ref!! 05322473-e674-4a5b-8a5a-615304e3858c + - ref!! c89a429b-eee5-4da1-9764-9248bc108d19 + - ref!! b9cef189-0599-4343-b79d-6f6fcf12c35b + - ref!! 66d14fee-7dad-4f90-8799-3b9e6ff3f24f + - ref!! e82d5acb-afe2-41d5-9fc9-d311c2fc3b52 + - ref!! 791da74a-12df-44ae-8d1c-231aeca02f8e + - ref!! 793cb3a8-6928-4aa0-8dd5-e5f4d2197163 + - ref!! 1d76795d-d42e-4e72-afed-fce915ec21de + - ref!! ad5025b1-5e05-4df2-a54c-e8cb93397038 + - ref!! 3dabb0e9-3952-4931-b59a-5dfa02653707 + - ref!! 216aa8fc-d6c7-4631-b68f-6b097aa8a1a2 + - ref!! 4e0332ed-9df2-4bcb-888f-b55e321f51e8 + - ref!! 5a6e48da-710e-4f54-bd0d-904282b6bc94 + - ref!! 66e708c2-530c-4cb2-be23-13c09bc76069 + - ref!! a5c17fdf-1899-4dbf-bd2c-3f6222042bfe + - ref!! efcbb515-a977-4d05-b9ba-4ef14e2bd92c + - ref!! 569d25d7-4026-453f-8128-f3b8f6f702d5 + - ref!! 74af9c07-70cf-4690-adcc-702e1bd16e67 + - ref!! 7308c154-68cc-4672-bcd0-ee0a21848512 + - ref!! 8a1a571d-a97c-4ff0-98bf-d39ad37a02e6 + - ref!! 6e6574a9-828f-4b70-863c-891cca8a3f4b + - ref!! 5e2341bf-ca95-4da6-b63e-7fbc0cba6da1 + - ref!! dda9adda-7f6d-4d9f-9b53-679a1233ea66 + - ref!! c262a6e7-cd35-4ee5-b4fa-f8b1d7285255 + - ref!! dd516b87-3bba-4293-99bc-cd48008943d9 + - ref!! 5798e7db-3eeb-4733-b8a0-5038b6cd291d + - ref!! dd2b12bd-5f67-4dd1-aec1-618f8e0ce410 + - ref!! 377ffdf0-ea78-464a-85e5-800f08816350 + - ref!! 05047a1c-ca27-4214-8169-7ff28f3c6c11 + - ref!! 166914ee-c972-4d37-9faa-6264f4634ea6 + - ref!! 9a4d4beb-a66f-410b-b9e9-1334c3c52f41 + - ref!! e1e69d43-6736-426b-8e38-9275670ca567 + - ref!! d7eaa454-f6a4-41f8-8e18-5508365a04a0 + - ref!! 6aedea1b-498c-4004-a223-78ab95e73256 + - ref!! 1e0b423a-1fc6-4d91-8c56-d0dda2872b7a + - ref!! fa06742c-b45b-464b-bfc1-2da901cfd7d4 + - ref!! 4e57d2d6-d370-4f60-94f1-31691fdfff70 + - ref!! 8b5c788f-bf44-46c7-8fe8-41284bd0d526 + - ref!! 0aa46795-1cb1-4525-8957-5c232a1ca769 + - ref!! 601c75f4-5cf9-416d-8a4d-e0eda5939ea1 + - ref!! c9aba1e7-d184-4e69-9b66-1c67d3a9ee77 + - ref!! d16658a6-b274-4c53-9ac9-3e2fcd7f7d81 + - ref!! 96b047a3-5343-4ca3-b3a1-d438ba56e6a3 + - ref!! 5e927946-6e20-40bc-9fb2-cb4fb1879f77 + - ref!! e7dab970-3bad-4f54-9224-69f1be7272fc + - ref!! d14ee7cb-35ff-41d7-be44-99b3759d91d5 + - ref!! f09ecf9b-a307-4c67-967f-6906018ee4f4 + - ref!! 62cad650-fd02-4064-8a3a-aecfac2a1d28 + - ref!! 2cc5129e-4c4f-4c67-a0c7-34aa4775ae53 + - ref!! ac13c6a8-af16-491f-b2f3-06fa4dcbe6b9 + Parts: + - Folder: Horizontal + Entity: + Id: 0213aa0d-2cf3-4691-9232-4f8981f8b47f + Name: PlatformRocks4 (10) + Components: + dda0421a692758aa3b4880cdd14e5c6a: !TransformComponent + Id: 8c9a6061-6fe5-49c9-815b-6ad55b678859 + Position: {X: -0.96992445, Y: -1.70950329, Z: 3.87600923} + Rotation: {X: 0.109309979, Y: -0.170963168, Z: 0.6986068, W: 0.6861279} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + ab802be6b5ba2f017ed737c20f97155c: !ModelComponent + Id: 74d7ab69-5941-41e0-80ae-6c0e736081d4 + Model: 7c51860b-b28e-490f-90d1-b33e9167966f:Environment/Background/Models/PlatformRocks4 + Materials: {} + - Folder: Vertical + Entity: + Id: 05047a1c-ca27-4214-8169-7ff28f3c6c11 + Name: PlatformRocks2 (3) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: 3824466a-1c42-4cdd-b8be-f5102a07b96d + Position: {X: 8.358931, Y: -4.641446, Z: -10.9375124} + Rotation: {X: 0.0, Y: 0.5671285, Z: 0.0, W: 0.8236293} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: be160fbe-f9fa-4a54-a5d7-92e1b75a502c + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + - Folder: Horizontal + Entity: + Id: 05322473-e674-4a5b-8a5a-615304e3858c + Name: PlatformRocks4 (3) + Components: + dda0421a692758aa3b4880cdd14e5c6a: !TransformComponent + Id: 0d7dbf1b-02cf-4fa8-8c45-50850653318a + Position: {X: -7.634068, Y: -1.71689749, Z: -14.2279129} + Rotation: {X: 0.484417677, Y: 0.5087244, Z: -0.5154217, W: -0.490794778} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + ab802be6b5ba2f017ed737c20f97155c: !ModelComponent + Id: 021367f5-62e8-49c5-a720-5953b139a700 + Model: 7c51860b-b28e-490f-90d1-b33e9167966f:Environment/Background/Models/PlatformRocks4 + Materials: {} + - Folder: Vertical + Entity: + Id: 0aa46795-1cb1-4525-8957-5c232a1ca769 + Name: PlatformRocks1 (2) + Components: + 1651bba9aeb3a47a09b36fa078093f26: !TransformComponent + Id: c518a7a7-7bd8-4d0a-b2a5-000ad5af3a0f + Position: {X: 8.667949, Y: -4.917043, Z: -4.923714} + Rotation: {X: 0.0, Y: 0.838257432, Z: 0.0, W: 0.545274734} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + c31be1e87de87749efbb223612f277b6: !ModelComponent + Id: 6d96def1-6676-4ed0-a7d6-2ee855328b91 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + - Folder: Vertical + Entity: + Id: 166914ee-c972-4d37-9faa-6264f4634ea6 + Name: PlatformRocks2 (5) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: 6136417e-77be-43d6-b570-41b0ad16b0bb + Position: {X: -8.809109, Y: -4.641446, Z: -15.049983} + Rotation: {X: 0.0, Y: 0.367331266, Z: 0.0, W: 0.9300902} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: 9b3d0c49-b0ba-4547-b2de-5e3b7a8db72d + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + - Folder: Horizontal + Entity: + Id: 1d76795d-d42e-4e72-afed-fce915ec21de + Name: PlatformRocks3 (9) + Components: + b1fd7ac2dc026bc717d9914779fcbb86: !TransformComponent + Id: aaddcede-a956-45d9-8165-80b7b941a261 + Position: {X: 7.46563, Y: -1.54794419, Z: -11.4450579} + Rotation: {X: -0.478960246, Y: 0.53922683, Z: -0.5201896, W: 0.457421482} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6d69e52ecad885cb8de3421a50667b9f: !ModelComponent + Id: fd01e555-2ce8-427d-81a1-263c49626ae9 + Model: 28b26550-fec0-4807-b432-3a95fc153485:Environment/Background/Models/PlatformRocks3 + Materials: {} + - Folder: Vertical + Entity: + Id: 1e0b423a-1fc6-4d91-8c56-d0dda2872b7a + Name: PlatformRocks2 (12) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: 2582c21d-aa61-40f1-a176-37c7718f2aba + Position: {X: -8.265016, Y: -4.641446, Z: 5.51033} + Rotation: {X: 0.0, Y: 0.894592345, Z: 0.0, W: 0.4468831} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: 2118d7d0-0941-417c-921d-f044e434285a + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + - Folder: Horizontal + Entity: + Id: 216aa8fc-d6c7-4631-b68f-6b097aa8a1a2 + Name: PlatformRocks3 (4) + Components: + b1fd7ac2dc026bc717d9914779fcbb86: !TransformComponent + Id: c9fc5f02-5a72-43ea-a146-fa1161aae065 + Position: {X: -8.068342, Y: -1.90891325, Z: -3.93058586} + Rotation: {X: 0.707106769, Y: 0.0, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6d69e52ecad885cb8de3421a50667b9f: !ModelComponent + Id: 86ae6c38-4fb0-4112-9218-bcaeea33f03f + Model: 28b26550-fec0-4807-b432-3a95fc153485:Environment/Background/Models/PlatformRocks3 + Materials: {} + - Folder: Horizontal + Entity: + Id: 238c60ba-a19d-48c5-9e28-c50f5dc6a632 + Name: PlatformRocks4 (5) + Components: + dda0421a692758aa3b4880cdd14e5c6a: !TransformComponent + Id: 4d92b7b3-22e8-4300-96f8-8ee034001433 + Position: {X: 7.905735, Y: -1.576205, Z: -0.750994444} + Rotation: {X: 0.707106769, Y: 0.0, Z: 0.0, W: 0.707106769} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + ab802be6b5ba2f017ed737c20f97155c: !ModelComponent + Id: 7b9e8da8-3e78-4526-acf5-c0d10c531390 + Model: 7c51860b-b28e-490f-90d1-b33e9167966f:Environment/Background/Models/PlatformRocks4 + Materials: {} + - Folder: Vertical + Entity: + Id: 2cc5129e-4c4f-4c67-a0c7-34aa4775ae53 + Name: PlatformRocks3 (2) + Components: + abc93c36ff7f22bf4736a260f4c5ff87: !TransformComponent + Id: 9ac4225c-41dc-4fbd-9d09-2f6dfe6a722c + Position: {X: 3.30032229, Y: -2.77054119, Z: 3.917765} + Rotation: {X: 0.49999997, Y: 0.49999997, Z: -0.49999997, W: 0.49999997} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + 271699a9ddd50282f7aee6ddabf0cf6b: !ModelComponent + Id: 16908507-a080-4df6-a373-d0a802a2b926 + Model: 28b26550-fec0-4807-b432-3a95fc153485:Environment/Background/Models/PlatformRocks3 + Materials: {} + - Folder: Horizontal + Entity: + Id: 366b0ad4-958e-4c89-a25a-25aef9f65fc8 + Name: PlatformRocks4 (4) + Components: + dda0421a692758aa3b4880cdd14e5c6a: !TransformComponent + Id: d47bcede-0153-4537-93de-f2b3e38c6579 + Position: {X: -7.48319435, Y: -1.70950627, Z: -23.3023243} + Rotation: {X: -0.15392381, Y: -0.6901504, Z: -0.690150261, W: -0.15392381} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + ab802be6b5ba2f017ed737c20f97155c: !ModelComponent + Id: 10a354e6-5380-4601-9dfd-a308c3381e46 + Model: 7c51860b-b28e-490f-90d1-b33e9167966f:Environment/Background/Models/PlatformRocks4 + Materials: {} + - Folder: Vertical + Entity: + Id: 377ffdf0-ea78-464a-85e5-800f08816350 + Name: PlatformRocks2 + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: 499815dc-ebf4-4de1-96b1-3f09e34a135e + Position: {X: 8.194585, Y: -4.641446, Z: 1.68188107} + Rotation: {X: 0.0, Y: 0.5671285, Z: 0.0, W: 0.8236293} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: 380f71a8-968e-47e9-932f-fb46cd3c299e + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + - Folder: Horizontal + Entity: + Id: 3dabb0e9-3952-4931-b59a-5dfa02653707 + Name: PlatformRocks3 (10) + Components: + b1fd7ac2dc026bc717d9914779fcbb86: !TransformComponent + Id: ea198fe1-5b3b-46ec-b907-5dd12bf1ad3e + Position: {X: 6.42671967, Y: -1.84913015, Z: -26.1579952} + Rotation: {X: 0.499913663, Y: -0.499913663, Z: 0.5000863, W: 0.5000863} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6d69e52ecad885cb8de3421a50667b9f: !ModelComponent + Id: fbffe4d6-94c9-43a5-aea4-ad0bd18f8cf5 + Model: 28b26550-fec0-4807-b432-3a95fc153485:Environment/Background/Models/PlatformRocks3 + Materials: {} + - Folder: Horizontal + Entity: + Id: 4e0332ed-9df2-4bcb-888f-b55e321f51e8 + Name: PlatformRocks3 (7) + Components: + b1fd7ac2dc026bc717d9914779fcbb86: !TransformComponent + Id: 33edf577-2389-4108-8dd8-00ae39482490 + Position: {X: 7.320587, Y: -1.77561343, Z: -4.556582} + Rotation: {X: 0.707106769, Y: 0.0, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6d69e52ecad885cb8de3421a50667b9f: !ModelComponent + Id: ef3ea923-620a-4a31-9000-7f6a536a77fc + Model: 28b26550-fec0-4807-b432-3a95fc153485:Environment/Background/Models/PlatformRocks3 + Materials: {} + - Folder: Vertical + Entity: + Id: 4e57d2d6-d370-4f60-94f1-31691fdfff70 + Name: PlatformRocks2 (7) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: 9249a8d3-01ce-49ad-998f-309e1eba1438 + Position: {X: 8.599807, Y: -4.641446, Z: -21.7788944} + Rotation: {X: 0.0, Y: 0.42013818, Z: 0.0, W: 0.907460153} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: 15c54c5a-2426-4f58-9961-f3449c1f6592 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + - Folder: Horizontal + Entity: + Id: 569d25d7-4026-453f-8128-f3b8f6f702d5 + Name: PlatformRocks3 (13) + Components: + b1fd7ac2dc026bc717d9914779fcbb86: !TransformComponent + Id: 382942fa-d2fd-4b1b-8b71-a136ce9ac68c + Position: {X: 7.320587, Y: -1.77561307, Z: 2.210205} + Rotation: {X: 0.707106769, Y: 0.0, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6d69e52ecad885cb8de3421a50667b9f: !ModelComponent + Id: 5916bad9-ff55-42b7-a1b2-072b7eb123de + Model: 28b26550-fec0-4807-b432-3a95fc153485:Environment/Background/Models/PlatformRocks3 + Materials: {} + - Folder: Vertical + Entity: + Id: 5798e7db-3eeb-4733-b8a0-5038b6cd291d + Name: PlatformRocks1 (7) + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: 12b6f6e3-2da2-4ed9-99e9-f0a109c00587 + Position: {X: 9.167204, Y: -5.33552361, Z: -19.7566547} + Rotation: {X: 0.0, Y: -0.372084469, Z: 0.0, W: 0.9281989} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: f5808cec-0900-424f-adfb-af21644d0760 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + - Folder: Horizontal + Entity: + Id: 5a470dc9-eb02-408c-9ca0-a3f9262adaee + Name: PlatformRocks4 + Components: + dda0421a692758aa3b4880cdd14e5c6a: !TransformComponent + Id: 3742bd60-d050-4a4e-bd0c-fbaaba1cf8a0 + Position: {X: -7.48319435, Y: -1.70950484, Z: 1.69113207} + Rotation: {X: 0.707106769, Y: 0.0, Z: 0.0, W: 0.707106769} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + ab802be6b5ba2f017ed737c20f97155c: !ModelComponent + Id: 8e65cb02-3ab6-410f-bd89-39b69e2489ce + Model: 7c51860b-b28e-490f-90d1-b33e9167966f:Environment/Background/Models/PlatformRocks4 + Materials: {} + - Folder: Horizontal + Entity: + Id: 5a6e48da-710e-4f54-bd0d-904282b6bc94 + Name: PlatformRocks3 (5) + Components: + b1fd7ac2dc026bc717d9914779fcbb86: !TransformComponent + Id: 0bedaa83-cad7-4e3e-af87-7ae6b984a8c7 + Position: {X: -8.068342, Y: -1.90891421, Z: -19.9657726} + Rotation: {X: 0.707106769, Y: 0.0, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6d69e52ecad885cb8de3421a50667b9f: !ModelComponent + Id: 8a9cb0ea-b6d5-436f-ad2b-47c2dc51fd62 + Model: 28b26550-fec0-4807-b432-3a95fc153485:Environment/Background/Models/PlatformRocks3 + Materials: {} + - Folder: Vertical + Entity: + Id: 5e2341bf-ca95-4da6-b63e-7fbc0cba6da1 + Name: PlatformRocks1 (11) + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: 96eff7a8-8dfc-4b78-9036-76e24eb9b89d + Position: {X: -8.375341, Y: -5.33552361, Z: -9.527828} + Rotation: {X: 0.0, Y: 0.0992037654, Z: 0.0, W: 0.9950671} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: 0ae96eec-43ef-4421-bcce-63c683d4ba22 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + - Folder: Vertical + Entity: + Id: 5e927946-6e20-40bc-9fb2-cb4fb1879f77 + Name: PlatformRocks2 (2) + Components: + d2f30a7d88eeff69a462a2384736cee9: !TransformComponent + Id: 96d8411a-ba13-407d-9626-bb450ebcbd43 + Position: {X: 8.623979, Y: -4.67764139, Z: -1.471852} + Rotation: {X: 0.0, Y: -0.6292836, Z: 0.0, W: 0.7771758} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d16ca2c04fba1e70e8d3fbb933e6e2f0: !ModelComponent + Id: 7d7fdcd7-4d12-4b11-a79a-e1f9e9636d22 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + - Folder: Vertical + Entity: + Id: 601c75f4-5cf9-416d-8a4d-e0eda5939ea1 + Name: PlatformRocks1 (4) + Components: + 1651bba9aeb3a47a09b36fa078093f26: !TransformComponent + Id: 09e74bbe-707f-45c3-a9ce-af774f602e5f + Position: {X: 8.933571, Y: -4.917043, Z: -17.4514256} + Rotation: {X: 0.0, Y: -0.27981, Z: 0.0, W: 0.9600554} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + c31be1e87de87749efbb223612f277b6: !ModelComponent + Id: 23adc28d-fe0b-4669-8402-1b73a774efb1 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + - Folder: Vertical + Entity: + Id: 62cad650-fd02-4064-8a3a-aecfac2a1d28 + Name: PlatformRocks2 (10) + Components: + d2f30a7d88eeff69a462a2384736cee9: !TransformComponent + Id: d1070e18-0e2c-4775-b1a9-7aa14bb30547 + Position: {X: 2.01637173, Y: -4.67764139, Z: -26.9746742} + Rotation: {X: 0.0, Y: -0.6292836, Z: 0.0, W: 0.7771758} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d16ca2c04fba1e70e8d3fbb933e6e2f0: !ModelComponent + Id: fa708521-6e95-4c2c-b861-be2ef1a85070 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + - Folder: Horizontal + Entity: + Id: 66d14fee-7dad-4f90-8799-3b9e6ff3f24f + Name: PlatformRocks3 (8) + Components: + b1fd7ac2dc026bc717d9914779fcbb86: !TransformComponent + Id: 19aa5719-b0b5-4a4c-8a42-219dc5ce46f0 + Position: {X: 7.62297964, Y: -1.85573637, Z: -18.0932961} + Rotation: {X: 0.6939252, Y: 0.135896221, Z: 0.135896191, W: 0.6939252} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6d69e52ecad885cb8de3421a50667b9f: !ModelComponent + Id: 36d9f88e-58dd-429f-afa3-247b980c3eac + Model: 28b26550-fec0-4807-b432-3a95fc153485:Environment/Background/Models/PlatformRocks3 + Materials: {} + - Folder: Horizontal + Entity: + Id: 66e708c2-530c-4cb2-be23-13c09bc76069 + Name: PlatformRocks3 (11) + Components: + b1fd7ac2dc026bc717d9914779fcbb86: !TransformComponent + Id: 60e462e4-d83c-4860-baa0-dd7392c3d066 + Position: {X: -6.469829, Y: -2.20012832, Z: 3.94628143} + Rotation: {X: 0.5016321, Y: 0.498362541, Z: -0.498362541, W: 0.5016321} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6d69e52ecad885cb8de3421a50667b9f: !ModelComponent + Id: 22d259cf-8adf-435a-ad30-0d3b2bdb6a49 + Model: 28b26550-fec0-4807-b432-3a95fc153485:Environment/Background/Models/PlatformRocks3 + Materials: {} + - Folder: Vertical + Entity: + Id: 6aedea1b-498c-4004-a223-78ab95e73256 + Name: PlatformRocks2 (16) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: e1611ae5-ae09-4754-a9d8-091b02574684 + Position: {X: -8.591589, Y: -4.641446, Z: -12.20644} + Rotation: {X: 0.0, Y: 0.7596207, Z: 0.0, W: 0.6503663} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: d133c8f7-f851-4994-9d16-5f668d46a7ef + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + - Folder: Vertical + Entity: + Id: 6e6574a9-828f-4b70-863c-891cca8a3f4b + Name: PlatformRocks1 (5) + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: ee5b85e9-9e57-4448-9c13-960de913318c + Position: {X: -8.73216152, Y: -5.33552361, Z: -19.05401} + Rotation: {X: 0.0, Y: -0.8817965, Z: 0.0, W: -0.47163} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: 1ce90a91-67c5-4a70-9932-64a0184d4053 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + - Folder: Horizontal + Entity: + Id: 7131b32b-6ead-4b19-88cf-b8e9b560eb5b + Name: PlatformRocks4 (7) + Components: + dda0421a692758aa3b4880cdd14e5c6a: !TransformComponent + Id: 5bd943ea-a5e6-4c78-92a8-572c9a80d7c3 + Position: {X: 7.905735, Y: -1.57620633, Z: -23.92832} + Rotation: {X: -0.15392381, Y: -0.6901504, Z: -0.690150261, W: -0.15392381} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + ab802be6b5ba2f017ed737c20f97155c: !ModelComponent + Id: 3c3e2968-dce3-4e26-b300-f8d1474c0e27 + Model: 7c51860b-b28e-490f-90d1-b33e9167966f:Environment/Background/Models/PlatformRocks4 + Materials: {} + - Folder: Vertical + Entity: + Id: 7308c154-68cc-4672-bcd0-ee0a21848512 + Name: PlatformRocks1 (14) + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: 7b71886c-bf1f-4af6-98ee-539611a2cfdf + Position: {X: 2.59996986, Y: -5.33552361, Z: 4.943921} + Rotation: {X: 0.0, Y: -0.998639345, Z: 0.0, W: 0.05214858} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: ea9ee15b-c3ab-4b80-87b8-18c4d90cf4b0 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + - Folder: Vertical + Entity: + Id: 74af9c07-70cf-4690-adcc-702e1bd16e67 + Name: PlatformRocks1 + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: 3580d53f-d8bb-4ccf-9f74-52c951b8757d + Position: {X: 7.904121, Y: -5.33552361, Z: 3.962504} + Rotation: {X: 0.0, Y: -0.372084469, Z: 0.0, W: 0.9281989} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: 1ad12caf-915d-4781-954c-602a936b1974 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + - Folder: Horizontal + Entity: + Id: 791da74a-12df-44ae-8d1c-231aeca02f8e + Name: PlatformRocks3 (14) + Components: + b1fd7ac2dc026bc717d9914779fcbb86: !TransformComponent + Id: e66e6f9e-3d51-4c0d-ad77-599f1890d9d6 + Position: {X: -7.538251, Y: -1.68124163, Z: -1.35333729} + Rotation: {X: -0.478960246, Y: 0.53922683, Z: -0.5201896, W: 0.457421482} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6d69e52ecad885cb8de3421a50667b9f: !ModelComponent + Id: a493340a-bae6-4fb3-80d4-3ad2ebb2c574 + Model: 28b26550-fec0-4807-b432-3a95fc153485:Environment/Background/Models/PlatformRocks3 + Materials: {} + - Folder: Horizontal + Entity: + Id: 793cb3a8-6928-4aa0-8dd5-e5f4d2197163 + Name: PlatformRocks3 (12) + Components: + b1fd7ac2dc026bc717d9914779fcbb86: !TransformComponent + Id: 40853b38-d6fa-4f85-add7-93d2061d8249 + Position: {X: 2.677636, Y: -1.97245812, Z: 3.86105561} + Rotation: {X: -0.706406534, Y: 0.70492214, Z: -0.0314633548, W: -0.05554062} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6d69e52ecad885cb8de3421a50667b9f: !ModelComponent + Id: a5eb8198-9f70-42d9-bea8-49027c0089d4 + Model: 28b26550-fec0-4807-b432-3a95fc153485:Environment/Background/Models/PlatformRocks3 + Materials: {} + - Folder: Vertical + Entity: + Id: 8a1a571d-a97c-4ff0-98bf-d39ad37a02e6 + Name: PlatformRocks1 (3) + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: 3433c340-21c6-4112-801e-b876b9fa4706 + Position: {X: 8.068466, Y: -5.33552361, Z: -8.656889} + Rotation: {X: 0.0, Y: -0.372084469, Z: 0.0, W: 0.9281989} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: ad16e7a8-e9b0-4b9b-9274-ec65dca04ba4 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + - Folder: Vertical + Entity: + Id: 8b5c788f-bf44-46c7-8fe8-41284bd0d526 + Name: PlatformRocks2 (9) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: 8a3ff907-8031-4fb9-8bca-24cf7fcc3f16 + Position: {X: -1.32431126, Y: -4.641446, Z: -26.8336849} + Rotation: {X: 0.0, Y: 0.5671285, Z: 0.0, W: 0.8236293} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: fe5946a4-f5f3-477a-89b3-c741ac0049b8 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + - Folder: Vertical + Entity: + Id: 96b047a3-5343-4ca3-b3a1-d438ba56e6a3 + Name: PlatformRocks1 (10) + Components: + 1651bba9aeb3a47a09b36fa078093f26: !TransformComponent + Id: 3814cef9-1d27-4a60-a5bb-a84a723b2277 + Position: {X: 5.933956, Y: -4.917043, Z: -26.5461731} + Rotation: {X: 0.0, Y: 0.838257432, Z: 0.0, W: 0.545274734} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + c31be1e87de87749efbb223612f277b6: !ModelComponent + Id: 89b3e6ad-9569-468f-b0ef-c7f2abc3d09c + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + - Folder: Vertical + Entity: + Id: 9a4d4beb-a66f-410b-b9e9-1334c3c52f41 + Name: PlatformRocks2 (13) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: 8dd0f477-82d6-428a-b79c-2d04fca36867 + Position: {X: 5.714934, Y: -4.641446, Z: 5.59207773} + Rotation: {X: 0.0, Y: -0.245246142, Z: 0.0, W: 0.969460845} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: b96254cd-9165-4496-a6ba-adb51503c086 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + - Folder: Horizontal + Entity: + Id: 9c19b36a-c9e2-4963-926c-86b884e9325f + Name: PlatformRocks4 (9) + Components: + dda0421a692758aa3b4880cdd14e5c6a: !TransformComponent + Id: 59afefda-4315-4739-92e4-f997cd8091cd + Position: {X: 6.232363, Y: -2.00071955, Z: 3.4441855} + Rotation: {X: -0.5956076, Y: -0.598087132, Z: -0.3811188, W: 0.377215952} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + ab802be6b5ba2f017ed737c20f97155c: !ModelComponent + Id: e6dc6cee-4d65-4d98-9049-8b92399223c3 + Model: 7c51860b-b28e-490f-90d1-b33e9167966f:Environment/Background/Models/PlatformRocks4 + Materials: {} + - Folder: Horizontal + Entity: + Id: a5c17fdf-1899-4dbf-bd2c-3f6222042bfe + Name: PlatformRocks3 (15) + Components: + b1fd7ac2dc026bc717d9914779fcbb86: !TransformComponent + Id: 8970de19-24ab-42f3-8eaf-a9cc0c8eb20c + Position: {X: -3.653166, Y: -2.200128, Z: 3.96470022} + Rotation: {X: -0.320949048, Y: -0.325062335, Z: -0.6300727, W: 0.627960563} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6d69e52ecad885cb8de3421a50667b9f: !ModelComponent + Id: b1a4e8ea-2e09-4e3f-88cd-9007f29e4420 + Model: 28b26550-fec0-4807-b432-3a95fc153485:Environment/Background/Models/PlatformRocks3 + Materials: {} + - Folder: Vertical + Entity: + Id: ac13c6a8-af16-491f-b2f3-06fa4dcbe6b9 + Name: PlatformRocks3 (3) + Components: + abc93c36ff7f22bf4736a260f4c5ff87: !TransformComponent + Id: 278f1026-7ed7-4b24-b726-124a1d87b69e + Position: {X: -2.06136012, Y: -2.770542, Z: 3.917765} + Rotation: {X: 0.49999997, Y: 0.49999997, Z: -0.49999997, W: 0.49999997} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + 271699a9ddd50282f7aee6ddabf0cf6b: !ModelComponent + Id: d1a72003-e606-4d22-9d06-fbd9a10784db + Model: 28b26550-fec0-4807-b432-3a95fc153485:Environment/Background/Models/PlatformRocks3 + Materials: {} + - Folder: Horizontal + Entity: + Id: ad5025b1-5e05-4df2-a54c-e8cb93397038 + Name: PlatformRocks3 (3) + Components: + b1fd7ac2dc026bc717d9914779fcbb86: !TransformComponent + Id: 6e5e8cda-e0b1-4f1a-995e-b606be586c99 + Position: {X: -6.63268375, Y: -1.84913015, Z: -26.1579952} + Rotation: {X: 0.499913663, Y: -0.499913663, Z: 0.5000863, W: 0.5000863} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6d69e52ecad885cb8de3421a50667b9f: !ModelComponent + Id: 9a6fefff-2ee5-4404-ba6f-09fc2a76f3b1 + Model: 28b26550-fec0-4807-b432-3a95fc153485:Environment/Background/Models/PlatformRocks3 + Materials: {} + - Folder: Horizontal + Entity: + Id: b4bb02fb-d7f3-4726-94f2-acd7a739c5cf + Name: PlatformRocks4 (2) + Components: + dda0421a692758aa3b4880cdd14e5c6a: !TransformComponent + Id: 4a15d5df-07a3-49e3-b074-730b4e88d108 + Position: {X: -7.48319435, Y: -1.70950532, Z: -7.267135} + Rotation: {X: -0.15392381, Y: -0.6901504, Z: -0.690150261, W: -0.15392381} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + ab802be6b5ba2f017ed737c20f97155c: !ModelComponent + Id: 12e30f25-5f47-4fcb-8322-a4208e9ef1dd + Model: 7c51860b-b28e-490f-90d1-b33e9167966f:Environment/Background/Models/PlatformRocks4 + Materials: {} + - Folder: Horizontal + Entity: + Id: b894229b-66cd-4a08-9589-1a55cd8d17f7 + Name: PlatformRocks4 (6) + Components: + dda0421a692758aa3b4880cdd14e5c6a: !TransformComponent + Id: 4a9f2fa7-a76c-475a-9fae-7702dfd9b81b + Position: {X: 7.905735, Y: -1.57620537, Z: -7.89313126} + Rotation: {X: -0.15392381, Y: -0.6901504, Z: -0.690150261, W: -0.15392381} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + ab802be6b5ba2f017ed737c20f97155c: !ModelComponent + Id: d37b9035-edf6-4f61-8410-d774d449c490 + Model: 7c51860b-b28e-490f-90d1-b33e9167966f:Environment/Background/Models/PlatformRocks4 + Materials: {} + - Folder: Horizontal + Entity: + Id: b9cef189-0599-4343-b79d-6f6fcf12c35b + Name: PlatformRocks3 + Components: + b1fd7ac2dc026bc717d9914779fcbb86: !TransformComponent + Id: 77e41f55-7958-4594-9d8f-a30a51854f2b + Position: {X: -7.765949, Y: -1.98903668, Z: -17.4673} + Rotation: {X: 0.6939252, Y: 0.135896221, Z: 0.135896191, W: 0.6939252} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6d69e52ecad885cb8de3421a50667b9f: !ModelComponent + Id: da69af0d-1e2f-4610-836e-3da30648c88c + Model: 28b26550-fec0-4807-b432-3a95fc153485:Environment/Background/Models/PlatformRocks3 + Materials: {} + - Folder: Vertical + Entity: + Id: c262a6e7-cd35-4ee5-b4fa-f8b1d7285255 + Name: PlatformRocks1 (13) + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: 736a515b-d5be-41fb-a2a4-f9c7eab81285 + Position: {X: -8.513287, Y: -5.33552361, Z: 2.25101638} + Rotation: {X: 0.0, Y: -0.621628761, Z: 0.0, W: 0.783311963} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: b73a195c-d591-46df-999a-f7b26f6d7108 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + - Folder: Horizontal + Entity: + Id: c89a429b-eee5-4da1-9764-9248bc108d19 + Name: PlatformRocks4 (8) + Components: + dda0421a692758aa3b4880cdd14e5c6a: !TransformComponent + Id: b7b085d8-fd6b-43a0-a313-f54d35890e56 + Position: {X: 7.75486135, Y: -1.58359754, Z: -14.8539095} + Rotation: {X: 0.484417677, Y: 0.5087244, Z: -0.5154217, W: -0.490794778} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + ab802be6b5ba2f017ed737c20f97155c: !ModelComponent + Id: ca23e5c7-3d8a-4296-a8aa-c24932f62303 + Model: 7c51860b-b28e-490f-90d1-b33e9167966f:Environment/Background/Models/PlatformRocks4 + Materials: {} + - Folder: Vertical + Entity: + Id: c9aba1e7-d184-4e69-9b66-1c67d3a9ee77 + Name: PlatformRocks1 (6) + Components: + 1651bba9aeb3a47a09b36fa078093f26: !TransformComponent + Id: f5dc56e8-1dd4-4ab2-999e-57e5bf11c22f + Position: {X: -5.09498739, Y: -4.917043, Z: -26.8496552} + Rotation: {X: 0.0, Y: 0.838257432, Z: 0.0, W: 0.545274734} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + c31be1e87de87749efbb223612f277b6: !ModelComponent + Id: 3b9b9858-8039-45f9-acd3-6d2bf5371818 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + - Folder: Vertical + Entity: + Id: d14ee7cb-35ff-41d7-be44-99b3759d91d5 + Name: PlatformRocks2 (6) + Components: + d2f30a7d88eeff69a462a2384736cee9: !TransformComponent + Id: 6cef4834-5f33-4335-ad4c-ad80be115e80 + Position: {X: -8.354319, Y: -4.67764139, Z: -26.81233} + Rotation: {X: 0.0, Y: -0.6292836, Z: 0.0, W: 0.7771758} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d16ca2c04fba1e70e8d3fbb933e6e2f0: !ModelComponent + Id: 8d5be3d7-4d00-4f62-ac0f-e8815895d204 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + - Folder: Vertical + Entity: + Id: d16658a6-b274-4c53-9ac9-3e2fcd7f7d81 + Name: PlatformRocks1 (8) + Components: + 1651bba9aeb3a47a09b36fa078093f26: !TransformComponent + Id: 36fb2a3d-2bf6-454c-a153-10a3c08aab1e + Position: {X: 8.838218, Y: -4.917043, Z: -27.48044} + Rotation: {X: 0.0, Y: 0.9963041, Z: 0.0, W: -0.08589688} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + c31be1e87de87749efbb223612f277b6: !ModelComponent + Id: f8b33955-f88b-42a2-ac0e-c0fd20070694 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + - Folder: Vertical + Entity: + Id: d7eaa454-f6a4-41f8-8e18-5508365a04a0 + Name: PlatformRocks2 (11) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: e56e66c7-695a-4f39-a826-1d954e94e030 + Position: {X: -8.252377, Y: -4.641446, Z: -1.74448407} + Rotation: {X: 0.0, Y: 0.7596207, Z: 0.0, W: 0.6503663} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: f7e1a7d5-0ab7-4a05-9b47-3217a225ece7 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + - Folder: Vertical + Entity: + Id: dd2b12bd-5f67-4dd1-aec1-618f8e0ce410 + Name: PlatformRocks1 (9) + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: 391b3888-8c57-4266-b874-26eb3776f543 + Position: {X: -8.471179, Y: -5.36619, Z: -23.2049751} + Rotation: {X: 0.0, Y: -0.2386237, Z: 0.0, W: 0.9711121} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: e7522347-8016-4fcb-a5f3-784784634b22 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + - Folder: Vertical + Entity: + Id: dd516b87-3bba-4293-99bc-cd48008943d9 + Name: PlatformRocks1 (15) + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: 4a47d194-a22a-497f-814a-dfac0a247ab4 + Position: {X: -5.952998, Y: -5.33552361, Z: 4.745269} + Rotation: {X: 0.0, Y: -0.372084469, Z: 0.0, W: 0.9281989} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: 6c90732a-5bee-4e77-b500-600bfe9f8e9a + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + - Folder: Vertical + Entity: + Id: dda9adda-7f6d-4d9f-9b53-679a1233ea66 + Name: PlatformRocks1 (12) + Components: + 62b716c6f8a4ce8170cef83343c8cc44: !TransformComponent + Id: a7e76897-f786-4447-97f0-e17d23026dae + Position: {X: -8.184768, Y: -5.33552361, Z: -5.618162} + Rotation: {X: 0.0, Y: -0.9785403, Z: 0.0, W: -0.206055388} + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + a73b5b2d7d904c6f8b1f9087dba8cca9: !ModelComponent + Id: 3609d61b-f6b4-441e-b62f-c96ee2a30db0 + Model: 88704cb9-cfd9-4c56-aab4-9c6aa622b44a:Environment/Background/Models/PlatformRocks1 + Materials: {} + - Folder: Vertical + Entity: + Id: e1e69d43-6736-426b-8e38-9275670ca567 + Name: PlatformRocks2 (14) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: dd3374ec-dfc7-464c-9c97-deb2909739f2 + Position: {X: -0.3453523, Y: -4.641446, Z: 5.45715332} + Rotation: {X: 0.0, Y: -0.210367471, Z: 0.0, W: 0.97762233} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: 9966776d-fe16-47a8-ad12-66be2da3a08d + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + - Folder: Vertical + Entity: + Id: e7dab970-3bad-4f54-9224-69f1be7272fc + Name: PlatformRocks2 (4) + Components: + d2f30a7d88eeff69a462a2384736cee9: !TransformComponent + Id: 703b34e2-ce6f-4f03-b7c3-46e69eac68a2 + Position: {X: 8.788324, Y: -4.67764139, Z: -14.0912457} + Rotation: {X: 0.0, Y: -0.6292836, Z: 0.0, W: 0.7771758} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d16ca2c04fba1e70e8d3fbb933e6e2f0: !ModelComponent + Id: c202f197-737d-4117-be5b-df6f62fd3102 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + - Folder: Horizontal + Entity: + Id: e82d5acb-afe2-41d5-9fc9-d311c2fc3b52 + Name: PlatformRocks3 (2) + Components: + b1fd7ac2dc026bc717d9914779fcbb86: !TransformComponent + Id: 598d1653-3a22-48e9-8ab1-53f534c581fa + Position: {X: -7.92330027, Y: -1.6812439, Z: -10.8190613} + Rotation: {X: -0.478960246, Y: 0.53922683, Z: -0.5201896, W: 0.457421482} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6d69e52ecad885cb8de3421a50667b9f: !ModelComponent + Id: 345732ce-c30b-4879-aea2-8f10ecc6b14a + Model: 28b26550-fec0-4807-b432-3a95fc153485:Environment/Background/Models/PlatformRocks3 + Materials: {} + - Folder: Horizontal + Entity: + Id: efcbb515-a977-4d05-b9ba-4ef14e2bd92c + Name: PlatformRocks3 (6) + Components: + b1fd7ac2dc026bc717d9914779fcbb86: !TransformComponent + Id: a0806f06-7c40-4c6e-a0d7-a09a9143994a + Position: {X: 7.320587, Y: -1.77561438, Z: -20.5917683} + Rotation: {X: 0.707106769, Y: 0.0, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6d69e52ecad885cb8de3421a50667b9f: !ModelComponent + Id: 8a1e3ead-eaa3-4de8-9cb2-2672a39ae434 + Model: 28b26550-fec0-4807-b432-3a95fc153485:Environment/Background/Models/PlatformRocks3 + Materials: {} + - Folder: Vertical + Entity: + Id: f09ecf9b-a307-4c67-967f-6906018ee4f4 + Name: PlatformRocks2 (8) + Components: + d2f30a7d88eeff69a462a2384736cee9: !TransformComponent + Id: a4bbc43e-3b4d-4b1b-9609-4b4d837f81d7 + Position: {X: 9.045102, Y: -4.67764139, Z: -24.7992115} + Rotation: {X: 0.0, Y: -0.659727454, Z: 0.0, W: -0.751504958} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d16ca2c04fba1e70e8d3fbb933e6e2f0: !ModelComponent + Id: 4cd51f9a-def1-4f54-bfaa-97fc53147b51 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} + - Folder: Vertical + Entity: + Id: fa06742c-b45b-464b-bfc1-2da901cfd7d4 + Name: PlatformRocks2 (15) + Components: + 5d6dfabb1793137b2d756e15309165c5: !TransformComponent + Id: 41da382c-abc4-4f00-9e34-cb6324bf4f0e + Position: {X: -3.28532815, Y: -4.641446, Z: 5.52101326} + Rotation: {X: 0.0, Y: 0.5671285, Z: 0.0, W: 0.8236293} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8f3aa943a9fc379c7fed85869cfe01ff: !ModelComponent + Id: edb3c6ec-1dec-40bc-a189-e7726f942728 + Model: e9e1b7fa-03a2-4cc9-806c-466c159f7e2a:Environment/Background/Models/PlatformRocks2 + Materials: {} diff --git a/Starbreach/Assets/Shared/Levels/Prefabs/Level_1-2_Platform.xkprefab b/Starbreach/Assets/Shared/Levels/Prefabs/Level_1-2_Platform.xkprefab new file mode 100644 index 0000000..6b6c690 --- /dev/null +++ b/Starbreach/Assets/Shared/Levels/Prefabs/Level_1-2_Platform.xkprefab @@ -0,0 +1,2623 @@ +!PrefabAsset +Id: fb46d7f0-9838-4ccf-ab83-e8acddc78746 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 5fc77aa4-014a-415c-8efc-28ea3956de5d + - ref!! 513163b9-363f-4b52-8c28-105ba045cc91 + - ref!! 6c8a1e9f-ebe6-499e-a0b7-a518f81ecfd3 + - ref!! be0f6750-b2ee-4aeb-af13-a606c8e5e49f + - ref!! d4d2dd16-5d16-431f-9b1a-f270d8aa7cd9 + - ref!! 4abdf939-d959-458d-a722-669a4681cecd + - ref!! 3c5178b6-eab5-4ffd-b963-fd8a33d8ad5e + - ref!! d349a35b-8546-4d86-aa2b-07d451f3d8d0 + - ref!! 681cc061-587b-46db-9ffe-1250d7aa7979 + - ref!! 02f58423-c393-45ae-871d-d2cc61c830fb + - ref!! f9b3582d-5a7a-4e7b-84ff-8eca36228d4f + - ref!! 60154267-ad70-447a-84b3-4714e7cc84ca + - ref!! 2c9b4e84-ba15-49ea-91f7-1226ab1e239f + - ref!! 4b9d9037-916e-4786-b9ec-ad16c4dc4725 + - ref!! 8294e751-4c9d-43f5-b943-c55d9f5cc392 + - ref!! 8a263299-d096-4a07-a632-a6b6e9d0693b + - ref!! 584a497e-8d6f-4de2-93cb-1bf53b3c9656 + - ref!! dcd80ab0-ea90-4923-83b9-925061d0a0d6 + - ref!! 7b0d3bdf-a1bd-4fbb-b4cb-8557235f8b5b + - ref!! 370bbf9c-5654-467c-bf6a-ad1115df8b42 + - ref!! 03fdbabf-eb8e-4a96-b136-cde9e3f5cf86 + - ref!! f6acaf2b-c29e-4ac8-b47d-1028510c2a40 + - ref!! 706a9059-d450-4b42-a19e-462998dc63b3 + - ref!! cc78adb2-66fd-4730-90db-579065aa7242 + - ref!! f848077e-2e62-4f86-8b0c-d5c09054af7a + - ref!! 0d67961d-02eb-441a-acbf-2f972184c854 + - ref!! 9ee96265-a5fd-4a80-ae05-9aaff2b12b8b + - ref!! ff8b575d-eae1-416d-a7fb-290060c7504c + - ref!! 4a788d8b-5c01-4fd7-9524-bf9c36ff3a09 + - ref!! 9d7555a0-3380-40af-b8c1-f0744e562202 + - ref!! 0a91cabb-6e39-4a58-8aee-8c6332fd934d + - ref!! f8829c96-9ac2-43d3-aecd-f4ff0c857387 + - ref!! 603a54b7-43d1-45ea-99bc-3f394c3ec3c0 + - ref!! 3b0c7866-67e1-4106-a536-76aeb863b356 + - ref!! f92a5169-4004-4b89-b5f9-ae567c0519e0 + - ref!! 8b50f907-2c2a-49b4-93bb-20712c59536c + - ref!! 20ee9f7f-81df-4577-b627-58e278f30367 + - ref!! d3a78b76-554b-4557-bbed-e30bba0f0494 + - ref!! bcafb1a4-a3ad-444d-ac61-b36168e43d4e + - ref!! 1f13f747-e5b2-4253-b770-0287225eedd0 + - ref!! aeadc2ab-92c3-4c3a-840d-2bb2e08aa089 + - ref!! feaff647-cbf7-4d10-a74c-9c1c8a65af0d + - ref!! e5dd4a58-26ad-42c7-b49f-273200a06b30 + - ref!! be7869f7-8b1d-407c-ba85-0f5d679c50b8 + - ref!! 1096f619-3ac8-460e-bbf2-8591a5cd6546 + - ref!! aeaa6928-c948-4f81-a839-b8f33785a1dc + - ref!! 9865aaa4-c90d-4c38-b087-0ad5e02e04b6 + - ref!! 9c54abeb-4515-4f91-9139-42bada990153 + - ref!! 6b51d4e0-8847-44ad-9432-69014516f7e7 + - ref!! 31f500c1-5f91-4ada-bff1-6af7160f3552 + - ref!! 230eba9f-249e-4467-9249-1798fd18ef37 + - ref!! 2547495a-953d-4db9-89a5-def530ef0057 + - ref!! 08cd9ccc-f1a2-4abe-8e5a-209609e4dd74 + - ref!! 4b7783b6-4532-40ad-97b0-ba9d9e1fba45 + - ref!! 3ff11f5a-f3e7-4bfd-802d-d39f3d639940 + - ref!! e684e7c2-0b6c-4534-88dd-99fa2e8551f6 + - ref!! 975a0c37-3438-44ff-8a27-f0635885020e + - ref!! d24f87a0-ca03-4302-ba66-1bde040a1657 + - ref!! c84ba20d-4555-4e8c-bccc-62b7db60cb31 + - ref!! f507d13b-27f5-4185-a295-0ada4ea43d8d + - ref!! f532ba08-84f3-49c4-a98f-54f8797d1895 + - ref!! 12152567-ca17-4c76-b9ed-3d0d4d737caf + - ref!! 68821b27-8772-4a1b-9703-24b386f524c3 + - ref!! 2650f8e2-cb3d-4092-ad20-e2c8c9aa8309 + - ref!! 3bf5f11e-4f72-4db9-9e9e-2d77c13a272a + - ref!! 42a808f9-ea4f-433d-bc01-67b67292da24 + - ref!! ab706d3d-4c17-42cb-9749-3740a6b9e47a + - ref!! 58033684-42e6-4779-a541-e893a698e080 + - ref!! 453548a9-0317-4f20-ac4a-4b47b2b27109 + - ref!! 53fba9bb-dab7-401c-b548-d4021d19ba4e + - ref!! 568c68f6-6fa8-4409-b1ec-441bebb39b14 + - ref!! 60785c4b-c381-42f0-a9bf-d3fb742e5965 + - ref!! 5147d893-68d6-4551-a34f-3d187b6a5138 + - ref!! 0c54647a-3523-4391-bf20-9c7b326241be + - ref!! 01bb4c95-e10e-432e-9ace-f37d39f41be2 + - ref!! afe79519-c964-477f-b654-182c516f8ac2 + - ref!! 9616b250-e097-49fe-8827-1ce09bc2e810 + - ref!! 015661b0-c170-4028-8c55-070ab542a81b + - ref!! e37a982a-31f4-4624-b639-77535cb1482e + - ref!! cf4897fd-8f97-40f8-82ab-27c4ab101477 + - ref!! cd0d5476-35ca-4654-b32f-c11389427d49 + - ref!! 825e2212-c90d-455d-950c-24a6a69520b1 + - ref!! 69f2e754-352b-4d85-9a67-6c35387e6fe7 + - ref!! 3506e469-8329-42d7-bedf-d57f211cac9a + - ref!! f5326583-fe31-4f5a-b80a-981ae1959510 + - ref!! cfd85de3-9a9b-417d-9842-b0136a35936f + - ref!! e65fd6db-56f1-4735-b5d7-d3cf58ad84c0 + - ref!! a86a1f9c-2d27-4b79-bc24-4dc5814f3713 + - ref!! d529dcff-6ac4-4345-894b-0ecc0707c785 + - ref!! bc69bd5d-68c6-4227-83cb-2e3d716da4f6 + - ref!! c4d2f1b6-da66-4e04-82ab-7dd4280beb1b + - ref!! 8a60906b-f6bd-41cd-a45b-c4fbb9672e15 + - ref!! 415d9070-ee44-4d25-add7-842ba8243ef1 + - ref!! 3a72f0c3-2543-4a38-a808-a8e2f6a4899d + - ref!! 3ded4299-9bdb-47e3-a812-4ea48258f8f8 + - ref!! 79630df5-05f7-4a4e-bff7-167209e66a11 + - ref!! 7ce074f4-27ea-4fb4-bedb-ca6617df351e + - ref!! aed76ab5-582d-44da-ad83-749566ea9feb + - ref!! 23c66316-3960-4213-b515-68e69b7d847b + - ref!! cd3ca4d3-a20b-422b-83c0-6b21c98b2ae4 + - ref!! 51939935-5c18-43f9-b010-6c0feea42cae + - ref!! fd375fcc-6bc6-4abe-ae27-67a35beedafb + - ref!! b9442363-0de5-44ef-aa3a-96f4bea30247 + - ref!! 8cc110b6-f9e5-4056-a39d-2bef794b0f04 + - ref!! 54224c37-a6b7-475d-bbda-97c20bcab3ed + - ref!! 3597d9db-c96f-4a23-8910-b2195f5a73df + - ref!! afbd2e87-5d91-4d10-b4bf-f9a0a3b0273f + - ref!! 7e35c27e-eee3-4655-aee7-903b2341eab6 + - ref!! b138122e-e40a-443b-8558-b93385e2aa78 + - ref!! 22609f54-8eac-4451-9a8c-8e157f045dea + - ref!! bd64eb90-ed68-419e-866e-675b8c9fe226 + - ref!! 4a2942c6-1917-4244-b29b-91c3ac5f34a9 + - ref!! 61a88097-f724-4609-bd5b-8df3843ae360 + - ref!! 2ebaaa72-0625-44dc-a73f-cdffbf97a68d + - ref!! b87e8d93-aa11-4e60-a295-fb10f8c4b451 + - ref!! 1d5ad283-5d7a-48df-9f01-6ce7a063d32f + - ref!! 57297c37-6a23-426f-a07a-ea8a219c8c08 + - ref!! f62ee552-3b81-4cf6-b692-543b7e83cd3e + - ref!! 1e75e71c-7970-4b16-b352-0dd533ed3eda + - ref!! 07822088-6f42-4dbc-8c40-71e63a012ecb + - ref!! 607c877a-b3ff-4b01-8351-794994ec659a + - ref!! e1df308f-5a69-40f5-a878-44a69b5d8cb5 + - ref!! df429f0a-67bc-4844-bb60-1092c0930d49 + - ref!! 3211d25f-0a82-47d3-8511-eb7d253f302c + - ref!! 3327cfbb-502a-4ee5-8807-b0dc190aadbc + - ref!! da6acdb2-1f2a-4f73-9e34-8bbba7a6fd36 + - ref!! 8b1ec176-f8aa-4392-ae61-09f7bcb48d53 + - ref!! b1eb92d7-5885-44e5-bede-eee72fa9a1e0 + - ref!! 7cdc0fea-1e3e-479f-bcef-5d74cdd8da69 + - ref!! d07d8fde-ea7d-4bbd-9dd3-9d08edba313c + - ref!! ba0b5685-1b58-4c45-beea-e940eaf82955 + - ref!! 226ad0fa-39e1-4c5e-8fba-b03f658edef9 + - ref!! c288d3c2-ee75-4868-bd7c-acd879f9baa3 + - ref!! 74065efb-3dba-4775-bca2-aef14bb5e806 + - ref!! 036e5430-3f4c-4faf-a3e2-9cf345520de0 + - ref!! ffa5e764-2f84-4810-af20-dff6ee918523 + - ref!! 57cff2fb-2918-4ad1-a688-4addb5f46ceb + - ref!! 40de249d-39cb-45d1-998f-dbcb9e404951 + - ref!! 4363010c-85a0-40b5-9c1b-2109cf991d23 + - ref!! b56fadc0-115c-4627-9e5b-e060d2d757f3 + - ref!! b067332a-6dd0-4226-af60-1aa75d19b573 + - ref!! 44b06c68-4d8b-4d98-9cac-2a9365ffee0f + - ref!! b68abf1a-a0f2-4249-a4e4-fea8e0074c4e + - ref!! a524fd95-2eff-471d-a69e-107e1f87224e + - ref!! 68a574c5-075c-49b9-a459-35bc83849468 + - ref!! fa503813-9490-4735-9fc4-15425a764887 + - ref!! 16534491-845e-4876-b658-15b20eca7849 + - ref!! 413a7fb9-2812-41b2-9305-b5e98e691405 + - ref!! 62bce914-8b63-48f4-92d2-8597f038a46a + - ref!! 6390019b-0688-4f7c-ab68-cc7dd742accd + - ref!! 7acf6dc2-294a-42b0-b424-49a08325a3c0 + - ref!! 95d565a4-43a1-4578-a6d3-fd7199ae894d + - ref!! 410885d6-ba11-4fe5-a105-c127548e79d5 + - ref!! 0e749895-02cf-40f9-8f04-21f2b0bd9290 + - ref!! dff41649-483e-4329-aedc-37b744d3ee84 + Parts: + - Folder: Platform + Entity: + Id: 015661b0-c170-4028-8c55-070ab542a81b + Name: Cell_Loop (29) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 1c508867-c124-48f3-9a4e-f1f9e75b45ad + Position: {X: -8.0, Y: 0.0, Z: -7.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 5b6d6b9a-7d49-42d9-8d85-d0f51c8891e3 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 01bb4c95-e10e-432e-9ace-f37d39f41be2 + Name: Cell_Loop (2) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: e7c390c3-ac7c-4ba4-87e8-a7ffbfd8c063 + Position: {X: -1.99999988, Y: 0.0, Z: 2.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 46b9c96f-b152-4742-9ab2-34106287458b + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 02f58423-c393-45ae-871d-d2cc61c830fb + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 108601ab-c041-426d-be0b-8134cb0278f6 + Position*: {X: -9.499999, Y: 0.0, Z: 2.00000048} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 9b21acc7-dd54-4ffd-8fb9-936279731be7 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: fccab1be-63ee-4ec0-bd6a-c2f2acca8e39 + - Folder: Platform + Entity: + Id: 036e5430-3f4c-4faf-a3e2-9cf345520de0 + Name: Cell_Loop (64) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 39959cfa-2c0c-45e0-ab32-0870403267fe + Position: {X: 4.0, Y: 0.0, Z: -10.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 7aa58b70-081e-417b-a60c-c03efb0f1534 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 03fdbabf-eb8e-4a96-b136-cde9e3f5cf86 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 9300a152-05ed-4de1-9f3e-c42240f86b2d + Position*: {X: 8.5, Y: 0.0, Z: -22.0} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: add203ce-533f-4b50-a5a0-a7861a86b76c + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: a0789220-e66e-4827-9e7a-e961d5b92e3d + - Folder: Platform + Entity: + Id: 07822088-6f42-4dbc-8c40-71e63a012ecb + Name: Cell_Loop (108) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 2f9e0398-bbca-4820-8fe6-a51ae5284bd5 + Position: {X: 4.0, Y: 0.0, Z: -22.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 9a187127-6214-49bc-906a-fdc7daa72284 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 08cd9ccc-f1a2-4abe-8e5a-209609e4dd74 + Name: Cell_Loop (116) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 42915722-4807-4b54-9dd5-8c83f62c698f + Position: {X: -4.0, Y: 0.0, Z: -28.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 69e368b8-159d-4003-89a2-ec97fec9e97e + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 0a91cabb-6e39-4a58-8aee-8c6332fd934d + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: b55b2b9c-2d6f-4621-bcc1-4bcdec2a273a + Position*: {X: 8.5, Y: 0.0, Z: -19.0} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: d74d0b11-54dc-4978-80b8-3c528d57ab63 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 7cae405e-0056-496d-9a28-e098879ea2ea + - Folder: Platform + Entity: + Id: 0c54647a-3523-4391-bf20-9c7b326241be + Name: Cell_Loop (96) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: d9c7ef4b-8024-4f14-b606-07ad3c7a87d8 + Position: {X: -10.0, Y: 0.0, Z: -25.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 36158282-72b3-4ba5-8814-619b4538a142 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 0d67961d-02eb-441a-acbf-2f972184c854 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 8ecd5928-1176-4ae1-aaa1-1db169ed3702 + Position*: {X: -14.5, Y: 0.0, Z: -22.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 51222302-dcb1-4837-a6ca-7e2143022b7f + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: d1cbb8f6-c87e-488a-b45c-d7c2ff61c3e7 + - Folder: Platform + Entity: + Id: 0e749895-02cf-40f9-8f04-21f2b0bd9290 + Name: Cell_Loop (8) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 10c58b39-0e37-4cfa-8f5b-c6b2b8b1613f + Position: {X: -14.0, Y: 0.0, Z: 2.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: a5699aa3-4a9d-43b1-85d7-ca73ac6558a4 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 1096f619-3ac8-460e-bbf2-8591a5cd6546 + Name: Cell_Loop (114) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 4120e1a6-b54b-4524-bb91-74579a94fa45 + Position: {X: 0.0, Y: 0.0, Z: -28.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 42ad29ac-49d3-4dae-bc89-06ce5799c791 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 12152567-ca17-4c76-b9ed-3d0d4d737caf + Name: Cell_Loop (117) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: e30eb2e6-71aa-4545-ae74-dc5e65a696b5 + Position: {X: -6.0, Y: 0.0, Z: -28.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 6a62ff28-fd64-4caa-854f-1b249fe98093 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 16534491-845e-4876-b658-15b20eca7849 + Name: Cell_Loop (22) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: b5be8c07-23d4-4488-8d61-479f0ed863d1 + Position: {X: 2.0, Y: 0.0, Z: -1.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: c7770142-35c4-4270-895f-a96ab617a05b + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 1d5ad283-5d7a-48df-9f01-6ce7a063d32f + Name: Cell_Loop (35) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: eda310ab-caa2-4c22-a837-c4561e7a8849 + Position: {X: -14.0, Y: 0.0, Z: -7.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 56cc9cc7-ec5d-4950-96a3-cec6246ec687 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 1e75e71c-7970-4b16-b352-0dd533ed3eda + Name: Cell_Loop (60) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 6a71eb88-f56a-471d-8a1f-71c6fe65499e + Position: {X: -8.0, Y: 0.0, Z: -10.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: f97d29b9-199a-4fed-a2e1-2975c9f4fb63 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 1f13f747-e5b2-4253-b770-0287225eedd0 + Name: Cell_Loop (12) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: a2255a71-3c68-486a-897c-1dcc6b963820 + Position: {X: 0.0, Y: 0.0, Z: -1.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 3e2902b8-7e16-40c0-a19e-5137e7f795b2 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 20ee9f7f-81df-4577-b627-58e278f30367 + Name: Cell_Loop (45) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 6c081a9f-5129-4f9d-ba1a-57d6851cbf5c + Position: {X: 0.0, Y: 0.0, Z: -10.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: febb7dee-2a30-495d-84cf-74386b01617f + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 22609f54-8eac-4451-9a8c-8e157f045dea + Name: Cell_Loop (105) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 23066401-deb4-481f-8bcc-9565a60e9171 + Position: {X: -10.0, Y: 0.0, Z: -22.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 58353b78-2b72-4907-8274-89eedd958743 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 226ad0fa-39e1-4c5e-8fba-b03f658edef9 + Name: Cell_Loop (63) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 6316e082-acc4-41e2-ac1a-bea36981c23a + Position: {X: -12.0, Y: 0.0, Z: -10.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: a82583e2-324b-4e73-88ca-8cfe1ed93bdc + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 230eba9f-249e-4467-9249-1798fd18ef37 + Name: Cell_Loop (13) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 6c1faf13-8640-4608-b5e7-1fedc166952e + Position: {X: -1.99999988, Y: 0.0, Z: -1.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 0d18cbda-3206-48b2-9a4d-223328a3d923 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 23c66316-3960-4213-b515-68e69b7d847b + Name: Cell_Loop (113) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 0536e532-6016-4024-b286-fefaf140f4a9 + Position: {X: 2.0, Y: 0.0, Z: -28.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: ed1a1956-91b6-4db0-a174-73e8dd0308cd + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 2547495a-953d-4db9-89a5-def530ef0057 + Name: Cell_Loop (121) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 956ee696-78bc-4ac7-a3a0-bd2cbeebbffc + Position: {X: -10.0, Y: 0.0, Z: -28.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: b4c6403a-89b6-4a07-8666-de91b914a7ea + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 2650f8e2-cb3d-4092-ad20-e2c8c9aa8309 + Name: Cell_Loop (72) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 640cc07c-93eb-4315-ad80-ebd29e8d9424 + Position: {X: -6.0, Y: 0.0, Z: -19.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 4b79e0c2-21f8-430c-9af2-1e64386fb37b + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 2c9b4e84-ba15-49ea-91f7-1226ab1e239f + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 1fac509e-c5e6-4eaa-b37e-6567fac17a54 + Position*: {X: -7.5, Y: 0.0, Z: 2.00000048} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 41c909b3-d1cf-4701-9910-ee1760cb28ad + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 6372dd69-5cfe-452f-b32e-00414bff18d2 + - Folder: Platform + Entity: + Id: 2ebaaa72-0625-44dc-a73f-cdffbf97a68d + Name: Cell_Loop (59) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 0bb20700-5e64-41ff-ae94-1465c38f5a50 + Position: {X: 2.0, Y: 0.0, Z: -13.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: dacf755e-44a0-4264-ac5f-a17f841aa3f9 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 31f500c1-5f91-4ada-bff1-6af7160f3552 + Name: Cell_Loop (25) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: a070a92d-c87b-41f3-9608-f63baa4494d1 + Position: {X: -1.99999988, Y: 0.0, Z: -7.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 1beb4494-2148-4885-a0ca-1dcb6ca9d05b + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 3211d25f-0a82-47d3-8511-eb7d253f302c + Name: Cell_Loop (36) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 2724997d-05c5-4a2e-aecf-4eb68426c2a4 + Position: {X: -6.0, Y: 0.0, Z: -4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: c65d1e7c-2bbe-4f7b-8e6d-650de63a9210 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 3327cfbb-502a-4ee5-8807-b0dc190aadbc + Name: Cell_Loop (109) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: b86b3415-d37a-441d-aa87-2aec78d38d85 + Position: {X: -14.0, Y: 0.0, Z: -22.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 622fee03-c588-49e3-bda3-9ac2e0b14309 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 3506e469-8329-42d7-bedf-d57f211cac9a + Name: Cell_Loop (53) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: a08d9713-ec83-489f-8f2c-ef021ae72361 + Position: {X: 6.0, Y: 0.0, Z: -13.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 91069dc4-4da3-44ff-a942-db2e55f77383 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 3597d9db-c96f-4a23-8910-b2195f5a73df + Name: Cell_Loop (104) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: ab01aeab-67d2-45e5-9436-3c168e46260b + Position: {X: -8.0, Y: 0.0, Z: -22.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: e0ed5583-0ee7-44cd-beb7-6993cf65988a + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 370bbf9c-5654-467c-bf6a-ad1115df8b42 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 9801bc97-0091-441f-b08a-cd31c2d1761d + Position*: {X: -14.5, Y: 0.0, Z: -19.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: d7bcd01b-82cd-4f39-b566-d57d80e6714b + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: dbf86da6-5991-4588-a785-34dd81dcf4ce + - Folder: Platform + Entity: + Id: 3a72f0c3-2543-4a38-a808-a8e2f6a4899d + Name: Cell_Loop (101) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 9aa195fc-ae28-4193-9889-6c9330036787 + Position: {X: -14.0, Y: 0.0, Z: -25.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: f89552e7-8f9b-45f3-9874-85f4da71abb2 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 3b0c7866-67e1-4106-a536-76aeb863b356 + Name: Border_out_corner_90 + Components: + b923f0caab27e8703f9f8ee1a8dd1d18: !TransformComponent + Id: eb1f7db1-b009-45d5-809f-697574fd8a47 + Position*: {X: -14.5, Y: 0.0, Z: -31.0} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6098c87ff6246e074f03b48bd2941bf8: !ModelComponent + Id: 5d30085c-f624-4289-a7b1-7da0e5156084 + Model: e2199908-ce19-4e35-843e-6ade71089032:Environment/Platforms/Models/Border_out_corner_90 + Materials: {} + Base: + BasePartAsset: efe073eb-d2bd-4eb9-a065-4a103cc52d7c:Environment/Platforms/Prefabs/Border_corner_out + BasePartId: a08bbac9-bc4d-404a-84b2-5093fedf0e77 + InstanceId: 5d78fcea-e982-4e5e-8c9c-187bebaaef38 + - Folder: Platform + Entity: + Id: 3bf5f11e-4f72-4db9-9e9e-2d77c13a272a + Name: Cell_Loop (119) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 96058845-3389-46da-bec2-28c4cf3e5298 + Position: {X: -14.0, Y: 0.0, Z: -28.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 42a87d9b-402e-4504-b726-538354548562 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 3c5178b6-eab5-4ffd-b963-fd8a33d8ad5e + Name: Border_out_corner_90 + Components: + b923f0caab27e8703f9f8ee1a8dd1d18: !TransformComponent + Id: 2316530f-7bf6-4402-82ff-cc84ffe00bef + Position*: {X: 8.5, Y: 0.0, Z: -30.9999962} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6098c87ff6246e074f03b48bd2941bf8: !ModelComponent + Id: 297cfac4-bf24-415f-ae0e-6310e9e5e754 + Model: e2199908-ce19-4e35-843e-6ade71089032:Environment/Platforms/Models/Border_out_corner_90 + Materials: {} + Base: + BasePartAsset: efe073eb-d2bd-4eb9-a065-4a103cc52d7c:Environment/Platforms/Prefabs/Border_corner_out + BasePartId: a08bbac9-bc4d-404a-84b2-5093fedf0e77 + InstanceId: 2a05d7c8-e3ad-4a5c-b12f-6b13e94f1b6d + - Folder: Platform + Entity: + Id: 3ded4299-9bdb-47e3-a812-4ea48258f8f8 + Name: Cell_Loop (78) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: f92da81b-884b-4075-a47b-d96b1df814ee + Position: {X: -4.0, Y: 0.0, Z: -16.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 2af02bfa-2ccd-4390-8567-1f7852bea53f + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 3ff11f5a-f3e7-4bfd-802d-d39f3d639940 + Name: Cell_Loop (70) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: da41f6cd-3004-44e2-887b-c4857435558b + Position: {X: -4.0, Y: 0.0, Z: -19.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 0db131ff-88c6-4e6e-b959-e24488c3e304 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 40de249d-39cb-45d1-998f-dbcb9e404951 + Name: Cell_Loop (65) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: d616b248-52da-42fb-a18a-611a6bb2f126 + Position: {X: -14.0, Y: 0.0, Z: -10.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: aa89fe9a-8312-4d17-8549-ec9bd51e2a6c + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 410885d6-ba11-4fe5-a105-c127548e79d5 + Name: Cell_Loop (10) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: d4ec5fff-34ea-4bc9-b656-a6084454d072 + Position: {X: 4.0, Y: 0.0, Z: 2.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 2b1d88e1-4a3c-4e74-adf3-724e7fe9508f + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 413a7fb9-2812-41b2-9305-b5e98e691405 + Name: Cell_Loop (44) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 7b70dc22-2e82-40c3-bb29-bf30d955ba48 + Position: {X: 2.0, Y: 0.0, Z: -4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 4b18ebfc-4159-4b92-96fd-999e1e68e37b + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 415d9070-ee44-4d25-add7-842ba8243ef1 + Name: Cell_Loop (55) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: d1e40bf8-a0ee-43df-93bf-168d7ef3e975 + Position: {X: 4.0, Y: 0.0, Z: -13.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: b823bf02-a847-468b-87e9-005d6cd63597 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 42a808f9-ea4f-433d-bc01-67b67292da24 + Name: Cell_Loop (27) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 9717f627-40e6-4866-b0af-1d0f7fc3c0a5 + Position: {X: -1.99999988, Y: 0.0, Z: -4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 540a155d-cee4-4258-a8f5-f670f82416cf + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 4363010c-85a0-40b5-9c1b-2109cf991d23 + Name: Cell_Loop (40) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 1d3d72d9-7b18-4b5b-a918-35408d9c72d4 + Position: {X: 6.0, Y: 0.0, Z: -4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 4f937e1c-e98c-4e3b-a8bc-6c0b2699e0d0 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 44b06c68-4d8b-4d98-9cac-2a9365ffee0f + Name: Cell_Loop (41) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 66c49d44-f98d-47ba-b24f-c4a655800e13 + Position: {X: -12.0, Y: 0.0, Z: -4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 68e48300-41e3-4d63-823c-cdb306701eb8 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 453548a9-0317-4f20-ac4a-4b47b2b27109 + Name: Cell_Loop (95) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 7239c533-ec02-4b34-b5ff-751efa06b6f2 + Position: {X: -8.0, Y: 0.0, Z: -25.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 01a7a3ed-fbb1-4901-a925-a3d54bcd5d6c + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 4a2942c6-1917-4244-b29b-91c3ac5f34a9 + Name: Cell_Loop (34) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: a592d140-e674-4222-9f50-b1320eac9c62 + Position: {X: -4.0, Y: 0.0, Z: -4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: ae21192b-cd0e-4f43-bbc2-4928f0ac3d4f + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 4a788d8b-5c01-4fd7-9524-bf9c36ff3a09 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 5d186ef6-5bf5-42cb-ba3d-cb6a82cc3bed + Position*: {X: 8.5, Y: 0.0, Z: -10.0} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 83fcec2c-d396-4b11-99aa-1d41ad8761da + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 7837091d-5707-48cc-aaba-ffc3c62e011b + - Folder: Borders + Entity: + Id: 4abdf939-d959-458d-a722-669a4681cecd + Name: Border_out_corner_90 + Components: + b923f0caab27e8703f9f8ee1a8dd1d18: !TransformComponent + Id: 123f3a74-46b3-40a8-aabf-9a805d278016 + Position*: {X: 8.499998, Y: 0.0, Z: 2.00000048} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6098c87ff6246e074f03b48bd2941bf8: !ModelComponent + Id: 229b4567-e674-4af3-ac2d-0f0a9a9e31bd + Model: e2199908-ce19-4e35-843e-6ade71089032:Environment/Platforms/Models/Border_out_corner_90 + Materials: {} + Base: + BasePartAsset: efe073eb-d2bd-4eb9-a065-4a103cc52d7c:Environment/Platforms/Prefabs/Border_corner_out + BasePartId: a08bbac9-bc4d-404a-84b2-5093fedf0e77 + InstanceId: b1844a4b-a47a-4aa3-a212-ca768d6a8ee8 + - Folder: Platform + Entity: + Id: 4b7783b6-4532-40ad-97b0-ba9d9e1fba45 + Name: Cell_Loop (92) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 4fa8ee0b-cd17-4490-8cbe-111b1673c498 + Position: {X: -4.0, Y: 0.0, Z: -25.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 08a0f309-d0cd-4577-bfb2-4b17111ac68d + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 4b9d9037-916e-4786-b9ec-ad16c4dc4725 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 7852d5b7-7fbd-4155-8be3-4ef853022fe4 + Position*: {X: 5.499999, Y: 0.0, Z: 2.00000143} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 4bf00aca-b300-43b7-bfd3-fda53cdcf78c + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 51d72095-5a9a-404b-9e48-23739b95c578 + - Folder: Borders + Entity: + Id: 513163b9-363f-4b52-8c28-105ba045cc91 + Name: Border_in_corner_90 + Components: + 8dd5441a9e0f7cc9cdac7e64be0bcc32: !TransformComponent + Id: 1b317662-a8ff-49ad-bc68-ed13825d4d8c + Position*: {X: 1.50000143, Y: 0.0, Z: -31.0} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 21e6c7c4ce05ff264d998193015bbbbe: !ModelComponent + Id: 53ff143b-8f73-446f-913e-e184eb6784e1 + Model: 1c9753bc-679d-4677-8f9f-9c88dd878d10:Environment/Platforms/Models/Border_in_corner_90 + Materials: {} + Base: + BasePartAsset: 21ebc8de-2500-440f-9e0f-d399cc3e5896:Environment/Platforms/Prefabs/Border_corner_in + BasePartId: 4bb90be4-e7c6-4e5e-b845-2c84f915a3d9 + InstanceId: 2215c3e5-ad46-48d6-888c-7d5c39b000eb + - Folder: Platform + Entity: + Id: 5147d893-68d6-4551-a34f-3d187b6a5138 + Name: Cell_Loop (51) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: e4e68d9e-5e67-48b7-918e-b2f81181241f + Position: {X: -8.0, Y: 0.0, Z: -13.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 4e2a3350-fae9-44fb-88f4-0efcdca0312d + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 51939935-5c18-43f9-b010-6c0feea42cae + Name: Cell_Loop (56) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: cdfab938-5a80-41d6-bed6-f515e0552a40 + Position: {X: -4.0, Y: 0.0, Z: -10.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 0ab5d95f-2458-4ef9-a361-d9e42ef922e1 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 53fba9bb-dab7-401c-b548-d4021d19ba4e + Name: Cell_Loop (14) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 48b732d9-5f24-4031-a188-9e60dbee2fc9 + Position: {X: -4.0, Y: 0.0, Z: -1.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: d17989d2-abff-438b-b7f3-bae37c51954a + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 54224c37-a6b7-475d-bbda-97c20bcab3ed + Name: Cell_Loop (33) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 3a772354-d1e6-4f1f-a3bf-6bd8f57169ff + Position: {X: 4.0, Y: 0.0, Z: -7.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 93afcb52-e159-40df-91ff-96a57a899c0c + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 568c68f6-6fa8-4409-b1ec-441bebb39b14 + Name: Cell_Loop (73) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 2aba1721-392b-4333-b9aa-12ab7b039d2e + Position: {X: -8.0, Y: 0.0, Z: -19.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 3becd797-0739-4a76-994a-6d91935a40fe + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 57297c37-6a23-426f-a07a-ea8a219c8c08 + Name: Cell_Loop (107) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 0b45f05f-271e-4d0b-8693-65205af7589d + Position: {X: -12.0, Y: 0.0, Z: -22.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 0bd0914d-f895-4a39-b3e0-2e941099107f + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 57cff2fb-2918-4ad1-a688-4addb5f46ceb + Name: Cell_Loop (20) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 3db6e546-e62c-4eb2-ab81-a2473e06a1d2 + Position: {X: 4.0, Y: 0.0, Z: -1.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 23217e28-c703-40f6-a986-1286b0c3af80 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 58033684-42e6-4779-a541-e893a698e080 + Name: Cell_Loop (50) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 5155c220-0137-4e7d-bc86-afa84680308c + Position: {X: -6.0, Y: 0.0, Z: -13.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 8bd03482-8f53-4f17-955f-918b7a7ed57d + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 584a497e-8d6f-4de2-93cb-1bf53b3c9656 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 8398957d-a74a-4408-a351-083ef6356736 + Position*: {X: 1.50000143, Y: 0.0, Z: -31.0} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 6e9dd1bf-23b8-4bfc-ab35-3af7d3c8672e + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: e1622559-9987-4161-8cfb-e6454e78bcf0 + - Folder: Borders + Entity: + Id: 5fc77aa4-014a-415c-8efc-28ea3956de5d + Name: Border_in_corner_90 + Components: + 8dd5441a9e0f7cc9cdac7e64be0bcc32: !TransformComponent + Id: 31a63198-9fa7-4c0d-a093-82d9f798dfb0 + Position*: {X: 0.499999255, Y: 0.0, Z: 3.00000048} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 21e6c7c4ce05ff264d998193015bbbbe: !ModelComponent + Id: f7c6decc-bb4a-4891-9946-9aa319dc6b98 + Model: 1c9753bc-679d-4677-8f9f-9c88dd878d10:Environment/Platforms/Models/Border_in_corner_90 + Materials: {} + Base: + BasePartAsset: 21ebc8de-2500-440f-9e0f-d399cc3e5896:Environment/Platforms/Prefabs/Border_corner_in + BasePartId: 4bb90be4-e7c6-4e5e-b845-2c84f915a3d9 + InstanceId: 0ed71e4c-3387-4518-998b-690d331c0430 + - Folder: Borders + Entity: + Id: 60154267-ad70-447a-84b3-4714e7cc84ca + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 5ad1b1ca-cef5-4f03-a70b-dae1a42ba11b + Position*: {X: -11.4999971, Y: 0.0, Z: -31.0} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 23ed824e-2c11-4fe8-b74a-14c7883cd95c + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: cf2619c8-8dbe-4637-ab89-19242a25b5e2 + - Folder: Borders + Entity: + Id: 603a54b7-43d1-45ea-99bc-3f394c3ec3c0 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 7e78e5d6-a468-4950-9be4-550ba8d3bbbb + Position*: {X: 8.5, Y: 0.0, Z: -28.0} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 14567b68-0da6-4a7b-8111-46e9aa232d70 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 60be794c-fcd1-4a9d-b877-b5dd59744119 + - Folder: Platform + Entity: + Id: 60785c4b-c381-42f0-a9bf-d3fb742e5965 + Name: Cell_Loop (28) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 0aff16ed-c72f-440a-9dbe-9d49903427e2 + Position: {X: -6.0, Y: 0.0, Z: -7.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 6f44e0ac-4276-4cb4-baea-fe825f040ef9 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 607c877a-b3ff-4b01-8351-794994ec659a + Name: Cell_Loop (18) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 23efad52-d2d7-42f3-a56b-aa05021113d5 + Position: {X: 6.0, Y: 0.0, Z: -1.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 95e88edb-1919-4df6-a84c-3f93f080e72f + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 61a88097-f724-4609-bd5b-8df3843ae360 + Name: Cell_Loop (106) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 472e16bd-3eb7-412e-93ee-339be2a2b0d4 + Position: {X: 6.0, Y: 0.0, Z: -22.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 640e2581-9a36-41b8-bb8d-acdaf9dccbe2 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 62bce914-8b63-48f4-92d2-8597f038a46a + Name: Cell_Loop (5) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: ecfe9095-e764-419d-90b2-aa575f6661b9 + Position: {X: -8.0, Y: 0.0, Z: 2.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 0b269baf-2c79-4974-92dd-dc5698ebf73c + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 6390019b-0688-4f7c-ab68-cc7dd742accd + Name: Cell_Loop (6) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: fce4ee57-d426-4e40-82e1-926f8666f069 + Position: {X: -10.0, Y: 0.0, Z: 2.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: b64b5b71-7124-4c2a-ae55-6a09ea6a9a22 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 681cc061-587b-46db-9ffe-1250d7aa7979 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: f5b016ef-6f35-4666-a016-03c1bf684304 + Position*: {X: 8.5, Y: 0.0, Z: -3.99999952} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: c03ed0cc-1c1c-4952-8c0f-5385ed80b17b + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 394a0783-af7c-4bf9-9260-0cbf7214d47e + - Folder: Platform + Entity: + Id: 68821b27-8772-4a1b-9703-24b386f524c3 + Name: Cell_Loop (94) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 7f4e6432-d334-4896-b281-f446e6d81c98 + Position: {X: -6.0, Y: 0.0, Z: -25.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: fce456c2-691b-4fa2-9fcc-d3b4f354c923 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 68a574c5-075c-49b9-a459-35bc83849468 + Name: Cell_Loop (4) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 9133aab6-f18e-4a86-9e19-57be2930b79f + Position: {X: -6.0, Y: 0.0, Z: 2.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 13528754-7dc8-4c88-a03d-44073b9afd2c + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 69f2e754-352b-4d85-9a67-6c35387e6fe7 + Name: Cell_Loop (98) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 4ceeba5c-ca6a-48d4-87cd-fefa7d6cf8e5 + Position: {X: -12.0, Y: 0.0, Z: -25.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: a8817cc6-9926-4fae-87d7-1793e304b3bb + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 6b51d4e0-8847-44ad-9432-69014516f7e7 + Name: Cell_Loop (47) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 159a798b-ff05-4227-907b-b179a7ba8220 + Position: {X: -1.99999988, Y: 0.0, Z: -13.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 11c18605-2780-4b69-a9a5-5fa4109b6a27 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 6c8a1e9f-ebe6-499e-a0b7-a518f81ecfd3 + Name: Border_in_corner_90 + Components: + 8dd5441a9e0f7cc9cdac7e64be0bcc32: !TransformComponent + Id: 8734453d-3150-40bd-a24a-31a14cfe05ad + Position*: {X: -7.5, Y: 0.0, Z: 2.0} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 21e6c7c4ce05ff264d998193015bbbbe: !ModelComponent + Id: 721ef1cc-d513-4b93-a584-86b49abb6a9b + Model: 1c9753bc-679d-4677-8f9f-9c88dd878d10:Environment/Platforms/Models/Border_in_corner_90 + Materials: {} + Base: + BasePartAsset: 21ebc8de-2500-440f-9e0f-d399cc3e5896:Environment/Platforms/Prefabs/Border_corner_in + BasePartId: 4bb90be4-e7c6-4e5e-b845-2c84f915a3d9 + InstanceId: 629f35ec-ab4f-49f9-b9e4-fc3de93eba0d + - Folder: Borders + Entity: + Id: 706a9059-d450-4b42-a19e-462998dc63b3 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: d6c2202e-ea21-4ba0-b1e4-47dfa02d4a96 + Position*: {X: 8.5, Y: 0.0, Z: -6.99999952} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 30c990ae-4174-43cc-86ab-1840036e1500 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: c67be61f-0269-4ddd-8b98-66160ed15dd5 + - Folder: Platform + Entity: + Id: 74065efb-3dba-4775-bca2-aef14bb5e806 + Name: Cell_Loop (88) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 96826ba9-38a0-493d-84ac-4516efeea902 + Position: {X: 2.0, Y: 0.0, Z: -16.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 8a72ef32-8dc7-4d76-9373-e172fc2551bf + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 79630df5-05f7-4a4e-bff7-167209e66a11 + Name: Cell_Loop (16) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 4b86fb7d-a192-49b2-8f58-7fee67fd91ae + Position: {X: -8.0, Y: 0.0, Z: -1.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: e787c02b-0c63-4e34-81ef-5294d50b0c8d + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 7acf6dc2-294a-42b0-b424-49a08325a3c0 + Name: Cell_Loop (11) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 88b2a349-4d28-4720-b763-16181dee27e7 + Position: {X: 6.0, Y: 0.0, Z: 2.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 9fe3bb03-6aea-4cc8-8b72-79fec6f96baf + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 7b0d3bdf-a1bd-4fbb-b4cb-8557235f8b5b + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: ece8f9dc-db5e-4ade-a433-251393f1df9e + Position*: {X: 8.5, Y: 0.0, Z: -13.0} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 9d970b66-6cc9-4a9d-a457-2d366dfd61db + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 26b436f8-87e4-46f8-9b84-d687aeec2da2 + - Folder: Platform + Entity: + Id: 7cdc0fea-1e3e-479f-bcef-5d74cdd8da69 + Name: Cell_Loop (37) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 47fb6e8e-a85b-4f58-945a-c70c307441e0 + Position: {X: 2.0, Y: 0.0, Z: -7.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 35e1d977-af65-4a2e-b14b-34083bd0d223 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 7ce074f4-27ea-4fb4-bedb-ca6617df351e + Name: Cell_Loop (79) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: cfec0b3e-1808-4122-905c-472539c91e2b + Position: {X: -14.0, Y: 0.0, Z: -19.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 7b2c5e53-6b09-4931-9f5f-bbf42f34dca7 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 7e35c27e-eee3-4655-aee7-903b2341eab6 + Name: Cell_Loop (17) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 47107354-3d76-4063-840a-8542a2162261 + Position: {X: -10.0, Y: 0.0, Z: -1.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 1777851e-3bd1-4e57-b068-294b4cfceb29 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 825e2212-c90d-455d-950c-24a6a69520b1 + Name: Cell_Loop (15) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 0de24c58-688b-4798-a21c-c7f46a187545 + Position: {X: -6.0, Y: 0.0, Z: -1.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 23dffa92-83e0-4495-a635-b752276e8bb3 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 8294e751-4c9d-43f5-b943-c55d9f5cc392 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: c52777c0-27fb-4ae1-a88d-68c28bc20883 + Position*: {X: 3.500002, Y: 0.0, Z: -31.0} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: d725e23e-ea50-4397-85be-d15781428f10 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 255a8a50-c5d6-42fd-ba70-8e4028656d2b + - Folder: Borders + Entity: + Id: 8a263299-d096-4a07-a632-a6b6e9d0693b + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: a4478f78-64d2-4d16-bcd8-97906db81c07 + Position*: {X: 3.499999, Y: 0.0, Z: 2.00000143} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: e155eeac-fb45-4a5c-9732-ebc6c8f1ad79 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: dafac530-3224-4252-bd8c-2ea7e9c43df3 + - Folder: Platform + Entity: + Id: 8a60906b-f6bd-41cd-a45b-c4fbb9672e15 + Name: Cell_Loop (31) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 13edeeec-9273-46a7-9d63-26168069a423 + Position: {X: 6.0, Y: 0.0, Z: -7.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: d2e4dc2e-48f0-435d-af6c-f3ebd7a2f9bb + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 8b1ec176-f8aa-4392-ae61-09f7bcb48d53 + Name: Cell_Loop (62) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 66e01d8f-3574-453a-b22d-428cf5fc52fc + Position: {X: 6.0, Y: 0.0, Z: -10.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 82d65be4-63f3-4bed-91b2-514543e036f9 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 8b50f907-2c2a-49b4-93bb-20712c59536c + Name: Cell_Loop (23) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 4c96e522-e2d7-4a5a-804d-32550b61e510 + Position: {X: 0.0, Y: 0.0, Z: -4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: dfdf8bb3-cf32-4a08-8103-4982ffc52ec4 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 8cc110b6-f9e5-4056-a39d-2bef794b0f04 + Name: Cell_Loop (57) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 4fa85714-ab06-4a5e-a222-7f3695d254d8 + Position: {X: -14.0, Y: 0.0, Z: -13.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 979b60fd-e3d3-45b8-a248-0c01a1fbeb7d + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 95d565a4-43a1-4578-a6d3-fd7199ae894d + Name: Cell_Loop (7) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 2320e91e-612a-4025-bdca-e0dcfce4cce8 + Position: {X: -12.0, Y: 0.0, Z: 2.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: e9b31ea4-227c-4b70-a5a5-55fc29100ce5 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 9616b250-e097-49fe-8827-1ce09bc2e810 + Name: Cell_Loop (111) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: d04442fd-b1a7-4b2b-8675-9a4bbb7d29a8 + Position: {X: 6.0, Y: 0.0, Z: -28.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 3f14bdf7-0f2d-45d2-af77-f023688fcde4 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 975a0c37-3438-44ff-8a27-f0635885020e + Name: Cell_Loop (26) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: a37acf9a-f2f0-43c9-be3e-34aca8fea455 + Position: {X: -4.0, Y: 0.0, Z: -7.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 655e1ef4-267d-497b-b93f-d36a2266af4d + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 9865aaa4-c90d-4c38-b087-0ad5e02e04b6 + Name: Cell_Loop (91) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: aba8c2c3-f31d-4f96-8ab3-cc42112dc0a0 + Position: {X: -1.99999988, Y: 0.0, Z: -25.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 5fa07968-66e2-4a81-b15c-d1d6821c2d5c + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 9c54abeb-4515-4f91-9139-42bada990153 + Name: Cell_Loop (69) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 13dffdfe-bddf-4fdf-95c0-3954c85d2a5b + Position: {X: -1.99999988, Y: 0.0, Z: -19.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: fdda01d9-2c86-4bdb-9537-26cabbffe356 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 9d7555a0-3380-40af-b8c1-f0744e562202 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 19f455b4-287d-4970-a573-e936a3fde586 + Position*: {X: -14.5, Y: 0.0, Z: -16.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 4ea47085-e6a3-4732-919f-af3d270fadea + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: ff75a355-9a30-40da-920f-f0d0a38430cb + - Folder: Borders + Entity: + Id: 9ee96265-a5fd-4a80-ae05-9aaff2b12b8b + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: ae24dfee-3302-4a83-a563-3cbc89d37503 + Position*: {X: 8.5, Y: 0.0, Z: -25.0} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 980faa36-fd6d-4a02-87f2-ad587be405f4 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: e52de576-d34e-42cb-87d6-f52bd7b14dee + - Folder: Platform + Entity: + Id: a524fd95-2eff-471d-a69e-107e1f87224e + Name: Cell_Loop (42) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 342071f2-f30a-4685-8f65-012470335280 + Position: {X: 4.0, Y: 0.0, Z: -4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 3473728d-74eb-423c-9c90-55065618f934 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: a86a1f9c-2d27-4b79-bc24-4dc5814f3713 + Name: Cell_Loop (30) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 040d2659-647d-4f04-82c5-4274551fd8fc + Position: {X: -10.0, Y: 0.0, Z: -7.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 7682cd26-976e-4dbb-9f18-6c6ce5d085d8 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: ab706d3d-4c17-42cb-9749-3740a6b9e47a + Name: Cell_Loop (118) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: b6709902-da50-4124-a5ae-4b8e8e3fb1ef + Position: {X: -8.0, Y: 0.0, Z: -28.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: ddeffb12-5720-4ffb-a6ea-f8f778f96435 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: aeaa6928-c948-4f81-a839-b8f33785a1dc + Name: Cell_Loop (115) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: f172f2bd-49dd-47af-a7d1-d94b9feb7364 + Position: {X: -1.99999988, Y: 0.0, Z: -28.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 69d2c6c2-596d-49bd-8e48-424d001c2c18 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: aeadc2ab-92c3-4c3a-840d-2bb2e08aa089 + Name: Cell_Loop (24) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: b7542ffd-b2b4-457e-845b-75e956448fa2 + Position: {X: 0.0, Y: 0.0, Z: -7.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 341933af-7e9f-40fe-bb6e-1299c73f9628 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: aed76ab5-582d-44da-ad83-749566ea9feb + Name: Cell_Loop (102) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 5597f232-adfc-45a1-a3cc-c470ab225686 + Position: {X: -6.0, Y: 0.0, Z: -22.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: f0ac1d84-1e48-4f0e-a23c-d935d750e327 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: afbd2e87-5d91-4d10-b4bf-f9a0a3b0273f + Name: Cell_Loop (81) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: ef778878-bdd1-4a6d-ada1-3f5a3215ab95 + Position: {X: 2.0, Y: 0.0, Z: -19.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 20b2841d-67ac-4f6b-ab5c-a8aebee96c54 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: afe79519-c964-477f-b654-182c516f8ac2 + Name: Cell_Loop (74) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 96e5a48f-b0f2-42b1-8999-89967725a0f1 + Position: {X: -10.0, Y: 0.0, Z: -19.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: eebd17e5-9573-47c2-b9c6-ed0d2d28a9e0 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: b067332a-6dd0-4226-af60-1aa75d19b573 + Name: Cell_Loop (66) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 9859215a-0174-4535-a2ab-2f88a60bd415 + Position: {X: 2.0, Y: 0.0, Z: -10.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 86094838-e9e2-4866-820b-8cd3fb7c3ce8 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: b138122e-e40a-443b-8558-b93385e2aa78 + Name: Cell_Loop (58) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 7f65b1a5-de7e-4113-bc41-c94c5bc9a0e8 + Position: {X: -6.0, Y: 0.0, Z: -10.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 2f931aaf-863d-4f08-95ad-cc1a2460569a + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: b1eb92d7-5885-44e5-bede-eee72fa9a1e0 + Name: Cell_Loop (110) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 19946625-72f6-4cfe-bab5-742c4b273732 + Position: {X: 2.0, Y: 0.0, Z: -22.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 4e04cb85-2c4d-4957-8a3d-535cd6a3704c + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: b56fadc0-115c-4627-9e5b-e060d2d757f3 + Name: Cell_Loop (3) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 37e6ae63-6a43-44e0-91b7-57c6c916b1a7 + Position: {X: -4.0, Y: 0.0, Z: 2.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: b21159d6-afd9-49e8-8bbd-f02c92870aa1 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: b68abf1a-a0f2-4249-a4e4-fea8e0074c4e + Name: Cell_Loop (21) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: aacc4b92-b3ac-4306-b376-2990dde49bd4 + Position: {X: -14.0, Y: 0.0, Z: -1.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 94182f14-91b8-41ae-be63-397b7677def1 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: b87e8d93-aa11-4e60-a295-fb10f8c4b451 + Name: Cell_Loop (83) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: a114eded-5a2a-4a0c-b3c8-7c319ffcb2c9 + Position: {X: -10.0, Y: 0.0, Z: -16.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: b22b273e-2d1e-436f-93c3-8aaec310799a + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: b9442363-0de5-44ef-aa3a-96f4bea30247 + Name: Cell_Loop (80) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: a6ce2c0a-d596-49a7-82ac-83feec6c662f + Position: {X: -6.0, Y: 0.0, Z: -16.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 4ceb6980-133c-45e7-a96b-aac398db4b1b + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: ba0b5685-1b58-4c45-beea-e940eaf82955 + Name: Cell_Loop (87) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 765cf2cd-e844-4cda-8c86-f4c372c6c673 + Position: {X: -14.0, Y: 0.0, Z: -16.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: e8b78f65-0e1b-4d3b-b6bb-cd05dfd95764 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: bc69bd5d-68c6-4227-83cb-2e3d716da4f6 + Name: Cell_Loop (54) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: d920f219-a1d0-41a4-9272-5868c8d0ea62 + Position: {X: -12.0, Y: 0.0, Z: -13.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 46d89476-06dd-4c5f-9dda-3820096c86ea + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: bcafb1a4-a3ad-444d-ac61-b36168e43d4e + Name: Cell_Loop (89) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: b07b6697-f13c-4405-ba14-20a67a51653a + Position: {X: 0.0, Y: 0.0, Z: -22.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: d6991d90-fa58-4d28-8e8b-60ef69f09463 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: bd64eb90-ed68-419e-866e-675b8c9fe226 + Name: Cell_Loop (82) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 96d37922-271d-4c39-8310-c31ac9010471 + Position: {X: -8.0, Y: 0.0, Z: -16.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: fb97775d-47a2-45a0-977a-2fdee285afdf + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: be0f6750-b2ee-4aeb-af13-a606c8e5e49f + Name: Border_in_corner_90 + Components: + 8dd5441a9e0f7cc9cdac7e64be0bcc32: !TransformComponent + Id: 61d108fb-f6e5-4c70-893f-0528155cb42b + Position*: {X: -6.49999762, Y: 0.0, Z: -32.0} + Rotation*: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 21e6c7c4ce05ff264d998193015bbbbe: !ModelComponent + Id: 95dfd76e-4e21-4821-b520-7d85ed90c702 + Model: 1c9753bc-679d-4677-8f9f-9c88dd878d10:Environment/Platforms/Models/Border_in_corner_90 + Materials: {} + Base: + BasePartAsset: 21ebc8de-2500-440f-9e0f-d399cc3e5896:Environment/Platforms/Prefabs/Border_corner_in + BasePartId: 4bb90be4-e7c6-4e5e-b845-2c84f915a3d9 + InstanceId: 7fbbeb98-caf3-47ce-adca-c80304d10b60 + - Folder: Platform + Entity: + Id: be7869f7-8b1d-407c-ba85-0f5d679c50b8 + Name: Cell_Loop (90) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 7cec88a3-a138-4960-9e54-0c96af6d86d5 + Position: {X: 0.0, Y: 0.0, Z: -25.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: fd2c1636-937a-40c4-a20f-8355f0367e76 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: c288d3c2-ee75-4868-bd7c-acd879f9baa3 + Name: Cell_Loop (38) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 68dac27b-3d5f-41c8-848d-bf460682711a + Position: {X: -8.0, Y: 0.0, Z: -4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 4c3d7a0f-104d-4785-bc73-0306c4b99703 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: c4d2f1b6-da66-4e04-82ab-7dd4280beb1b + Name: Cell_Loop (100) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 27d4d132-63c3-4a94-9537-258a4006c020 + Position: {X: -4.0, Y: 0.0, Z: -22.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 89a20a01-bd38-4366-b42a-3514e1474fdf + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: c84ba20d-4555-4e8c-bccc-62b7db60cb31 + Name: Cell_Loop (71) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 8952af41-3f96-4935-a963-c3be702a17bf + Position: {X: -1.99999988, Y: 0.0, Z: -16.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: c2aa3ee1-ef03-47ae-a85e-40ebf5fcab59 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: cc78adb2-66fd-4730-90db-579065aa7242 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 45f1f82a-c2c3-462d-9adf-e62af8510a2a + Position*: {X: -14.5, Y: 0.0, Z: -13.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: a273da50-2042-4834-9da1-4eaed86cd5c9 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: dea200b3-822c-4be1-8a82-2981def927f8 + - Folder: Platform + Entity: + Id: cd0d5476-35ca-4654-b32f-c11389427d49 + Name: Cell_Loop (75) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: a1dc8259-7be3-4c7e-8c3b-865699d683c1 + Position: {X: 6.0, Y: 0.0, Z: -19.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: e3e5fa26-c1c7-4d70-b531-15600edb6cfb + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: cd3ca4d3-a20b-422b-83c0-6b21c98b2ae4 + Name: Cell_Loop (32) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: bee01816-9d67-43e3-a51c-f839be25ab20 + Position: {X: -12.0, Y: 0.0, Z: -7.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 8dab013a-986c-4b75-8310-c97ac5a7afd1 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: cf4897fd-8f97-40f8-82ab-27c4ab101477 + Name: Cell_Loop (52) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 43219027-0074-473a-8f10-5a94db93e389 + Position: {X: -10.0, Y: 0.0, Z: -13.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: c7525aef-41be-411d-9748-77d412018e7c + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: cfd85de3-9a9b-417d-9842-b0136a35936f + Name: Cell_Loop (76) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: b3dbc079-91ae-41a8-8615-94114376a542 + Position: {X: -12.0, Y: 0.0, Z: -19.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 28647dc7-6bc7-424c-86e1-778a8f035c92 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: d07d8fde-ea7d-4bbd-9dd3-9d08edba313c + Name: Cell_Loop (19) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 66e12540-214d-4417-8a65-72c935312790 + Position: {X: -12.0, Y: 0.0, Z: -1.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 6b5a8da2-1d0e-4970-8491-9f8630d98142 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: d24f87a0-ca03-4302-ba66-1bde040a1657 + Name: Cell_Loop (93) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: b269d75f-1f00-4f4d-ac69-3715441ce28d + Position: {X: -1.99999988, Y: 0.0, Z: -22.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 1171f94e-4f8b-4cff-a46e-73bc8b46ee31 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: d349a35b-8546-4d86-aa2b-07d451f3d8d0 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 8f17ce4a-46cb-4881-afc5-8ee39e6b7ede + Position*: {X: -14.5, Y: 0.0, Z: -0.999999762} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 0656afd5-f8ab-453c-8eed-b4c9c0df9e39 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 55cebc13-82ba-48f1-8ed1-74b3aaa3a8a4 + - Folder: Platform + Entity: + Id: d3a78b76-554b-4557-bbed-e30bba0f0494 + Name: Cell_Loop (67) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: f27e63f5-29e6-4df9-ab26-a602008cce70 + Position: {X: 0.0, Y: 0.0, Z: -16.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 69827a6f-6138-4fcd-89de-d19abf92b333 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: d4d2dd16-5d16-431f-9b1a-f270d8aa7cd9 + Name: Border_out_corner_90 + Components: + b923f0caab27e8703f9f8ee1a8dd1d18: !TransformComponent + Id: 01a58da3-3ae7-46b7-939e-a9ab624a1fc2 + Position*: {X: -14.5, Y: 0.0, Z: 2.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6098c87ff6246e074f03b48bd2941bf8: !ModelComponent + Id: 9f3199b0-eaeb-4b57-a8e8-58743d5634b4 + Model: e2199908-ce19-4e35-843e-6ade71089032:Environment/Platforms/Models/Border_out_corner_90 + Materials: {} + Base: + BasePartAsset: efe073eb-d2bd-4eb9-a065-4a103cc52d7c:Environment/Platforms/Prefabs/Border_corner_out + BasePartId: a08bbac9-bc4d-404a-84b2-5093fedf0e77 + InstanceId: b838d65b-bbfc-450f-b03d-f6c2bac61b06 + - Folder: Platform + Entity: + Id: d529dcff-6ac4-4345-894b-0ecc0707c785 + Name: Cell_Loop (77) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 66615a00-febc-405e-a6ae-97eee08e8365 + Position: {X: 4.0, Y: 0.0, Z: -19.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: bfca2ff5-44ad-46d6-9818-63d9a557f1c0 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: da6acdb2-1f2a-4f73-9e34-8bbba7a6fd36 + Name: Cell_Loop (86) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 56c58441-b380-4dfb-918c-06490e8130da + Position: {X: 4.0, Y: 0.0, Z: -16.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 630bff41-372e-4f65-a8a1-85f3682d9e88 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: dcd80ab0-ea90-4923-83b9-925061d0a0d6 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 1f5a0bae-f59c-49f8-8918-53ac312dc250 + Position*: {X: -14.5, Y: 0.0, Z: -10.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 52080442-c46a-4de3-9757-c25e173a1992 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 07dd8cd0-ca96-4fd9-aca3-94034b02d245 + - Folder: Platform + Entity: + Id: df429f0a-67bc-4844-bb60-1092c0930d49 + Name: Cell_Loop (85) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 51004265-c253-4c56-9f81-5a9a99ad0274 + Position: {X: -12.0, Y: 0.0, Z: -16.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 4dd29606-2c6a-4340-a9d6-e7c269a6792c + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: dff41649-483e-4329-aedc-37b744d3ee84 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: a2fe381c-dbb1-4bb4-a014-7ae155b07fef + Position: {X: 2.0, Y: 0.0, Z: 2.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: e6c1429b-bb44-4eb2-b106-a0b8962001d5 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: e1df308f-5a69-40f5-a878-44a69b5d8cb5 + Name: Cell_Loop (61) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: bfcef70e-15c0-4b4c-9e0a-640083847dd9 + Position: {X: -10.0, Y: 0.0, Z: -10.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 6e5f5027-d3f8-492a-8111-bbae6c167295 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: e37a982a-31f4-4624-b639-77535cb1482e + Name: Cell_Loop (97) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 6057d28b-f2e0-4f71-a91e-6b540fa1b2ed + Position: {X: 6.0, Y: 0.0, Z: -25.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 24d4d63f-5ca0-4681-9da3-457a44cdfa49 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: e5dd4a58-26ad-42c7-b49f-273200a06b30 + Name: Cell_Loop (68) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: cd04332e-e80e-4da3-96a5-84e7944f355c + Position: {X: 0.0, Y: 0.0, Z: -19.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: d0835e6e-7e23-42d9-b74e-2b5a3dc5b53f + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: e65fd6db-56f1-4735-b5d7-d3cf58ad84c0 + Name: Cell_Loop (99) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 260d1d12-fcdc-40f1-9a28-ebb67b32f6aa + Position: {X: 4.0, Y: 0.0, Z: -25.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: db6684d8-8af7-4b0e-b8af-f8b705ea85b6 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: e684e7c2-0b6c-4534-88dd-99fa2e8551f6 + Name: Cell_Loop (48) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 8e811998-76d9-423e-8001-0ba7c8a41f7c + Position: {X: -4.0, Y: 0.0, Z: -13.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 78a52ce0-e8c2-4962-a442-a3a1d551e4af + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: f507d13b-27f5-4185-a295-0ada4ea43d8d + Name: Cell_Loop (49) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: c6b3280b-2eea-454f-92f9-21938349d40e + Position: {X: -1.99999988, Y: 0.0, Z: -10.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: e9f3d0cd-af3e-48f1-b4f4-89bccb0733e7 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: f5326583-fe31-4f5a-b80a-981ae1959510 + Name: Cell_Loop (112) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 963305bc-e653-403d-ba2c-4c12a5c4b0a9 + Position: {X: 4.0, Y: 0.0, Z: -28.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: f22d940a-fb88-4d88-99ac-a128c14e0c62 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: f532ba08-84f3-49c4-a98f-54f8797d1895 + Name: Cell_Loop (120) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 2b7508a4-6cd1-47ce-a73d-3d631e353e1f + Position: {X: -12.0, Y: 0.0, Z: -28.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 3f2ab3c7-6d20-43e2-afbd-0b57bd10897c + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: f62ee552-3b81-4cf6-b692-543b7e83cd3e + Name: Cell_Loop (84) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: b4197d6c-9420-49a4-a499-e0fb8ac0eae1 + Position: {X: 6.0, Y: 0.0, Z: -16.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: ae2a17ff-50f3-4e2c-8638-76ae78527c76 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: f6acaf2b-c29e-4ac8-b47d-1028510c2a40 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 6f71b981-7f16-49a4-9305-f9493159ee79 + Position*: {X: -14.5, Y: 0.0, Z: -3.99999976} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 696e8a1c-499c-4396-a2dc-0c47db656af7 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 982ffc41-f03d-423a-a10d-7724575ad43e + - Folder: Borders + Entity: + Id: f848077e-2e62-4f86-8b0c-d5c09054af7a + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 06a441df-dfe2-42c6-a99a-9e16e6b6bda8 + Position*: {X: 8.5, Y: 0.0, Z: -16.0} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 934990a0-5131-4593-a0fe-c8347c067846 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 434dd2ef-a9f6-4e29-85cd-9f5be9ef837c + - Folder: Borders + Entity: + Id: f8829c96-9ac2-43d3-aecd-f4ff0c857387 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 4bd2ce7f-ac0e-403b-a46a-e55468c26367 + Position*: {X: -14.5, Y: 0.0, Z: -25.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 964d218c-212b-42d0-9062-ed4754e5291b + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: c42712c9-76dc-4ed4-95c1-9a7e35093432 + - Folder: Platform + Entity: + Id: f92a5169-4004-4b89-b5f9-ae567c0519e0 + Name: Cell_Loop + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 05d4988c-f2c1-4c66-a714-fd24de54de64 + Position: {X: 0.0, Y: 0.0, Z: 2.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 52244268-de0b-4d71-bec4-604e5a001438 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: f9b3582d-5a7a-4e7b-84ff-8eca36228d4f + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 228711bb-38f5-4624-9e13-62c817014a27 + Position*: {X: -9.499997, Y: 0.0, Z: -31.0} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 7fa77095-8a7d-48ec-bf9c-db1eb59dc17b + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: ae22298d-97b3-47c2-9b21-fb9aef1668e4 + - Folder: Platform + Entity: + Id: fa503813-9490-4735-9fc4-15425a764887 + Name: Cell_Loop (43) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 3bd4eff3-603a-4428-bfc4-042a2cbd2fd6 + Position: {X: -14.0, Y: 0.0, Z: -4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 22fd29c4-1bac-4f41-b1e2-77257b8b604e + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: fd375fcc-6bc6-4abe-ae27-67a35beedafb + Name: Cell_Loop (103) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 4aa85c13-d814-4856-b0fc-b6e5887551fc + Position: {X: 2.0, Y: 0.0, Z: -25.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 546cbee4-57eb-4e71-bcb9-dfd1f8181f82 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: feaff647-cbf7-4d10-a74c-9c1c8a65af0d + Name: Cell_Loop (46) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 34644577-2f7f-4aa0-b5e0-ca5a33933b48 + Position: {X: 0.0, Y: 0.0, Z: -13.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: d41ec992-d092-4b7c-993a-89db09fe23df + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: ff8b575d-eae1-416d-a7fb-290060c7504c + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: dd930e90-7c4e-4bd2-a22e-aa786f37b49e + Position*: {X: -14.5, Y: 0.0, Z: -7.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 85edbab3-1dab-4bfe-8644-82b7c9e85165 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: b6f7fe66-3243-433c-a1e3-5104facc85d7 + - Folder: Platform + Entity: + Id: ffa5e764-2f84-4810-af20-dff6ee918523 + Name: Cell_Loop (39) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 29ddb503-3076-4ff0-a98e-4909a0e332cd + Position: {X: -10.0, Y: 0.0, Z: -4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: c014f337-2b9e-44a7-a1ea-bea7a4481d0b + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} diff --git a/Starbreach/Assets/Shared/Levels/Prefabs/Level_1-3_Platform.xkprefab b/Starbreach/Assets/Shared/Levels/Prefabs/Level_1-3_Platform.xkprefab new file mode 100644 index 0000000..4b65e8d --- /dev/null +++ b/Starbreach/Assets/Shared/Levels/Prefabs/Level_1-3_Platform.xkprefab @@ -0,0 +1,4163 @@ +!PrefabAsset +Id: f61931ad-a946-4e01-a913-6f11671bb52b +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! b331a24f-40cd-453c-8eef-81b1c4d6ed41 + - ref!! 34592e8e-b158-4fce-8b7c-f8c9bd61e463 + - ref!! 414e69f1-6b34-4d8b-9a9e-bcdbf4f7d33f + - ref!! 6e372767-b111-4b77-b5bc-b1712deccc36 + - ref!! 28de6024-9e41-4d9d-a79d-f5e373adb471 + - ref!! fde605f8-4c10-4456-a4a9-eb4616373dba + - ref!! 6a88f43d-8811-4657-ab5f-d1f8bc58045c + - ref!! d20619ea-76c6-48a6-8103-9383c64e2773 + - ref!! 0fa904ed-df06-4bcf-ad3a-4292892a7a90 + - ref!! 3733ad3b-f3b1-495a-8b38-0ccd524e282f + - ref!! 2e074062-8c53-4576-810b-56af6ec3cee3 + - ref!! 485ed56e-1c66-4265-b727-b43472d972fd + - ref!! 62edb9e4-0c81-4a22-8584-151a4d373e06 + - ref!! cb161688-8df0-42ab-a9e3-713806ea917f + - ref!! 92647b2c-d81a-4379-9fd1-7e38ee5e12a3 + - ref!! 34d86f8d-2584-4846-86ba-53bb4015cf78 + - ref!! 0adb14da-494c-4e56-966c-a48409dd42e8 + - ref!! 3e32b3dc-a631-445b-81fd-592dd06c066d + - ref!! e9ac593e-6ed9-4a81-ab21-1ab3bccb930c + - ref!! b3f85acf-3e82-4b01-9dc7-8bc37bef9789 + - ref!! 35c50689-b172-4da1-b103-6582f04e87fe + - ref!! 0be540c9-f006-4980-a257-4b54ee675370 + - ref!! 0d52b025-cc26-44e7-8cb0-4b07fa21b866 + - ref!! 786726f4-df7d-466f-baa2-a0d0add55732 + - ref!! 5d79733b-7fe2-4b30-aaf2-4ee80d4b5672 + - ref!! 61f7cb32-714b-4825-ad36-02236debe2e2 + - ref!! 6941422d-11a6-464a-8e06-fbc1f30505d5 + - ref!! 6bb39c85-acdc-49c1-a385-401a11460827 + - ref!! a271b964-343a-4b00-ba38-adaf093c2c4e + - ref!! dfe42f62-9eca-4249-825c-21706dad6474 + - ref!! 5f76f399-23a3-4f89-82db-f3b08c72b1f9 + - ref!! 48ccca46-f3c4-4d2f-840a-bae4263d26e1 + - ref!! 79c2fe52-226a-4585-b39e-27b2923a8a8d + - ref!! 1c27d8ad-c15b-4a45-8986-71ef3954d554 + - ref!! 2a3f26db-5d03-434f-b849-46a9994ae091 + - ref!! c2e00d35-f4dd-43be-b162-c207f70b1a05 + - ref!! 43529c1c-9e90-42e5-961f-b740772ccec2 + - ref!! 4d3a4093-6f30-4e0d-93aa-0cd53c3aa096 + - ref!! 4da86ff3-f53b-45aa-a9aa-8278b129bfe2 + - ref!! b00fbf57-13e1-4c00-ba14-3a9439eebba3 + - ref!! a48fb034-e3db-4824-b66b-e4bc4f59e6f8 + - ref!! 80fb61be-caff-4907-95dc-5e010f787bb6 + - ref!! 331e6fb1-3d80-4da5-978b-90ae61913645 + - ref!! af6be679-c5d3-433d-bc14-62b11feb6f11 + - ref!! 3f3b887c-d36c-4f02-a8be-7a71740155fe + - ref!! a8def679-4960-41f9-a3c9-d960f978895d + - ref!! c2de0221-718f-4f0d-ab31-05e406a9c319 + - ref!! 7868d32e-f5f3-4fc5-aee9-9a9df932950f + - ref!! e716b398-cf64-41c7-b6b3-9b9923ca1c92 + - ref!! 3b7f2e4e-bc8a-420e-a355-273869f0fa27 + - ref!! 441526d8-6ab2-47ca-94a6-f228666e1ac0 + - ref!! e1c8dc73-82c2-4678-a196-51ddb3dbb2f9 + - ref!! 43032835-6d3a-4262-873a-59999ffa1775 + - ref!! 443a40dc-30c8-4c4a-b86d-2505f0a9d077 + - ref!! 907b2151-37d9-47a8-9a72-d584c3fcc597 + - ref!! 4145396a-91b5-42d3-ab5b-4cb25c846528 + - ref!! f49199ff-745c-4ac2-8a14-34c85840702c + - ref!! a668723f-217c-41d9-b5ef-9709d4d79c40 + - ref!! d9c7e21b-80cf-4cdb-8857-c5304e7c7fd1 + - ref!! 5121a39f-d927-4355-9b44-094aca6565f9 + - ref!! c9777ae8-b891-495e-8b7a-6c1d03af2cd7 + - ref!! d2e37220-c0e0-479b-a80f-29b4fef2c558 + - ref!! 0aa2c6f8-a91f-40b5-a5a0-7c1238f34b0e + - ref!! fa3a73bc-89a1-400a-854b-36651fea6f3d + - ref!! f27b4c05-ac15-42c5-940a-b50a7d8dafa8 + - ref!! 63755b57-5213-4845-8328-aab6ac7abfef + - ref!! 63df064c-d322-406d-81d9-772fbbfc45d0 + - ref!! d67ddcf6-2e36-4703-a293-075a4ae51c6d + - ref!! 9cbd0d9b-c9b2-4461-8917-2a1a6257cbdb + - ref!! 25ce0d3a-e228-45c9-a6bf-e5d9912aaecd + - ref!! 3273ba03-b753-4b57-abba-47f61d8f160f + - ref!! 04b61cb7-dd91-44c4-a835-e57410327c73 + - ref!! 9047c9b1-0c5c-48d5-828e-7f069182428e + - ref!! baf4d4ec-5c96-49cf-a83e-0c0d305c83cf + - ref!! 2b6d3f6a-1664-494a-8d16-7e0d7b2a6a7b + - ref!! 19bc67c0-82ad-4cff-9a20-980c23c006fd + - ref!! d98041ff-7f02-4d55-aaa0-cfead33267c0 + - ref!! c080a4a7-a626-4c52-9aea-3445814a8a4c + - ref!! e0dab79a-7c1f-48a1-8f45-212e06a34a8d + - ref!! 040ddbc7-10ea-4042-82de-5288ee33d046 + - ref!! 487070ce-fe4c-41c5-8136-04c9dc8d3836 + - ref!! 7c8d92eb-13e0-4480-b916-d16c629cadbe + - ref!! 7cc11193-55ca-4b6a-acde-b20f53422e7f + - ref!! bebfd5a3-a3cb-4d08-ab7b-76780b757ad1 + - ref!! b5a2bd5d-fdc1-47bd-98d7-ec0c44fad1af + - ref!! 47f49356-fd99-46f8-9f3f-77e98f6ba37c + - ref!! 6af1b288-196a-4c04-8ae2-28f3478f8302 + - ref!! 6988c911-52e0-46dd-b97e-90281864e009 + - ref!! b42ba567-31c3-4ddd-9447-3fc16eb0bff1 + - ref!! 0d7591fb-9659-45a3-aa82-ebe40ffa87ea + - ref!! b59fd7a6-df68-4719-a757-de93f0cdc72f + - ref!! 0611a533-8ba2-4319-a77c-901a3a3f20a2 + - ref!! 1578b08f-fdf7-498f-a261-62d26741954e + - ref!! 1aa203f1-709e-43a9-a8ba-299dd3cfa9d0 + - ref!! c5bcf23c-fb53-4de5-92ae-0b75a301501f + - ref!! 7579d01d-df57-432c-a04d-1170944a2fcd + - ref!! d8febc54-287c-4768-b7b1-0274318642a3 + - ref!! 11626edf-5669-404a-82d4-e5c8ae0b7c51 + - ref!! 092ab614-5139-45b4-a777-616706891084 + - ref!! fa0c4bdb-c914-440a-8be8-943a58023e56 + - ref!! ddb9f4f3-85e4-4fd6-9505-6ff7522d43fc + - ref!! 65cac835-4a77-41ce-895d-992a63fcc36e + - ref!! 93ad4738-03fa-4f3c-be32-fe7a2cf15421 + - ref!! 42ac3f58-de7a-43e1-bc3c-a0229565e3cc + - ref!! 121d1595-605d-4e64-89f2-6b05ff865265 + - ref!! b55f4dce-1ce8-4bb6-90ec-61a273c119f7 + - ref!! 8cd4565d-b166-4895-8b6a-923f503d5bbf + - ref!! 2f6da274-cee8-4d31-8a26-1e9cdbab9e42 + - ref!! 450dc616-c78a-4647-9ab0-130d70deec02 + - ref!! aff9ad42-6943-4320-924a-fcd454f7bf85 + - ref!! d78968f1-4458-45fe-84d7-6b574b6480b5 + - ref!! d5f14415-d488-4e6d-8b8f-4e86d6e3b9e3 + - ref!! 23a90d97-8063-47c1-8b8f-50c2a3c61a63 + - ref!! 6398eb62-5521-4260-a4eb-082a86866986 + - ref!! 3325609e-0d78-4ad8-97dc-8c22c7d02970 + - ref!! 49449c29-f698-474d-96f4-cf0d586da1d0 + - ref!! bbad30ef-0b7b-47e3-b48d-1f2b5c0db8d3 + - ref!! 382fd8f1-e460-4259-aa34-5f44a793e2fd + - ref!! 1c36673a-caab-41b2-b897-fe5ec609f30f + - ref!! 87b9863f-73e9-4842-82d4-b63cb274ba93 + - ref!! 96decd41-37c0-4991-8c09-0958ac3b63d8 + - ref!! 46c082a0-970f-4290-8d50-7af9f01ea933 + - ref!! 504b15db-8014-400b-87dc-3bd1208a1883 + - ref!! 2069bc21-245f-462a-8164-e0826ee1c66d + - ref!! 47b34bcf-5444-4bcf-83dd-eb3c554b8095 + - ref!! b59fbe1b-c1cb-4162-9e6f-183eb36ea171 + - ref!! 7d884420-3928-4fc8-9317-59a1a6d8f9a8 + - ref!! b0bd701f-0a15-4af3-a2a2-538a0e91d549 + - ref!! 33525e7e-5f3d-4022-8b34-5441ace4d667 + - ref!! 122d0b13-4fa2-4a24-8669-56ea5caf36b8 + - ref!! 19e43ecb-66c5-4e50-9a5c-993897c87417 + - ref!! 03d5eecf-092b-4ac1-9b48-4ced4445ecef + - ref!! 2751bbea-192b-42a4-81db-2eefabf97b91 + - ref!! b431d7c6-cbbe-4c77-ad7b-2c1dbe8fef63 + - ref!! 4b6a7d11-d5cc-43bd-b62c-b42b777ed620 + - ref!! 924ad73b-f1bb-4747-a7dd-e49ec4b8a714 + - ref!! 5fb0d907-0c84-4bd8-9bfd-2313e6d2e3b6 + - ref!! 764a43cd-d543-4ecf-9090-fa2918e243a5 + - ref!! 042e64b3-3ba7-441e-870e-376a93024a41 + - ref!! 0500bdf1-453b-49b8-9645-f6008e4752f3 + - ref!! 6fc1e731-c32f-477c-96c5-27a477cc9a71 + - ref!! ecc0638a-f408-496e-b31d-c37e15207442 + - ref!! 8589b993-f7c9-417c-aba7-f7a1a23cd022 + - ref!! 5a10b8e9-53ac-435c-b7ad-87ce4ec46f18 + - ref!! 885a66d4-53c4-4d7f-befc-303c76f7720c + - ref!! 0c4cacdf-1872-4135-a162-10953adb1e38 + - ref!! 436d5956-71af-4313-8cbe-7b06a0f84a08 + - ref!! 4cd3d466-a3e2-45be-873c-91cb769ead82 + - ref!! 1af6e797-1a1e-434b-ab81-68e8608766bf + - ref!! 275e62ba-d3c7-4318-8256-3beda8313213 + - ref!! 101ec6dd-b726-4854-a354-2654eea1a351 + - ref!! 36e0d1f6-152c-4c36-9763-884422674870 + - ref!! c6ad8913-c7d7-41c4-91fa-517e7bae66da + - ref!! 99741773-3972-4676-8699-d055c86fee9d + - ref!! e405987c-69b1-43d4-a137-3a7207938edf + - ref!! a6c747a8-991d-4a81-9d0f-95aa75369473 + - ref!! 4c9b9648-e3f4-419f-b6b6-eec6dda830d3 + - ref!! bf7944f0-ceba-4b45-be2e-934c3a1ff17b + - ref!! 7ea8d836-9a19-4bc4-9528-b3d7140d309e + - ref!! 41f842e0-7b3d-4b4a-b939-c25e4c80d2a5 + - ref!! ba6635d8-957a-4427-a568-8ef0a2dc89fe + - ref!! e8f7e948-8679-4950-b7e6-f3857accac34 + - ref!! 09f7eb09-6d15-4c82-80b4-905731f8796e + - ref!! d4fd61e3-44ae-4480-9e35-f9061356f8d0 + - ref!! 09f8d9f4-2a1a-40de-a0ec-dc02959a8344 + - ref!! 760c0b37-68ea-46c4-8e19-00afbea8fe76 + - ref!! feed67c9-5517-434e-9991-b98c896d551e + - ref!! e48ed192-57d2-4f05-8ac2-ab4550440753 + - ref!! 95ff10dc-d59e-4eff-aef5-831f7946dc6d + - ref!! 3cb1a376-d903-4305-920a-e659c3bda6fe + - ref!! b8f75816-6eaa-4813-9f55-41a7fdd1deed + - ref!! 6f5f2eb0-aef4-4005-b9ae-cf8ccfb47b5f + - ref!! 51b1aa17-ee96-4663-91e9-6b6c8c195840 + - ref!! 40f331d6-7a9d-4e1a-bc5c-3ed165b8601d + - ref!! 7b55d6c1-8959-4b1d-b090-798fafc6414a + - ref!! 2be2a813-3a6b-443d-8422-749b3123cf0f + - ref!! 366fa1d3-a954-4eaf-be2c-cefd1d5ee175 + - ref!! f63ff302-334e-4860-a15f-f86c87818d5c + - ref!! 208f1ad8-838d-4167-86c6-7e4155fc5c9c + - ref!! b0a893bd-fe4c-4313-a869-87c98cdb6506 + - ref!! 8a14ba4d-226e-4b9c-8d99-4f90b9532666 + - ref!! 0c56c3fc-815b-41e3-9419-f312b13b2d29 + - ref!! a64a853f-f2a9-4f56-b30c-cc6c208f3cd6 + - ref!! 212741f3-6c51-4686-9e41-45f2b67c8d7d + - ref!! 9fa43b3f-211a-4a7f-8bb5-ceeb78489892 + - ref!! 59511785-cb45-4ec4-a801-b67a8c5f8614 + - ref!! cf879240-3c54-4884-a313-8512ded32f28 + - ref!! 50ebf669-8be5-4f89-a935-12ecd00af64a + - ref!! 43e520f7-c13e-4a03-bd8d-c17db27f8f0d + - ref!! b780ce12-5d07-4097-bbad-914f54a25e28 + - ref!! d913f974-5e28-49f2-a772-e809ca885dda + - ref!! 22a06a27-410d-4f1c-a692-205da52b4d8a + - ref!! 8290a24b-cfe7-470d-b7e0-e3c09cfa2d8f + - ref!! b87988c8-8d43-47ed-8370-c6650f70aaea + - ref!! 337fbae5-72f0-4b8f-8887-8e6f43147990 + - ref!! afbdc8fd-f3b0-4a12-8179-78547889879b + - ref!! 96c79b60-daa5-4aed-84d1-4be271ad8aaa + - ref!! 7aa7b08f-5a94-42df-8823-276678fb4443 + - ref!! 6f2f9be3-69a3-4110-b08e-5d919c86c8e1 + - ref!! 2ab170d6-a497-4865-a7dc-672b2c5db1d6 + - ref!! 357524a6-62bd-42e6-8923-96d9732a0af5 + - ref!! dbea4859-667f-439d-a6e6-becc68f32f0c + - ref!! d67887e1-e31f-4412-ab49-2a6ee94a8e6a + - ref!! 56d4b35a-2523-4487-acd7-ff4fe6920d7d + - ref!! d76d865a-8c28-489e-98c1-c731dfbe9621 + - ref!! 1d8898ee-a9b7-4173-9891-0a9c68bda30c + - ref!! e1eb5e4d-9e7e-44f6-833e-5f3880ba2433 + - ref!! f7a69124-98e5-48fb-b620-977a162451d6 + - ref!! 1d5799bd-a872-479e-8061-827b03a4d5e6 + - ref!! c64bba2e-4f33-494f-a250-5f098df49331 + - ref!! ecf11ae2-8fcb-4832-8261-ef6ee72a866e + - ref!! 42939f36-e922-422d-9495-d2322d4c3324 + - ref!! 6f830f9e-a5f1-41ea-9455-adf5a9cc389f + - ref!! c53c19a8-bc18-4e21-8b9e-111fde87b5fd + - ref!! 33b67128-5d6a-48dc-81a6-5ba72ea83f4e + - ref!! 90a2d416-8896-44b3-9087-f30989fc0d48 + - ref!! 8ac2dc95-d985-42a6-9173-4895601ec0f5 + - ref!! 60383a65-a664-40a8-92a8-add09082e505 + - ref!! d2e090b3-8576-481e-88e0-cf27ef06dd6a + - ref!! c8dfafca-5c49-431c-9c2e-72f2ff2e2725 + - ref!! 7a9c9fbb-8957-40ab-95b0-37c71028d7fd + - ref!! 7c696136-75f5-4462-8128-c6e66b34ec5f + - ref!! d0afd073-4865-4981-9bd4-b6b9d67682ab + - ref!! b2656149-1443-4df1-ac86-0f73f7e62186 + - ref!! 72917765-22c8-48da-8c27-0e8f55a2a5cc + - ref!! 8f2c3351-4bf8-4fc2-8cf0-635f23a75d06 + - ref!! b12032a1-bb36-4ceb-a206-81031ceafc38 + - ref!! 9d28d6d0-4ced-4046-9421-e5003cc4e50f + - ref!! a77f969e-6b46-4fe7-8a8b-56d1cde29b7b + - ref!! 057745f0-ea68-44aa-a20b-87463549fffc + - ref!! b1f54676-f8b0-4c6b-a3bb-f0e484bd6d9a + - ref!! df2d32b4-db25-470d-80fe-4349aa1f834e + - ref!! ffa1fed3-3732-4721-b150-8c43522a1fe5 + - ref!! 4bb5cf88-19c7-46ac-8a13-e59a2714ad63 + - ref!! 6296073a-9297-4c7f-8fdd-4f6ec5116217 + - ref!! 9f3b114e-2a12-43ea-864c-9c9bb6373a9b + - ref!! 03ad43b5-c56c-4c62-aaae-163d84febae9 + - ref!! 58dfe5a9-240d-44e8-a2ec-9e0e92bfee6d + - ref!! 45ff8af6-93ce-4f75-aad2-44598fddf3d0 + Parts: + - Entity: + Id: 03ad43b5-c56c-4c62-aaae-163d84febae9 + Name: FloatingRocks2_1 + Components: + bfeea97f439a76dd452891215a866be6: !TransformComponent + Id: af6cbc8b-f95c-4fe0-b7d4-6b2c2986dfd8 + Position: {X: 13.0, Y: 0.0, Z: -5.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 5ea37347d17e28412f4e8474fe0527ba: ref!! 27c0d814-4631-4588-8e57-4e347a97d9bf + 5000e24fe937cee9431234076ba8db82: ref!! 31fa7667-d18b-42ff-8ca8-978a343aae4e + 96a240d300ad1427b5e99a40e9521381: ref!! 42c1f0e4-6504-4fff-aa1f-a9dd33e1a671 + - Folder: Platform + Entity: + Id: 03d5eecf-092b-4ac1-9b48-4ced4445ecef + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 70353dfa-54ab-4ca3-b7a8-3197538f72ae + Position: {X: 0.0, Y: 0.0, Z: -32.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: e0f88d07-b4fa-4e9d-a90d-ed94387ba257 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 040ddbc7-10ea-4042-82de-5288ee33d046 + Name: Cell_Loop (63) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 75047eb5-4e7d-459e-a9a2-63689db0da2e + Position: {X: -1.0, Y: 0.0, Z: -20.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 6d491daf-3af7-40fa-aa2f-d57be86e1b69 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 042e64b3-3ba7-441e-870e-376a93024a41 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 139bbe17-fc3a-4b69-9b22-1e879f749fa5 + Position: {X: -14.0, Y: 0.0, Z: -32.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 8ead93c0-14ca-417f-820b-08e38b5b8d1a + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 04b61cb7-dd91-44c4-a835-e57410327c73 + Name: Cell_Loop (59) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 8254ce91-d246-4350-8ddd-613f9f7003f8 + Position: {X: -5.0, Y: 0.0, Z: -17.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: bd405eee-f8ac-4dee-b132-ed146ec2ae58 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 0500bdf1-453b-49b8-9645-f6008e4752f3 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: fe8a5667-43eb-40b8-af62-616b2b0157b5 + Position: {X: -16.0, Y: 0.0, Z: -32.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: c7603454-4d32-468f-8330-21484aca5115 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 057745f0-ea68-44aa-a20b-87463549fffc + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 23e9399a-e8e6-444d-af6b-f01dfff62c23 + Position*: {X: 8.284054, Y: 0.0, Z: 2.93292952} + Rotation*: {X: 0.0, Y: 0.87950325, Z: 0.0, W: 0.475892842} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 237d8abe-e92f-4c45-bedd-54aa1e8d3284 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 47898f11-7e80-4b93-9bc1-d294ba3b12b9 + - Folder: Platform + Entity: + Id: 0611a533-8ba2-4319-a77c-901a3a3f20a2 + Name: Cell_Loop (69) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: bd3f5a93-9cc5-462a-8fec-64d52e185ee3 + Position: {X: 5.0, Y: 0.0, Z: -20.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 923887d9-9c33-43b1-be45-4bf57635c9f8 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 092ab614-5139-45b4-a777-616706891084 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 25b0645a-bc00-442c-b82b-57d7b14b5d3f + Position: {X: -3.0, Y: 0.0, Z: -29.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: a7ae6d10-2ca2-4b86-bcf4-2eb7793fb2ab + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 09f7eb09-6d15-4c82-80b4-905731f8796e + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: fb3b4d78-e51e-4a14-a107-05613d51ad71 + Position: {X: -17.0, Y: 0.0, Z: -35.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: f0995eaa-8dd0-49eb-bab9-db283f26806b + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 09f8d9f4-2a1a-40de-a0ec-dc02959a8344 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: ff79b38b-3ca3-4d47-8a62-b687f1190d4b + Position: {X: -13.0, Y: 0.0, Z: -35.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: f86849bb-5085-447e-80f4-346d223a92aa + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 0aa2c6f8-a91f-40b5-a5a0-7c1238f34b0e + Name: Cell_Loop (53) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 6f7859dc-8074-4cfc-9040-bdf7d0686ad3 + Position: {X: -13.0, Y: 0.0, Z: -14.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: ed8fbe0c-861b-4499-9b1f-80400810f697 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 0adb14da-494c-4e56-966c-a48409dd42e8 + Name: Cell_Loop (18) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 04f2a304-51a2-4975-a5df-0a62924f4cfd + Position: {X: 1.0, Y: 0.0, Z: -2.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: f1651168-8956-41f6-8a3d-b607acdce308 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 0be540c9-f006-4980-a257-4b54ee675370 + Name: Cell_Loop (22) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 987df867-c962-4c6c-992c-8f6bf9926f89 + Position: {X: 3.0, Y: 0.0, Z: -2.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 86f54f94-7a82-4ae4-b7c3-c1db14bedc0e + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 0c4cacdf-1872-4135-a162-10953adb1e38 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 6b20bc7c-1bfc-4cc8-9baf-32cac2975a41 + Position: {X: -28.0, Y: 0.0, Z: -32.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 6502ec27-ced4-4ca7-b411-b027acf62db5 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 0c56c3fc-815b-41e3-9419-f312b13b2d29 + Name: Cell_Loop (74) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 87d74b29-551f-4024-8005-31769e4583df + Position: {X: -3.0, Y: 0.0, Z: -23.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: fa5c342d-4a29-4ca6-928f-4a2ade22f4d5 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 0d52b025-cc26-44e7-8cb0-4b07fa21b866 + Name: Cell_Loop (23) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 2dc04f25-3e3f-4acb-b6ee-ef8ec0f0fc8f + Position*: {X: 5.0, Y: 0.0, Z: -2.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: ed58797c-95df-4676-a416-00bacebbde5d + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 0d7591fb-9659-45a3-aa82-ebe40ffa87ea + Name: Cell_Loop (67) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 373e3b5b-9958-4535-922c-fbc2513418ff + Position: {X: -18.0, Y: 0.0, Z: -20.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: b8032f29-7c6c-4a1a-9767-def572856865 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 0fa904ed-df06-4bcf-ad3a-4292892a7a90 + Name: Cell_Loop (13) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 2b53622a-27a2-4469-aae6-c49d58b92ada + Position: {X: -7.0, Y: 0.0, Z: 1.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: b108d411-848e-4986-b33c-69b6ae2c582b + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 101ec6dd-b726-4854-a354-2654eea1a351 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: b77648af-a4c6-479d-b833-85fd8181c10a + Position: {X: -38.0, Y: 0.0, Z: -32.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 24576f74-45de-4f76-868f-4ee3727ef74b + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 11626edf-5669-404a-82d4-e5c8ae0b7c51 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 1b536a55-49be-4ad5-b9a2-83e876fd1013 + Position: {X: -1.0, Y: 0.0, Z: -29.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 17baa803-5270-4579-9e9f-28eda6277f25 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 121d1595-605d-4e64-89f2-6b05ff865265 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: e20d65ee-9aab-4f24-820b-55f9c87b1394 + Position: {X: -15.0, Y: 0.0, Z: -29.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: e75771d8-ecdb-4b86-8412-30bac8ff48e9 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 122d0b13-4fa2-4a24-8669-56ea5caf36b8 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 645f5e70-0e50-4dc0-9d2c-87899358967d + Position: {X: -26.0, Y: 0.0, Z: -26.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 234266eb-f733-4025-906a-b942f2a5765e + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 1578b08f-fdf7-498f-a261-62d26741954e + Name: Cell_Loop (70) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 0eeec3c2-3dd4-49e2-87c4-91f9984f86d8 + Position: {X: 5.0, Y: 0.0, Z: -23.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: b3dc85d1-5d7a-415b-bbc2-218969e7548d + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 19bc67c0-82ad-4cff-9a20-980c23c006fd + Name: Cell_Loop (60) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: a145fd3c-7c96-488d-b54d-b8904cc70920 + Position: {X: -13.0, Y: 0.0, Z: -17.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 5be880ee-039f-4a12-810c-ba60b4e41f33 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 19e43ecb-66c5-4e50-9a5c-993897c87417 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: f393e4e9-569a-4649-8ab3-657276edb261 + Position: {X: -27.0, Y: 0.0, Z: -26.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 40bc53b9-7b6f-495d-86f0-7077df722f93 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 1aa203f1-709e-43a9-a8ba-299dd3cfa9d0 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 241eae2d-afe9-420c-a572-7c9e8fa8ad17 + Position: {X: 3.0, Y: 0.0, Z: -23.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 11d92c89-3044-4d2a-a366-dafd5520ae1b + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 1af6e797-1a1e-434b-ab81-68e8608766bf + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 467da598-91e9-454f-91fc-a439e2827596 + Position: {X: -34.0, Y: 0.0, Z: -32.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 0817c02d-4225-4c9d-9298-7fa60a49c342 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 1c27d8ad-c15b-4a45-8986-71ef3954d554 + Name: Cell_Loop (31) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 92f269fb-d214-49ff-9da6-40640b1dfdea + Position: {X: 5.0, Y: 0.0, Z: -5.00000048} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: c284c5f1-a865-45f8-9fff-14cf4c6217ad + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 1c36673a-caab-41b2-b897-fe5ec609f30f + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 16a6ce4a-dbb5-478c-8609-4195bb02bb69 + Position: {X: -4.0, Y: 0.0, Z: -26.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: ff9d099b-cc5d-4585-b611-852c0cae7111 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 1d5799bd-a872-479e-8061-827b03a4d5e6 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: be03306d-f005-481b-b1b1-0f1eb0a73c45 + Position*: {X: -16.221777, Y: 0.0, Z: -38.72633} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 4b9cb20c-ac48-40e4-a94c-eff027693189 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 0252b9fd-a316-42b7-8c20-527866265ebf + - Folder: Borders + Entity: + Id: 1d8898ee-a9b7-4173-9891-0a9c68bda30c + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: ae3d06a4-7805-429b-9443-efc07ab8adcd + Position*: {X: -25.221777, Y: 0.0, Z: -38.72633} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: e0118bd3-eeb4-4987-8711-c41e586cdce3 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 8e844e01-38be-4697-ac14-6b9c364d4318 + - Folder: Platform + Entity: + Id: 2069bc21-245f-462a-8164-e0826ee1c66d + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: bed269eb-7611-4618-8d9d-f908b438b619 + Position: {X: -14.0, Y: 0.0, Z: -26.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: edd50ab6-1c60-4653-b529-0ec14b014b56 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 208f1ad8-838d-4167-86c6-7e4155fc5c9c + Name: Cell_Loop (72) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 05ae56b0-bda2-486c-8264-27ba7a0ed82f + Position: {X: -21.0, Y: 0.0, Z: -23.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 84a83302-bbc7-44f6-95a5-e14cc14cf92c + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 212741f3-6c51-4686-9e41-45f2b67c8d7d + Name: Cell_Loop (76) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 678fc59b-57ca-4e64-9c5d-a830c28432c1 + Position: {X: -1.0, Y: 0.0, Z: -23.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: ce801028-2fc7-4b08-b36f-c6b03ce08988 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 22a06a27-410d-4f1c-a692-205da52b4d8a + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: a6e60c95-f976-4063-bed7-116702fbb204 + Position*: {X: -12.6278782, Y: 0.01, Z: -15.3072176} + Rotation*: {X: 0.0, Y: 0.3007058, Z: 0.0, W: 0.953716934} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 33b6b46c-1182-481b-b837-0376e0464680 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 766b6bda-31f1-4984-b10b-dea74310962c + - Folder: Platform + Entity: + Id: 23a90d97-8063-47c1-8b8f-50c2a3c61a63 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 8a79144b-fb34-4d35-b8f4-339c12ed779a + Position: {X: -31.0, Y: 0.0, Z: -29.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 04047df1-c50a-458a-8bf1-da1384d1f961 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 25ce0d3a-e228-45c9-a6bf-e5d9912aaecd + Name: Cell_Loop (57) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 35aae8da-6ad0-4c83-b46a-73a90a74f70a + Position: {X: 1.0, Y: 0.0, Z: -17.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: dc47b76b-a9aa-45d9-a13a-1b309e54a499 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 2751bbea-192b-42a4-81db-2eefabf97b91 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: abe9bf7b-d3b4-41a8-b3c0-08b3cc658aca + Position: {X: -2.0, Y: 0.0, Z: -32.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: b6b0d1dd-2869-4385-a048-aa1266cb0d36 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 275e62ba-d3c7-4318-8256-3beda8313213 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 3d79f709-0c6f-4aa5-8620-68f667a55158 + Position: {X: -36.0, Y: 0.0, Z: -32.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: b33914e0-8bb0-4b42-8a98-56de3116748c + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 28de6024-9e41-4d9d-a79d-f5e373adb471 + Name: Cell_Loop (9) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 31c6bd67-671b-4140-b198-89d7b21c4e77 + Position: {X: -1.0, Y: 0.0, Z: 1.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 685380b3-66d0-4a01-99bb-fa843034df04 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 2a3f26db-5d03-434f-b849-46a9994ae091 + Name: Cell_Loop (33) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: fa07f9f3-98e7-42ea-8d82-0867e1c208e7 + Position: {X: -1.0, Y: 0.0, Z: -8.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 9c14020d-7f70-43f4-acb7-de8e763a8240 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 2ab170d6-a497-4865-a7dc-672b2c5db1d6 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 3e41f6fc-7578-4230-b27e-84af4ee7d1f5 + Position*: {X: -30.5732136, Y: 0.01, Z: -28.8170662} + Rotation*: {X: 0.0, Y: 0.675590158, Z: 0.0, W: 0.7372773} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 086fee4c-fc27-4dfb-9b0c-eacc8434b936 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: ab299406-beb6-42f0-a09e-f71908e40b7f + - Folder: Platform + Entity: + Id: 2b6d3f6a-1664-494a-8d16-7e0d7b2a6a7b + Name: Cell_Loop (60) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: ea2d619c-0d6b-44c1-8273-3257a3f4f5a7 + Position: {X: -11.0, Y: 0.0, Z: -17.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: fa613d04-0fe2-4bcc-aed6-c09e3225dd28 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 2be2a813-3a6b-443d-8422-749b3123cf0f + Name: Cell_Loop (72) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 60a3d5de-da42-48c4-a21d-b5f64d8a5919 + Position: {X: -15.0, Y: 0.0, Z: -23.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 92273be9-2511-4f8e-8f88-c7e8bec187db + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 2e074062-8c53-4576-810b-56af6ec3cee3 + Name: Cell_Loop (15) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 2091d3e9-403f-408e-bff8-fed9fcb2fe37 + Position: {X: 5.0, Y: 0.0, Z: 1.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: d8cd95a0-07f9-4bd0-b0a5-fa74db006ee7 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 2f6da274-cee8-4d31-8a26-1e9cdbab9e42 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: cbb6c267-7391-4f7b-9483-83a157aaab71 + Position: {X: -21.0, Y: 0.0, Z: -29.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 5f208ffd-8dcf-4bc6-a821-d6226588c40d + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 3273ba03-b753-4b57-abba-47f61d8f160f + Name: Cell_Loop (58) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 6ea4ef97-308c-4833-8785-f40b7f9e7b41 + Position: {X: -3.0, Y: 0.0, Z: -17.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 2d2ed6a0-f616-4daf-8de6-96e13cea512a + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 331e6fb1-3d80-4da5-978b-90ae61913645 + Name: Cell_Loop (39) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: bb349f21-8c62-45f9-aa5b-91e81b04fdfe + Position: {X: 5.0, Y: 0.0, Z: -8.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 9bbdfd46-5659-4f9d-9bd1-f583e69bf893 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 3325609e-0d78-4ad8-97dc-8c22c7d02970 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 9d592430-8c02-46dd-85b1-e71f76a72b77 + Position: {X: -35.0, Y: 0.0, Z: -29.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: a78d0b5b-b5bc-4dae-b2d8-6311ab2ff24e + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 33525e7e-5f3d-4022-8b34-5441ace4d667 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 7d5cbe8c-189e-495c-ae79-fd33a51de683 + Position: {X: -24.0, Y: 0.0, Z: -26.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 71f99968-4e9b-486c-865c-2a217c3448bf + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 337fbae5-72f0-4b8f-8887-8e6f43147990 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 81160b25-bc94-4191-ac97-192dc7c37cac + Position*: {X: -18.2110729, Y: 0.0, Z: -21.9648781} + Rotation*: {X: 0.0, Y: 0.42261827, Z: 0.0, W: 0.906307757} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: af6a655b-7915-4eb2-ac6c-7ca465668791 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 50e704a8-d570-4d61-b12d-ba7bc68827e1 + - Folder: Borders + Entity: + Id: 33b67128-5d6a-48dc-81a6-5ba72ea83f4e + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 24e8fec5-1815-4e6b-84c6-9fe77e87ffa3 + Position*: {X: 7.49999666, Y: 0.0, Z: -23.0} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.37113847E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: e65dba1f-b491-4132-bfa2-262a69c835a9 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 9c514a53-9773-460b-9ff4-f4847be060f9 + - Folder: Platform + Entity: + Id: 34592e8e-b158-4fce-8b7c-f8c9bd61e463 + Name: Cell_Loop (3) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 93b611d6-6def-439a-aa25-3758b5bb037a + Position: {X: -3.0, Y: 0.0, Z: 4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: a13f2868-d7cb-414f-ac6b-f1dcf0bbf0f6 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 34d86f8d-2584-4846-86ba-53bb4015cf78 + Name: Cell_Loop (17) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 7c114ff0-c778-488e-a462-537b1dfa681b + Position: {X: -1.0, Y: 0.0, Z: -2.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 6f0fbea3-09d5-4d50-9585-926081e032fd + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 357524a6-62bd-42e6-8923-96d9732a0af5 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: a8a6fa3f-0d66-4fd2-af02-d56fc8da4f58 + Position*: {X: -33.5249557, Y: 0.0, Z: -29.0118523} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: e1ff2acf-000b-4eaf-9d22-ef1855ba63a3 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 57c2b2da-1cdf-4b4a-a4f9-0378ed376b49 + - Folder: Platform + Entity: + Id: 35c50689-b172-4da1-b103-6582f04e87fe + Name: Cell_Loop (21) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: f5570025-5cee-4410-b366-abacd2beda52 + Position: {X: -8.0, Y: 0.0, Z: -2.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 9256b9d1-ea38-4bb9-b76e-52ea3cc5094a + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 366fa1d3-a954-4eaf-be2c-cefd1d5ee175 + Name: Cell_Loop (72) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: ecaa7a25-2532-4189-b86f-18d54ba33e7b + Position: {X: -17.0, Y: 0.0, Z: -23.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 917a2d3d-4aff-4bee-86dd-4eb1d758725b + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 36e0d1f6-152c-4c36-9763-884422674870 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 4e05831d-1ef7-4476-acf0-e6a048470475 + Position: {X: -37.0, Y: 0.0, Z: -35.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 8e84ac3e-96ff-4b4a-8197-3819210dd8d2 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 3733ad3b-f3b1-495a-8b38-0ccd524e282f + Name: Cell_Loop (14) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 23b59a32-9ef4-4094-bd00-4680e427f7e8 + Position: {X: 3.0, Y: 0.0, Z: 1.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 7152cd52-4bdb-4df7-9102-7ab1cf6a0604 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 382fd8f1-e460-4259-aa34-5f44a793e2fd + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: f626d698-f6b5-4350-b178-a002e6f73adc + Position: {X: -2.0, Y: 0.0, Z: -26.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 44750c94-d1d9-4c0a-900f-6eb9255d2a35 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Entity: + Id: 3b557c64-3124-44a3-abe3-6821a55daf8a + Name: FloatingRock2_2 + Components: + 5e4b0e71b6336787d1cda626d11089be: !TransformComponent + Id: 07105c7b-befa-415e-9e05-456a0a0771e1 + Position*: {X: -0.881659746, Y: -0.8087367, Z: -1.65379119} + Rotation*: {X: 0.285494715, Y: 0.251739979, Z: 0.693596542, W: 0.611591} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + be4998ad68c8459667a7284a8d99157b: !ModelComponent + Id: 7e1b702a-f6b6-4de5-aa97-65e2e5f7e8cd + Model: 4a2f9278-e0c6-44fb-9c01-be4b1d8df07d:Environment/Background/Models/FloatingRock2_2 + Materials: {} + Base: + BasePartAsset: 015d5639-6ba5-4172-a09e-83d0c9decb1f:Environment/Background/Prefabs/FloatingRocks2_2 + BasePartId: acd14fa1-66b9-41ba-a956-d373b2a8694b + InstanceId: 4f2adf10-6570-4921-8456-d0c7e37a6211 + - Folder: Platform + Entity: + Id: 3b7f2e4e-bc8a-420e-a355-273869f0fa27 + Name: Cell_Loop (44) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 46ab4f03-696f-4b56-b0cc-d5c637ad3d6f + Position: {X: -5.0, Y: 0.0, Z: -11.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: facbce26-9881-4703-9f7e-80acf7afccce + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 3cb1a376-d903-4305-920a-e659c3bda6fe + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 03828b8c-e066-4035-bfd1-2d5c7afbeefa + Position: {X: -4.00000048, Y: 0.0, Z: -35.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 5aac1206-466c-4e1d-ba3f-8604714d2201 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 3e32b3dc-a631-445b-81fd-592dd06c066d + Name: Cell_Loop (19) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 00802eb5-b476-4a84-b130-20267c85ce0c + Position: {X: -3.0, Y: 0.0, Z: -2.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 8df4a31b-2a99-4949-9afa-c3c766f19dcd + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: null + Entity: + Id: 3f1bd53d-6434-4d99-b1e2-60f479e7ace3 + Name: FloatingRock2_1 + Components: + e1c1c29771d528372e8df9fe0ec258df: !TransformComponent + Id: 31fa7667-d18b-42ff-8ca8-978a343aae4e + Position*: {X: -2.79250669, Y: -0.7314285, Z: -3.01162434} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + cd6c3efe59d092dd1a8bf308dac643d1: !ModelComponent + Id: de103bbd-03e2-4c0c-81e5-eaebd6d01ef1 + Model: d023b593-355e-4956-b6c2-76cc69aa956c:Environment/Background/Models/FloatingRock2_1 + Materials: {} + Base: + BasePartAsset: cd1fe62d-b637-416f-85bb-1b017bd85424:Environment/Background/Prefabs/FloatingRocks2_1 + BasePartId: d8012c4c-375c-4001-ba06-8834ca57a8a6 + InstanceId: 7c27991b-0ddb-4a82-8bb8-076e3694d03e + - Folder: Platform + Entity: + Id: 3f3b887c-d36c-4f02-a8be-7a71740155fe + Name: Cell_Loop (39) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: f08b962c-209e-4ea1-9354-f731e08a2f35 + Position: {X: 7.0, Y: 0.0, Z: -5.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 7176c8d5-24f4-43af-96b1-cc628c3346c9 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 40f331d6-7a9d-4e1a-bc5c-3ed165b8601d + Name: Cell_Loop (72) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 73b03085-c7db-40dd-86b1-089cac297bee + Position: {X: -11.0, Y: 0.0, Z: -23.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 812d9b86-1986-492d-9df2-cf129d4276c8 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 4145396a-91b5-42d3-ab5b-4cb25c846528 + Name: Cell_Loop (49) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: db6872f7-47f1-4d84-8073-efcd992a49e0 + Position: {X: -1.0, Y: 0.0, Z: -14.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 2efef466-9a4b-440a-b7cc-6d2970153fd0 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 414e69f1-6b34-4d8b-9a9e-bcdbf4f7d33f + Name: Cell_Loop (4) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 8ca51961-94ab-49d1-99e6-408663b6e591 + Position: {X: -5.0, Y: 0.0, Z: 4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: f8bdabe9-d7fe-46d1-9020-ddae8406c2a2 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 41f842e0-7b3d-4b4a-b939-c25e4c80d2a5 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 56821f47-a129-46a5-ba4f-dcc4e17ca894 + Position: {X: -23.0, Y: 0.0, Z: -35.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 886a0b1e-7014-4ad8-bdd1-f8904d844248 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 42939f36-e922-422d-9495-d2322d4c3324 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 4c9f6aa6-a9a9-43ec-a7cb-36fc847c2c52 + Position*: {X: -4.22177649, Y: 0.0, Z: -38.72633} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 05fbf4ca-04f4-4bc7-8ce9-a4cf282dbc5e + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: ea4c8cf2-6427-4a40-8c9f-a9f352dc651c + - Folder: Platform + Entity: + Id: 42ac3f58-de7a-43e1-bc3c-a0229565e3cc + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: a194cd75-5042-42d4-ab97-fe650cffca11 + Position: {X: -13.0, Y: 0.0, Z: -29.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 19a239d4-08ea-4ccf-a17b-5e0662f69dd5 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 43032835-6d3a-4262-873a-59999ffa1775 + Name: Cell_Loop (45) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 37064ea5-747b-430b-a7fb-d0379fd80a46 + Position: {X: -11.0, Y: 0.0, Z: -11.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 0acc6433-2707-485b-a372-b4bc83f334a2 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 43529c1c-9e90-42e5-961f-b740772ccec2 + Name: Cell_Loop (35) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: c4de32e5-5bda-491a-a044-b9a820aaa7a4 + Position: {X: -3.0, Y: 0.0, Z: -8.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 9c183327-66d4-4c3a-84df-50798ca831a0 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 436d5956-71af-4313-8cbe-7b06a0f84a08 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 914f1f7e-364c-4c1a-98e4-a29714d81ce2 + Position: {X: -30.0, Y: 0.0, Z: -32.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 388ddd3c-66c4-4891-9c23-c59ab717392d + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 43e520f7-c13e-4a03-bd8d-c17db27f8f0d + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: cd8819d1-7593-44e2-998a-ebf3c7a6b635 + Position*: {X: -8.977429, Y: 0.0, Z: -7.41892862} + Rotation*: {X: 0.0, Y: 0.173648179, Z: 0.0, W: 0.9848077} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 812d3edd-9ed8-4050-a26a-30a1e2c1f34e + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: f844f2d8-cfbd-44e3-a750-1a74a61dd9c7 + - Folder: Platform + Entity: + Id: 441526d8-6ab2-47ca-94a6-f228666e1ac0 + Name: Cell_Loop (45) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 1062d492-3f94-4b28-ac31-d1dcdc068b27 + Position: {X: -7.0, Y: 0.0, Z: -11.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: b5abf199-5ece-42f8-8c07-34f3a2bc3fa2 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 443a40dc-30c8-4c4a-b86d-2505f0a9d077 + Name: Cell_Loop (46) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 7ec94ce8-e17e-4ff9-bb00-cbf523f38f21 + Position: {X: 3.0, Y: 0.0, Z: -11.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 0f7bcacf-fea8-4de2-bc43-099dc45edad5 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 450dc616-c78a-4647-9ab0-130d70deec02 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: dbb4a709-0961-466f-8f13-a6ad5d120595 + Position: {X: -23.0, Y: 0.0, Z: -29.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: ce7eb87f-f6f6-4c45-a7a9-2dff98e5a4d5 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Entity: + Id: 45ff8af6-93ce-4f75-aad2-44598fddf3d0 + Name: FloatingRocks1_2 + Components: + 59ec30c5be6f154ed2b3ab3e7d22baaa: !TransformComponent + Id: 3fdaca5d-9ba4-4371-98fd-cd0c20eb5f0f + Position: {X: 11.5345774, Y: 0.0, Z: 4.991352} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 36a2494b68cb5b9774c1d7ea10d561f9: ref!! 139db017-0729-49e4-bb4a-fd0f0bbeaaef + - Folder: Platform + Entity: + Id: 46c082a0-970f-4290-8d50-7af9f01ea933 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: cc5ec0c1-ef54-42cc-8f3f-a9db0f1a0e34 + Position: {X: -10.0, Y: 0.0, Z: -26.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 87e0a0fa-fb6c-4688-b22d-ef64bbf3a3c4 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 47b34bcf-5444-4bcf-83dd-eb3c554b8095 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: fe66fadc-1001-4936-bb0b-48c85ae932c9 + Position: {X: -16.0, Y: 0.0, Z: -26.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 4ea4af7b-6936-4c67-b545-512b3a76a70b + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 47f49356-fd99-46f8-9f3f-77e98f6ba37c + Name: Cell_Loop (67) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: c813aa27-820d-41b9-a002-240766b6c727 + Position: {X: -11.0, Y: 0.0, Z: -20.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: d4cdb0cb-e933-4b4c-9374-4449d46b0b90 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 485ed56e-1c66-4265-b727-b43472d972fd + Name: Cell_Loop (15) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 2e3172c0-56e3-4278-8a2c-541ba3066e8e + Position: {X: 7.0, Y: 0.0, Z: 1.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: a03fe81c-38a5-4559-8560-bf6de493119a + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 487070ce-fe4c-41c5-8136-04c9dc8d3836 + Name: Cell_Loop (64) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 5211cabb-6216-4bd3-8269-bd3ba9cd7d32 + Position: {X: 1.0, Y: 0.0, Z: -20.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: ade497ac-03df-424a-8c0e-8634527a1fb4 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 48ccca46-f3c4-4d2f-840a-bae4263d26e1 + Name: Cell_Loop (29) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 74c9b4b8-ceeb-4d5d-b62e-dc892e800ce1 + Position: {X: -9.0, Y: 0.0, Z: -5.00000048} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: ecf4a4f8-4895-4f88-be35-1b0fd6765d58 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 49449c29-f698-474d-96f4-cf0d586da1d0 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 3e49f973-2f4b-40ea-8f0e-f6e1c3c7d8b6 + Position: {X: -37.0, Y: 0.0, Z: -29.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 58fc9341-ea4c-4366-a64d-5a3ab11e9e8f + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 4b6a7d11-d5cc-43bd-b62c-b42b777ed620 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: c2972b42-d641-4281-9e4d-4bd1b77ab9bb + Position: {X: -6.0, Y: 0.0, Z: -32.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 767e163b-7cdb-4236-8fa2-9ab014d2c809 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 4bb5cf88-19c7-46ac-8a13-e59a2714ad63 + Name: Border_in_corner_90 + Components: + 8dd5441a9e0f7cc9cdac7e64be0bcc32: !TransformComponent + Id: 2477e346-2700-4aaf-b4b5-7b40cbc4c110 + Position*: {X: -4.49999952, Y: 0.0, Z: 4.0} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 21e6c7c4ce05ff264d998193015bbbbe: !ModelComponent + Id: 6b886235-4f95-45dd-a781-eebd15a57346 + Model: 1c9753bc-679d-4677-8f9f-9c88dd878d10:Environment/Platforms/Models/Border_in_corner_90 + Materials: {} + Base: + BasePartAsset: 21ebc8de-2500-440f-9e0f-d399cc3e5896:Environment/Platforms/Prefabs/Border_corner_in + BasePartId: 4bb90be4-e7c6-4e5e-b845-2c84f915a3d9 + InstanceId: 8b29d6b5-3c45-4859-9785-94692bccb120 + - Folder: Platform + Entity: + Id: 4c9b9648-e3f4-419f-b6b6-eec6dda830d3 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: d33dc008-c4eb-4c7a-a525-ad603b3a87cc + Position: {X: -29.0, Y: 0.0, Z: -35.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: b5d52e68-da40-47ab-b093-0fb6dc0f6cb8 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 4cd3d466-a3e2-45be-873c-91cb769ead82 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 18bb9318-1c47-4811-8b19-77f5d91ee6d4 + Position: {X: -32.0, Y: 0.0, Z: -32.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 6ad7ab79-5032-47a8-b264-aa0c22095bb7 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 4d3a4093-6f30-4e0d-93aa-0cd53c3aa096 + Name: Cell_Loop (36) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 3b0049a9-43a8-4135-9ed2-3333359e89c0 + Position: {X: -5.0, Y: 0.0, Z: -8.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: acf8268a-53ef-4135-9df3-4a45be001906 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 4da86ff3-f53b-45aa-a9aa-8278b129bfe2 + Name: Cell_Loop (37) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 73a673ca-9ccb-4fa9-be0e-0d50abd69d17 + Position: {X: -7.0, Y: 0.0, Z: -8.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: f1c4f3e7-8b90-470c-a069-f3785a4afa97 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 504b15db-8014-400b-87dc-3bd1208a1883 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 14087f05-3fd1-4613-8ada-e257720d115e + Position: {X: -12.0, Y: 0.0, Z: -26.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 7b7661d5-7577-44c9-bff8-f41c39333064 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 50ebf669-8be5-4f89-a935-12ecd00af64a + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 578bc4c5-d917-4d8c-aa10-52917347089b + Position*: {X: -8.237365, Y: 0.01, Z: -4.62113762} + Rotation*: {X: 0.0, Y: 0.1305262, Z: 0.0, W: 0.9914449} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 848dc2eb-d928-4c5b-901c-8438747e8e40 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 5f5c0b24-a9f5-4ed9-9771-54e1b4791b78 + - Folder: Platform + Entity: + Id: 5121a39f-d927-4355-9b44-094aca6565f9 + Name: Cell_Loop (53) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 7d9c8acb-41d5-443b-bed1-543e2ff30aab + Position: {X: -7.0, Y: 0.0, Z: -14.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 784d8d73-54be-4d60-891c-47284c9ec547 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Entity: + Id: 513f24e1-8828-4a4b-bcbe-c186b6949945 + Name: Barrel + Components: + 731dd1607c1b5b9b20db92e64b29cee1: !TransformComponent + Id: c150700c-fabf-4fce-b859-6c6d41198ba5 + Position: {X: 0.500426233, Y: -2.007827, Z: -2.10138631} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 0.75, Y: 1.0, Z: 0.75} + Children: {} + d25273223350333c71feb4c8b9d6d50c: !ModelComponent + Id: 4faf30ef-228f-43a5-980d-2f8bf77d476e + Model: 3a09548e-eda3-49bd-8b7e-49c653eb1c04:Environment/Props/Models/Barrel + Materials: {} + - Folder: Platform + Entity: + Id: 51b1aa17-ee96-4663-91e9-6b6c8c195840 + Name: Cell_Loop (72) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 01bf21c2-fa2b-4ac1-a64a-276f10c788d5 + Position: {X: -9.0, Y: 0.0, Z: -23.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: a26ac6f3-14db-4bd0-b7c6-2c34d648034d + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 56d4b35a-2523-4487-acd7-ff4fe6920d7d + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: a733ae6f-7426-49f1-b6cd-810520e31265 + Position*: {X: -28.221777, Y: 0.0, Z: -38.72633} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: d0a0259d-b436-421b-938e-37e15ddb3a71 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: da45b46b-05b9-46b4-b892-c561916f41c8 + - Entity: + Id: 58dfe5a9-240d-44e8-a2ec-9e0e92bfee6d + Name: FloatingRocks2_2 + Components: + f926c9afd4b64d270ca54bb706ba1ac3: !TransformComponent + Id: 9f9b6562-aa06-430d-9fd9-aed491427b5f + Position: {X: 13.0, Y: 0.0, Z: 3.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 31e9754bfc74b9356da905ed22a671ee: ref!! 07105c7b-befa-415e-9e05-456a0a0771e1 + 18b7fcb1e651d59b6728705eed0239ac: ref!! 93300604-4608-4b23-83a2-39568aca9976 + - Folder: Borders + Entity: + Id: 59511785-cb45-4ec4-a801-b67a8c5f8614 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 1085332f-e4e5-43e4-b411-7bc76d45832d + Position*: {X: -7.499998, Y: 0.01, Z: 1.10905468} + Rotation*: {X: 0.0, Y: 0.0436193869, Z: 0.0, W: 0.999048233} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 3616a387-2812-4dcd-ac2c-3d959d8fab7a + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: d83fce4c-3a73-413c-8d16-a4ded4a91402 + - Folder: Platform + Entity: + Id: 5a10b8e9-53ac-435c-b7ad-87ce4ec46f18 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: ebd90405-83cb-48c7-99ef-46c0bce04e43 + Position: {X: -24.0, Y: 0.0, Z: -32.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 83fcfab7-1383-4a0e-8a55-f1d4108de455 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 5d79733b-7fe2-4b30-aaf2-4ee80d4b5672 + Name: Cell_Loop (23) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 7995b0b0-6020-4ed1-8966-92d67ef4b1ff + Position: {X: 9.0, Y: 0.0, Z: -2.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: b86d6cd3-72e8-4b3c-a120-8d21ed1b1d8f + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 5f76f399-23a3-4f89-82db-f3b08c72b1f9 + Name: Cell_Loop (29) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 0cf7f4a9-d902-4ede-aeae-c7b2244800a2 + Position: {X: -7.0, Y: 0.0, Z: -5.00000048} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 162c1b22-ed07-46ae-a808-190dec946189 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 5fb0d907-0c84-4bd8-9bfd-2313e6d2e3b6 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: bf269cb8-7563-4dda-a31e-1a03aa2fb2fe + Position: {X: -10.0, Y: 0.0, Z: -32.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 106f3ff4-3ffa-4d21-a8b0-7f6348b2b209 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 60383a65-a664-40a8-92a8-add09082e505 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 70ba210e-2516-42f6-9f14-f259891892e2 + Position*: {X: 1.76304913, Y: 0.0, Z: -33.8266678} + Rotation*: {X: 0.0, Y: -0.980785251, Z: 0.0, W: 0.195090353} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: f410cd99-75a7-452e-b806-c11fe1ee5669 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: ee359d56-dd64-44c2-940b-7460a83c0fbd + - Folder: Platform + Entity: + Id: 61f7cb32-714b-4825-ad36-02236debe2e2 + Name: Cell_Loop (23) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 767f1ceb-9eef-4223-94c7-962de5ae4775 + Position: {X: 11.0, Y: 0.0, Z: -2.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 11cf2d9d-6a9f-40e6-a13d-e6419e4cc548 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 6296073a-9297-4c7f-8fdd-4f6ec5116217 + Name: Border_in_corner_90 + Components: + 8dd5441a9e0f7cc9cdac7e64be0bcc32: !TransformComponent + Id: 64396c8a-08a2-4e73-8e28-ce8acd079bc0 + Position*: {X: 3.5, Y: 0.0, Z: 5.0} + Rotation*: {X: 0.0, Y: 0.99999994, Z: 0.0, W: 0.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 21e6c7c4ce05ff264d998193015bbbbe: !ModelComponent + Id: e729d3ea-79ab-4584-a54c-add993805ecb + Model: 1c9753bc-679d-4677-8f9f-9c88dd878d10:Environment/Platforms/Models/Border_in_corner_90 + Materials: {} + Base: + BasePartAsset: 21ebc8de-2500-440f-9e0f-d399cc3e5896:Environment/Platforms/Prefabs/Border_corner_in + BasePartId: 4bb90be4-e7c6-4e5e-b845-2c84f915a3d9 + InstanceId: 38ac74ce-a622-4f2d-991e-5adfa7c39c0f + - Folder: Platform + Entity: + Id: 62edb9e4-0c81-4a22-8584-151a4d373e06 + Name: Cell_Loop (15) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: dff20a50-d5e6-4cd6-aa43-b554d2f7da1c + Position: {X: 7.0, Y: 0.0, Z: 4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 0912f76a-48d8-46d5-9dca-b3cb48e59af1 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 63755b57-5213-4845-8328-aab6ac7abfef + Name: Cell_Loop (6) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: eee47dd4-52b6-496c-b60c-06784b7c27ff + Position: {X: 1.0, Y: 0.0, Z: 4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 8538135a-c539-49ca-8863-43393f9098b0 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 6398eb62-5521-4260-a4eb-082a86866986 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: fdc59948-7455-4394-acfa-8d9e307e951a + Position: {X: -33.0, Y: 0.0, Z: -29.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 0e5e1ac5-6af6-4cbc-9057-1fbb820e50cb + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 63df064c-d322-406d-81d9-772fbbfc45d0 + Name: Cell_Loop (7) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: eb62128d-8193-4af2-b388-cff6a0805805 + Position: {X: 3.0, Y: 0.0, Z: 4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 4f6b92c3-9e07-48dc-87af-ae3a5efca358 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 65cac835-4a77-41ce-895d-992a63fcc36e + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 9306846c-e3b0-4f46-8538-83b3dccbb876 + Position: {X: -11.0, Y: 0.0, Z: -29.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 6b116b2f-6e47-47b1-88a2-9af65cbf2b33 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 6941422d-11a6-464a-8e06-fbc1f30505d5 + Name: Cell_Loop (25) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 5923c9b3-426b-40c1-b8ef-ede0b2971937 + Position: {X: -1.0, Y: 0.0, Z: -5.00000048} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 1a153626-5cd7-4d3b-8b86-2e8e7fb44eb9 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 6988c911-52e0-46dd-b97e-90281864e009 + Name: Cell_Loop (67) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 63ce103f-d003-4661-845d-ddd8008d3f40 + Position: {X: -15.0, Y: 0.0, Z: -20.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 5cbc627a-648c-4e2c-9e74-8fc8e8db456c + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 6a88f43d-8811-4657-ab5f-d1f8bc58045c + Name: Cell_Loop (11) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 8a8a467d-bf89-4c34-9585-950140b3a96e + Position: {X: -3.0, Y: 0.0, Z: 1.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 0e22e62f-bb4d-445f-bf27-2da32ead6687 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 6af1b288-196a-4c04-8ae2-28f3478f8302 + Name: Cell_Loop (67) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 21f6fa59-69f0-417a-8033-c918ccb8871b + Position: {X: -13.0, Y: 0.0, Z: -20.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 7a17138f-55a2-44dc-845b-468c045b7889 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 6bb39c85-acdc-49c1-a385-401a11460827 + Name: Cell_Loop (26) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 6b3e92ac-12a5-429b-8b0c-3b3f539114b4 + Position: {X: 1.0, Y: 0.0, Z: -5.00000048} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: bf157fba-27ea-4f84-9baa-09b4ecfe6d9a + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 6e372767-b111-4b77-b5bc-b1712deccc36 + Name: Cell_Loop (5) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: c2b463f0-fdd1-4dc9-91df-c880b180ce57 + Position: {X: -7.0, Y: 0.0, Z: 4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 961bc889-c12f-46e5-b6ac-42139068fe61 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 6f2f9be3-69a3-4110-b08e-5d919c86c8e1 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: cc920bc0-7688-4235-9e43-1d603001e556 + Position*: {X: -27.7812958, Y: 0.0, Z: -28.064537} + Rotation*: {X: 0.0, Y: 0.6087614, Z: 0.0, W: 0.7933533} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: c80106a0-36c3-4dac-adbb-5601907409fd + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: c6278b14-fb15-444d-b1be-26149f680e1b + - Folder: Platform + Entity: + Id: 6f5f2eb0-aef4-4005-b9ae-cf8ccfb47b5f + Name: Cell_Loop (72) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 444120eb-1035-4081-995a-a9944066b46a + Position: {X: -7.0, Y: 0.0, Z: -23.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 47d3935a-b51e-4ce9-b5c9-7c7a711c5b90 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 6f830f9e-a5f1-41ea-9455-adf5a9cc389f + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 74f8a143-ed72-4034-a798-d5f967244f1a + Position*: {X: -7.22177649, Y: 0.0, Z: -38.72633} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 9d5e6b92-b2ce-4f4c-a6a9-0002c34c7520 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: eb60ece8-100b-461e-a535-3c15592dfb07 + - Folder: Platform + Entity: + Id: 6fc1e731-c32f-477c-96c5-27a477cc9a71 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: d025385a-1a2a-4071-963b-513920bd82b3 + Position: {X: -18.0, Y: 0.0, Z: -32.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 86c81984-1698-427b-9abe-d5b28b4a1d01 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 72917765-22c8-48da-8c27-0e8f55a2a5cc + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 9981f558-25bb-41ed-a4d9-2295c307734b + Position*: {X: 9.072495, Y: 0.0, Z: -8.55346} + Rotation*: {X: 0.0, Y: -0.9621895, Z: 0.0, W: 0.272380978} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: f204dac3-81b3-40bc-9855-5422f2b6779c + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 692bb9a7-c503-430b-91ba-bc97f53685a6 + - Folder: Platform + Entity: + Id: 7579d01d-df57-432c-a04d-1170944a2fcd + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: b9a569a7-ee75-4aa1-ac71-20eef9e8711a + Position: {X: 5.96046448E-08, Y: 0.0, Z: -26.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 78bf29df-ee25-4c17-8fdb-779cf7f7c445 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 760c0b37-68ea-46c4-8e19-00afbea8fe76 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: ec625184-d736-4f66-aa21-2174daa414e1 + Position: {X: -11.0, Y: 0.0, Z: -35.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 94ed747e-a809-4a0c-ad93-ddc77d93cb11 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 764a43cd-d543-4ecf-9090-fa2918e243a5 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: a0544935-05da-4c6a-b8e7-4c0b511670b9 + Position: {X: -12.0, Y: 0.0, Z: -32.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: eb6c548f-c967-4c85-b145-13d66422565a + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 786726f4-df7d-466f-baa2-a0d0add55732 + Name: Cell_Loop (23) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: f2467555-b6f5-441b-9223-cb42aa2d8bb2 + Position: {X: 7.0, Y: 0.0, Z: -2.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 54c352a5-e467-4d91-b058-f33941968af1 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 7868d32e-f5f3-4fc5-aee9-9a9df932950f + Name: Cell_Loop (42) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: aa24bee2-a5c3-4379-8c45-1a1029d6d760 + Position: {X: 1.0, Y: 0.0, Z: -11.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 770dcf86-ade2-4254-9a61-6cbbc7e7f259 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Entity: + Id: 794b0dbb-9bde-4175-af99-7758f2b56647 + Name: FloatingRock2_1 + Components: + e1c1c29771d528372e8df9fe0ec258df: !TransformComponent + Id: 27c0d814-4631-4588-8e57-4e347a97d9bf + Position*: {X: -0.224289045, Y: -0.7314285, Z: 1.12303269} + Rotation*: {X: 0.366841137, Y: 0.6822295, Z: 0.620975554, W: -0.119916715} + Scale*: {X: 1.53975272, Y: 1.53975272, Z: 1.53975272} + Children: {} + cd6c3efe59d092dd1a8bf308dac643d1: !ModelComponent + Id: 21c103d3-58bf-4751-bb92-79a013df95e7 + Model: d023b593-355e-4956-b6c2-76cc69aa956c:Environment/Background/Models/FloatingRock2_1 + Materials: {} + Base: + BasePartAsset: cd1fe62d-b637-416f-85bb-1b017bd85424:Environment/Background/Prefabs/FloatingRocks2_1 + BasePartId: d8012c4c-375c-4001-ba06-8834ca57a8a6 + InstanceId: a10a88f6-df61-43f9-ab20-98f9f1667271 + - Folder: Platform + Entity: + Id: 79c2fe52-226a-4585-b39e-27b2923a8a8d + Name: Cell_Loop (30) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: bacd650a-d767-4bd1-9106-fbb2daa0e428 + Position: {X: 3.0, Y: 0.0, Z: -5.00000048} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 04081a35-299b-4c71-84a0-44f6c13fb14f + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 7a9c9fbb-8957-40ab-95b0-37c71028d7fd + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 4d14be4d-dd28-4edb-b3be-51883e4b84a5 + Position*: {X: 7.499997, Y: 0.0, Z: -20.0} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.37113847E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 55d804bb-170f-45a8-b8c7-2a7a5b9bd3d6 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: c8919629-318d-4788-80bb-fab967b75279 + - Folder: Borders + Entity: + Id: 7aa7b08f-5a94-42df-8823-276678fb4443 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 8c25f96c-8dc2-4de6-9123-e5fd1449edcb + Position*: {X: -25.18735, Y: 0.01, Z: -26.8549614} + Rotation*: {X: 0.0, Y: 0.537299633, Z: 0.0, W: 0.8433914} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 3b5a80f2-4941-4771-95de-29ac5612ebe5 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: e3b25976-e051-4ec3-b4f8-42214209ebe5 + - Folder: Platform + Entity: + Id: 7b55d6c1-8959-4b1d-b090-798fafc6414a + Name: Cell_Loop (72) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 8f6cf0c5-b3d2-4081-a6be-b80383d93b3a + Position: {X: -13.0, Y: 0.0, Z: -23.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 3823e7bc-7481-4c18-8519-efec8fad36d6 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 7c696136-75f5-4462-8128-c6e66b34ec5f + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: b25f8b7e-1514-4c4d-a1c3-6ef1fcc160db + Position*: {X: 7.49999762, Y: 0.0, Z: -17.0} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.37113847E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 4fdd1820-0bdc-4408-9c2e-f8ca97ebcfca + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 8f48a741-90eb-461a-951a-c5f05be72382 + - Folder: Platform + Entity: + Id: 7c8d92eb-13e0-4480-b916-d16c629cadbe + Name: Cell_Loop (65) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 80921364-22bb-4274-ba1b-67078e11e9b0 + Position: {X: -3.0, Y: 0.0, Z: -20.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 9d236fc0-bd86-461b-9194-f6d0559088e3 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 7cc11193-55ca-4b6a-acde-b20f53422e7f + Name: Cell_Loop (66) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 5078308c-2f6a-482b-bcf3-9cd088356c52 + Position: {X: -5.0, Y: 0.0, Z: -20.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: de38f1a1-7fe8-49ca-93ab-fd0f091aa81f + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 7d884420-3928-4fc8-9317-59a1a6d8f9a8 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: fb5d19bb-fae8-45f1-8f99-d79207629a76 + Position: {X: -20.0, Y: 0.0, Z: -26.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 66fc55df-1a94-4c61-86f1-7c3b60bd0e7f + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 7ea8d836-9a19-4bc4-9528-b3d7140d309e + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: f887be64-21d4-464e-8f6b-1a4d70353495 + Position: {X: -25.0, Y: 0.0, Z: -35.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 57b82bb8-bc11-4320-befc-62130263126f + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 80fb61be-caff-4907-95dc-5e010f787bb6 + Name: Cell_Loop (38) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 7c64475c-6835-45d4-bebe-55b2b5eafde1 + Position: {X: 3.0, Y: 0.0, Z: -8.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: b3a008bb-fd73-47e0-833b-fc3c7c511218 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 8290a24b-cfe7-470d-b7e0-e3c09cfa2d8f + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 3aacba8b-b4fa-4681-aa17-44b236cf067f + Position*: {X: -14.2855492, Y: 0.0, Z: -17.6746178} + Rotation*: {X: 0.0, Y: 0.342020124, Z: 0.0, W: 0.9396926} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 0f9f2068-5743-45ae-abc4-2907056592b1 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: a808c683-e77b-4409-b756-4c006f9dd6c8 + - Folder: Platform + Entity: + Id: 8589b993-f7c9-417c-aba7-f7a1a23cd022 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 3e171133-de95-4991-94df-9a8014c56227 + Position: {X: -22.0, Y: 0.0, Z: -32.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 4054df3a-411a-4da1-9e1e-8aa1da72e968 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 87b9863f-73e9-4842-82d4-b63cb274ba93 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: a296cbe7-9abc-45fc-aada-00053bf453ce + Position: {X: -6.0, Y: 0.0, Z: -26.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 51563b7e-9e16-45e0-8d87-759921b9f140 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 885a66d4-53c4-4d7f-befc-303c76f7720c + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 42ebe4e0-999f-4566-8052-790363e0b87a + Position: {X: -26.0, Y: 0.0, Z: -32.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: f3ad189a-e4b9-453a-8300-63ac6ff870ad + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Entity: + Id: 89de7506-8258-40e3-acb6-073137a14ccf + Name: FloatingRock1_2 + Components: + f7d435da00a4f0db8567f052b2dd775b: !TransformComponent + Id: 139db017-0729-49e4-bb4a-fd0f0bbeaaef + Position*: {X: -1.39717543, Y: -0.6193795, Z: -1.73067689} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 0.436412215, Y: 0.436412215, Z: 0.436412215} + Children: {} + dfee743743e4c3abf742a67210a57784: !ModelComponent + Id: 7f9bc91e-b79e-4ad5-a645-92678bd07632 + Model: 6a331abf-6ede-4170-9bb4-ae1d6e7896ea:Environment/Background/Models/FloatingRock1_2 + Materials: {} + Base: + BasePartAsset: cb48cca7-c22e-4485-a6e6-07aa698fbf3e:Environment/Background/Prefabs/FloatingRocks1_2 + BasePartId: 9b604468-8d1b-431d-adf9-79f53eaab11f + InstanceId: 12f73a7f-f2d6-4464-b77c-929db2c576e5 + - Folder: Platform + Entity: + Id: 8a14ba4d-226e-4b9c-8d99-4f90b9532666 + Name: Cell_Loop (73) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: e277bdf0-cb63-470c-accf-ae12e7655d91 + Position: {X: -5.0, Y: 0.0, Z: -23.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 83d59b23-5f05-47e2-b463-413b0d995762 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 8ac2dc95-d985-42a6-9173-4895601ec0f5 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 441c8e16-73e8-4fc1-bdd9-10c7cb17136b + Position*: {X: 2.91110039, Y: 0.0, Z: -31.05503} + Rotation*: {X: 0.0, Y: -0.980785251, Z: 0.0, W: 0.195090353} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: aad39678-d70a-4e34-ba67-87f02fd256c7 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 4196d6b1-57fa-4448-8ada-b76fec867a2d + - Folder: Platform + Entity: + Id: 8cd4565d-b166-4895-8b6a-923f503d5bbf + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 9f77c470-7b05-4e30-a6ff-407e14f77562 + Position: {X: -19.0, Y: 0.0, Z: -29.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 7d343810-118c-47b4-ac4c-f3a307aa270d + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 8f2c3351-4bf8-4fc2-8cf0-635f23a75d06 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 26c5fbda-ed02-473d-bc92-6be27909141b + Position*: {X: 10.6449928, Y: 0.0, Z: -5.99861145} + Rotation*: {X: 0.0, Y: -0.9621895, Z: 0.0, W: 0.272380978} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 2489532b-9b3d-49ac-a10a-410546b13603 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: c07ec106-c57c-4029-8238-10aa28bd1d99 + - Folder: Platform + Entity: + Id: 9047c9b1-0c5c-48d5-828e-7f069182428e + Name: Cell_Loop (60) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: c9863575-2798-4cbd-8b83-adc0e81a4050 + Position: {X: -7.0, Y: 0.0, Z: -17.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: e689b08c-8fe4-4bec-aaf5-b8d24234d6f0 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 907b2151-37d9-47a8-9a72-d584c3fcc597 + Name: Cell_Loop (47) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 7a53a03a-15d8-40ab-aaba-3846fd1363a1 + Position: {X: 5.0, Y: 0.0, Z: -11.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 711e539d-79dc-4c1a-9913-002407d34721 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 90a2d416-8896-44b3-9087-f30989fc0d48 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: c101fbde-03fa-4432-b705-565fc3721f23 + Position*: {X: 4.05915165, Y: 0.0, Z: -28.283392} + Rotation*: {X: 0.0, Y: 0.980785251, Z: 0.0, W: -0.195090517} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 9491041f-3a5b-41f0-8b44-011fe339de81 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: c7c731d7-2e3e-4196-9c8a-12b4392b1846 + - Folder: Platform + Entity: + Id: 924ad73b-f1bb-4747-a7dd-e49ec4b8a714 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 028581a3-dc6f-48be-8b3a-532cf12f8adf + Position: {X: -8.0, Y: 0.0, Z: -32.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: a3fda414-8c4f-4918-b6bf-ee1cd7be0ba6 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 92647b2c-d81a-4379-9fd1-7e38ee5e12a3 + Name: Cell_Loop (15) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 0295c8fb-4198-41ca-90d0-01df9b0f22cc + Position: {X: 11.0, Y: 0.0, Z: 1.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: b8e83f09-080c-431a-b81a-cc6232ac6cb9 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 93ad4738-03fa-4f3c-be32-fe7a2cf15421 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: ed5c13e4-5b1e-4a0a-bc4e-639253817e05 + Position: {X: -9.0, Y: 0.0, Z: -29.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: ad325d26-74f6-48f1-8843-9f603c95bebf + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 95ff10dc-d59e-4eff-aef5-831f7946dc6d + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 4462c32d-e944-4a29-8966-e54b450d73a4 + Position: {X: -9.0, Y: 0.0, Z: -35.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: d776c6c1-19a4-4644-8d50-5fc48047d2f5 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 96c79b60-daa5-4aed-84d1-4be271ad8aaa + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: c41c7093-1d51-4867-9e90-c12e17f43caa + Position*: {X: -22.7358437, Y: 0.0, Z: -25.4395828} + Rotation*: {X: 0.0, Y: 0.5, Z: 0.0, W: 0.8660254} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 973e7956-4b29-44bf-b029-c7ad0898ccc0 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 96f0d2fa-cdbd-4c95-b04b-3eeedc9f9666 + - Folder: Platform + Entity: + Id: 96decd41-37c0-4991-8c09-0958ac3b63d8 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 310fc455-9ce6-46df-93ae-4b7a8f1546b8 + Position: {X: -8.0, Y: 0.0, Z: -26.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 97c19a59-d76b-4417-a00f-4ba32cfe8bee + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 99741773-3972-4676-8699-d055c86fee9d + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: c8667e59-95d3-4a8d-a95e-2131ba94214b + Position: {X: -35.0, Y: 0.0, Z: -35.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 4114fd5e-bd7d-42a9-bf90-8c44bc11f1ca + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 9cbd0d9b-c9b2-4461-8917-2a1a6257cbdb + Name: Cell_Loop (56) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 527e520c-bc79-4903-83a1-35e3ba2b7600 + Position: {X: -1.0, Y: 0.0, Z: -17.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: c1887cb6-6296-4cfb-b1e7-7889dc63abd5 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 9d28d6d0-4ced-4046-9421-e5003cc4e50f + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: df30e5ed-99ed-47a7-8d24-71b8ad8472a3 + Position*: {X: 13.3066177, Y: 0.0, Z: -0.3494233} + Rotation*: {X: 0.0, Y: 0.8795052, Z: 0.0, W: 0.475889146} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 164c27cb-3a45-49e9-9fec-aff2d0853ac4 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: af34ec6f-3aa2-4c97-a8b6-c367f59acda5 + - Entity: + Id: 9f3b114e-2a12-43ea-864c-9c9bb6373a9b + Name: Border_diagonal + Components: + bf74203aaef97e366a469b7aa9a77690: !TransformComponent + Id: a7b3e246-ceaf-4a97-8570-b0200628d20f + Position: {X: 6.78611, Y: 0.0, Z: -9.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 9c948352d2d592766236a296f0452561: ref!! c150700c-fabf-4fce-b859-6c6d41198ba5 + e85351b2a9b8642c846726bf67a407b8: ref!! f9993f99-e91a-41dd-ab02-34ffcd0f1746 + - Folder: Borders + Entity: + Id: 9fa43b3f-211a-4a7f-8bb5-ceeb78489892 + Name: Border_out_corner_90 + Components: + b923f0caab27e8703f9f8ee1a8dd1d18: !TransformComponent + Id: 897fef29-7705-4669-883e-e77301cdb536 + Position*: {X: -37.1896362, Y: 0.0, Z: -38.73422} + Rotation*: {X: 0.0, Y: -0.7071067, Z: 0.0, W: 0.7071068} + Scale*: {X: 0.99999994, Y: 1.0, Z: 0.99999994} + Children: {} + 6098c87ff6246e074f03b48bd2941bf8: !ModelComponent + Id: 8307b68e-b07c-4a9f-9286-d6d99012ae71 + Model: e2199908-ce19-4e35-843e-6ade71089032:Environment/Platforms/Models/Border_out_corner_90 + Materials: {} + Base: + BasePartAsset: efe073eb-d2bd-4eb9-a065-4a103cc52d7c:Environment/Platforms/Prefabs/Border_corner_out + BasePartId: a08bbac9-bc4d-404a-84b2-5093fedf0e77 + InstanceId: efa4afc3-8345-447f-a4eb-ede48217e2b5 + - Folder: Platform + Entity: + Id: a271b964-343a-4b00-ba38-adaf093c2c4e + Name: Cell_Loop (27) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 400798cf-a344-445e-9501-5ee929f582ea + Position: {X: -3.0, Y: 0.0, Z: -5.00000048} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 6ae52cf1-9253-4123-b68a-36639a4540a0 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: null + Entity: + Id: a4825c5c-07bc-4d19-9fd2-ec908d256d69 + Name: Barrel + Components: + 731dd1607c1b5b9b20db92e64b29cee1: !TransformComponent + Id: f9993f99-e91a-41dd-ab02-34ffcd0f1746 + Position: {X: 6.5212965, Y: -2.007827, Z: 8.264871} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 0.75, Y: 1.0, Z: 0.75} + Children: {} + d25273223350333c71feb4c8b9d6d50c: !ModelComponent + Id: 5aed64cf-2fa5-441f-8f9e-a941e1f9c655 + Model: 3a09548e-eda3-49bd-8b7e-49c653eb1c04:Environment/Props/Models/Barrel + Materials: {} + - Folder: Platform + Entity: + Id: a48fb034-e3db-4824-b66b-e4bc4f59e6f8 + Name: Cell_Loop (37) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: bbcb99bf-47d1-4f0c-82c7-7629cf8bae6f + Position: {X: -10.0, Y: 0.0, Z: -8.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 254b1990-311c-4524-91b7-c828e2ac4448 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: null + Entity: + Id: a603debb-0a92-42bb-81d2-e5e818d523ce + Name: FloatingRock2_1 + Components: + e1c1c29771d528372e8df9fe0ec258df: !TransformComponent + Id: 42c1f0e4-6504-4fff-aa1f-a9dd33e1a671 + Position*: {X: -4.72164631, Y: -0.731428444, Z: -7.30142832} + Rotation*: {X: 0.173575014, Y: 0.687989235, Z: 0.7000391, W: 0.08054804} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + cd6c3efe59d092dd1a8bf308dac643d1: !ModelComponent + Id: b239f2dd-4913-41b6-86b5-be7aeb538789 + Model: d023b593-355e-4956-b6c2-76cc69aa956c:Environment/Background/Models/FloatingRock2_1 + Materials: {} + Base: + BasePartAsset: cd1fe62d-b637-416f-85bb-1b017bd85424:Environment/Background/Prefabs/FloatingRocks2_1 + BasePartId: d8012c4c-375c-4001-ba06-8834ca57a8a6 + InstanceId: 91616e96-1e62-418c-ab26-0f69d4bbdb2b + - Folder: Platform + Entity: + Id: a64a853f-f2a9-4f56-b30c-cc6c208f3cd6 + Name: Cell_Loop (75) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 3990325c-c4e5-4bb1-ab81-c4b4bfc07096 + Position: {X: 1.0, Y: 0.0, Z: -23.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 045d9ee7-6852-46fd-9c6f-e0e8b1062db6 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: a668723f-217c-41d9-b5ef-9709d4d79c40 + Name: Cell_Loop (51) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: b34062e0-af8c-48d5-8fdc-da348c04da42 + Position: {X: -3.0, Y: 0.0, Z: -14.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: a048ce36-7341-4213-b8b8-96f2b16421d7 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: a6c747a8-991d-4a81-9d0f-95aa75369473 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: f2e9cc6a-676d-48d2-9680-9e4562ed0392 + Position: {X: -31.0, Y: 0.0, Z: -35.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 3d194cc4-a417-44af-b6c0-74502b7ce1ae + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: a77f969e-6b46-4fe7-8a8b-56d1cde29b7b + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 6bc8be82-2a13-408c-be82-c05c4237c7c4 + Position*: {X: 10.7953358, Y: 0.0, Z: 1.29175317} + Rotation*: {X: 0.0, Y: 0.87950325, Z: 0.0, W: 0.475892842} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 878eebd0-3d63-467f-9190-428e8c9de9b3 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 24c2567b-b461-4499-995c-eaadcb9cee26 + - Folder: Platform + Entity: + Id: a8def679-4960-41f9-a3c9-d960f978895d + Name: Cell_Loop (39) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 46a51395-bfca-417b-8af7-6f30cae07da1 + Position: {X: 9.0, Y: 0.0, Z: -5.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: fe2240d3-2c79-4a36-92e3-2b069390c215 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: af6be679-c5d3-433d-bc14-62b11feb6f11 + Name: Cell_Loop (39) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 7217324e-6438-4f96-8680-2fb096bb80fa + Position: {X: 7.0, Y: 0.0, Z: -8.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 4a744b68-89a4-4867-82c0-7fc746b66689 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: afbdc8fd-f3b0-4a12-8179-78547889879b + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 0c96fd88-88e1-4b58-be52-5fa88136ce75 + Position*: {X: -20.4051018, Y: 0.01, Z: -23.80758} + Rotation*: {X: 0.0, Y: 0.4617486, Z: 0.0, W: 0.8870108} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: cbecd35a-64b2-4cc5-a4ae-7f2a4a5339b4 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 96355352-6779-4bba-a75f-e8249ee42a1d + - Folder: Platform + Entity: + Id: aff9ad42-6943-4320-924a-fcd454f7bf85 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 075a475b-515e-4b09-917f-f447834b784e + Position: {X: -25.0, Y: 0.0, Z: -29.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 2115a6c8-e748-4299-be3d-79108e4d27ea + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: b00fbf57-13e1-4c00-ba14-3a9439eebba3 + Name: Cell_Loop (37) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: d0a6f1da-af20-40d4-9a55-5031cafc9afd + Position: {X: -9.0, Y: 0.0, Z: -8.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 5400ad03-e295-415e-81bc-5c0668b42c9c + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: b0a893bd-fe4c-4313-a869-87c98cdb6506 + Name: Cell_Loop (72) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 9d21e10e-c1cb-4267-9bb2-2ca371ef60e8 + Position: {X: -22.0, Y: 0.0, Z: -23.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 9c9255fb-17cc-4905-aff5-ea4e09c503c6 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: b0bd701f-0a15-4af3-a2a2-538a0e91d549 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: b4b83d00-e48b-4f9e-930a-3d32b2777bc6 + Position: {X: -22.0, Y: 0.0, Z: -26.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 44f28b6a-a224-49c1-bbd9-c2f3d1fdf8bf + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: b12032a1-bb36-4ceb-a206-81031ceafc38 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 6a7f5bbd-ea50-4216-83e6-6c572922e1ce + Position*: {X: 12.21749, Y: 0.0, Z: -3.44376254} + Rotation*: {X: 0.0, Y: -0.9621895, Z: 0.0, W: 0.272380978} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: c3bf5bc3-37f0-4a3e-933b-56728e199ef1 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: c150adb7-cd87-46b2-b6b7-144dd432981d + - Folder: Borders + Entity: + Id: b1f54676-f8b0-4c6b-a3bb-f0e484bd6d9a + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 95c7dd67-3206-480a-b381-e397e6f26de4 + Position*: {X: 5.958778, Y: -0.0438596979, Z: 4.504555} + Rotation*: {X: 0.0, Y: 0.593310654, Z: 0.0, W: 0.8049735} + Scale*: {X: 1.0, Y: 1.0, Z: 0.9} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 63afa330-b00d-4050-bf1f-cfff466f8738 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: bf7fc40c-9811-4cd4-a7e8-14266d9eb4a4 + - Folder: Borders + Entity: + Id: b2656149-1443-4df1-ac86-0f73f7e62186 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: f1de1390-d983-4aed-a0ee-085e2c1f4795 + Position*: {X: 7.499998, Y: 0.0, Z: -11.1083088} + Rotation*: {X: 0.0, Y: 0.962189257, Z: 0.0, W: -0.2723818} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 0181fb5d-47f4-4d1b-b363-e9edc5c0838b + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 8f9eb525-2372-47a8-a238-c95a8926b654 + - Folder: Platform + Entity: + Id: b331a24f-40cd-453c-8eef-81b1c4d6ed41 + Name: Cell_Loop + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 4b0fac4b-2457-4403-8962-4fe5cfacf2f3 + Position: {X: -1.0, Y: 0.0, Z: 4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: e74718a3-9608-46a4-8d4c-60ff16ee3c18 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: b3f85acf-3e82-4b01-9dc7-8bc37bef9789 + Name: Cell_Loop (21) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 4a35c3b5-a3ad-4b38-b6dd-03e67be98c17 + Position: {X: -7.0, Y: 0.0, Z: -2.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: cc6431d5-4f74-4b1c-8f36-86c1dbccad6d + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: b42ba567-31c3-4ddd-9447-3fc16eb0bff1 + Name: Cell_Loop (67) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 7a176bb5-00ba-494d-b697-72063348a910 + Position: {X: -17.0, Y: 0.0, Z: -20.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: cbee83ee-2f78-4be6-8522-dfde292868e8 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: b431d7c6-cbbe-4c77-ad7b-2c1dbe8fef63 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: f0f20e4a-a761-49d2-9b77-28d1e035a521 + Position: {X: -4.0, Y: 0.0, Z: -32.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: bd45c731-d9e1-45d4-93c9-cb0cbd4edf09 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: b55f4dce-1ce8-4bb6-90ec-61a273c119f7 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: c518f310-bdcd-4409-b274-5bbfe5f49572 + Position: {X: -17.0, Y: 0.0, Z: -29.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: b122c1c1-e8b5-43a2-a1e0-b58eb320757b + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: b59fbe1b-c1cb-4162-9e6f-183eb36ea171 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: a7e8e86e-da81-44ae-854c-e39fcb9cc81c + Position: {X: -18.0, Y: 0.0, Z: -26.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 9e15fe4d-cac4-47f6-a26f-2eece23e7527 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: b59fd7a6-df68-4719-a757-de93f0cdc72f + Name: Cell_Loop (68) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 488bf018-fa75-4e35-a84d-0debb5c9cb9a + Position: {X: 3.0, Y: 0.0, Z: -20.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 4c732c59-d1e8-4f3d-a487-2d12c81fcded + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: b5a2bd5d-fdc1-47bd-98d7-ec0c44fad1af + Name: Cell_Loop (67) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 4d28011b-22a2-4a04-bffc-3f0945584a25 + Position: {X: -9.0, Y: 0.0, Z: -20.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 32978383-5f8f-40f2-b0fd-ba81d948a264 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: b780ce12-5d07-4097-bbad-914f54a25e28 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: c719c220-1153-4e19-89e2-b91a659aefd3 + Position*: {X: -9.972472, Y: 0.01, Z: -10.1714888} + Rotation*: {X: 0.0, Y: 0.21643962, Z: 0.0, W: 0.976296} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 5eb18bd3-12a3-44de-bcbe-7f32f9a19298 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 4089da65-bc47-42ff-ab2b-ad4aa017a301 + - Folder: Borders + Entity: + Id: b87988c8-8d43-47ed-8370-c6650f70aaea + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 484e44d5-535d-4819-b9a1-9d42626367c1 + Position*: {X: -16.1602783, Y: 0.01, Z: -19.9114628} + Rotation*: {X: 0.0, Y: 0.382683456, Z: 0.0, W: 0.9238795} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: cb689c28-cce8-4672-becf-d333a2909bc1 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 693b59e7-7e38-4659-ab1b-f4a285586b29 + - Folder: Platform + Entity: + Id: b8f75816-6eaa-4813-9f55-41a7fdd1deed + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 83738e13-fd76-4f46-b945-bcb339098ebb + Position: {X: -2.00000048, Y: 0.0, Z: -35.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 8db24f10-6a41-46a7-835e-5c8d11f42b39 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: ba6635d8-957a-4427-a568-8ef0a2dc89fe + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: fab22665-d5e6-4bbd-8a4c-718f48d9bba1 + Position: {X: -21.0, Y: 0.0, Z: -35.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 9837e6d8-2c1a-4fd3-89b9-fdc78444d274 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: baf4d4ec-5c96-49cf-a83e-0c0d305c83cf + Name: Cell_Loop (60) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 2e887dfc-edf7-4e2f-863b-f2d923daa5cd + Position: {X: -9.0, Y: 0.0, Z: -17.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 96b34ca6-8055-4adf-b876-edd9512bad35 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: bbad30ef-0b7b-47e3-b48d-1f2b5c0db8d3 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: b60fb011-5108-41f7-8ed2-9565be24ba0e + Position: {X: -38.0, Y: 0.0, Z: -29.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 48207511-f790-498e-82e1-205b6ebfdcb3 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: bebfd5a3-a3cb-4d08-ab7b-76780b757ad1 + Name: Cell_Loop (67) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: bb9b05ac-7bfc-4c90-8f4f-f7946a94afd4 + Position: {X: -7.0, Y: 0.0, Z: -20.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 5ba3d551-4ee0-4867-aaf2-42abc10b91fd + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: bf7944f0-ceba-4b45-be2e-934c3a1ff17b + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: bb640229-cb70-47f9-922e-f7935bb42402 + Position: {X: -27.0, Y: 0.0, Z: -35.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 70886182-8d61-4ebd-a2f3-3d4d6722e316 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: c080a4a7-a626-4c52-9aea-3445814a8a4c + Name: Cell_Loop (61) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 10bdc82a-fe37-49af-8afd-bc5a73d82a53 + Position: {X: 3.0, Y: 0.0, Z: -17.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: da06a142-02a9-4fb3-a397-3c7a960a1eb6 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: c2de0221-718f-4f0d-ab31-05e406a9c319 + Name: Cell_Loop (41) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: caa5ce25-a807-4df2-8d5a-e87ff1788da6 + Position: {X: -1.0, Y: 0.0, Z: -11.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: d7619560-e713-4cd5-881f-dab6562ecb27 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: c2e00d35-f4dd-43be-b162-c207f70b1a05 + Name: Cell_Loop (34) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: ee6348fb-2ed5-49aa-984d-e7f4154f0180 + Position: {X: 1.0, Y: 0.0, Z: -8.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 31aa6894-4707-48ea-a224-a89ecb1686ad + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: c53c19a8-bc18-4e21-8b9e-111fde87b5fd + Name: Border_out_corner_90 + Components: + b923f0caab27e8703f9f8ee1a8dd1d18: !TransformComponent + Id: cce4159f-61bf-4d1c-a0f5-28f521deae1c + Position*: {X: 7.500002, Y: 0.0, Z: -25.9999981} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: 0.0} + Scale*: {X: 0.999999762, Y: 1.0, Z: 0.999999762} + Children: {} + 6098c87ff6246e074f03b48bd2941bf8: !ModelComponent + Id: 48d99237-380d-4403-82e7-71424d70c2a2 + Model: e2199908-ce19-4e35-843e-6ade71089032:Environment/Platforms/Models/Border_out_corner_90 + Materials: {} + Base: + BasePartAsset: efe073eb-d2bd-4eb9-a065-4a103cc52d7c:Environment/Platforms/Prefabs/Border_corner_out + BasePartId: a08bbac9-bc4d-404a-84b2-5093fedf0e77 + InstanceId: 14e34df9-b07b-4307-8dbe-0d5d4e3367ec + - Folder: Platform + Entity: + Id: c5bcf23c-fb53-4de5-92ae-0b75a301501f + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 9dcbfb85-7798-4ea2-a874-40f0c2639013 + Position: {X: 2.0, Y: 0.0, Z: -26.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 7b357e6d-eb72-44b6-85ad-10e249673822 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: c64bba2e-4f33-494f-a250-5f098df49331 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 01f00fe4-d435-41bf-a37c-3f9a8e2d4025 + Position*: {X: -13.221777, Y: 0.0, Z: -38.72633} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 14a49bb9-83c2-48d7-94e9-198aab6da590 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 556069e9-bd74-4424-ae69-b0c16e4eea82 + - Folder: Platform + Entity: + Id: c6ad8913-c7d7-41c4-91fa-517e7bae66da + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 33440067-50cf-4f4f-8625-44b9f89aa129 + Position: {X: -38.0, Y: 0.0, Z: -35.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: bd3844d5-613a-4d3a-a9db-cf17b3caea07 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: c8dfafca-5c49-431c-9c2e-72f2ff2e2725 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 92f820e8-a37b-46d8-b3bf-8dcdd71142ac + Position*: {X: -1.30988836, Y: -0.0367157571, Z: -38.77803} + Rotation*: {X: 0.0, Y: -0.935749531, Z: 0.0, W: 0.352665126} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 1c2ff84c-5c7f-46b3-b190-ecee101fcee6 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 468fe0ba-8c57-40ad-ba3d-57800b1964f9 + - Folder: Platform + Entity: + Id: c9777ae8-b891-495e-8b7a-6c1d03af2cd7 + Name: Cell_Loop (53) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 502993cc-1ea7-4e52-932f-0421239bd208 + Position: {X: -9.0, Y: 0.0, Z: -14.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 6c3a03db-26c7-417c-9719-a33394ab4ffd + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: cb161688-8df0-42ab-a9e3-713806ea917f + Name: Cell_Loop (15) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 0fe7ca49-1085-4f1b-bc2a-21ce8ddc64bd + Position: {X: 9.0, Y: 0.0, Z: 1.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: bbf2be94-81d8-412d-97db-2f6465b8fd98 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: cf879240-3c54-4884-a313-8512ded32f28 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: c5fde321-0142-4308-884d-107d02078c57 + Position*: {X: -7.738412, Y: 0.0, Z: -1.748787} + Rotation*: {X: 0.0, Y: 0.08715574, Z: 0.0, W: 0.9961947} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: ce680e4a-7346-4acb-87fc-4a054c1ad250 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 19841667-8705-4002-9eaf-1268b4aa1461 + - Folder: Borders + Entity: + Id: d0afd073-4865-4981-9bd4-b6b9d67682ab + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 6440c625-fdab-4a99-9347-954918c96414 + Position*: {X: 7.499998, Y: 0.0, Z: -14.0} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.37113847E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: cddc5d09-4da2-404d-a871-076ce341f518 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 7033b7c7-ca09-427b-b23d-480cf4c34c73 + - Folder: Platform + Entity: + Id: d20619ea-76c6-48a6-8103-9383c64e2773 + Name: Cell_Loop (12) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: ebdcb0f6-1b6d-4753-8aae-6562eef4a670 + Position: {X: -5.0, Y: 0.0, Z: 1.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 29402011-1bdb-40f1-aa98-5561d4c31366 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: d2e090b3-8576-481e-88e0-cf27ef06dd6a + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 9f6b90b4-c329-437a-8abb-dc55fc8f9e67 + Position*: {X: 0.614997745, Y: 0.0, Z: -36.5983047} + Rotation*: {X: 0.0, Y: -0.980785251, Z: 0.0, W: 0.195090353} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: dac1061a-172c-4e1b-a079-cafe2c2ddcf2 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 3cb1963f-77e0-46f7-9255-84f48c4006bf + - Folder: Platform + Entity: + Id: d2e37220-c0e0-479b-a80f-29b4fef2c558 + Name: Cell_Loop (53) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 5aba2ca6-dab3-48bb-8233-e5a7698e3817 + Position: {X: -11.0, Y: 0.0, Z: -14.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 5088744a-ebd4-44d5-9699-5d40e3c1e05e + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: d4fd61e3-44ae-4480-9e35-f9061356f8d0 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 608643f7-e1ad-419c-9669-5e94d1a448d4 + Position: {X: -15.0, Y: 0.0, Z: -35.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: db4069cd-353d-4d8a-bfcb-028125f3bf37 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: d5f14415-d488-4e6d-8b8f-4e86d6e3b9e3 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: c311a57e-3474-434c-b4e6-5ee89dfdb40e + Position: {X: -29.0, Y: 0.0, Z: -29.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: e63d51a7-6d20-487e-917f-383caf29196a + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: d67887e1-e31f-4412-ab49-2a6ee94a8e6a + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: ed147140-9da9-4a0b-8d37-37b68b16ce9d + Position*: {X: -34.22178, Y: 0.0, Z: -38.72633} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 2d48eff1-de93-4db6-a6bc-1ccc7eb9c686 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: f0543017-d8b0-48a1-b627-45c563de630a + - Folder: Platform + Entity: + Id: d67ddcf6-2e36-4703-a293-075a4ae51c6d + Name: Cell_Loop (8) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 17fe969d-4591-49bb-8c9b-7a21888d69a8 + Position: {X: 5.0, Y: 0.0, Z: 4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: e4330317-883d-4ada-a187-479d7b254b64 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: d76d865a-8c28-489e-98c1-c731dfbe9621 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 3409b851-bdff-4847-906f-4ccb769fb8f9 + Position*: {X: -31.221777, Y: 0.0, Z: -38.72633} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: faab55d0-fa1b-4e63-b2e2-f16dabe22637 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 398db8f8-246d-499f-989d-79f80baca2e2 + - Folder: Platform + Entity: + Id: d78968f1-4458-45fe-84d7-6b574b6480b5 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: a9cc4d8b-751a-4e60-8b89-3272841c3e8d + Position: {X: -27.0, Y: 0.0, Z: -29.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: c81f3d0b-ccc8-4d8a-9737-123b5a8ac9f5 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: d8febc54-287c-4768-b7b1-0274318642a3 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 93bd528a-92f3-4404-b38b-3b82d9375a47 + Position: {X: 1.0, Y: 0.0, Z: -29.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 07013624-c307-4c2d-9ebe-20bd9dcb3395 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: d913f974-5e28-49f2-a772-e809ca885dda + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: ac7ad922-31d4-4bde-bf8e-676392ba7cfe + Position*: {X: -11.1928053, Y: 0.0, Z: -12.8081017} + Rotation*: {X: 0.0, Y: 0.258819044, Z: 0.0, W: 0.9659258} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 3079b141-0c0f-4015-a64a-026ad0adfc19 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 3c23c7cb-e90c-4730-a8b4-f323bbe07060 + - Folder: Platform + Entity: + Id: d98041ff-7f02-4d55-aaa0-cfead33267c0 + Name: Cell_Loop (60) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 1af16ff5-7f63-4373-b46c-a618984b9cdb + Position: {X: -15.0, Y: 0.0, Z: -17.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 881e04ab-5b18-4dcf-a7c1-b68ad21eacf6 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: d9c7e21b-80cf-4cdb-8857-c5304e7c7fd1 + Name: Cell_Loop (52) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: e32ae3ee-29af-4027-96e9-9a7f40a3f1ec + Position: {X: -5.0, Y: 0.0, Z: -14.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: b4006351-f792-4200-9fe5-d0128223bf8e + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: dbea4859-667f-439d-a6e6-becc68f32f0c + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 5cb7f77d-ac2c-40aa-b084-a4833769bbb6 + Position*: {X: -36.48513, Y: -0.01, Z: -29.005537} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 1.0, Y: 1.0, Z: 0.8} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 1dd39756-ecce-4629-984c-e498e53b5b9f + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 502c1ac0-ac4a-4441-a304-6170a767e47b + - Folder: Platform + Entity: + Id: ddb9f4f3-85e4-4fd6-9505-6ff7522d43fc + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 2763069a-dfb7-4492-a994-76427c15000b + Position: {X: -7.0, Y: 0.0, Z: -29.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 47f2fd64-e30a-4f9c-8b6a-5efb14016cee + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: df2d32b4-db25-470d-80fe-4349aa1f834e + Name: Border_out_corner_90 + Components: + b923f0caab27e8703f9f8ee1a8dd1d18: !TransformComponent + Id: 661d69b3-cf32-4ad3-85da-16394188320c + Position*: {X: -7.5, Y: 0.0, Z: 4.0} + Rotation*: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6098c87ff6246e074f03b48bd2941bf8: !ModelComponent + Id: 042d1343-9ffd-48d6-8acb-1c19a3ddf00e + Model: e2199908-ce19-4e35-843e-6ade71089032:Environment/Platforms/Models/Border_out_corner_90 + Materials: {} + Base: + BasePartAsset: efe073eb-d2bd-4eb9-a065-4a103cc52d7c:Environment/Platforms/Prefabs/Border_corner_out + BasePartId: a08bbac9-bc4d-404a-84b2-5093fedf0e77 + InstanceId: 27628760-24c6-42e9-a432-b3f46fbdda8e + - Folder: Platform + Entity: + Id: dfe42f62-9eca-4249-825c-21706dad6474 + Name: Cell_Loop (28) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: bbbd52da-f89f-4c7b-aa79-c34a7b301903 + Position: {X: -5.0, Y: 0.0, Z: -5.00000048} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 2000740f-3b5f-44c0-b86e-8507a181ab1c + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: e0dab79a-7c1f-48a1-8f45-212e06a34a8d + Name: Cell_Loop (62) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 8fb9b82b-bf78-4f70-b799-839c7f636e0b + Position: {X: 5.0, Y: 0.0, Z: -17.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: ab8c20fd-9d80-4871-8d2c-cbad67ab0c1f + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: e1c8dc73-82c2-4678-a196-51ddb3dbb2f9 + Name: Cell_Loop (45) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 1a0af45c-333f-48cf-a1de-36a14a470578 + Position: {X: -9.0, Y: 0.0, Z: -11.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 595bb690-8373-4937-b139-2b3078bf24ee + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: e1eb5e4d-9e7e-44f6-833e-5f3880ba2433 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 47b4e07c-c00a-4afe-8942-eda160dc9892 + Position*: {X: -22.221777, Y: 0.0, Z: -38.72633} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: c6ba274a-03c4-4a4a-acae-536f7f336776 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: ae7079ad-bc27-4822-a55a-819b368f355a + - Folder: Platform + Entity: + Id: e405987c-69b1-43d4-a137-3a7207938edf + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 9be5c70c-9d1c-45d2-ba29-bdf352d35056 + Position: {X: -33.0, Y: 0.0, Z: -35.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 31f94ab0-c858-4723-b72f-d8a9880cc20f + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: e48ed192-57d2-4f05-8ac2-ab4550440753 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: b9bc12e6-f84f-49ed-9765-eef6f3e003c6 + Position: {X: -6.0, Y: 0.0, Z: -35.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: afc83ef7-115b-4b57-bd26-f67451e390fb + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: e716b398-cf64-41c7-b6b3-9b9923ca1c92 + Name: Cell_Loop (43) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: c2f325e5-7d35-45a3-9a7b-e7c57afd897a + Position: {X: -3.0, Y: 0.0, Z: -11.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: d82963ed-ea35-4f4f-b358-886a714f459c + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: e8f7e948-8679-4950-b7e6-f3857accac34 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: eefcffea-dd15-46cb-b0e9-3f82e865e389 + Position: {X: -19.0, Y: 0.0, Z: -35.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: eb34f338-b07e-4dea-8bfb-c81811587139 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: e9ac593e-6ed9-4a81-ab21-1ab3bccb930c + Name: Cell_Loop (20) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: f32c9c3a-f601-45e5-aaf5-2e76f6409ade + Position: {X: -5.0, Y: 0.0, Z: -2.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: e011ff76-1858-4245-916a-edbb3530f07c + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: ecc0638a-f408-496e-b31d-c37e15207442 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 93839972-2431-4660-9f33-a05f7fe489c3 + Position: {X: -20.0, Y: 0.0, Z: -32.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: a7f77185-9c98-48eb-b635-f0b064bdc84b + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: ecf11ae2-8fcb-4832-8261-ef6ee72a866e + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 93e96f34-bed1-49f0-b039-5c994514a3ed + Position*: {X: -10.221777, Y: 0.0, Z: -38.72633} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 428739f9-557a-4b55-b8fc-902f02c708bc + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 907ec135-1cba-4b82-9073-947571e8ce71 + - Folder: Platform + Entity: + Id: f27b4c05-ac15-42c5-940a-b50a7d8dafa8 + Name: Cell_Loop (55) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 676cfdf6-8e78-4d23-a71d-beedc8161324 + Position: {X: 5.0, Y: 0.0, Z: -14.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: b81f2567-35d6-4dee-bd3d-f3c1fc7d8dd1 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: f49199ff-745c-4ac2-8a14-34c85840702c + Name: Cell_Loop (50) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 868875c3-30a0-448b-a00e-3e58b5342ca6 + Position: {X: 1.0, Y: 0.0, Z: -14.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: d898cf13-4ee9-4d00-9b92-83112739f00e + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: f63ff302-334e-4860-a15f-f86c87818d5c + Name: Cell_Loop (72) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 04b2ce6f-9597-4a0e-ac9f-b8fa3ee72f7a + Position: {X: -19.0, Y: 0.0, Z: -23.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 6eb36ed2-13ad-4050-8f7f-bb2c8f9075ed + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: f7a69124-98e5-48fb-b620-977a162451d6 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 073f811d-3586-464f-af6c-d66fc45ff20d + Position*: {X: -19.221777, Y: 0.0, Z: -38.72633} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: e9f67124-4564-464b-823e-fde6616a11d3 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 7c56c8e6-4dde-4493-843f-04818725673c + - Folder: Platform + Entity: + Id: fa0c4bdb-c914-440a-8be8-943a58023e56 + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 9b3752c2-6b3e-46f7-87cb-809a172159c2 + Position: {X: -5.0, Y: 0.0, Z: -29.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: b0e15e30-da89-4ea3-9ecb-c4150e537ea1 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: fa3a73bc-89a1-400a-854b-36651fea6f3d + Name: Cell_Loop (54) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 5e20af78-0395-45f4-8430-b157aa247382 + Position: {X: 3.0, Y: 0.0, Z: -14.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 5de3a081-a611-4ac3-b95c-c0024440df73 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: null + Entity: + Id: fa63245d-3a98-496d-b1b1-b277fb6cff0d + Name: FloatingRock2_2 + Components: + 5e4b0e71b6336787d1cda626d11089be: !TransformComponent + Id: 93300604-4608-4b23-83a2-39568aca9976 + Position*: {X: -5.18261433, Y: -0.8087367, Z: 1.05509019} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + be4998ad68c8459667a7284a8d99157b: !ModelComponent + Id: f9219dd2-65d4-4be0-bfcd-2375aba7312f + Model: 4a2f9278-e0c6-44fb-9c01-be4b1d8df07d:Environment/Background/Models/FloatingRock2_2 + Materials: {} + Base: + BasePartAsset: 015d5639-6ba5-4172-a09e-83d0c9decb1f:Environment/Background/Prefabs/FloatingRocks2_2 + BasePartId: acd14fa1-66b9-41ba-a956-d373b2a8694b + InstanceId: 7c539412-97e9-4537-a5c5-108b04d760ca + - Folder: Platform + Entity: + Id: fde605f8-4c10-4456-a4a9-eb4616373dba + Name: Cell_Loop (10) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 5447753e-35fc-4a5e-a3b1-5b0641ae22c9 + Position: {X: 1.0, Y: 0.0, Z: 1.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 42e8b786-4c36-433a-a847-d13a2272132c + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: feed67c9-5517-434e-9991-b98c896d551e + Name: Cell_Loop (71) + Components: + 349b2f2337aa4cee66cd55e570496ae0: !TransformComponent + Id: 1c20800c-5885-481f-989f-4957f6b57a74 + Position: {X: -8.0, Y: 0.0, Z: -35.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 903436c522717584c037b3c078cf0a02: !ModelComponent + Id: 8f944d8e-583a-4cfe-940e-d62483ea97ab + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: ffa1fed3-3732-4721-b150-8c43522a1fe5 + Name: Border_in_corner_90 + Components: + 8dd5441a9e0f7cc9cdac7e64be0bcc32: !TransformComponent + Id: a6f6bb9f-5752-45c6-92d1-6cce2f4f1d24 + Position*: {X: -37.1896362, Y: 0.0, Z: -37.0406} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.02, Y: 1.02, Z: 1.02} + Children: {} + 21e6c7c4ce05ff264d998193015bbbbe: !ModelComponent + Id: 257f9965-0a05-49d0-bad5-c7bcce71f5b1 + Model: 1c9753bc-679d-4677-8f9f-9c88dd878d10:Environment/Platforms/Models/Border_in_corner_90 + Materials: {} + Base: + BasePartAsset: 21ebc8de-2500-440f-9e0f-d399cc3e5896:Environment/Platforms/Prefabs/Border_corner_in + BasePartId: 4bb90be4-e7c6-4e5e-b845-2c84f915a3d9 + InstanceId: b3b35bee-268c-4fd1-9621-3cbf307496f4 diff --git a/Starbreach/Assets/Shared/Levels/Prefabs/Level_1-4_Platform.xkprefab b/Starbreach/Assets/Shared/Levels/Prefabs/Level_1-4_Platform.xkprefab new file mode 100644 index 0000000..6a2b8ce --- /dev/null +++ b/Starbreach/Assets/Shared/Levels/Prefabs/Level_1-4_Platform.xkprefab @@ -0,0 +1,4475 @@ +!PrefabAsset +Id: daa024b6-392e-4d8f-bf39-0cdce85cca5d +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! ad57c41a-4217-4d70-b504-0751573d6e82 + - ref!! 9c039169-2a21-4464-a98e-9db20f371ba1 + - ref!! b5149f00-9315-4e2f-8a6f-ff1ae1e5271f + - ref!! 1a12b1db-4dca-4f06-8fd4-c60ac19a5192 + - ref!! b4c10eb0-230e-4056-9910-d92fdddf09d6 + - ref!! 318d30ef-779a-4fa6-a304-200e25fbd9ae + - ref!! 0a76b22e-7556-412e-8e55-53e7576ad9e4 + - ref!! 0c25a30b-729c-472b-80e4-b47afc9308eb + - ref!! e8d4d239-4fbf-4f2e-bcf5-4634ba2a3815 + - ref!! 4bca3211-b842-4441-b2f8-d8e17dfe15ca + - ref!! f898e0e5-b4f4-49c5-8f6b-2e10c00592cc + - ref!! f4bca513-ceaa-4906-bd83-0fe720fc6e02 + - ref!! 7c84be3b-5f89-4e2c-b886-f01ee4574d36 + - ref!! e559414b-e41e-4f50-b1c6-51b726589d09 + - ref!! d9f227dc-45ad-4d2d-ba83-6ee056ed6089 + - ref!! b47fe181-05d5-4575-880e-4e2157a5f52b + - ref!! 63ff35dd-792b-4276-a503-ca20218b89a8 + - ref!! c5bb9b3e-f34a-413f-acf1-04fcbc94649b + - ref!! e457363e-2c79-4f26-b5a3-498046324a38 + - ref!! f285c0cb-6ea3-400b-a755-a044a4597dca + - ref!! 84b0ea6e-f5ed-4f3d-8d9e-eea55ba595fb + - ref!! 3e146a5a-75a7-47a3-89dd-82148b2c9c9e + - ref!! 5e96ec3b-b150-4ede-8243-448ca48e1859 + - ref!! ea70a17f-df2f-45b8-a4d8-a75748fd5f91 + - ref!! 5199e594-9c82-4808-ab4a-63c26c598d30 + - ref!! e178a2b3-e014-4b9a-8014-598fd38a08bf + - ref!! 5b7b1ef2-cdc1-4fb0-a7a5-c140289fdacf + - ref!! 509f4989-5749-45e1-b7a8-d604487e8fa4 + - ref!! a26d1f54-96d5-4aea-9526-cac6b8ae61d4 + - ref!! 8fe579dd-48e6-4f38-a589-7881469b4b16 + - ref!! 1563a3da-3a02-42dc-8c80-e5d6bf48cc94 + - ref!! 818deab4-1b5f-4926-a050-0e5798c0fdae + - ref!! ba162a5d-83c1-4e6d-ad26-991fac23336b + - ref!! c1a7835b-7fc3-42fa-a689-2021625836e4 + - ref!! e5d3452d-795c-4eb8-b4af-9463e795fa88 + - ref!! 91ba98d7-8239-4b6d-bb6c-07da7979ad68 + - ref!! 4d81f227-589d-4a9a-912c-0053a1f45792 + - ref!! 76386cd2-f715-499c-9c65-cc12e9386ec0 + - ref!! 88637a23-6b03-4983-86ac-da20cd3acf8a + - ref!! d8514ab4-1c1c-45ef-9a87-f5491905259f + - ref!! 517d6098-8297-4d05-a2ae-64a3d9cf152b + - ref!! f4314ec1-45e5-4276-8462-3a0b62763ab7 + - ref!! e7c6b696-469d-4976-b279-8f581482f077 + - ref!! 48cd855e-406e-4197-a1d2-02f7ecf189c8 + - ref!! 46b7a1f3-1e90-4b44-8dc6-18eaf15f6049 + - ref!! a8736f41-8e93-4be5-96e9-507cadb3f6e4 + - ref!! 9ea74c87-1a43-4853-ac54-bf57b06f2626 + - ref!! 6f6dc989-6cd7-4182-a34b-4e083331648c + - ref!! 6958a16d-e5a4-4108-8390-871106193918 + - ref!! b7ebed3a-d8eb-4c96-8be4-a67abb4ff92d + - ref!! 48466ae1-1ca7-4672-8f69-af9a9e4b23dd + - ref!! 2a34068b-de32-4b47-9a26-2799a4380908 + - ref!! 4bc6112b-b87f-4905-919d-9d7e4b3b23dc + - ref!! 2fb17ede-d776-4663-8254-a3fbd8423cd9 + - ref!! 0a3db564-f6bb-40b7-a8f3-e8910272719b + - ref!! 302e8265-c85a-4d39-8525-9a64cd469dc7 + - ref!! c70ea58a-16c0-4149-b41e-8940ea61480b + - ref!! 057e81ca-048b-448d-a0df-b78899a444d1 + - ref!! 3393ce9a-2786-4844-9248-92a2fff9db28 + - ref!! ce309cbd-e404-43ad-a3ca-40b47a93de82 + - ref!! abacaca5-c146-4785-ab6f-1391d49c0c3d + - ref!! cac842cf-f47e-46ea-8af4-67f363c17580 + - ref!! 6c7648fe-ef2e-4a7d-be84-00fc16f88495 + - ref!! 1d50bf94-8e3c-4326-a71a-98a39a404e6f + - ref!! fc07e0a5-a552-492b-bc86-9b897ffb8a67 + - ref!! dc3f161c-41f6-46cf-92d4-840a4f14e9ce + - ref!! 42273303-03ad-4635-97a6-e03511349867 + - ref!! fae8a639-1006-44f3-89d5-b460c1629c1c + - ref!! eaf04f4f-0637-4414-ab00-c135fd8fa3e2 + - ref!! 512125ad-3b06-44a2-8733-7871113daca5 + - ref!! 716768e0-536f-479d-8c6a-b2f7bdfa66a1 + - ref!! 1de10f81-840d-4f46-bd53-63445d4c946e + - ref!! f845782a-1ad4-4619-866e-895fd4543358 + - ref!! 4539fa27-5d04-4bb2-a1bb-d8f233b025f2 + - ref!! a83ccdd8-a3c7-4537-a10f-cc617763ef6b + - ref!! ad3c570c-0956-4983-8f1a-71226e75c0f7 + - ref!! 712cde57-e252-49de-acfe-84614f29beab + - ref!! b1fa7e88-fa9f-400e-95ed-e3f15176741e + - ref!! ab363640-3c98-4e97-94a3-9c05bc2fc8da + - ref!! a96d332e-7de2-4875-be4c-ef55f9c3f3a0 + - ref!! a0d2841f-7aff-4fa5-bd46-0423e839188b + - ref!! 59c92ae9-8c5d-4b61-a096-b5069aedafae + - ref!! a229a7fe-d544-4f9c-a182-c8450d4b9a34 + - ref!! 2a341e1c-874a-4566-b20c-908910a6a343 + - ref!! ac1e6fd5-e6c3-4282-9cca-36879f0895f4 + - ref!! b61001ba-1ff2-4b47-94f3-777241c91db8 + - ref!! 0f37d171-cac6-43e3-9b0c-ff856350ad75 + - ref!! f571b52d-567a-4424-a06f-5135ab8f7d36 + - ref!! 4b5a2a92-f8f8-4834-9dc1-7d9caad80491 + - ref!! 00a61266-0ad5-4009-81d8-35f664637b86 + - ref!! a599b3cc-f243-47a7-8863-4e32f12fd810 + - ref!! 2a5c145a-0076-45b4-88bb-e57efa89188b + - ref!! 57222ee1-daac-47ab-8906-67cc23925790 + - ref!! 14d33050-0b8a-42fc-b79a-f3c34b2bb970 + - ref!! 1c18607b-b362-430d-8775-18e04c8e385b + - ref!! eafbc6cf-f603-41e8-9eba-b67ad36c0a64 + - ref!! 97680c5a-72c2-4063-b22e-af949d02a829 + - ref!! 723bdd08-ce1f-4f65-9725-1c4dc297d67b + - ref!! 7e4994d5-8e64-4060-b9f6-711d8cd9d171 + - ref!! 53048c4f-4daa-4514-9392-900d0eae55f7 + - ref!! 90f57123-9a91-4300-9b34-b6da5d80fbce + - ref!! 4e18e395-e161-483a-97d1-7c51d2d8b2bd + - ref!! 1b7afe58-11a6-41a2-b871-b2b32e683edd + - ref!! f314d25a-5acb-4afa-8cbf-2e8e6e715d90 + - ref!! 16286377-cdb0-4492-94c0-cb0d7d865fad + - ref!! 6226dc01-4ec7-437f-b38a-8fcb41dec290 + - ref!! 72a1d81b-56fe-4b92-a327-22a55feeb2d0 + - ref!! 6548190c-08c7-4b2b-ba6d-bd97d70b5512 + - ref!! a3a37d43-5f05-4d58-9696-2c9894b042ce + - ref!! 29f7bf86-48cd-476e-b02b-667741cf220d + - ref!! f4826b3c-f046-4d1e-b68e-41726991bdcd + - ref!! 1aad0168-8561-4f78-9631-2e65de21fa1e + - ref!! feacd78c-ad86-44b7-8e11-110d4382d2fe + - ref!! c4adb770-7d06-4fe8-ac94-a4c78613736a + - ref!! c135284a-9f47-4a07-89d5-93e84a067e54 + - ref!! 6a0d5dd5-3464-41e2-9281-91ce0a2ab171 + - ref!! 583a9409-8327-45e1-86db-58614ad28ed8 + - ref!! ce2851d0-7dfc-43b7-a50d-e601251b22c7 + - ref!! 93b70909-3be9-49a4-a987-21583bc3b847 + - ref!! 3792c2a0-bec7-4eb3-a016-bcc0814a33aa + - ref!! b8a4cce9-30b3-4d3f-b4d6-d4cb013e21a0 + - ref!! f840c90f-1e73-4065-9b8b-1083e85a3fb9 + - ref!! cd3d2fe0-1028-4eb3-9361-1957a9bf9542 + - ref!! 7f6441a7-5975-40cc-8ec8-e0a61b91e3c0 + - ref!! ce08bd2d-a7f5-4633-a90c-8752bb779a78 + - ref!! 34b67841-ad5a-45c0-b479-b42d405f8a5d + - ref!! ae0ba561-0fcb-4d51-8331-8dc87ca2193a + - ref!! b1b87ca0-56f4-4119-befd-2b4d0239ca87 + - ref!! c8116a0c-be66-4f01-9355-a1393f68069b + - ref!! bbc79482-c376-4ffb-bd84-67de16825387 + - ref!! 87e11643-0b9d-4122-ba9f-5a3b42ac36a1 + - ref!! 50355350-12a6-44b4-b25b-c6004ea5e625 + - ref!! ce03349a-aa78-4040-9f3f-c6414ffd6aea + - ref!! 27228e3d-77c3-44fe-8379-cdf7dca1efd9 + - ref!! 972a45af-3b13-4fff-a82e-526deff453f5 + - ref!! 80ac504c-30a4-4e59-9096-60c0e291d600 + - ref!! 59968e7d-48dc-4e65-87e0-2b2f713ddcc9 + - ref!! c61426cb-fd07-467c-9c55-3a761980b3fd + - ref!! df4fa2d8-660c-46a1-aa9f-b4d5f551772d + - ref!! d86eb035-39cd-401e-8eaa-26827fd6305f + - ref!! d1669bee-6cc7-48c2-8cb9-9bdb06749039 + - ref!! 6ac5fd63-6a6c-457d-a343-113f8fb3740e + - ref!! b121c20d-932c-4427-b159-e79dea5f2fb2 + - ref!! a0047c6e-d492-4045-a750-326ad5bec657 + - ref!! 5c7acbd1-cf44-4db6-a819-dfa92ddbf36b + - ref!! 7d7f1eb9-4f03-466c-b54c-8c436399b889 + - ref!! 2be11f91-9eaf-4f7a-a584-e09bf031a622 + - ref!! 8731ea30-cdbd-48c8-a1ab-94451d24b648 + - ref!! b5ff5ffa-3478-413c-bbec-8e68bb725f65 + - ref!! 0365d27b-c1fc-4c7e-a05e-689112f09a11 + - ref!! bde8b4aa-f765-4bea-9bac-f7023eff4ecd + - ref!! dadd7e92-3ab8-46db-9b7d-3d18542033ee + - ref!! 47c6610b-2dbf-4958-8ac4-e2852d258258 + - ref!! eb9c5c35-5d66-4811-94f6-dd5ff1740e7b + - ref!! d04d1118-1cab-4a0d-b5ef-828a7e3a9d2b + - ref!! 3ca6673a-83f7-4eb3-8e3b-50f03300089e + - ref!! 3c74bb0a-19ea-4f88-9b74-d15086f343a0 + - ref!! 66b8eadb-b780-4fb7-8ffb-21506f530159 + - ref!! b103211a-52b6-4ea1-a708-1a28457f95cb + - ref!! 1747ba92-dc52-4a94-ac7b-45e443bf7f6a + - ref!! ddf0f914-caee-49f4-97f5-1db2f41c7371 + - ref!! 20070478-1c2c-49cc-84c7-f26a104eef4e + - ref!! 898ad449-0845-4db2-9f35-e82882468fab + - ref!! d8d5f652-373d-44ec-8a17-6b831c867159 + - ref!! 72af8e57-320b-4366-8319-78ea7c031f25 + - ref!! 4b09ad22-4525-499e-aabf-79697f641752 + - ref!! 738b8d02-836f-46ec-b3d2-f7ec804b0b1f + - ref!! db928955-6df8-4a86-815f-9721d4326880 + - ref!! 460e59f0-6077-462c-bd7c-e4b99194d227 + - ref!! be6adbac-10c5-418c-b75d-3d571da6e991 + - ref!! 6e58531f-14ad-4b04-bba7-290a3acb6e3a + - ref!! 476d7a80-67f1-4742-968d-e1f2f674c7b6 + - ref!! 43d2544e-1d98-46fd-ad2d-3ce3487ee4d6 + - ref!! 99ccf72a-a615-4cb2-966a-d5a0450cf5b1 + - ref!! b7db310b-0dfb-4390-bc33-4fdcaad56446 + - ref!! 1a3f8652-aaca-477e-9762-946de18a53ba + - ref!! 19ec086e-8827-4312-90a8-d93a46a0750c + - ref!! c449c312-a5a6-41e3-ba98-9f0bebb4a309 + - ref!! 96535503-22e6-4b6d-9b4c-13a7b37078d3 + - ref!! 4ed9db3c-bb70-4c97-b7ad-b6e6ddbf3118 + - ref!! 7b905da9-19c3-4538-880c-873307f2788b + - ref!! d7a884d6-73b5-4c0e-8cc1-41b14b7d3156 + - ref!! 7b0af680-d78f-4d7a-85f1-71738adc9aa5 + - ref!! 9a767032-5672-4ec7-b0d5-1620984d7c09 + - ref!! c9517260-0b2c-4e4d-a669-b348c50f20c2 + - ref!! ad40d719-0c78-4d4f-9e07-360b61be7ab0 + - ref!! 98572e9b-ab90-4ace-88a4-93af2490663f + - ref!! 7f72ba47-b447-473e-ad17-092f23bfb2f7 + - ref!! 6c3e8696-f56e-4f5d-988a-54fb1a67fc62 + - ref!! fe049c67-6040-457e-9a20-2ca1a5ea5340 + - ref!! ca22e806-7950-4f74-9f4d-f000ef6392be + - ref!! 1e25446c-b6a7-47ad-9157-0ccaf73050b4 + - ref!! 9a85c6fa-fee5-442a-a0eb-63f30be11606 + - ref!! d2b1f3e5-f133-40a4-ac6a-3eb7a9a2aa85 + - ref!! 77597508-7f07-4103-a8a0-2eefab83658c + - ref!! c3b91596-ec45-4e13-9b1b-1cbc950c0222 + - ref!! e923ad25-a2b9-4f14-8ad6-968413a0c3a8 + - ref!! 3eaaf4d0-93aa-4d69-a67f-526842c6b74d + - ref!! f72b4dba-0e63-409f-abab-56c14dbe10c8 + - ref!! 808d49f0-1274-4ba9-905b-321f42155bc2 + - ref!! a3eafb9a-6d28-479a-af91-a8cd6f847d51 + - ref!! 60e13341-3ed3-49b4-8063-af00bf48403a + - ref!! 8449a1ef-e7d7-4733-b75c-9d2b7131386b + - ref!! 315d1ae5-1607-43e3-a8eb-270253793b61 + - ref!! ea00d4d9-c91f-418e-b242-6ab73cae1f17 + - ref!! fecfc273-2f15-48ab-ab08-2a14acb16833 + - ref!! a4143a9c-a716-4449-bcd1-1dfa9ec9d82a + - ref!! 687b6269-22d3-4297-8d5d-c53ac036fc22 + - ref!! 89d07277-7666-4604-8564-887ed68b2bf4 + - ref!! 149dc20c-8ab4-4fa7-981b-32b173111449 + - ref!! 1d380446-6a44-4c0c-9335-2a63aa696cc7 + - ref!! 7f6ee7d4-56ee-4d59-b046-94fd559003f1 + - ref!! 83f10b0d-8ff7-47e5-9c05-a82360a43196 + - ref!! 52f39018-49f8-47a4-afc2-24b9e7150d10 + - ref!! d3839d68-62ce-4380-b66d-9d36a85aa780 + - ref!! 28e5397d-ae1e-4ab5-8b00-8e7e000d03bf + - ref!! 9b6da659-c94a-48f3-b829-e761d5819c44 + - ref!! 66dd493d-2fb0-41cd-99cc-e4107754bdab + - ref!! f37489c1-cfb7-4900-8b8b-8f7ca1791b99 + - ref!! bd065f7f-93e1-4a0f-8bb1-dacdffd50204 + - ref!! 8a233a20-7fcd-410d-b86b-d6345c11e320 + - ref!! 1c1dd33f-0707-4638-99c0-13771bca8063 + - ref!! af351138-223b-46d6-88d2-770ca1858ad7 + - ref!! 6b0b0df2-b329-4eb0-81ef-52b8065deca8 + - ref!! 7fb20d39-7284-4c65-b5e8-0c8a3fe94874 + - ref!! a23eafd5-6ae8-4a98-a926-f86deb3c93c4 + - ref!! c665dcf7-4548-40f3-ba59-f48ae9bdd457 + - ref!! 7d13eef9-e638-43fa-845d-de611bda06fa + - ref!! 68e5edfc-2a05-4e1a-99a6-98d55f6cfea3 + - ref!! 5cfbeae2-14ab-4479-a198-86243fbcb1d7 + - ref!! 22cd1ad2-f48e-4521-8ae6-5aad742a96dc + - ref!! b7a738ac-99d2-4dbf-a612-3083ce239dd0 + - ref!! 27bd42ad-819c-4b2e-bd55-ba66eb699038 + - ref!! 3a1b996e-f1ff-4503-9808-b4e9727af548 + - ref!! 3f6e2fc9-11f9-4c80-8397-8cbdc00886b8 + - ref!! f31cfdc8-a93f-4059-a7f6-35000922b6bf + - ref!! 24c97d1c-5ca3-494e-84ae-1839bd915483 + - ref!! 4ef390bc-22d1-47ef-98eb-9616ce384959 + - ref!! 9d60c396-ecaf-42b6-b4ee-a95f58793152 + - ref!! 613ddc43-9963-4926-a13c-c21fa32c457a + - ref!! d6f0d9c0-0f1d-4c7c-b6d0-3d8d26dde76e + - ref!! ba824d64-df63-4c61-8896-0ff658982780 + - ref!! 205b8488-66df-490c-9312-ad26265fb8a5 + - ref!! 7307a0f9-8abe-4b41-bf70-cb436beea5b7 + - ref!! 3252a288-ddbb-42b0-ba2a-fff0669c9bee + - ref!! 5856d364-d1d6-4b99-8afd-47be7de64db4 + - ref!! 82ee30c8-52a2-4585-b0e4-785b87953403 + - ref!! d008b5f2-0a9e-4e98-ae33-90364f391681 + - ref!! c610f531-56bf-4194-9798-8aa5b87e500b + - ref!! 57b6309b-c728-42aa-8b08-2f19d9f53b3c + - ref!! f54998f6-8094-44fa-8704-70e6791d4504 + - ref!! e654fcb0-c94b-47c6-b3e9-28cfe65278c4 + - ref!! 034fc3fb-86ad-4f0c-a529-32eee4845cea + - ref!! 5d4fea90-5484-4c2c-a73d-9bca43e9578e + - ref!! 8dc4a5da-b1f2-408e-9eaa-063ca648714d + - ref!! a179258a-bbcf-4952-8338-446eedc173a9 + - ref!! 68599532-801d-45dc-ae06-b7a53b60603f + - ref!! 2465285e-d1f0-44dc-b0f3-2bc5a006814d + - ref!! 7965eed9-5262-4800-b1d8-4b126e991bd5 + - ref!! 7942ca7e-91e7-46b7-9e5c-4f925820f973 + - ref!! 55c33f43-45cc-48c2-98af-f94d8b2cca0d + - ref!! eb2b67e8-46be-4ae1-8406-f38daa5c35a1 + - ref!! 3939ee54-a62a-4787-be27-27c52120456e + - ref!! de5e9afe-7846-42eb-af6e-c243bc441859 + - ref!! d5310ae7-0282-41e2-b428-33c47da0a218 + - ref!! 1bb3d924-4639-43cf-9fe9-07571eb47577 + - ref!! b83fcc05-366a-488a-8039-7bc6d2fd32b1 + Parts: + - Folder: Platform + Entity: + Id: 00a61266-0ad5-4009-81d8-35f664637b86 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 2b305f94-74a2-4a93-a609-badcec7f9dcb + Position: {X: 6.0, Y: 0.0, Z: -19.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 5d508e3c-46c8-4a30-9493-c94b57f62a0d + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 034fc3fb-86ad-4f0c-a529-32eee4845cea + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 7184f2b4-cefb-42b8-867e-0b6eed5218a0 + Position: {X: -14.9999981, Y: 0.0, Z: -19.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: e1743ef2-e88d-4402-925e-9e5c0da10f65 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 0365d27b-c1fc-4c7e-a05e-689112f09a11 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: c62b2164-af74-4d48-8a6d-333cd2cee3ce + Position: {X: -2.99999881, Y: 0.0, Z: -17.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 02f69a95-ead5-4826-a818-0a958bcec841 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 057e81ca-048b-448d-a0df-b78899a444d1 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: cb1d3446-a01b-46ac-adfa-ac6590873dd5 + Position: {X: 9.0, Y: 0.0, Z: -23.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: d3b23f4d-07aa-4345-83fb-9388de1c07c1 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 0a3db564-f6bb-40b7-a8f3-e8910272719b + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 2d9a7379-873e-471c-85e1-2ad6544f16ac + Position: {X: 9.0, Y: 0.0, Z: 1.1920929E-07} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 1b2d3859-ff9b-4fbc-a7d7-adfad46b4f08 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 0a76b22e-7556-412e-8e55-53e7576ad9e4 + Name: Border_out_corner_90 + Components: + b923f0caab27e8703f9f8ee1a8dd1d18: !TransformComponent + Id: 2316530f-7bf6-4402-82ff-cc84ffe00bef + Position*: {X: 8.5, Y: 0.0, Z: -40.9999962} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6098c87ff6246e074f03b48bd2941bf8: !ModelComponent + Id: 297cfac4-bf24-415f-ae0e-6310e9e5e754 + Model: e2199908-ce19-4e35-843e-6ade71089032:Environment/Platforms/Models/Border_out_corner_90 + Materials: {} + Base: + BasePartAsset: efe073eb-d2bd-4eb9-a065-4a103cc52d7c:Environment/Platforms/Prefabs/Border_corner_out + BasePartId: a08bbac9-bc4d-404a-84b2-5093fedf0e77 + InstanceId: 45437366-6a8d-46dd-8304-fbe0e7696ed0 + - Folder: Borders + Entity: + Id: 0c25a30b-729c-472b-80e4-b47afc9308eb + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 8f17ce4a-46cb-4881-afc5-8ee39e6b7ede + Position*: {X: -14.5, Y: 0.0, Z: -0.999999762} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 0656afd5-f8ab-453c-8eed-b4c9c0df9e39 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 142a5dee-dc0e-4329-b35b-c10344dee6e7 + - Folder: Platform + Entity: + Id: 0f37d171-cac6-43e3-9b0c-ff856350ad75 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 6c3f0ad2-5191-4df9-ab03-4319fb956217 + Position: {X: 6.0, Y: 0.0, Z: -37.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 67dd0f85-2725-4e71-85f1-a03d7cb42c33 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 149dc20c-8ab4-4fa7-981b-32b173111449 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 8f0f866d-4638-49de-87eb-cd3e665e9216 + Position: {X: -11.9999981, Y: 0.0, Z: -21.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: c038e9be-409b-4168-b567-715607b4db76 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 14d33050-0b8a-42fc-b79a-f3c34b2bb970 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 2462cadb-0eb9-4d40-8ae0-540128cce69a + Position: {X: 3.00000048, Y: 0.0, Z: 2.0} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 6496c08b-655d-4f25-a5fa-3d91d543b34a + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 1563a3da-3a02-42dc-8c80-e5d6bf48cc94 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 9e213bc8-a6d8-4c78-a25f-64fdd0d42e05 + Position*: {X: -14.5, Y: 0.0, Z: -3.99999952} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 6fb98b91-2bcb-40fc-a59c-52a0a3762bea + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 0b0d00f3-c39e-4b0f-8c71-4614fcb6ff32 + - Folder: Platform + Entity: + Id: 16286377-cdb0-4492-94c0-cb0d7d865fad + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: eed618b1-f2dd-4f0d-aab6-ba41643d7ca7 + Position: {X: 3.00000048, Y: 0.0, Z: -9.999999} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: d2038e7b-84e5-418f-8092-fdf0c2b08197 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 1747ba92-dc52-4a94-ac7b-45e443bf7f6a + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 1d91c86b-b7d7-465e-8889-766a2ba13960 + Position: {X: -5.99999857, Y: 0.0, Z: 2.0} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 0023935d-2837-4854-9288-e43148748e30 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 19ec086e-8827-4312-90a8-d93a46a0750c + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 1b28fb83-ff9d-4e97-a1ed-485978b0fc09 + Position: {X: -5.99999857, Y: 0.0, Z: -11.999999} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: da2dcac1-f433-41fc-8b1c-3f808daff49f + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 1a12b1db-4dca-4f06-8fd4-c60ac19a5192 + Name: Border_out_corner_90 + Components: + b923f0caab27e8703f9f8ee1a8dd1d18: !TransformComponent + Id: 01a58da3-3ae7-46b7-939e-a9ab624a1fc2 + Position*: {X: -14.5, Y: 0.0, Z: 2.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6098c87ff6246e074f03b48bd2941bf8: !ModelComponent + Id: 9f3199b0-eaeb-4b57-a8e8-58743d5634b4 + Model: e2199908-ce19-4e35-843e-6ade71089032:Environment/Platforms/Models/Border_out_corner_90 + Materials: {} + Base: + BasePartAsset: efe073eb-d2bd-4eb9-a065-4a103cc52d7c:Environment/Platforms/Prefabs/Border_corner_out + BasePartId: a08bbac9-bc4d-404a-84b2-5093fedf0e77 + InstanceId: 9aede3e4-6c12-4b32-91ad-ed38a3a345d1 + - Folder: Platform + Entity: + Id: 1a3f8652-aaca-477e-9762-946de18a53ba + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 2a8a6b5b-18c4-406a-8d56-47a9389859b8 + Position: {X: -5.99999857, Y: 0.0, Z: -3.99999976} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: e2360b5e-f59a-4d96-bdfb-0fadc5bbfb0c + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 1aad0168-8561-4f78-9631-2e65de21fa1e + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: fc77e21a-8dac-4ab2-8dde-ccb2a2561467 + Position: {X: 3.00000048, Y: 0.0, Z: -19.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 5cc9b85a-69b8-45fe-9063-b5f1f685e843 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 1b7afe58-11a6-41a2-b871-b2b32e683edd + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: a93d9f59-2056-4a78-9980-3681047069ea + Position: {X: 3.00000048, Y: 0.0, Z: -31.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: f08edaba-5270-4405-beb5-b7cbd77ebde8 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 1bb3d924-4639-43cf-9fe9-07571eb47577 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: aad5988f-2b06-4a92-8ffd-c8968058aa4d + Position: {X: -17.9999981, Y: 0.0, Z: -39.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 3b461afe-58b2-440b-b4df-150f55c97cdf + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 1c18607b-b362-430d-8775-18e04c8e385b + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: b040918d-122e-47a9-8f95-cc229a5a4f61 + Position: {X: 3.00000048, Y: 0.0, Z: -5.99999952} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 069ecb88-34f5-4962-b7cb-dcda21c086ac + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 1c1dd33f-0707-4638-99c0-13771bca8063 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 22617cbc-322e-4131-b3f4-5fb1e1e3d471 + Position: {X: -17.9999981, Y: 0.0, Z: -15.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 4e9b50c3-542c-4ca3-8828-f9a8aeee9ea5 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 1d380446-6a44-4c0c-9335-2a63aa696cc7 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: d5faec52-7851-4a47-a37d-fb5a3c6693cb + Position: {X: -14.9999981, Y: 0.0, Z: -21.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: b00d6cc0-2d60-4d32-86a9-b3424f839102 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 1d50bf94-8e3c-4326-a71a-98a39a404e6f + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 342f3eb5-fb32-4882-a122-d0a6a136c144 + Position: {X: 9.0, Y: 0.0, Z: -33.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: c31885ea-a293-424c-932d-d7e5e73d3104 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 1de10f81-840d-4f46-bd53-63445d4c946e + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 767aa2e7-ee7a-4f8b-bd8e-7a2428bce96e + Position: {X: 6.0, Y: 0.0, Z: 2.0} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 8f209757-b8e1-4d9d-bd9f-53b9b16536d2 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 1e25446c-b6a7-47ad-9157-0ccaf73050b4 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: a85a1699-827c-4576-8210-438eb974b238 + Position: {X: -8.999998, Y: 0.0, Z: -1.99999976} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 10551de2-8934-4e85-919c-ab90800a7f2d + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 20070478-1c2c-49cc-84c7-f26a104eef4e + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 3b5eb53f-62f2-4997-a300-c7970aa411aa + Position: {X: -5.99999857, Y: 0.0, Z: -13.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: d8072687-6a7d-48d7-b107-cb8343b47352 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 205b8488-66df-490c-9312-ad26265fb8a5 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: d5ef9c1b-30c7-4d95-befa-87269648249f + Position: {X: -14.9999981, Y: 0.0, Z: -33.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: c3bbda90-4c57-45bf-a559-3a2c934d166b + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 22cd1ad2-f48e-4521-8ae6-5aad742a96dc + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 16ef440d-e796-4424-81a1-aa3f7fe22904 + Position: {X: -20.9999981, Y: 0.0, Z: -31.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: ca61d693-3d22-4f41-a1ce-4d5f1d720fc0 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 2465285e-d1f0-44dc-b0f3-2bc5a006814d + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: e4fd360d-ecc2-438f-8b6c-0b99b9934af5 + Position: {X: -17.9999981, Y: 0.0, Z: -27.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: c87daef2-8470-4aca-97e6-82e66a5f25f5 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 24c97d1c-5ca3-494e-84ae-1839bd915483 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 81274c01-1c9e-41e9-b5e6-b8ce15c41e60 + Position: {X: -20.9999981, Y: 0.0, Z: -17.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: b210c0f2-e1b3-4291-a2fd-519f157ae5d8 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 27228e3d-77c3-44fe-8379-cdf7dca1efd9 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: cb31513c-6a29-4cf4-b85e-3364e16007cc + Position: {X: 5.96046448E-07, Y: 0.0, Z: -19.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: ddf6b88b-f9e2-42d6-aa89-2611dc36c362 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 27bd42ad-819c-4b2e-bd55-ba66eb699038 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: d1be204b-5196-4b5f-bb8c-330dc0f07ba4 + Position: {X: -11.9999981, Y: 0.0, Z: -9.999999} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: d22d5fe9-08a6-4ba2-a0b1-5e9925e250f6 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 28e5397d-ae1e-4ab5-8b00-8e7e000d03bf + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 82704e10-0d90-4abe-bb5d-659700357747 + Position: {X: -17.9999981, Y: 0.0, Z: -29.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 143a1da8-f31b-4b84-933e-96da2abcf1d8 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 29f7bf86-48cd-476e-b02b-667741cf220d + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 95d1c5b6-97bb-47b3-8dc1-f09788a1a8a0 + Position: {X: 3.00000048, Y: 0.0, Z: -3.99999976} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: c966e65f-b08d-428e-bce3-97f9496a3b19 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 2a34068b-de32-4b47-9a26-2799a4380908 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 0bf6c851-6eed-4901-8138-9fd901a13b93 + Position: {X: 9.0, Y: 0.0, Z: -13.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 9b5b6b0e-2eac-4639-a0d1-d9b0843f88bc + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 2a341e1c-874a-4566-b20c-908910a6a343 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 4efddc97-235d-428e-afd6-8a50c3c9e2c1 + Position: {X: 6.0, Y: 0.0, Z: -17.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 248376aa-a90e-491a-b981-6efa47658185 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 2a5c145a-0076-45b4-88bb-e57efa89188b + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 7bcad7d5-985f-479e-b2e7-8420a969569d + Position: {X: 6.0, Y: 0.0, Z: -35.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 6e3abd96-562f-464d-9564-99725835bd96 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 2be11f91-9eaf-4f7a-a584-e09bf031a622 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: f96b64d7-a9be-42b7-bd47-da0fe078fde6 + Position: {X: -2.99999881, Y: 0.0, Z: -31.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 6d51ff3f-010b-45ee-94ab-8daa43d66daf + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 2fb17ede-d776-4663-8254-a3fbd8423cd9 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: bc887201-0cac-4baf-bdfe-da7985e3cbfd + Position: {X: 9.0, Y: 0.0, Z: -29.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 2319491c-5ee5-4edb-9083-11c26d46de48 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 302e8265-c85a-4d39-8525-9a64cd469dc7 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 203160c5-80d8-4271-9f01-ec4827230ab5 + Position: {X: 9.0, Y: 0.0, Z: -7.99999952} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 8ff38827-9776-4243-80b7-ad3f2c72bd43 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 315d1ae5-1607-43e3-a8eb-270253793b61 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: b78f89d0-e93b-4fa6-bf5d-ad6a78216d1b + Position: {X: -11.9999981, Y: 0.0, Z: 2.0} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: d648b13c-c5c2-4d0c-8232-f9fac17c6741 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 318d30ef-779a-4fa6-a304-200e25fbd9ae + Name: Border_out_corner_90 + Components: + b923f0caab27e8703f9f8ee1a8dd1d18: !TransformComponent + Id: 123f3a74-46b3-40a8-aabf-9a805d278016 + Position*: {X: 8.499998, Y: 0.0, Z: 2.00000048} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6098c87ff6246e074f03b48bd2941bf8: !ModelComponent + Id: 229b4567-e674-4af3-ac2d-0f0a9a9e31bd + Model: e2199908-ce19-4e35-843e-6ade71089032:Environment/Platforms/Models/Border_out_corner_90 + Materials: {} + Base: + BasePartAsset: efe073eb-d2bd-4eb9-a065-4a103cc52d7c:Environment/Platforms/Prefabs/Border_corner_out + BasePartId: a08bbac9-bc4d-404a-84b2-5093fedf0e77 + InstanceId: 003d0883-a7c6-497a-965c-ff5e96e92e28 + - Folder: Platform + Entity: + Id: 3252a288-ddbb-42b0-ba2a-fff0669c9bee + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: d3c7f41b-691f-4aea-bdae-b2f6e25d7d5f + Position: {X: -20.9999981, Y: 0.0, Z: -33.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 3055fae5-6b50-46c6-bcf7-226cb7ee9695 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 3393ce9a-2786-4844-9248-92a2fff9db28 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 5775ce07-3b7e-4e06-9040-5a2a20441b80 + Position: {X: 9.0, Y: 0.0, Z: -31.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: a354e008-d7d1-4f41-bfe2-2b7f16d74290 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 34b67841-ad5a-45c0-b479-b42d405f8a5d + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 4fee9529-825e-4eb7-ac2d-ad3a207923cb + Position: {X: 5.96046448E-07, Y: 0.0, Z: -1.99999976} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 547f3ad9-87de-49f5-95c4-5e856fcd1520 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 3792c2a0-bec7-4eb3-a016-bcc0814a33aa + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 46bc7073-5118-4977-899f-f2d03f871d07 + Position: {X: 5.96046448E-07, Y: 0.0, Z: -29.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 0c35a924-ee47-4be1-b6af-51dd17960180 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 3939ee54-a62a-4787-be27-27c52120456e + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: e41a055c-bc33-4c86-8c5b-4aaae3f08e07 + Position: {X: -20.9999981, Y: 0.0, Z: -35.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 3a9ef302-4e56-4da5-81e0-c5feb92674ae + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 3a1b996e-f1ff-4503-9808-b4e9727af548 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: bc540616-d43c-4509-8adc-0132f46f6693 + Position: {X: -11.9999981, Y: 0.0, Z: -17.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 696d33cc-74f6-4e3f-bd8e-f69a28d68652 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 3c74bb0a-19ea-4f88-9b74-d15086f343a0 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 69772933-65d1-4261-83ac-d23f2ac23bec + Position: {X: -2.99999881, Y: 0.0, Z: -27.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 189f958c-d178-40fe-9f02-9480bb8159df + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 3ca6673a-83f7-4eb3-8e3b-50f03300089e + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 163a9eb7-6432-4d8f-9588-f1cf6fbc7303 + Position: {X: -2.99999881, Y: 0.0, Z: -19.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 891f463b-4b68-4d46-aff3-0e14ebc6680a + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 3e146a5a-75a7-47a3-89dd-82148b2c9c9e + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: fa7d20c7-94b0-4bf8-9c74-b8423699378c + Position*: {X: -17.5, Y: 0.0, Z: -14.9999981} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 8891061c-5fe1-49a1-8d1e-83e100b2c9d9 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: a425e5b9-074c-4e68-ab48-025d266cd091 + - Folder: Platform + Entity: + Id: 3eaaf4d0-93aa-4d69-a67f-526842c6b74d + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 920ca6ef-a571-4953-a530-5a1a682db3ea + Position: {X: -8.999998, Y: 0.0, Z: -3.99999976} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 3f10548c-7c90-4f25-be00-e7778e93db28 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 3f6e2fc9-11f9-4c80-8397-8cbdc00886b8 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 3a53cc48-7b0c-416a-9911-6e428013080c + Position: {X: -14.9999981, Y: 0.0, Z: -17.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 7f3b48d4-075f-42b9-afc6-a67a4a4ac290 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 42273303-03ad-4635-97a6-e03511349867 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 274b2510-17af-4d45-93b4-f025b2cd1455 + Position: {X: 9.0, Y: 0.0, Z: -11.999999} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 9cecd159-8fac-473e-82ab-574f957085da + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 43d2544e-1d98-46fd-ad2d-3ce3487ee4d6 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: aa770609-5c08-4029-8b5a-a3d1ad2ef5cb + Position: {X: -5.99999857, Y: 0.0, Z: -25.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: e1e920cf-6a3a-4074-906c-ed4866c9e9eb + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 4539fa27-5d04-4bb2-a1bb-d8f233b025f2 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 4ecd485e-935d-4d35-aba3-72dfa6abd91f + Position: {X: 6.0, Y: 0.0, Z: -13.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 33f738ab-8a99-4f48-bf8e-b0e361f01feb + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 460e59f0-6077-462c-bd7c-e4b99194d227 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: e4b16c06-437f-4674-8b35-e215fdf2203f + Position: {X: -5.99999857, Y: 0.0, Z: -31.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: cc675725-6740-44a5-84cb-12034a27a71b + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 46b7a1f3-1e90-4b44-8dc6-18eaf15f6049 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 7e78e5d6-a468-4950-9be4-550ba8d3bbbb + Position*: {X: 8.5, Y: 0.0, Z: -28.0} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 14567b68-0da6-4a7b-8111-46e9aa232d70 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: a1d8a660-6f09-4ecf-980c-fcc51f509d16 + - Folder: Platform + Entity: + Id: 476d7a80-67f1-4742-968d-e1f2f674c7b6 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: f77eec78-6f0b-46c7-a762-9a95f609484a + Position: {X: -5.99999857, Y: 0.0, Z: -17.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 41b025d8-4780-4a84-9b32-ddac1eb4ba18 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 47c6610b-2dbf-4958-8ac4-e2852d258258 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: a98f84ff-0555-4620-becb-5dbb5f6bae56 + Position: {X: -2.99999881, Y: 0.0, Z: -37.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: da3bf843-0453-44bc-9e19-87beaa6c5d5b + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 48466ae1-1ca7-4672-8f69-af9a9e4b23dd + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: bb823d8d-9ba9-467d-a844-05b449304611 + Position: {X: 9.0, Y: 0.0, Z: -5.99999952} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: b0f9372b-e6a9-4688-bdd1-56b44a6079c1 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 48cd855e-406e-4197-a1d2-02f7ecf189c8 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: c3313728-b7a4-4cdc-97a3-cc455abe5008 + Position*: {X: -24.5, Y: 0.0, Z: -35.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 8db33b26-77fc-4bd1-8f5d-8ea12f0ae87d + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: b66c2405-3c68-4e3c-9c08-0579626eea24 + - Folder: Platform + Entity: + Id: 4b09ad22-4525-499e-aabf-79697f641752 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 1d6b991f-5df5-481c-888e-3c87c29e074a + Position: {X: -5.99999857, Y: 0.0, Z: -7.99999952} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 7c24bfea-4cd2-4347-a07a-84eabb0cd13e + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 4b5a2a92-f8f8-4834-9dc1-7d9caad80491 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 4b098527-f526-45ba-adb3-c89d0354d306 + Position: {X: 6.0, Y: 0.0, Z: -11.999999} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: e86daeb8-a51a-419a-ac24-3482bedc91c2 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 4bc6112b-b87f-4905-919d-9d7e4b3b23dc + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 83116ed3-922b-4fde-bcf0-5b3f38e50b04 + Position: {X: 9.0, Y: 0.0, Z: -21.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 289c6945-5666-4347-b843-ada0211b7e70 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 4bca3211-b842-4441-b2f8-d8e17dfe15ca + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 108601ab-c041-426d-be0b-8134cb0278f6 + Position*: {X: -9.499999, Y: 0.0, Z: 2.00000048} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 9b21acc7-dd54-4ffd-8fb9-936279731be7 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 84ed9656-c7e9-4ed2-809d-913f47ffbf49 + - Folder: Borders + Entity: + Id: 4d81f227-589d-4a9a-912c-0053a1f45792 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: dd930e90-7c4e-4bd2-a22e-aa786f37b49e + Position*: {X: -14.5, Y: 0.0, Z: -9.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 85edbab3-1dab-4bfe-8644-82b7c9e85165 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 26980804-8d6a-4ca9-901a-7ad2ead329b4 + - Folder: Platform + Entity: + Id: 4e18e395-e161-483a-97d1-7c51d2d8b2bd + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: a1edb30d-824e-4f54-a7f2-a119cc784b46 + Position: {X: 3.00000048, Y: 0.0, Z: -23.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 6e6c7bf8-b0fb-43c4-bcae-2c44e6c2ad26 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 4ed9db3c-bb70-4c97-b7ad-b6e6ddbf3118 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 6f0f9428-6159-4e95-aaa7-339f46f74c16 + Position: {X: -5.99999857, Y: 0.0, Z: -35.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 8587532c-b90d-4789-a0c9-082630681e9a + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 4ef390bc-22d1-47ef-98eb-9616ce384959 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: f806fe86-79ee-46fc-ae9c-f58455a59435 + Position: {X: -11.9999981, Y: 0.0, Z: -25.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 5aeae802-89e4-4a4d-8b05-b4e07dfc3fc7 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 50355350-12a6-44b4-b25b-c6004ea5e625 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: b099fa67-a133-472c-a84b-e74a8b01bc00 + Position: {X: 5.96046448E-07, Y: 0.0, Z: -3.99999976} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 829eface-6611-43f8-a038-8fb613d3d94e + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 509f4989-5749-45e1-b7a8-d604487e8fa4 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 9801bc97-0091-441f-b08a-cd31c2d1761d + Position*: {X: -24.5, Y: 0.0, Z: -20.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: d7bcd01b-82cd-4f39-b566-d57d80e6714b + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 13180d4c-71c4-41c7-96c8-25477e67e2ac + - Folder: Platform + Entity: + Id: 512125ad-3b06-44a2-8733-7871113daca5 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: cf1a949c-9f7b-48ad-b0e9-833587e9c028 + Position: {X: 9.0, Y: 0.0, Z: -35.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 72f77822-d482-403f-8097-0592ae4a2664 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 517d6098-8297-4d05-a2ae-64a3d9cf152b + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 4bd2ce7f-ac0e-403b-a46a-e55468c26367 + Position*: {X: -24.5, Y: 0.0, Z: -26.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 964d218c-212b-42d0-9062-ed4754e5291b + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 44ec827d-78ec-4c93-99df-b123405edaf6 + - Folder: Borders + Entity: + Id: 5199e594-9c82-4808-ab4a-63c26c598d30 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: a4478f78-64d2-4d16-bcd8-97906db81c07 + Position*: {X: 3.499999, Y: 0.0, Z: 2.00000143} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: e155eeac-fb45-4a5c-9732-ebc6c8f1ad79 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: e8ec5862-f006-4cd9-9cfa-3200c00f5659 + - Folder: Platform + Entity: + Id: 52f39018-49f8-47a4-afc2-24b9e7150d10 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 4a329c35-185c-4e6e-b1e8-0df0a6c60c50 + Position: {X: -11.9999981, Y: 0.0, Z: -29.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 4de84a6c-0bee-4557-b981-55242553211d + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 53048c4f-4daa-4514-9392-900d0eae55f7 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: ca2044a1-027c-4dae-b0a3-84b8491d5bbb + Position: {X: 3.00000048, Y: 0.0, Z: -7.99999952} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 522dfe68-0eaa-4ae8-b58a-d6c5faaf7e0e + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 55c33f43-45cc-48c2-98af-f94d8b2cca0d + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 7b0ffe1f-51e7-437f-a536-b2076964e99e + Position: {X: -14.9999981, Y: 0.0, Z: -35.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 2cf3d5bc-4f4c-49ea-95ec-3809c9c24bca + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 57222ee1-daac-47ab-8906-67cc23925790 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 0f97b687-7fe7-4424-89d8-494d0a003fae + Position: {X: 6.0, Y: 0.0, Z: -39.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 99b15d30-08c5-46f0-a754-8a8a9961f8a1 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 57b6309b-c728-42aa-8b08-2f19d9f53b3c + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 9d49fd86-2784-432f-9ce0-b18a81719ae7 + Position: {X: -11.9999981, Y: 0.0, Z: -3.99999976} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 17de3cc8-0456-4f82-b9c0-dbe78091217d + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 583a9409-8327-45e1-86db-58614ad28ed8 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 1c00f135-72ac-4492-a865-d381f13b7895 + Position: {X: 5.96046448E-07, Y: 0.0, Z: -5.99999952} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 32c90abf-24de-424a-b3d7-6bc6d837d7a4 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 5856d364-d1d6-4b99-8afd-47be7de64db4 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 477ae6d2-f125-4d65-93b7-16ac06fba79e + Position: {X: -11.9999981, Y: 0.0, Z: -37.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 950b17b8-93f9-4b82-a5ab-35ca340df36f + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 59968e7d-48dc-4e65-87e0-2b2f713ddcc9 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: fdababf8-7bee-4226-9a72-e85dc6909a7f + Position: {X: 5.96046448E-07, Y: 0.0, Z: -39.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 8d8756de-333d-4671-9948-455a0199d401 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 59c92ae9-8c5d-4b61-a096-b5069aedafae + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: fb21c1bc-6527-42f0-8800-b7e78f6d2ce7 + Position: {X: 6.0, Y: 0.0, Z: -1.99999976} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: a3103af7-7e58-4e76-8b74-919e7d37dce5 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 5b7b1ef2-cdc1-4fb0-a7a5-c140289fdacf + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: ece8f9dc-db5e-4ade-a433-251393f1df9e + Position*: {X: 8.5, Y: 0.0, Z: -13.0} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 9d970b66-6cc9-4a9d-a457-2d366dfd61db + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 02a52e24-19ed-4341-92c8-e0cdaa66c5b0 + - Folder: Platform + Entity: + Id: 5c7acbd1-cf44-4db6-a819-dfa92ddbf36b + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: bd6e3dd4-9662-4b1b-a07c-446ca8c5ac26 + Position: {X: -2.99999881, Y: 0.0, Z: -15.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 8a7be368-0b13-4c42-af3d-ea4c22dd6a24 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 5cfbeae2-14ab-4479-a198-86243fbcb1d7 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: ce110ba4-1689-45ae-900e-ccf52bc3c486 + Position: {X: -17.9999981, Y: 0.0, Z: -31.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 0b68846a-5807-4705-91b5-ff134f555dd4 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 5d4fea90-5484-4c2c-a73d-9bca43e9578e + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 5ef5c732-151a-406e-bc82-e22db6101dce + Position: {X: -17.9999981, Y: 0.0, Z: -19.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: de9a6b4c-0bcd-49ad-96f5-5d39411b0e44 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 5e96ec3b-b150-4ede-8243-448ca48e1859 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 215a7742-ade7-4cc1-9902-84e3ef8c2c71 + Position*: {X: -19.5, Y: 0.0, Z: -14.9999981} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: dbed85d3-e5aa-4108-bbc9-4abd7c3f58cd + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 4fdd9b63-8cce-4eaa-8090-2a292ba577ab + - Folder: Platform + Entity: + Id: 60e13341-3ed3-49b4-8063-af00bf48403a + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 8d8fdd56-37ce-4cd8-9d37-f107e2e0877c + Position: {X: -8.999998, Y: 0.0, Z: -35.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 4c6e42f4-48f3-43ee-9584-5cb948bf5bba + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 613ddc43-9963-4926-a13c-c21fa32c457a + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 03db06c4-d18b-415c-b133-30cc422232f7 + Position: {X: -17.9999981, Y: 0.0, Z: -25.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 06eae4cc-624e-40e9-b412-e1bce59469f7 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 6226dc01-4ec7-437f-b38a-8fcb41dec290 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 43d9bebf-6bbf-4b72-9d60-5dfa8e90f430 + Position: {X: 3.00000048, Y: 0.0, Z: -17.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: e91210fb-2c61-4420-a07e-10c04fca4015 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 63ff35dd-792b-4276-a503-ca20218b89a8 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 858e01e0-7d53-41e3-94f0-160cdc1400c8 + Position*: {X: -18.4999962, Y: 0.0, Z: -41.0} + Rotation*: {X: 0.0, Y: -0.7071067, Z: 0.0, W: 0.7071068} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 1dcec1d4-4d3d-4356-b9bd-097901900d6c + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: eefdb0d2-0a98-4da7-a872-490bd4926efc + - Folder: Platform + Entity: + Id: 6548190c-08c7-4b2b-ba6d-bd97d70b5512 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 919842e4-554c-4877-8ba1-475e4622c1e4 + Position: {X: 3.00000048, Y: 0.0, Z: -33.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: cacbae31-3cd3-404d-94b2-5209de295ee2 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 66b8eadb-b780-4fb7-8ffb-21506f530159 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 00ba552e-d478-47d7-8df8-8b293d1fcbc8 + Position: {X: -2.99999881, Y: 0.0, Z: -35.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: b4a0a8d7-7e02-4ced-96d1-cc354c6c9f9a + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 66dd493d-2fb0-41cd-99cc-e4107754bdab + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: e8775eed-3857-44eb-871b-21c705c15ba1 + Position: {X: -11.9999981, Y: 0.0, Z: 1.1920929E-07} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: ddee47e0-9436-43f7-a79f-7a814d7646f0 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 68599532-801d-45dc-ae06-b7a53b60603f + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 9185b083-5b27-4e6b-8899-b45b1b162f83 + Position: {X: -14.9999981, Y: 0.0, Z: -27.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 954445bf-8f83-44b3-8e55-37a8616ccde4 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 687b6269-22d3-4297-8d5d-c53ac036fc22 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 2a30147d-9092-465d-b0b6-fe692a1fcacb + Position: {X: -17.9999981, Y: 0.0, Z: -13.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: cae4fc39-e8ec-4b9c-aa86-38893eafb477 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 68e5edfc-2a05-4e1a-99a6-98d55f6cfea3 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: bf47c442-aa61-4082-a006-44ddffe3707d + Position: {X: -14.9999981, Y: 0.0, Z: -31.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: e08c49b1-1ac2-4db3-9cf8-5ab8f376e3b0 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 6958a16d-e5a4-4108-8390-871106193918 + Name: Border_out_corner_90 + Components: + b923f0caab27e8703f9f8ee1a8dd1d18: !TransformComponent + Id: eb1f7db1-b009-45d5-809f-697574fd8a47 + Position*: {X: -24.5, Y: 0.0, Z: -41.0} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6098c87ff6246e074f03b48bd2941bf8: !ModelComponent + Id: 5d30085c-f624-4289-a7b1-7da0e5156084 + Model: e2199908-ce19-4e35-843e-6ade71089032:Environment/Platforms/Models/Border_out_corner_90 + Materials: {} + Base: + BasePartAsset: efe073eb-d2bd-4eb9-a065-4a103cc52d7c:Environment/Platforms/Prefabs/Border_corner_out + BasePartId: a08bbac9-bc4d-404a-84b2-5093fedf0e77 + InstanceId: 7380a3c1-c69b-4572-8983-f7dccb3ed9c4 + - Folder: Platform + Entity: + Id: 6a0d5dd5-3464-41e2-9281-91ce0a2ab171 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 9b035b4b-2106-4d89-99de-047eed0d8a56 + Position: {X: 5.96046448E-07, Y: 0.0, Z: 2.0} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: c7cfeebd-240b-49dd-a192-6dfefb4ce1c3 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 6ac5fd63-6a6c-457d-a343-113f8fb3740e + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 93a44dd9-407e-4582-8b6b-cce47bf8c0a3 + Position: {X: -2.99999881, Y: 0.0, Z: -29.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 5db2dd54-04d4-4043-9b59-0a4220a4af1a + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 6b0b0df2-b329-4eb0-81ef-52b8065deca8 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 9d820413-3fa6-437b-be50-378b80df1acc + Position: {X: -11.9999981, Y: 0.0, Z: -23.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 21aee167-bee7-4f30-ae8a-7017fa2b5f54 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 6c3e8696-f56e-4f5d-988a-54fb1a67fc62 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: f9c80a99-48c9-44a6-b0df-ddd4fe3bd46e + Position: {X: -8.999998, Y: 0.0, Z: -15.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 4855aec5-67fa-43c7-bb8f-6833c9c29001 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 6c7648fe-ef2e-4a7d-be84-00fc16f88495 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: d2200ea0-d6fe-4501-8ed7-58ec0ec632ab + Position: {X: 9.0, Y: 0.0, Z: -25.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: fc7f18ef-f5bc-4f5e-afd1-d1ad7a92b1cb + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 6e58531f-14ad-4b04-bba7-290a3acb6e3a + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 1f166c2a-ee4b-4460-9a14-8d434c903f17 + Position: {X: -5.99999857, Y: 0.0, Z: -9.999999} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 30a2322a-e0b4-4768-a4d4-e8aa43dd7b71 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 6f6dc989-6cd7-4182-a34b-4e083331648c + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 1e7e415d-8319-4fa9-9e2c-6e3d1d0b6a9c + Position*: {X: 8.5, Y: 0.0, Z: -36.0} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 5e849a5f-b2ba-4f33-90a6-c0c3cf70b3ee + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 54a8cdbb-ccdf-48e9-bec7-e054e75633f9 + - Folder: Platform + Entity: + Id: 712cde57-e252-49de-acfe-84614f29beab + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 6f55f770-950f-44aa-8996-f1bdec1afaa0 + Position: {X: 6.0, Y: 0.0, Z: 1.1920929E-07} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 2615e588-6ffe-462f-95ac-a2932dedc686 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 716768e0-536f-479d-8c6a-b2f7bdfa66a1 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: eb4b0cb7-d8d7-4155-a7c2-d06d73085761 + Position: {X: 9.0, Y: 0.0, Z: -39.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: e66b75fc-06a6-43d5-9290-584af7d118a2 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 723bdd08-ce1f-4f65-9725-1c4dc297d67b + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 507587c4-da69-4461-9077-90c60c801096 + Position: {X: 3.00000048, Y: 0.0, Z: -29.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: cb51f79c-aaaf-4f43-bb9d-579279cd146a + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 72a1d81b-56fe-4b92-a327-22a55feeb2d0 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: becceb67-ffc9-434f-8167-cc10445dd7fc + Position: {X: 3.00000048, Y: 0.0, Z: -25.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 8126eddc-b3c3-4dd8-996d-87d88338e15d + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 72af8e57-320b-4366-8319-78ea7c031f25 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 31302d0a-9efd-47ec-a16a-d86067663380 + Position: {X: -5.99999857, Y: 0.0, Z: 1.1920929E-07} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 296eaabc-2be2-497a-904e-1e6829a8b829 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 7307a0f9-8abe-4b41-bf70-cb436beea5b7 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 46c79994-d536-4347-b087-fca29eed3cc5 + Position: {X: -17.9999981, Y: 0.0, Z: -33.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 25681bbb-6100-4b24-be31-02e1f032fd35 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 738b8d02-836f-46ec-b3d2-f7ec804b0b1f + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: c663c1a8-53b3-436c-bce3-0fdbc33467b1 + Position: {X: -5.99999857, Y: 0.0, Z: -15.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 53525c32-f357-49ae-a3e2-8c16dbe8b66f + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 76386cd2-f715-499c-9c65-cc12e9386ec0 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 5d186ef6-5bf5-42cb-ba3d-cb6a82cc3bed + Position*: {X: 8.5, Y: 0.0, Z: -10.0} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 83fcec2c-d396-4b11-99aa-1d41ad8761da + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 8f6c3471-a88f-4c72-a06e-2066a6a76287 + - Folder: Platform + Entity: + Id: 77597508-7f07-4103-a8a0-2eefab83658c + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 883c8cfa-f3bb-4bf0-8fff-ac22c0eb1e35 + Position: {X: -8.999998, Y: 0.0, Z: -25.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: c756a40f-7c6b-4f77-9381-c970042444cb + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 7942ca7e-91e7-46b7-9e5c-4f925820f973 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 7072e4d2-f525-4064-8597-4468dd7c2792 + Position: {X: -11.9999981, Y: 0.0, Z: -35.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 86c34abe-5ce8-41ed-9942-f0e7456bae24 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 7965eed9-5262-4800-b1d8-4b126e991bd5 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 13de1152-e24d-4019-8409-8b7e276b7069 + Position: {X: -20.9999981, Y: 0.0, Z: -27.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: f52b234d-3acf-477b-b797-8cfd2a711320 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 7b0af680-d78f-4d7a-85f1-71738adc9aa5 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: b7398b68-b96a-4c15-bc96-90584260e5eb + Position: {X: -8.999998, Y: 0.0, Z: -5.99999952} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: e54791d6-7952-4f60-9b27-8aa77caa585f + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 7b905da9-19c3-4538-880c-873307f2788b + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 8d5d1c40-517d-4a69-84aa-647c2cd62d94 + Position: {X: -5.99999857, Y: 0.0, Z: -39.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 62474f72-724f-4c2a-8dce-5da9707fbd7c + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 7c84be3b-5f89-4e2c-b886-f01ee4574d36 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 4b0da3fc-d4ff-4891-ae6f-a5a7faff13bb + Position*: {X: -3.499998, Y: 0.0, Z: -41.0} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: fa470286-1fa8-4798-9b38-e446a19d6582 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: dc4c84de-63ac-438e-ac5c-3640218b2837 + - Folder: Platform + Entity: + Id: 7d13eef9-e638-43fa-845d-de611bda06fa + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: a40d422f-af13-4b72-96bb-340cad358d18 + Position: {X: -11.9999981, Y: 0.0, Z: -31.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: d5f67ebb-dfec-478e-8234-332162e65008 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 7d7f1eb9-4f03-466c-b54c-8c436399b889 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: a4f0974c-4ba4-45d8-9271-04c7de201718 + Position: {X: -2.99999881, Y: 0.0, Z: -23.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 7aa01ec8-b881-44c3-98ce-67d84b7dd180 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 7e4994d5-8e64-4060-b9f6-711d8cd9d171 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 3343081d-e128-4641-910b-3493104edf1c + Position: {X: 3.00000048, Y: 0.0, Z: 1.1920929E-07} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 96ee0f61-eac1-402b-92fe-b84016f45fb3 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 7f6441a7-5975-40cc-8ec8-e0a61b91e3c0 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: a9ff3df9-322b-4e12-958a-5aa9a08e222e + Position: {X: 5.96046448E-07, Y: 0.0, Z: -23.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: d219bb4a-6fff-4b81-b4bb-7699e38f8e80 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 7f6ee7d4-56ee-4d59-b046-94fd559003f1 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 793157c0-cf88-43d9-b6be-1431f664f5c9 + Position: {X: -17.9999981, Y: 0.0, Z: -21.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 5e8af350-1152-4df8-b5a0-cf8466367c0c + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 7f72ba47-b447-473e-ad17-092f23bfb2f7 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 4ec9363c-da45-482a-98b0-f1a2709a2ef6 + Position: {X: -8.999998, Y: 0.0, Z: -7.99999952} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 96a6474a-92b4-4eea-b650-84c200f804ae + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 7fb20d39-7284-4c65-b5e8-0c8a3fe94874 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 471aeb40-1d18-423b-bcab-c9a658966ffe + Position: {X: -14.9999981, Y: 0.0, Z: -23.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 5f76b84c-f52b-431d-8cae-30221f262dea + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 808d49f0-1274-4ba9-905b-321f42155bc2 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 95426b39-7a33-4856-8057-8ced18e5a3bd + Position: {X: -8.999998, Y: 0.0, Z: -19.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 6fbf1092-4703-4d13-a139-9e8ea733adee + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 80ac504c-30a4-4e59-9096-60c0e291d600 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 30c32c67-ce60-4f50-9ad3-3d7cab9094fb + Position: {X: 5.96046448E-07, Y: 0.0, Z: -35.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 45c97ee1-ff40-4955-8c1f-de2706504830 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 818deab4-1b5f-4926-a050-0e5798c0fdae + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: d6c2202e-ea21-4ba0-b1e4-47dfa02d4a96 + Position*: {X: 8.5, Y: 0.0, Z: -6.99999952} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 30c990ae-4174-43cc-86ab-1840036e1500 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: c7aa4e56-6086-4f50-9f0f-dae56ca6e0c7 + - Folder: Platform + Entity: + Id: 82ee30c8-52a2-4585-b0e4-785b87953403 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 1c0bb408-205d-4dec-a7aa-3923e2e06018 + Position: {X: -14.9999981, Y: 0.0, Z: -37.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 670e2b52-ea0a-43ba-bcb2-b257aafa5747 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 83f10b0d-8ff7-47e5-9c05-a82360a43196 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 4860aa75-9a7b-4da4-973a-48a00d2e1420 + Position: {X: -20.9999981, Y: 0.0, Z: -21.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 524590a7-51f9-47ff-8afe-5c293f194ea5 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 8449a1ef-e7d7-4733-b75c-9d2b7131386b + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 345cc2f7-5b29-4c81-b38d-8f3c96e6d6f7 + Position: {X: -8.999998, Y: 0.0, Z: -39.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 45d6649e-bb2b-44e7-8c5b-fbd0371ec5db + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 84b0ea6e-f5ed-4f3d-8d9e-eea55ba595fb + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: c24bd2d7-ce7d-467f-b008-f25141d3e7e3 + Position*: {X: -15.5, Y: 0.0, Z: -14.9999981} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 6a848f51-dcdb-4aef-b21d-7dab3827b3db + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 90d03e62-ef6e-401b-a0fe-ff27aec8bfaf + - Folder: Platform + Entity: + Id: 8731ea30-cdbd-48c8-a1ab-94451d24b648 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 07bce699-33c3-483d-bad6-ea21900fa51d + Position: {X: -2.99999881, Y: 0.0, Z: -1.99999976} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 2603afa6-3bc8-415b-bc30-150362780f97 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 87e11643-0b9d-4122-ba9f-5a3b42ac36a1 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: e933a379-b525-459c-8efb-f6457eef919f + Position: {X: 5.96046448E-07, Y: 0.0, Z: -37.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 1f0c79c6-bff8-40a0-aeee-5cfcc6b45de2 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 88637a23-6b03-4983-86ac-da20cd3acf8a + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 19f455b4-287d-4970-a573-e936a3fde586 + Position*: {X: -24.5, Y: 0.0, Z: -18.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 4ea47085-e6a3-4732-919f-af3d270fadea + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 92cc356e-14f2-415e-8ac1-55f8a15246a7 + - Folder: Platform + Entity: + Id: 898ad449-0845-4db2-9f35-e82882468fab + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: ceef3e5d-e2b9-4f2f-9ea8-5d0537721261 + Position: {X: -5.99999857, Y: 0.0, Z: -21.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 1ae67864-8b76-4863-b7dd-b3063f73d6f3 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 89d07277-7666-4604-8564-887ed68b2bf4 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: ea3764cd-e483-4ac8-817e-619203b29d93 + Position: {X: -20.9999981, Y: 0.0, Z: -13.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 23dd641f-8986-47d6-a10b-074fdd5135f5 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 8a233a20-7fcd-410d-b86b-d6345c11e320 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: d0bc497c-916d-4edf-863c-c512873813c2 + Position: {X: -14.9999981, Y: 0.0, Z: -15.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: a8deda77-9fb0-4fe5-ab6e-e533acaa48c6 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 8dc4a5da-b1f2-408e-9eaa-063ca648714d + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 62e52702-8677-48ad-933f-4e55fecfce3f + Position: {X: -20.9999981, Y: 0.0, Z: -19.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 479a6891-8d87-42b1-982b-486312c9238c + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 8fe579dd-48e6-4f38-a589-7881469b4b16 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 6f71b981-7f16-49a4-9305-f9493159ee79 + Position*: {X: -14.5, Y: 0.0, Z: -5.99999952} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 696e8a1c-499c-4396-a2dc-0c47db656af7 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 19a9a0ed-3b2c-487c-a606-3516cecb29f0 + - Folder: Platform + Entity: + Id: 90f57123-9a91-4300-9b34-b6da5d80fbce + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: cfe468f0-a6a6-4d0d-a016-51a61a2b776d + Position: {X: 3.00000048, Y: 0.0, Z: -15.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: a0cd918d-fc03-4c79-931f-f56b0dde3e15 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 91ba98d7-8239-4b6d-bb6c-07da7979ad68 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 0ee432a3-1890-45e3-880c-5d9c51efc772 + Position*: {X: 8.5, Y: 0.0, Z: -31.0} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: a20d0fb3-da71-47e9-bc29-10935a159138 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 290fa859-514e-4ccf-acae-135fe355072b + - Folder: Platform + Entity: + Id: 93b70909-3be9-49a4-a987-21583bc3b847 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 816d11e3-bba8-4e99-b7b8-876cfdb633a2 + Position: {X: 5.96046448E-07, Y: 0.0, Z: -21.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: f4443360-c19e-4907-88cc-99604239ca3b + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 96535503-22e6-4b6d-9b4c-13a7b37078d3 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: bb10326c-3eb9-4575-be36-4f1fc046cfdc + Position: {X: -5.99999857, Y: 0.0, Z: -27.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: b99d405d-6fcc-4a3d-bb48-54d9f3db1ebe + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 972a45af-3b13-4fff-a82e-526deff453f5 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: a09fa99b-00bc-43fe-8d93-c22029dacc2d + Position: {X: 5.96046448E-07, Y: 0.0, Z: -27.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 29d65951-a879-4da1-a618-9f8ab928260e + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 97680c5a-72c2-4063-b22e-af949d02a829 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 07068296-496f-431c-9816-e424b49f3699 + Position: {X: 3.00000048, Y: 0.0, Z: -21.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 145d3f03-29db-46dc-9bde-1f35bec20145 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 98572e9b-ab90-4ace-88a4-93af2490663f + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 909731da-7e5d-4025-bc69-0df8fe8214eb + Position: {X: -8.999998, Y: 0.0, Z: 1.1920929E-07} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: dd6b6eea-fb11-4aca-b4ef-abf265d65822 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 99ccf72a-a615-4cb2-966a-d5a0450cf5b1 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 3482e4ac-2d92-42b5-9eda-0c286b384e5f + Position: {X: -5.99999857, Y: 0.0, Z: -33.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: f09faa58-587f-427e-918e-3985dc8aad9c + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 9a767032-5672-4ec7-b0d5-1620984d7c09 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: fb5956b6-ca03-4b75-90d8-9cd7ebafc9f8 + Position: {X: -8.999998, Y: 0.0, Z: -13.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 4e94b83b-05a1-427e-8307-f6316d08aa8a + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 9a85c6fa-fee5-442a-a0eb-63f30be11606 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 8e8e7732-0d8d-4cf8-b65c-80cef12830f2 + Position: {X: -8.999998, Y: 0.0, Z: -9.999999} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: fbd0daec-7dad-4d8f-98da-33e93f92a490 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: 9b6da659-c94a-48f3-b829-e761d5819c44 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: e1b895cc-2c8a-4ed1-942b-8279b70d677b + Position: {X: -20.9999981, Y: 0.0, Z: -29.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: d76f7098-9d5e-4b23-8a37-53f76abebffd + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 9c039169-2a21-4464-a98e-9db20f371ba1 + Name: Border_in_corner_90 + Components: + 8dd5441a9e0f7cc9cdac7e64be0bcc32: !TransformComponent + Id: 8734453d-3150-40bd-a24a-31a14cfe05ad + Position*: {X: -7.5, Y: 0.0, Z: 2.0} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 21e6c7c4ce05ff264d998193015bbbbe: !ModelComponent + Id: 721ef1cc-d513-4b93-a584-86b49abb6a9b + Model: 1c9753bc-679d-4677-8f9f-9c88dd878d10:Environment/Platforms/Models/Border_in_corner_90 + Materials: {} + Base: + BasePartAsset: 21ebc8de-2500-440f-9e0f-d399cc3e5896:Environment/Platforms/Prefabs/Border_corner_in + BasePartId: 4bb90be4-e7c6-4e5e-b845-2c84f915a3d9 + InstanceId: 408b0e50-1bff-4e5a-b6cb-a0ba948c763b + - Folder: Platform + Entity: + Id: 9d60c396-ecaf-42b6-b4ee-a95f58793152 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 9898a5c1-e250-4afd-bd49-c2d91c2a066b + Position: {X: -14.9999981, Y: 0.0, Z: -25.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 7426663f-f994-4ad3-a3a2-bbd76bbf50aa + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: 9ea74c87-1a43-4853-ac54-bf57b06f2626 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 2c09a959-a9ed-40a0-a553-12ca703ee012 + Position*: {X: 8.5, Y: 0.0, Z: -38.0} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 8479b38a-a32c-4344-bd78-1c266504494c + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 96823abd-96cb-4e13-859a-49e5d0266e74 + - Folder: Platform + Entity: + Id: a0047c6e-d492-4045-a750-326ad5bec657 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 796539b8-6946-46ad-9576-6c0b2ea20a6e + Position: {X: -2.99999881, Y: 0.0, Z: -7.99999952} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: be31ae4d-0d39-42c2-915e-fc4c6ebc988e + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: a0d2841f-7aff-4fa5-bd46-0423e839188b + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: c8d40558-e256-416c-ba63-eff5476917e7 + Position: {X: 6.0, Y: 0.0, Z: -31.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 1b59094d-91dd-44c3-853e-dfcb842e7e69 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: a179258a-bbcf-4952-8338-446eedc173a9 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: b26cab3e-a53d-49c5-85c9-b70ca665d0b5 + Position: {X: -11.9999981, Y: 0.0, Z: -27.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 94f90fa6-c420-40e2-a637-3ae4d673b68a + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: a229a7fe-d544-4f9c-a182-c8450d4b9a34 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: ce3f08f1-309b-4534-97b8-091089b84dd3 + Position: {X: 6.0, Y: 0.0, Z: -9.999999} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 3412c987-f686-48c2-ba28-624caa9e2de6 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: a23eafd5-6ae8-4a98-a926-f86deb3c93c4 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 17438513-db81-4cad-b5dc-2bac455fd22e + Position: {X: -17.9999981, Y: 0.0, Z: -23.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 98ca88b1-1e01-4938-9325-ac969c03fb18 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: a26d1f54-96d5-4aea-9526-cac6b8ae61d4 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 9300a152-05ed-4de1-9f3e-c42240f86b2d + Position*: {X: 8.5, Y: 0.0, Z: -22.0} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: add203ce-533f-4b50-a5a0-a7861a86b76c + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 42d9554c-8271-4ee8-99f3-a49adcb6c890 + - Folder: Platform + Entity: + Id: a3a37d43-5f05-4d58-9696-2c9894b042ce + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 8ad574b9-2c30-4437-a388-608964f2d519 + Position: {X: 3.00000048, Y: 0.0, Z: -37.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 7f3a73a4-ffad-4932-8d2f-5619752e5990 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: a3eafb9a-6d28-479a-af91-a8cd6f847d51 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 264f70cb-fe32-46fe-aafd-821574589aa5 + Position: {X: -8.999998, Y: 0.0, Z: -27.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: d67dd6a3-e92f-47c8-9611-252acc961cb6 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: a4143a9c-a716-4449-bcd1-1dfa9ec9d82a + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: cd78f7b8-d88d-42f3-973c-05ee00d787ed + Position: {X: -14.9999981, Y: 0.0, Z: -13.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 39405fff-4098-4c5a-9c6d-b7695af40f46 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: a599b3cc-f243-47a7-8863-4e32f12fd810 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 8954a97a-98e3-4f31-a46b-7b84a8742541 + Position: {X: 6.0, Y: 0.0, Z: -27.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 3c89df6d-fb50-42af-a702-9a8275f5153b + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: a83ccdd8-a3c7-4537-a10f-cc617763ef6b + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: c938c9eb-7ddf-4795-9ad7-44145cadb568 + Position: {X: 6.0, Y: 0.0, Z: -21.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 70f8af59-3c66-40c0-92ad-685dd4b69a2c + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: a8736f41-8e93-4be5-96e9-507cadb3f6e4 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: c191ca28-8f0d-49cb-8183-768e83512ff7 + Position*: {X: 8.5, Y: 0.0, Z: -34.0} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 5de8f32a-e083-4c5b-a62c-30c9fed8a19f + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 0341187b-3059-4b42-b3a3-5ff31a67729e + - Folder: Platform + Entity: + Id: a96d332e-7de2-4875-be4c-ef55f9c3f3a0 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 1b2e3b90-5f2e-4fc4-9f4b-e32ee4243a20 + Position: {X: 6.0, Y: 0.0, Z: -23.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 3d810544-6c32-4013-b7a4-136e60ee82fd + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: ab363640-3c98-4e97-94a3-9c05bc2fc8da + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: c6aac47b-e901-4a06-bb87-0e1a238a74c2 + Position: {X: 6.0, Y: 0.0, Z: -15.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: e0c67421-d1a9-497a-8f4a-db24178cc4ae + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: abacaca5-c146-4785-ab6f-1391d49c0c3d + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 025d638b-d14f-43fd-a4ec-46c6d64a4a7d + Position: {X: 9.0, Y: 0.0, Z: -9.999999} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 65544bc3-ec32-4942-83d4-76af4253697e + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: ac1e6fd5-e6c3-4282-9cca-36879f0895f4 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 37d3eb90-6c3a-4f01-9466-28eee834ae58 + Position: {X: 6.0, Y: 0.0, Z: -25.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 6070cc0e-15ee-4243-92da-c493c7ddaef9 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: ad3c570c-0956-4983-8f1a-71226e75c0f7 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 39e49223-d9fd-410b-b9ea-034f174b9fcd + Position: {X: 6.0, Y: 0.0, Z: -29.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 7d409d32-384d-4072-a996-cdefd100df24 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: ad40d719-0c78-4d4f-9e07-360b61be7ab0 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 4a3b34a3-30b8-4e33-9618-9e8613fd69dd + Position: {X: -8.999998, Y: 0.0, Z: -29.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 4da84f62-32cb-415b-9ddc-d5aedeb5dbd4 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: ad57c41a-4217-4d70-b504-0751573d6e82 + Name: Border_in_corner_90 + Components: + 8dd5441a9e0f7cc9cdac7e64be0bcc32: !TransformComponent + Id: 31a63198-9fa7-4c0d-a093-82d9f798dfb0 + Position*: {X: 0.499999255, Y: 0.0, Z: 3.00000048} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 21e6c7c4ce05ff264d998193015bbbbe: !ModelComponent + Id: f7c6decc-bb4a-4891-9946-9aa319dc6b98 + Model: 1c9753bc-679d-4677-8f9f-9c88dd878d10:Environment/Platforms/Models/Border_in_corner_90 + Materials: {} + Base: + BasePartAsset: 21ebc8de-2500-440f-9e0f-d399cc3e5896:Environment/Platforms/Prefabs/Border_corner_in + BasePartId: 4bb90be4-e7c6-4e5e-b845-2c84f915a3d9 + InstanceId: d246cc31-3947-48a2-853d-7646009b17af + - Folder: Platform + Entity: + Id: ae0ba561-0fcb-4d51-8331-8dc87ca2193a + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 0585c8f6-f49b-4711-ad2f-89e3291012c9 + Position: {X: 5.96046448E-07, Y: 0.0, Z: -9.999999} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 1baffbe9-6831-4439-9b6e-de6a666d5211 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: af351138-223b-46d6-88d2-770ca1858ad7 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 5e929d00-3cd1-4a4b-b107-10683c3d72a8 + Position: {X: -20.9999981, Y: 0.0, Z: -15.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 160fdfac-5062-48e9-bd5c-fa95db6281ef + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: b103211a-52b6-4ea1-a708-1a28457f95cb + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 5df841fe-38ab-4ba2-a216-681e658e9171 + Position: {X: -2.99999881, Y: 0.0, Z: -39.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: f81c37ff-f71e-4975-81de-e3f5f80b2de3 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: b121c20d-932c-4427-b159-e79dea5f2fb2 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 4bfe26ca-9c45-4f89-9515-67c5e53238ad + Position: {X: -2.99999881, Y: 0.0, Z: 1.1920929E-07} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 2e25135c-3999-4d37-a3ef-31c9ff42849c + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: b1b87ca0-56f4-4119-befd-2b4d0239ca87 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: a36e51ac-2e9e-431b-9220-24d1fde9640e + Position: {X: 5.96046448E-07, Y: 0.0, Z: -17.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: c8a9249d-4f29-4518-9d35-1c1ae0e24a6a + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: b1fa7e88-fa9f-400e-95ed-e3f15176741e + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 732a9b48-6029-46f7-a58f-6e85bea4abbe + Position: {X: 6.0, Y: 0.0, Z: -7.99999952} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 9c672b5c-5af7-479b-9839-c0885c07c733 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: b47fe181-05d5-4575-880e-4e2157a5f52b + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 0aeefd78-88ab-4c7a-8a2c-535161920e01 + Position*: {X: 2.500002, Y: 0.0, Z: -41.0} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: e275f5e3-55d4-4c26-bf69-f976c872886c + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: b48a06ba-6874-4792-a82e-3d864aadd3db + - Folder: Borders + Entity: + Id: b4c10eb0-230e-4056-9910-d92fdddf09d6 + Name: Border_out_corner_90 + Components: + b923f0caab27e8703f9f8ee1a8dd1d18: !TransformComponent + Id: 4f2062f6-d809-4a2c-be60-34899dd23bd0 + Position*: {X: -24.5, Y: 0.0, Z: -15.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6098c87ff6246e074f03b48bd2941bf8: !ModelComponent + Id: e0ba7673-bc71-4795-983c-6abb3d32c19c + Model: e2199908-ce19-4e35-843e-6ade71089032:Environment/Platforms/Models/Border_out_corner_90 + Materials: {} + Base: + BasePartAsset: efe073eb-d2bd-4eb9-a065-4a103cc52d7c:Environment/Platforms/Prefabs/Border_corner_out + BasePartId: a08bbac9-bc4d-404a-84b2-5093fedf0e77 + InstanceId: c2ade5ec-b044-4508-877b-ef8f1cf8160b + - Folder: Borders + Entity: + Id: b5149f00-9315-4e2f-8a6f-ff1ae1e5271f + Name: Border_in_corner_90 + Components: + 8dd5441a9e0f7cc9cdac7e64be0bcc32: !TransformComponent + Id: b6279e52-92d6-41b4-acb7-718da9ac2343 + Position*: {X: -15.499999, Y: 0.0, Z: -14.9999981} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: -0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 21e6c7c4ce05ff264d998193015bbbbe: !ModelComponent + Id: 6b48fbd4-f9b8-4ac9-a2d7-a23df76b26ae + Model: 1c9753bc-679d-4677-8f9f-9c88dd878d10:Environment/Platforms/Models/Border_in_corner_90 + Materials: {} + Base: + BasePartAsset: 21ebc8de-2500-440f-9e0f-d399cc3e5896:Environment/Platforms/Prefabs/Border_corner_in + BasePartId: 4bb90be4-e7c6-4e5e-b845-2c84f915a3d9 + InstanceId: ad43c00b-2b87-4451-af72-51304afc25e2 + - Folder: Platform + Entity: + Id: b5ff5ffa-3478-413c-bbec-8e68bb725f65 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 1f5a0842-543a-4e0f-9481-9caaff285a2f + Position: {X: -2.99999881, Y: 0.0, Z: -9.999999} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 0754eb62-43d2-41e2-a05c-74f9567894bb + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: b61001ba-1ff2-4b47-94f3-777241c91db8 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: c81cf959-1bcc-431a-b22a-a57a7d8f5518 + Position: {X: 6.0, Y: 0.0, Z: -33.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 3d91eddf-6dc1-4fcb-9df7-f115d9ea2ba9 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: b7a738ac-99d2-4dbf-a612-3083ce239dd0 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 49134570-f6de-4bbf-9b97-5d6d94764475 + Position: {X: -11.9999981, Y: 0.0, Z: -1.99999976} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 01ee97eb-6f9b-4434-b861-5daa079ccb68 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: b7db310b-0dfb-4390-bc33-4fdcaad56446 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: c09b2229-f3db-4ba8-9e99-2778d1b29618 + Position: {X: -5.99999857, Y: 0.0, Z: -37.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 0c6d2879-7ee8-4a0b-a679-eecbf4cb0161 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: b7ebed3a-d8eb-4c96-8be4-a67abb4ff92d + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: a2fe381c-dbb1-4bb4-a014-7ae155b07fef + Position: {X: 9.0, Y: 0.0, Z: 2.0} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: e6c1429b-bb44-4eb2-b106-a0b8962001d5 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: b83fcc05-366a-488a-8039-7bc6d2fd32b1 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: fd489805-458b-44f3-9d33-32efa33a133a + Position: {X: -20.9999981, Y: 0.0, Z: -39.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 0eeac92c-28be-4953-9487-24c6be420a1c + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: b8a4cce9-30b3-4d3f-b4d6-d4cb013e21a0 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 2d73aedb-476b-46c5-b76a-a842232b5092 + Position: {X: 5.96046448E-07, Y: 0.0, Z: 1.1920929E-07} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: e5fc14c4-11c4-46bb-b6d4-6e238007c56b + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: ba162a5d-83c1-4e6d-ad26-991fac23336b + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 06a441df-dfe2-42c6-a99a-9e16e6b6bda8 + Position*: {X: 8.5, Y: 0.0, Z: -16.0} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 934990a0-5131-4593-a0fe-c8347c067846 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 0ebea2d2-9cd7-4bef-9d27-229220532c29 + - Folder: Platform + Entity: + Id: ba824d64-df63-4c61-8896-0ff658982780 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 5e712401-4df0-49f1-a92f-b94fcd2eb163 + Position: {X: -11.9999981, Y: 0.0, Z: -33.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 4fb9d0e7-c4e2-4f06-8680-1a51b5ddf161 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: bbc79482-c376-4ffb-bd84-67de16825387 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 535c3819-6699-4a45-9e1a-fa3722a5c3b8 + Position: {X: 5.96046448E-07, Y: 0.0, Z: -33.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 3d4cef7d-f395-470e-979e-ab66c42cf5ec + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: bd065f7f-93e1-4a0f-8bb1-dacdffd50204 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 60942211-0dd4-4ab0-8ff2-89a7420be544 + Position: {X: -11.9999981, Y: 0.0, Z: -15.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: f44f681b-68c8-498a-b24a-1a1995cdb62e + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: bde8b4aa-f765-4bea-9bac-f7023eff4ecd + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 0276331c-018d-4d31-8856-8a52c39e0f7e + Position: {X: -2.99999881, Y: 0.0, Z: -25.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: f7d9df13-927e-4c8c-9e7b-dc8212ce63ad + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: be6adbac-10c5-418c-b75d-3d571da6e991 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: fedd57c5-7ba8-4ab2-8807-607eb928da31 + Position: {X: -5.99999857, Y: 0.0, Z: -1.99999976} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 6f3834d7-841b-44ca-9b65-2a3fed2a4981 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: c135284a-9f47-4a07-89d5-93e84a067e54 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 9dfef2c0-d15b-47db-ad75-5900c8aebdfc + Position: {X: 3.00000048, Y: 0.0, Z: -39.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 8f7e329c-c6a7-47f2-aa1e-0d91d5d2baf4 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: c1a7835b-7fc3-42fa-a689-2021625836e4 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 8ecd5928-1176-4ae1-aaa1-1db169ed3702 + Position*: {X: -24.5, Y: 0.0, Z: -23.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 51222302-dcb1-4837-a6ca-7e2143022b7f + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 7dfb650b-cb79-45af-aea3-8b0af435f8b2 + - Folder: Platform + Entity: + Id: c3b91596-ec45-4e13-9b1b-1cbc950c0222 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 95e75c49-f822-46df-8497-8de9b9b6497c + Position: {X: -8.999998, Y: 0.0, Z: -33.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: a46eb9c7-e803-4f68-b689-67e81c098136 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: c449c312-a5a6-41e3-ba98-9f0bebb4a309 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: af8cf834-f43c-470a-b1c5-b8cab54b90f9 + Position: {X: -5.99999857, Y: 0.0, Z: -19.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: a80ac7a5-a5fc-42b0-a65c-0c2e9b198193 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: c4adb770-7d06-4fe8-ac94-a4c78613736a + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: f52de8e1-7212-40a5-a0cc-9617c84ade56 + Position: {X: 3.00000048, Y: 0.0, Z: -35.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: e186be8e-1824-4963-a3e7-67af3f32e967 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: c5bb9b3e-f34a-413f-acf1-04fcbc94649b + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: cfbc9e85-2854-4ee1-b653-d2d3ddc4ebbf + Position*: {X: -9.499997, Y: 0.0, Z: -41.0} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: ca6d4449-70f0-4c35-85a0-0ddd493fbf3f + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: bea0d307-81ed-47cf-894d-860436ffd382 + - Folder: Platform + Entity: + Id: c610f531-56bf-4194-9798-8aa5b87e500b + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: b81795f6-9d74-41b2-8421-555797e17400 + Position: {X: -20.9999981, Y: 0.0, Z: -37.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: e3906d04-9dc3-420e-b202-43e84b4dd7e7 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: c61426cb-fd07-467c-9c55-3a761980b3fd + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: fffcd10e-aa76-4618-aad1-2b275b7480da + Position: {X: -2.99999881, Y: 0.0, Z: 2.0} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 8d7f95c1-24ac-4c8b-8448-a8145232895a + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: c665dcf7-4548-40f3-ba59-f48ae9bdd457 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 3d9fc9d5-2a4f-41f3-bd85-4b9d35a03912 + Position: {X: -20.9999981, Y: 0.0, Z: -23.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 67045f1b-ec24-4a1b-b5d1-6f85192ff0ab + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: c70ea58a-16c0-4149-b41e-8940ea61480b + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: ff938eaa-3504-4b38-8cfe-40e29fb62f62 + Position: {X: 9.0, Y: 0.0, Z: -15.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 3e070c54-d6eb-4c37-8052-1d9bcb6a5674 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: c8116a0c-be66-4f01-9355-a1393f68069b + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 9d38b1d6-2ed9-4ef5-9e26-b6c370daf4b8 + Position: {X: 5.96046448E-07, Y: 0.0, Z: -25.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 130b39ed-dc5e-4c57-916b-f3cafe1e2201 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: c9517260-0b2c-4e4d-a669-b348c50f20c2 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 92ee6f26-e155-4d63-a9ec-32a66ba107b9 + Position: {X: -8.999998, Y: 0.0, Z: -21.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: a62366be-031f-42ea-8572-d0830b286838 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: ca22e806-7950-4f74-9f4d-f000ef6392be + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: ce6b7533-07f6-4359-818a-71f7732e67ea + Position: {X: -8.999998, Y: 0.0, Z: -31.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 3105f4d0-61ec-42bc-8f15-e6e0802ce04e + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: cac842cf-f47e-46ea-8af4-67f363c17580 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: dace12b8-f2f2-49b6-9401-2f5fdbeec587 + Position: {X: 9.0, Y: 0.0, Z: -17.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 4c9d5f41-de86-460e-a095-d9b54d7a0c2d + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: cd3d2fe0-1028-4eb3-9361-1957a9bf9542 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: c8b134e7-689f-4d62-b04a-30f58538a3f3 + Position: {X: 5.96046448E-07, Y: 0.0, Z: -15.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 05fd50cc-82cd-45dc-87d7-8d5630b67b74 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: ce03349a-aa78-4040-9f3f-c6414ffd6aea + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 7760ddc5-07fa-45a9-9790-f9d786f99060 + Position: {X: 5.96046448E-07, Y: 0.0, Z: -11.999999} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 9d5f3fbf-2ee7-4fb1-aaac-b154a0ad55f5 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: ce08bd2d-a7f5-4633-a90c-8752bb779a78 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 86de98d1-4652-4db8-8cf9-227a8e19f338 + Position: {X: 5.96046448E-07, Y: 0.0, Z: -31.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: fdcba622-09f8-473f-8b52-8f4b4ab8777f + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: ce2851d0-7dfc-43b7-a50d-e601251b22c7 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: cc8473e1-a20b-4a43-acc1-9f357fa0a174 + Position: {X: 5.96046448E-07, Y: 0.0, Z: -13.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 796676cf-2d1c-416f-9b2d-ac3ca2bcea1b + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: ce309cbd-e404-43ad-a3ca-40b47a93de82 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 34533acd-c117-41a8-8b4c-1ef3854b18a4 + Position: {X: 9.0, Y: 0.0, Z: -1.99999976} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: fea94de4-2b3f-40f1-b609-e1aff08539ae + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: d008b5f2-0a9e-4e98-ae33-90364f391681 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: e4e5f6de-9bd9-4258-b785-b9918a20e7aa + Position: {X: -17.9999981, Y: 0.0, Z: -37.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: fbeb1d07-8dd6-422c-a8a6-8c4492739467 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: d04d1118-1cab-4a0d-b5ef-828a7e3a9d2b + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 37a988bb-2cb2-4c8a-9c3b-4339c6cbd172 + Position: {X: -2.99999881, Y: 0.0, Z: -11.999999} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: b3573cdc-efb9-4b04-a26f-aceccc0d2270 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: d1669bee-6cc7-48c2-8cb9-9bdb06749039 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 8a4c9dc4-e3e2-4ee5-9ed9-36f8b27c8350 + Position: {X: -2.99999881, Y: 0.0, Z: -21.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 93b1bfb8-59d6-41f9-83f3-e7593022b12c + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: d2b1f3e5-f133-40a4-ac6a-3eb7a9a2aa85 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: f638a0f5-db3f-4f27-b87b-a1671bd858ff + Position: {X: -8.999998, Y: 0.0, Z: -17.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 1beb2434-0979-4a95-8c9d-58f21570a0b4 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: d3839d68-62ce-4380-b66d-9d36a85aa780 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 5a34b98c-4ae1-428c-8aaf-bddfab32a696 + Position: {X: -14.9999981, Y: 0.0, Z: -29.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 7642e54b-e2d0-45de-9d43-0788d4099044 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: d5310ae7-0282-41e2-b428-33c47da0a218 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 9ba48b52-98a3-4b30-9194-e175e45a8c42 + Position: {X: -14.9999981, Y: 0.0, Z: -39.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 6386bba2-943c-4866-a15f-9ba18f763590 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: d6f0d9c0-0f1d-4c7c-b6d0-3d8d26dde76e + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: f2476413-a9c1-4c9c-96be-a4aa8a49e3c7 + Position: {X: -20.9999981, Y: 0.0, Z: -25.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: b5767704-5c56-4414-a338-6fff5e914ed4 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: d7a884d6-73b5-4c0e-8cc1-41b14b7d3156 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 649c53d0-56df-42a3-8419-dda7ff2737ee + Position: {X: -8.999998, Y: 0.0, Z: 2.0} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: e399d25e-f524-42e4-9dce-50ad83a59b90 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: d8514ab4-1c1c-45ef-9a87-f5491905259f + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: b55b2b9c-2d6f-4621-bcc1-4bcdec2a273a + Position*: {X: 8.5, Y: 0.0, Z: -19.0} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: d74d0b11-54dc-4978-80b8-3c528d57ab63 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: c3f7f115-bcc6-4b4d-826b-7ec0276fb42a + - Folder: Platform + Entity: + Id: d86eb035-39cd-401e-8eaa-26827fd6305f + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: f69d5b88-fc98-445a-9bee-d76df1ae0521 + Position: {X: -2.99999881, Y: 0.0, Z: -13.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 82203b77-4300-4ac7-a98a-947d492e9ffc + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: d8d5f652-373d-44ec-8a17-6b831c867159 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: b57e2c3e-3f39-4776-9b35-3039334d41ee + Position: {X: -5.99999857, Y: 0.0, Z: -29.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: ae7cb410-c75e-46f5-81b9-d1bc71559a32 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: d9f227dc-45ad-4d2d-ba83-6ee056ed6089 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 81ccb979-231f-438d-bdef-d5bcd969a047 + Position*: {X: -6.499997, Y: 0.0, Z: -41.0} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 750467ab-d754-4485-85e9-8df980cfbea6 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 48f494c5-c5ca-4640-8ade-d7870f15fe81 + - Folder: Platform + Entity: + Id: dadd7e92-3ab8-46db-9b7d-3d18542033ee + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 8476a792-231b-4720-b44a-44bd89b64f22 + Position: {X: -2.99999881, Y: 0.0, Z: -33.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 38baf5ee-77e2-4a5f-b881-d3601cfb578c + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: db928955-6df8-4a86-815f-9721d4326880 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 4a63d7a1-67d9-4f3c-8e20-087471e77afc + Position: {X: -5.99999857, Y: 0.0, Z: -23.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 99bb2c3f-e934-439b-991a-27a97608b170 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: dc3f161c-41f6-46cf-92d4-840a4f14e9ce + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: be351177-044d-4905-b603-9251786c31c2 + Position: {X: 9.0, Y: 0.0, Z: -3.99999976} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: f6a217ae-a070-4840-83b2-9148f51b6d98 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: ddf0f914-caee-49f4-97f5-1db2f41c7371 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 47385ee8-7ae9-437e-b4a7-54e85ff7e743 + Position: {X: -5.99999857, Y: 0.0, Z: -5.99999952} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 6efe4957-6144-404a-905f-7062e86bbf92 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: de5e9afe-7846-42eb-af6e-c243bc441859 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 5c0e01eb-5884-43f4-b95e-fee30f0f86db + Position: {X: -11.9999981, Y: 0.0, Z: -39.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 399346e1-8207-4f68-b27f-3a8c1ebeb71a + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: df4fa2d8-660c-46a1-aa9f-b4d5f551772d + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: eb0e5963-3cd5-48a5-9e14-ca1a07825db6 + Position: {X: -2.99999881, Y: 0.0, Z: -5.99999952} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 0fb5b2c0-6bc1-4034-b654-2395b059d677 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: e178a2b3-e014-4b9a-8014-598fd38a08bf + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 1f5a0bae-f59c-49f8-8918-53ac312dc250 + Position*: {X: -14.5, Y: 0.0, Z: -11.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 52080442-c46a-4de3-9757-c25e173a1992 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: a5cd7de9-fc99-4fce-b2a5-032a281a1161 + - Folder: Borders + Entity: + Id: e457363e-2c79-4f26-b5a3-498046324a38 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 24c2e895-9d3c-4d78-9184-2e62e05d3654 + Position*: {X: -0.4999981, Y: 0.0, Z: -41.0} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 0a313168-4226-4a70-be32-647c981a3226 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: ec3f4018-7572-418d-967e-e3346c26c0ab + - Folder: Borders + Entity: + Id: e559414b-e41e-4f50-b1c6-51b726589d09 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 92e62a0e-4713-4795-a743-04cdd48aa182 + Position*: {X: -15.4999962, Y: 0.0, Z: -41.0} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: bb31ed96-8ece-44be-a03a-fa50f8ac008b + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: cfaaf152-ed8d-4d46-88be-105826862ac5 + - Folder: Borders + Entity: + Id: e5d3452d-795c-4eb8-b4af-9463e795fa88 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: ae24dfee-3302-4a83-a563-3cbc89d37503 + Position*: {X: 8.5, Y: 0.0, Z: -25.0} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 980faa36-fd6d-4a02-87f2-ad587be405f4 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: 4170cd3a-a7cb-47ac-a210-9e7f05c14c81 + - Folder: Platform + Entity: + Id: e654fcb0-c94b-47c6-b3e9-28cfe65278c4 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 82d84aed-d7b2-4631-bad6-5f3ca8fca4da + Position: {X: -11.9999981, Y: 0.0, Z: -19.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 20101789-21c4-493a-bdc3-fb9fa2a7e007 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: e7c6b696-469d-4976-b279-8f581482f077 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 0ef3a02c-a426-431f-8b47-70118b6b7330 + Position*: {X: -24.5, Y: 0.0, Z: -32.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: c13c0cd9-6cc7-4f02-bf62-b7c2fdae7fb0 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: ba9b8a21-5746-4b8c-b08a-b579fc7014db + - Folder: Borders + Entity: + Id: e8d4d239-4fbf-4f2e-bcf5-4634ba2a3815 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: f5b016ef-6f35-4666-a016-03c1bf684304 + Position*: {X: 8.5, Y: 0.0, Z: -3.99999952} + Rotation*: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: c03ed0cc-1c1c-4952-8c0f-5385ed80b17b + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: ab6a86c4-33ff-4546-8b18-a3b20af8daa5 + - Folder: Platform + Entity: + Id: e923ad25-a2b9-4f14-8ad6-968413a0c3a8 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 727a8acf-ff3b-48bc-93be-cb429bf1e52d + Position: {X: -8.999998, Y: 0.0, Z: -37.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: fee4d932-06b5-4d97-bc66-8b7b48f2bab4 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: ea00d4d9-c91f-418e-b242-6ab73cae1f17 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: ed35955a-747e-4818-bb23-a5b2dcc452a5 + Position: {X: -11.9999981, Y: 0.0, Z: -5.99999952} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: cb07a388-2840-4a5e-87cf-b9aac0cdcc1a + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: ea70a17f-df2f-45b8-a4d8-a75748fd5f91 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 7852d5b7-7fbd-4155-8be3-4ef853022fe4 + Position*: {X: 5.499999, Y: 0.0, Z: 2.00000143} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 4bf00aca-b300-43b7-bfd3-fda53cdcf78c + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: eb8a97c6-e7ed-4a14-b457-1257df893161 + - Folder: Platform + Entity: + Id: eaf04f4f-0637-4414-ab00-c135fd8fa3e2 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 2475a826-edce-4778-8aa3-c318d2300377 + Position: {X: 9.0, Y: 0.0, Z: -27.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 0d35f8a2-0577-4207-a579-b70bbba531ab + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: eafbc6cf-f603-41e8-9eba-b67ad36c0a64 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: e89c049d-f452-4d4d-b183-dd11e1109c8c + Position: {X: 3.00000048, Y: 0.0, Z: -13.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 625a69ed-5c5d-418a-85b6-0f027d352df9 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: eb2b67e8-46be-4ae1-8406-f38daa5c35a1 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: c55eaff6-1a6d-4630-b14d-68ee6e27d8f7 + Position: {X: -17.9999981, Y: 0.0, Z: -35.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 203a0db3-88e8-46fe-b504-e3248766906f + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: eb9c5c35-5d66-4811-94f6-dd5ff1740e7b + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 1b95976c-46ce-453d-b0ca-b433b1667324 + Position: {X: -2.99999881, Y: 0.0, Z: -3.99999976} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 96246ff9-592d-43ca-9f2b-d5357958235a + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: f285c0cb-6ea3-400b-a755-a044a4597dca + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 1fac509e-c5e6-4eaa-b37e-6567fac17a54 + Position*: {X: -7.5, Y: 0.0, Z: 2.00000048} + Rotation*: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 41c909b3-d1cf-4701-9910-ee1760cb28ad + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: ad2dbb94-f745-4d63-b517-d96ae99f7e44 + - Folder: Platform + Entity: + Id: f314d25a-5acb-4afa-8cbf-2e8e6e715d90 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 0d19793d-4e47-4dbe-9e79-f570185f148a + Position: {X: 3.00000048, Y: 0.0, Z: -1.99999976} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 267c6188-9ba1-4877-a448-e1c057fe7b78 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: f31cfdc8-a93f-4059-a7f6-35000922b6bf + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 346a2579-ee02-4dcb-b365-256f92150f6f + Position: {X: -17.9999981, Y: 0.0, Z: -17.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 93224812-e943-434f-85be-4b1ed617ab48 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: f37489c1-cfb7-4900-8b8b-8f7ca1791b99 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: edaea385-8220-4bc4-82e4-630b8422d5ba + Position: {X: -11.9999981, Y: 0.0, Z: -7.99999952} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: d494d948-649e-4ca2-9d34-c4614d241fee + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: f4314ec1-45e5-4276-8462-3a0b62763ab7 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 83b74e21-d338-48e9-ba8d-987fcd7e3cc1 + Position*: {X: -24.5, Y: 0.0, Z: -29.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: a895d023-55f9-4bf1-b298-5ae4efeea1d0 + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: eff64cc6-7624-415b-a6a8-f98a33baed02 + - Folder: Platform + Entity: + Id: f4826b3c-f046-4d1e-b68e-41726991bdcd + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 1d926d64-ad65-4fb9-98ba-ce51ab92fb2c + Position: {X: 3.00000048, Y: 0.0, Z: -11.999999} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 9a02ee9a-c40d-4189-9157-6c4943bb64b3 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: f4bca513-ceaa-4906-bd83-0fe720fc6e02 + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: e84aacac-aee3-4e9e-b1bf-91dc4ebbfa06 + Position*: {X: -12.4999971, Y: 0.0, Z: -41.0} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 1b9a56cb-c9d7-440f-9ec2-297877574a5a + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: e34bfc12-d2da-4b6d-a2a6-c36e526bf327 + - Folder: Platform + Entity: + Id: f54998f6-8094-44fa-8704-70e6791d4504 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 62338625-f7fe-4f72-9a26-b5c8acb73476 + Position: {X: -11.9999981, Y: 0.0, Z: -11.999999} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: e3058dee-e120-43bf-ab73-fefd4922a577 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: f571b52d-567a-4424-a06f-5135ab8f7d36 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 69f72407-2ccc-4877-b669-6ec8ab253c5b + Position: {X: 6.0, Y: 0.0, Z: -3.99999976} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: ce84ec8e-bb4a-43a3-8b1b-6818c3bfc0d4 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: f72b4dba-0e63-409f-abab-56c14dbe10c8 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: e4b0b817-3f36-4a73-bbe9-3cab5f0c1969 + Position: {X: -8.999998, Y: 0.0, Z: -11.999999} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 7c0052a5-47c4-413f-8454-eb52aaa25c65 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: f840c90f-1e73-4065-9b8b-1083e85a3fb9 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: c44a66d0-68b2-4a47-a7fe-879778705b2a + Position: {X: 5.96046448E-07, Y: 0.0, Z: -7.99999952} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: ed6759d3-8d6b-4394-a2ca-90e307fd0fc1 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: f845782a-1ad4-4619-866e-895fd4543358 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: a4a48844-796d-48ff-a8ac-f7d9c9273570 + Position: {X: 6.0, Y: 0.0, Z: -5.99999952} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 028cf933-0655-483a-af4a-a6d7b1842f40 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Borders + Entity: + Id: f898e0e5-b4f4-49c5-8f6b-2e10c00592cc + Name: Border_straight + Components: + 4da7b696def5f5d34ffe45750ed0dccf: !TransformComponent + Id: 5ad1b1ca-cef5-4f03-a70b-dae1a42ba11b + Position*: {X: -21.4999962, Y: 0.0, Z: -41.0} + Rotation*: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale*: {X: 1.0, Y: 1.0, Z: 1.5} + Children: {} + f730786ae13d25771c200efd26fe4a31: !ModelComponent + Id: 23ed824e-2c11-4fe8-b74a-14c7883cd95c + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + Base: + BasePartAsset: 3c0d6833-c7dc-488f-84aa-c8713c5aa044:Environment/Platforms/Prefabs/Border_straight + BasePartId: 4edddb7b-eeae-427d-9304-aef95b0ce699 + InstanceId: c2464b8a-7a13-418f-96bd-41bba5997f8d + - Folder: Platform + Entity: + Id: fae8a639-1006-44f3-89d5-b460c1629c1c + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: e1f8c751-374b-4518-bb97-dcc899d2e5f4 + Position: {X: 9.0, Y: 0.0, Z: -19.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 911e2fe1-92c6-4258-95a8-27b96c7e9566 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: fc07e0a5-a552-492b-bc86-9b897ffb8a67 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 565a839e-51c8-4b6f-bccb-07a07bb7ba6f + Position: {X: 9.0, Y: 0.0, Z: -37.9999962} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 4da00c6e-26c7-45f7-a254-5253ab5a047d + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: fe049c67-6040-457e-9a20-2ca1a5ea5340 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: cd89a36d-02b3-415a-897a-76307e0cd78c + Position: {X: -8.999998, Y: 0.0, Z: -23.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: b1dbd7a5-9b16-44ce-9f76-4a08978234c8 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: feacd78c-ad86-44b7-8e11-110d4382d2fe + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 4bda6b44-c286-44f1-8eb8-41c5d3f8b846 + Position: {X: 3.00000048, Y: 0.0, Z: -27.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 097e81c4-7df7-4b60-920d-c9b81fc659f6 + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} + - Folder: Platform + Entity: + Id: fecfc273-2f15-48ab-ab08-2a14acb16833 + Name: Cell_Loop (9) + Components: + df3431ae615fe19016607e7a1c0b4e99: !TransformComponent + Id: 7f37fe03-7be5-4596-8d05-5ba5182625ce + Position: {X: -11.9999981, Y: 0.0, Z: -13.9999981} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8e283b17acbc208d981a2054c6753d99: !ModelComponent + Id: 8c223efb-6158-42f6-998e-16e07521773e + Model: 1f1a7307-7912-4df6-b0c3-9dccebbe39c0:Environment/Platforms/Models/Cell_Loop + Materials: {} diff --git a/Starbreach/Assets/Shared/Platforms/Meshes/Cell.FBX b/Starbreach/Assets/Shared/Platforms/Meshes/Cell.FBX new file mode 100644 index 0000000..8c26f4f --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/Meshes/Cell.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1868b2450b459669d8d91b59bdaacc625c172e4ff9886d1d1c1497598cba59b1 +size 24256 diff --git a/Starbreach/Assets/Shared/Platforms/Meshes/Pillar.FBX b/Starbreach/Assets/Shared/Platforms/Meshes/Pillar.FBX new file mode 100644 index 0000000..31cd2c3 --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/Meshes/Pillar.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1778790c5caef9e5e945303efae86bbc52a54637512f1085c8383abd13a4fde8 +size 35872 diff --git a/Starbreach/Assets/Shared/Platforms/Meshes/Rails.FBX b/Starbreach/Assets/Shared/Platforms/Meshes/Rails.FBX new file mode 100644 index 0000000..2a1f8b8 --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/Meshes/Rails.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08eecb878cbffd12c74406f82505f1b6470a337832d2b9b7e56d530bfbe43b45 +size 26608 diff --git a/Starbreach/Assets/Shared/Platforms/Meshes/Rails_adv.FBX b/Starbreach/Assets/Shared/Platforms/Meshes/Rails_adv.FBX new file mode 100644 index 0000000..a809874 --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/Meshes/Rails_adv.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea15c3c834c7b0faaad1da7c41474f6399051daf8dacf091bb82a03639d30b03 +size 28832 diff --git a/Starbreach/Assets/Shared/Platforms/Meshes/Rails_tube.FBX b/Starbreach/Assets/Shared/Platforms/Meshes/Rails_tube.FBX new file mode 100644 index 0000000..41e0a13 --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/Meshes/Rails_tube.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0903d9233463d29ae9d5657decdf626f70b56a7f581e23021d9a7d5fc7f75a6 +size 25728 diff --git a/Starbreach/Assets/Shared/Platforms/Meshes/Rails_tube_C_large.FBX b/Starbreach/Assets/Shared/Platforms/Meshes/Rails_tube_C_large.FBX new file mode 100644 index 0000000..a256b25 --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/Meshes/Rails_tube_C_large.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b62cf72e1533b887dae2c2aaeb8a044608e48bf24f91b584dd6fa0a80f32aaad +size 26816 diff --git a/Starbreach/Assets/Shared/Platforms/Meshes/Rails_tube_C_small.FBX b/Starbreach/Assets/Shared/Platforms/Meshes/Rails_tube_C_small.FBX new file mode 100644 index 0000000..f0ff0a1 --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/Meshes/Rails_tube_C_small.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edd24a67f4510ff594be66f174bb3bb09eb3374047d5b7c6fdd0b4bf6ce152b5 +size 28352 diff --git a/Starbreach/Assets/Shared/Platforms/Meshes/Rails_tube_L.FBX b/Starbreach/Assets/Shared/Platforms/Meshes/Rails_tube_L.FBX new file mode 100644 index 0000000..e09cde9 --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/Meshes/Rails_tube_L.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f48ee19c65fa97c75e5b6ad939106a1b96a15e201069c1c149642f50c6feb080 +size 30000 diff --git a/Starbreach/Assets/Shared/Platforms/Meshes/Rails_tube_L_large.FBX b/Starbreach/Assets/Shared/Platforms/Meshes/Rails_tube_L_large.FBX new file mode 100644 index 0000000..9acfa13 --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/Meshes/Rails_tube_L_large.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b056b621f7deab4df955f7c5e0f540eb79b1cc4c9913da539e4152aeee13068 +size 29952 diff --git a/Starbreach/Assets/Shared/Platforms/Meshes/Ring_border.FBX b/Starbreach/Assets/Shared/Platforms/Meshes/Ring_border.FBX new file mode 100644 index 0000000..0e3dbe6 --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/Meshes/Ring_border.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a5d430b405aaa277593d8bf4928681ebf93ca8236844c6769c0bd2516f09ebc +size 26288 diff --git a/Starbreach/Assets/Shared/Platforms/Meshes/b_border_C_small.FBX b/Starbreach/Assets/Shared/Platforms/Meshes/b_border_C_small.FBX new file mode 100644 index 0000000..ebcf26c --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/Meshes/b_border_C_small.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b795bbf4064889029cf137497f620b95bd138e0415cad6abec194014a056394 +size 26976 diff --git a/Starbreach/Assets/Shared/Platforms/Meshes/b_border_L_small.FBX b/Starbreach/Assets/Shared/Platforms/Meshes/b_border_L_small.FBX new file mode 100644 index 0000000..be6df76 --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/Meshes/b_border_L_small.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a788507b5f011dc860c50349f6b20357838ad6160f3b95f18964a4924e36aaca +size 26688 diff --git a/Starbreach/Assets/Shared/Platforms/Meshes/b_border_L_small_outside.FBX b/Starbreach/Assets/Shared/Platforms/Meshes/b_border_L_small_outside.FBX new file mode 100644 index 0000000..45db29a --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/Meshes/b_border_L_small_outside.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3f15c1767f2f3753551f1d9b53d1c0d12ed1c0b31811c40d67fdb3b7e9f62ec +size 26336 diff --git a/Starbreach/Assets/Shared/Platforms/Meshes/b_border_large.FBX b/Starbreach/Assets/Shared/Platforms/Meshes/b_border_large.FBX new file mode 100644 index 0000000..16a4735 --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/Meshes/b_border_large.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67105c635a3e55f86311f560843bf84c73ef7fb396761d813c591654ab62b422 +size 27776 diff --git a/Starbreach/Assets/Shared/Platforms/Meshes/b_border_small.FBX b/Starbreach/Assets/Shared/Platforms/Meshes/b_border_small.FBX new file mode 100644 index 0000000..4d37fb6 --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/Meshes/b_border_small.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1c312e5b1cf423b584ad53163a0e44b8f035f8f523f5fe5440999914d7e32d2 +size 27120 diff --git a/Starbreach/Assets/Shared/Platforms/Meshes/border_C_large.FBX b/Starbreach/Assets/Shared/Platforms/Meshes/border_C_large.FBX new file mode 100644 index 0000000..e752dba --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/Meshes/border_C_large.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03aa558a07dbb48a61e4f84e7a003f4a6582d81ab0ae0952b383d61eece260ad +size 26528 diff --git a/Starbreach/Assets/Shared/Platforms/Meshes/border_C_small.FBX b/Starbreach/Assets/Shared/Platforms/Meshes/border_C_small.FBX new file mode 100644 index 0000000..8b397a6 --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/Meshes/border_C_small.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:befa3c86a16935cd81bcffd4ac6dc4f1d048870565e73d455368322f8f976e9c +size 26640 diff --git a/Starbreach/Assets/Shared/Platforms/Meshes/border_C_small_inside.FBX b/Starbreach/Assets/Shared/Platforms/Meshes/border_C_small_inside.FBX new file mode 100644 index 0000000..ba02596 --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/Meshes/border_C_small_inside.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ec822a10774729125923aac37c81500cde11db29ec1f2cabbf9ae0aae82c234 +size 27600 diff --git a/Starbreach/Assets/Shared/Platforms/Meshes/border_L_small.FBX b/Starbreach/Assets/Shared/Platforms/Meshes/border_L_small.FBX new file mode 100644 index 0000000..25f1e1c --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/Meshes/border_L_small.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d7e160eb4159ea77b9f98e61dd1a448bf17bc3fb08db387fbc63a66cb8e1860 +size 26464 diff --git a/Starbreach/Assets/Shared/Platforms/Meshes/border_L_small_M.FBX b/Starbreach/Assets/Shared/Platforms/Meshes/border_L_small_M.FBX new file mode 100644 index 0000000..79a8673 --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/Meshes/border_L_small_M.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48eaafff98752217ba14ff8e49b5615bda142ae40c7113c2de1fe2f8c4b85d0 +size 26320 diff --git a/Starbreach/Assets/Shared/Platforms/Meshes/border_small_C2.FBX b/Starbreach/Assets/Shared/Platforms/Meshes/border_small_C2.FBX new file mode 100644 index 0000000..b826d01 --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/Meshes/border_small_C2.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:965e91b20f4c753da8f43c1b8e781da2ce49702031404b8d06dc454f1511710d +size 27744 diff --git a/Starbreach/Assets/Shared/Platforms/Meshes/border_small_C2_outside.FBX b/Starbreach/Assets/Shared/Platforms/Meshes/border_small_C2_outside.FBX new file mode 100644 index 0000000..6c69bfe --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/Meshes/border_small_C2_outside.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10b9f0a0bf5940d8cf09c1f9baf137d773ade4ad501b877fb4b737f06bc0628e +size 27600 diff --git a/Starbreach/Assets/Shared/Platforms/Pillar/pillar_albedo.tga b/Starbreach/Assets/Shared/Platforms/Pillar/pillar_albedo.tga new file mode 100644 index 0000000..14285f5 --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/Pillar/pillar_albedo.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0614bf61143b22535e111b4df948ebd8dd6802cb81a7c7b27732c240bef76999 +size 50331692 diff --git a/Starbreach/Assets/Shared/Platforms/Pillar/pillar_gloss.tga b/Starbreach/Assets/Shared/Platforms/Pillar/pillar_gloss.tga new file mode 100644 index 0000000..7bce0f9 --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/Pillar/pillar_gloss.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c60ae481cfdd9411ba0b52da9e3a3527b17a66a7295784afa945fbebbd91583 +size 16777260 diff --git a/Starbreach/Assets/Shared/Platforms/Pillar/pillar_metalness.tga b/Starbreach/Assets/Shared/Platforms/Pillar/pillar_metalness.tga new file mode 100644 index 0000000..4d44111 --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/Pillar/pillar_metalness.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c05da1d898dadef9868481fc00a895902c81d56c33a7c6c50aa33912a85fb425 +size 16777260 diff --git a/Starbreach/Assets/Shared/Platforms/Pillar/pillar_normal.tga b/Starbreach/Assets/Shared/Platforms/Pillar/pillar_normal.tga new file mode 100644 index 0000000..6856818 --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/Pillar/pillar_normal.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddc19138be400211726b003fd0024420c921a3f79c9634f59efdb1476612ad3f +size 50331692 diff --git a/Starbreach/Assets/Shared/Platforms/Pillar/pillar_occlusion.tga b/Starbreach/Assets/Shared/Platforms/Pillar/pillar_occlusion.tga new file mode 100644 index 0000000..9ba330f --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/Pillar/pillar_occlusion.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:026b09a34e3aad725addfa55c03ad94034a07e8210f728ee9b98648297613708 +size 50331692 diff --git a/Starbreach/Assets/Shared/Platforms/rails_adv/rail01_albedo.tga b/Starbreach/Assets/Shared/Platforms/rails_adv/rail01_albedo.tga new file mode 100644 index 0000000..fcc1a9e --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/rails_adv/rail01_albedo.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25ac1d40e7e61268214a15baeab211b09e9b73447798c1fc14afd69114a41b78 +size 786476 diff --git a/Starbreach/Assets/Shared/Platforms/rails_adv/rail01_gloss.tga b/Starbreach/Assets/Shared/Platforms/rails_adv/rail01_gloss.tga new file mode 100644 index 0000000..a1c2366 --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/rails_adv/rail01_gloss.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6ffcd2d98f054fa5bd9531bd430b428699b06b2e9b41e6e53d0de3b030c0016 +size 786476 diff --git a/Starbreach/Assets/Shared/Platforms/rails_adv/rail01_metalness.tga b/Starbreach/Assets/Shared/Platforms/rails_adv/rail01_metalness.tga new file mode 100644 index 0000000..d6b19f1 --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/rails_adv/rail01_metalness.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:689fd68a8b70d63a50609ef194769a27579049df86bb65dd0fef9c26f6b90d6b +size 786476 diff --git a/Starbreach/Assets/Shared/Platforms/rails_adv/rail01_normal.tga b/Starbreach/Assets/Shared/Platforms/rails_adv/rail01_normal.tga new file mode 100644 index 0000000..36663c8 --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/rails_adv/rail01_normal.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:049ba866b2d55cbcf2bb1cfd7fee715ef05698cf471ffa336f2e3a8753d9e679 +size 786476 diff --git a/Starbreach/Assets/Shared/Platforms/rails_adv/rail_adv_albedo.tga b/Starbreach/Assets/Shared/Platforms/rails_adv/rail_adv_albedo.tga new file mode 100644 index 0000000..0fcdf69 --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/rails_adv/rail_adv_albedo.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:379e42f38562aac1dd2fb52fe055ea47e301dcb7f80da531f2a5fd5a3794c844 +size 3145772 diff --git a/Starbreach/Assets/Shared/Platforms/rails_adv/rail_adv_gloss.tga b/Starbreach/Assets/Shared/Platforms/rails_adv/rail_adv_gloss.tga new file mode 100644 index 0000000..b8a0101 --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/rails_adv/rail_adv_gloss.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c051e931ae6ef58d2119ab0440fc0a61421aaf470809122573a3f0cf561d7a72 +size 1048620 diff --git a/Starbreach/Assets/Shared/Platforms/rails_adv/rail_adv_metalness.tga b/Starbreach/Assets/Shared/Platforms/rails_adv/rail_adv_metalness.tga new file mode 100644 index 0000000..273e0fb --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/rails_adv/rail_adv_metalness.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cbe8f97e39b2ea286e1edd3a45efe30ee6f65be59d55b35effcd2d81efc4d2a +size 1048620 diff --git a/Starbreach/Assets/Shared/Platforms/rails_adv/rail_adv_normal.tga b/Starbreach/Assets/Shared/Platforms/rails_adv/rail_adv_normal.tga new file mode 100644 index 0000000..1d7282f --- /dev/null +++ b/Starbreach/Assets/Shared/Platforms/rails_adv/rail_adv_normal.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd5e6ab45614c4b332bacb92989db265fcff521db5c581c0b766c7a7cc0239ea +size 3145772 diff --git a/Starbreach/Assets/Shared/PlatformsOld/Materials/Bord_rusted.xkmat b/Starbreach/Assets/Shared/PlatformsOld/Materials/Bord_rusted.xkmat new file mode 100644 index 0000000..8a0b2c7 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Materials/Bord_rusted.xkmat @@ -0,0 +1,61 @@ +!MaterialAsset +Id: 58a81ffa-b3ac-444f-8aab-63c4a61d130b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: d6c4cd38-5005-45b0-a204-e02fe2212497:PlatformsOld/Textures/Bord_rust_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: ba449fee-0327-4e54-bf1e-df22d585fc9f:PlatformsOld/Textures/Bord_rust_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 3e73b216-24e7-425a-9ca0-49a778640035:PlatformsOld/Textures/Bord_rust_A + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 24c80f8e-0ba8-442f-8c9e-9aa17670cba7:PlatformsOld/Textures/Bord_rust_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 2757519a-f40a-42b4-901c-7313a499c3eb:PlatformsOld/Textures/Bord_rust_O + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 1.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Materials/Pillar.xkmat b/Starbreach/Assets/Shared/PlatformsOld/Materials/Pillar.xkmat new file mode 100644 index 0000000..94f7475 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Materials/Pillar.xkmat @@ -0,0 +1,61 @@ +!MaterialAsset +Id: 2c2b37b6-fba7-4366-87c5-8e690580575d +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: e1d3d5fb-c616-4293-8daf-58249eb7e2ad:PlatformsOld/Textures/pillar_normal + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: cff569fc-f11a-4a2f-be47-f86edb6e2669:PlatformsOld/Textures/pillar_gloss + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: e213e285-1233-4c3d-9334-10bf307eb26f:PlatformsOld/Textures/pillar_albedo + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 52c59467-6bff-495c-88da-99e59f6b100a:PlatformsOld/Textures/pillar_metalness + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 9aa9be9a-24f6-4879-8ede-5ceec1ef39d3:PlatformsOld/Textures/pillar_occlusion + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Materials/Rail.xkmat b/Starbreach/Assets/Shared/PlatformsOld/Materials/Rail.xkmat new file mode 100644 index 0000000..46da415 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Materials/Rail.xkmat @@ -0,0 +1,43 @@ +!MaterialAsset +Id: 1212b703-b567-40a5-ad55-bee35bebbf97 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: cc860e70-9f21-4d11-afc1-20dbda99aab2:PlatformsOld/Textures/rail01_normal + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 95a2f237-aa4c-4062-9696-b7cc63ebe30a:PlatformsOld/Textures/rail01_gloss + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: eea15ead-9d19-4148-a554-32bccd0a3462:PlatformsOld/Textures/rail01_albedo + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 134e6010-42aa-4ca0-9452-a48a1a16d7f2:PlatformsOld/Textures/rail01_metalness + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Materials/b_border1.xkmat b/Starbreach/Assets/Shared/PlatformsOld/Materials/b_border1.xkmat new file mode 100644 index 0000000..2114720 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Materials/b_border1.xkmat @@ -0,0 +1,43 @@ +!MaterialAsset +Id: 03a35a7a-565d-4880-9dba-bc7667431daa +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 1eafe878-b0b1-4733-b9e7-0a176909fc5e:PlatformsOld/Textures/b_border_normal + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 1ff820d8-0c5a-420a-91ec-4a8d662a01ed:PlatformsOld/Textures/b_border_gloss + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: d68b480e-f028-4152-b09c-23223b3e39b5:PlatformsOld/Textures/b_border_albedo + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 446e3a12-527d-464d-951a-d535429beb0d:PlatformsOld/Textures/b_b_border_metalness + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Materials/b_border2.xkmat b/Starbreach/Assets/Shared/PlatformsOld/Materials/b_border2.xkmat new file mode 100644 index 0000000..297c76b --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Materials/b_border2.xkmat @@ -0,0 +1,43 @@ +!MaterialAsset +Id: 1fce6416-b22f-4cf9-bf4a-719514ed4686 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 1eafe878-b0b1-4733-b9e7-0a176909fc5e:PlatformsOld/Textures/b_border_normal + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: b8ad34c3-67a1-4dda-a7a2-d98e27618f67:PlatformsOld/Textures/b_border_gloss2 + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 47f7d65e-1670-4622-b99a-74136baaacef:PlatformsOld/Textures/b_border_albedo2 + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 446e3a12-527d-464d-951a-d535429beb0d:PlatformsOld/Textures/b_b_border_metalness + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Materials/b_border3.xkmat b/Starbreach/Assets/Shared/PlatformsOld/Materials/b_border3.xkmat new file mode 100644 index 0000000..b8ce8b9 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Materials/b_border3.xkmat @@ -0,0 +1,43 @@ +!MaterialAsset +Id: 545cfd6f-b0c6-4a6f-8838-b383d7198bf5 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 1eafe878-b0b1-4733-b9e7-0a176909fc5e:PlatformsOld/Textures/b_border_normal + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 1ff820d8-0c5a-420a-91ec-4a8d662a01ed:PlatformsOld/Textures/b_border_gloss + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 06d1a51e-66e6-4538-8722-41d9b78bede9:PlatformsOld/Textures/b_border_albedo3 + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 446e3a12-527d-464d-951a-d535429beb0d:PlatformsOld/Textures/b_b_border_metalness + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Materials/border.xkmat b/Starbreach/Assets/Shared/PlatformsOld/Materials/border.xkmat new file mode 100644 index 0000000..c5e13d3 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Materials/border.xkmat @@ -0,0 +1,72 @@ +!MaterialAsset +Id: 14acd6d5-f6d1-42a7-928d-5add6341bedf +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Displacement: !MaterialDisplacementMapFeature + Enabled: false + DisplacementMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Enabled: false + Intensity: !ComputeFloat + Value: 1.0 + Stage: Vertex + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 7949f76c-553f-4992-9053-d7da3a6b4568:PlatformsOld/Textures/border2_normal + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: da4f4ec6-eced-47a6-94be-fa1feddf033e:PlatformsOld/Textures/border2_gloss + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: dbcc4468-dd8d-4555-929d-e957f20c1e7c:PlatformsOld/Textures/border2_albedo + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 659fe958-9f5e-44ad-9ea0-6f46c2e2c386:PlatformsOld/Textures/border2_metalness + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: d57bd008-2a28-4c32-8628-c260e08f1627:PlatformsOld/Textures/border2_ao + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Materials/cell01.xkmat b/Starbreach/Assets/Shared/PlatformsOld/Materials/cell01.xkmat new file mode 100644 index 0000000..db3d56a --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Materials/cell01.xkmat @@ -0,0 +1,39 @@ +!MaterialAsset +Id: 50d2612c-160d-4e41-895a-9152086d8f1c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Materials/cell01_backed.xkmat b/Starbreach/Assets/Shared/PlatformsOld/Materials/cell01_backed.xkmat new file mode 100644 index 0000000..4bf04b4 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Materials/cell01_backed.xkmat @@ -0,0 +1,43 @@ +!MaterialAsset +Id: 2f5f609d-0f93-4f71-9390-2cb3d16a098c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: fb501c6f-5ea0-4132-955b-b96beab65629:PlatformsOld/Textures/cell01_normal_baked + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 23b2256e-51a4-4234-a517-142f48cdd62b:PlatformsOld/Textures/cell01_gloss_baked + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 6d0e34dc-565f-4a64-9835-52114389b718:PlatformsOld/Textures/cell01_albedo_baked + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 937d1ffa-a1ce-42b4-8ad2-6931a936da08:PlatformsOld/Textures/cell01_metalness_baked + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Materials/cell02.xkmat b/Starbreach/Assets/Shared/PlatformsOld/Materials/cell02.xkmat new file mode 100644 index 0000000..dc449f8 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Materials/cell02.xkmat @@ -0,0 +1,64 @@ +!MaterialAsset +Id: f1518466-7e38-4471-82bf-112d5d243405 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: adb0ea2d-fb8e-4676-bb46-d1d9263eb0ce:PlatformsOld/Textures/cell03_gloss_baked + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 359d1798-dc94-43ec-b7d1-3c1187da605d:PlatformsOld/Textures/cell03_albedo_baked + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 13a9fd1c-9f93-4cce-b4c4-cb05ec1547ac:PlatformsOld/Textures/cell03_metalness_baked + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: ed2a0e2b-7e79-430b-8946-35aaf3ebc155:PlatformsOld/Textures/cell03_emissive4_baked + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeColor + Value: {R: 0.0, G: 0.7750001, B: 1.0, A: 1.0} + Intensity: !ComputeFloat + Value: 500.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: + 191dc8904ce0b94d99fdea8780371dea: + BlendMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Overrides: + UVScale: {X: 1.0, Y: 1.0} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Materials/cell02_off.xkmat b/Starbreach/Assets/Shared/PlatformsOld/Materials/cell02_off.xkmat new file mode 100644 index 0000000..72b5897 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Materials/cell02_off.xkmat @@ -0,0 +1,65 @@ +!MaterialAsset +Id: ec7eeef7-c6bf-4edf-b5e8-90c115d1b689 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: adb0ea2d-fb8e-4676-bb46-d1d9263eb0ce:PlatformsOld/Textures/cell03_gloss_baked + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 359d1798-dc94-43ec-b7d1-3c1187da605d:PlatformsOld/Textures/cell03_albedo_baked + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 13a9fd1c-9f93-4cce-b4c4-cb05ec1547ac:PlatformsOld/Textures/cell03_metalness_baked + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Emissive: !MaterialEmissiveMapFeature + Enabled: false + EmissiveMap: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: ed2a0e2b-7e79-430b-8946-35aaf3ebc155:PlatformsOld/Textures/cell03_emissive4_baked + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeColor + Value: {R: 0.0, G: 0.7750001, B: 1.0, A: 1.0} + Intensity: !ComputeFloat + Value: 500.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: + 191dc8904ce0b94d99fdea8780371dea: + BlendMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Overrides: + UVScale: {X: 1.0, Y: 1.0} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Materials/cell03.xkmat b/Starbreach/Assets/Shared/PlatformsOld/Materials/cell03.xkmat new file mode 100644 index 0000000..02a4e2a --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Materials/cell03.xkmat @@ -0,0 +1,49 @@ +!MaterialAsset +Id: 886ec2a3-4122-4a57-b1c2-2866661509cf +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 0bc3a6fc-298b-40d3-a997-8c6130c5ff88:PlatformsOld/Textures/cell03_normal + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 8.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Materials/cell03_backed.xkmat b/Starbreach/Assets/Shared/PlatformsOld/Materials/cell03_backed.xkmat new file mode 100644 index 0000000..4dfba1c --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Materials/cell03_backed.xkmat @@ -0,0 +1,43 @@ +!MaterialAsset +Id: 6b904b26-f676-41a5-a70f-bb3b61c6cf16 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 0466581b-d91a-41d0-9d7f-43f1d6802247:PlatformsOld/Textures/cell03_normal_baked + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: adb0ea2d-fb8e-4676-bb46-d1d9263eb0ce:PlatformsOld/Textures/cell03_gloss_baked + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 359d1798-dc94-43ec-b7d1-3c1187da605d:PlatformsOld/Textures/cell03_albedo_baked + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: adb0ea2d-fb8e-4676-bb46-d1d9263eb0ce:PlatformsOld/Textures/cell03_gloss_baked + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Materials/cell4_backed.xkmat b/Starbreach/Assets/Shared/PlatformsOld/Materials/cell4_backed.xkmat new file mode 100644 index 0000000..c8e888f --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Materials/cell4_backed.xkmat @@ -0,0 +1,46 @@ +!MaterialAsset +Id: 85afbe62-f9a1-46bc-8c0e-0553f5fa1b6e +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 0466581b-d91a-41d0-9d7f-43f1d6802247:PlatformsOld/Textures/cell03_normal_baked + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 143597d7-fa34-4d07-8d81-45c483a952c9:PlatformsOld/Textures/cell04_gloss_baked + FallbackValue: + Value: 1.0 + Filtering: Anisotropic + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 375ed57b-f158-4c48-814c-b5597c4066eb:PlatformsOld/Textures/cell04_albedo_baked + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Filtering: Anisotropic + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 4cdb90fc-84e9-44ea-8c2d-53bc7cc40a51:PlatformsOld/Textures/cell04_metalness_baked + FallbackValue: + Value: 1.0 + Filtering: Anisotropic + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Materials/cell4_backed_nospec.xkmat b/Starbreach/Assets/Shared/PlatformsOld/Materials/cell4_backed_nospec.xkmat new file mode 100644 index 0000000..c974fe5 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Materials/cell4_backed_nospec.xkmat @@ -0,0 +1,44 @@ +!MaterialAsset +Id: 926631cc-75bf-49e4-8009-ce602d7ac6ec +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 0466581b-d91a-41d0-9d7f-43f1d6802247:PlatformsOld/Textures/cell03_normal_baked + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 143597d7-fa34-4d07-8d81-45c483a952c9:PlatformsOld/Textures/cell04_gloss_baked + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 375ed57b-f158-4c48-814c-b5597c4066eb:PlatformsOld/Textures/cell04_albedo_baked + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + Enabled: false + MetalnessMap: !ComputeTextureScalar + Texture: 4cdb90fc-84e9-44ea-8c2d-53bc7cc40a51:PlatformsOld/Textures/cell04_metalness_baked + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Materials/raild_adv.xkmat b/Starbreach/Assets/Shared/PlatformsOld/Materials/raild_adv.xkmat new file mode 100644 index 0000000..266fc5f --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Materials/raild_adv.xkmat @@ -0,0 +1,43 @@ +!MaterialAsset +Id: df4fd775-8301-4a81-9edb-2c9ce04eb2c2 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: c45adf88-596f-4876-aacb-14136a1adaa9:PlatformsOld/Textures/rail_adv_normal + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 930f51c9-2015-487c-87f0-49c2f5be4502:PlatformsOld/Textures/rail_adv_gloss + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: b0cac25a-fbe4-4b74-88fc-03a848c55186:PlatformsOld/Textures/rail_adv_albedo + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 53ae0067-84a4-456c-aec5-efb1f6aa0044:PlatformsOld/Textures/rail_adv_metalness + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Models/Cell.xkm3d b/Starbreach/Assets/Shared/PlatformsOld/Models/Cell.xkm3d new file mode 100644 index 0000000..9f80ccd --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Models/Cell.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 93eb4db8-c550-4028-911a-eecf037f8f2d +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Platforms/Cells/Cell.fbx +PivotPosition: {X: 0.0, Y: 0.017, Z: 0.0} +Materials: + c7ee4fb3e99963c83f2e66e6599b9fae: + Name: cell2_baked + MaterialInstance: + Material: 85afbe62-f9a1-46bc-8c0e-0553f5fa1b6e:PlatformsOld/Materials/cell4_backed +Skeleton: null +~SourceHashes: + 82e18e2902e264fecc9f1dffcbf6f125~../../../../Resources/Platforms/Cells/Cell.fbx: bd8d1eea784590f5a523e67f94c33a9f diff --git a/Starbreach/Assets/Shared/PlatformsOld/Models/Cell_Loop.xkm3d b/Starbreach/Assets/Shared/PlatformsOld/Models/Cell_Loop.xkm3d new file mode 100644 index 0000000..567b6fd --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Models/Cell_Loop.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: e3fa4405-a073-4a01-a959-1b0b57028bbb +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Platforms/Cells/Cell_Loop.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + c7ee4fb3e99963c83f2e66e6599b9fae: + Name: cell2_baked + MaterialInstance: + Material: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed +Skeleton: null +~SourceHashes: + beddd7cb745ac53d2428f5bfed6eb9a3~../../../../Resources/Platforms/Cells/Cell_Loop.fbx: f253873a629ec2950028931d9db18aa6 diff --git a/Starbreach/Assets/Shared/PlatformsOld/Models/Cell_loop_half.xkm3d b/Starbreach/Assets/Shared/PlatformsOld/Models/Cell_loop_half.xkm3d new file mode 100644 index 0000000..a87c293 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Models/Cell_loop_half.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: b9f5f187-c589-407a-8aa1-cd18650df4c6 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Platforms/Cells/Cell_loop_half.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + c7ee4fb3e99963c83f2e66e6599b9fae: + Name: cell2_baked + MaterialInstance: + Material: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed +Skeleton: null +~SourceHashes: + 924881a996f72ba835b146018876a32d~../../../../Resources/Platforms/Cells/Cell_loop_half.fbx: 8627045108aeae58f946cf572b53502e diff --git a/Starbreach/Assets/Shared/PlatformsOld/Models/Cell_loop_half2.xkm3d b/Starbreach/Assets/Shared/PlatformsOld/Models/Cell_loop_half2.xkm3d new file mode 100644 index 0000000..376d118 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Models/Cell_loop_half2.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: e63af0bb-3c5c-4345-9946-2b2a16ffb435 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Platforms/Cells/Cell_loop_half2.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + c7ee4fb3e99963c83f2e66e6599b9fae: + Name: cell2_baked + MaterialInstance: + Material: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed +Skeleton: null +~SourceHashes: + e2b7281a899f7bb55294bf25709e20a7~../../../../Resources/Platforms/Cells/Cell_loop_half2.fbx: e6cbbd59deb8673c67b0ade78775ac55 diff --git a/Starbreach/Assets/Shared/PlatformsOld/Models/DiagonalCell (2).xkm3d b/Starbreach/Assets/Shared/PlatformsOld/Models/DiagonalCell (2).xkm3d new file mode 100644 index 0000000..8f178d5 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Models/DiagonalCell (2).xkm3d @@ -0,0 +1,14 @@ +!Model +Id: b1824985-de15-4974-8f80-ce66c1f52ca3 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Platforms/Cells/DiagonalCell1.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + c7ee4fb3e99963c83f2e66e6599b9fae: + Name: cell2_baked + MaterialInstance: + Material: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed +Skeleton: null +~SourceHashes: + 4b507534865f5d7189f403f93279bebb~../../../../Resources/Platforms/Cells/DiagonalCell1.fbx: d12727cdee6475267e6ae066609e69db diff --git a/Starbreach/Assets/Shared/PlatformsOld/Models/DiagonalCell.xkm3d b/Starbreach/Assets/Shared/PlatformsOld/Models/DiagonalCell.xkm3d new file mode 100644 index 0000000..775c7db --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Models/DiagonalCell.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 53f290b6-d53c-4d2b-9ccd-767bdffe6695 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Platforms/Cells/DiagonalCell.fbx +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + c7ee4fb3e99963c83f2e66e6599b9fae: + Name: cell2_baked + MaterialInstance: + Material: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed +Skeleton: null +~SourceHashes: + 91413254301af350c4631e339042ede4~../../../../Resources/Platforms/Cells/DiagonalCell.fbx: 13519cb61725e0301dfe773f9e429152 diff --git a/Starbreach/Assets/Shared/PlatformsOld/Models/Pillar.xkm3d b/Starbreach/Assets/Shared/PlatformsOld/Models/Pillar.xkm3d new file mode 100644 index 0000000..f3510e5 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Models/Pillar.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 344e3d8d-1e86-46b4-8e96-130d55ab9ac1 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/Meshes/Pillar.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 92e6147f0444332c3373b18e3373b18e: + Name: pillar + MaterialInstance: + Material: 2c2b37b6-fba7-4366-87c5-8e690580575d:PlatformsOld/Materials/Pillar +Skeleton: null +~SourceHashes: + 12780c664267396f0a070f8a652a42be~../../Platforms/Meshes/Pillar.FBX: 8ae3eab118506124cac0e708b447a6a0 diff --git a/Starbreach/Assets/Shared/PlatformsOld/Models/Rails.xkm3d b/Starbreach/Assets/Shared/PlatformsOld/Models/Rails.xkm3d new file mode 100644 index 0000000..ddee69b --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Models/Rails.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: b144c0e0-a473-485a-97a9-99c8440543f9 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/Meshes/Rails.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 66d22e6d5a0389515832687658326876: + Name: rails + MaterialInstance: + Material: 1212b703-b567-40a5-ad55-bee35bebbf97:PlatformsOld/Materials/Rail +Skeleton: null +~SourceHashes: + 6366f925a4536393b60b44ca8a04cb04~../../Platforms/Meshes/Rails.FBX: 2318a7a93e5153428e153de6870c882d diff --git a/Starbreach/Assets/Shared/PlatformsOld/Models/Rails_adv.xkm3d b/Starbreach/Assets/Shared/PlatformsOld/Models/Rails_adv.xkm3d new file mode 100644 index 0000000..482ed6c --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Models/Rails_adv.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 6c557c7e-7142-44f1-808d-acaf80a392fb +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/Meshes/Rails_adv.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + cf2dc2a92489591bc118fe54e3d0d234: + Name: rails_adv + MaterialInstance: + Material: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv +Skeleton: null +~SourceHashes: + cc36c15c9189da158746b5a1d524d61b~../../Platforms/Meshes/Rails_adv.FBX: 3d7daf03e52a15bcc432e2cfa3bc5c5d diff --git a/Starbreach/Assets/Shared/PlatformsOld/Models/Rails_tube.xkm3d b/Starbreach/Assets/Shared/PlatformsOld/Models/Rails_tube.xkm3d new file mode 100644 index 0000000..7069581 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Models/Rails_tube.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 40be0e1d-f941-454c-9f18-c765c7f3bc78 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/Meshes/Rails_tube.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + cf2dc2a92489591bc118fe54e3d0d234: + Name: rails_adv + MaterialInstance: + Material: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv +Skeleton: null +~SourceHashes: + 82f71f98787c891c9b407f5551cbe6dc~../../Platforms/Meshes/Rails_tube.FBX: 1ab079110833a26ea83dac8662244608 diff --git a/Starbreach/Assets/Shared/PlatformsOld/Models/Rails_tube_C_large.xkm3d b/Starbreach/Assets/Shared/PlatformsOld/Models/Rails_tube_C_large.xkm3d new file mode 100644 index 0000000..be68c17 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Models/Rails_tube_C_large.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: d4e25abb-0b9f-490f-91f4-af70270c98c6 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/Meshes/Rails_tube_C_large.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + cf2dc2a92489591bc118fe54e3d0d234: + Name: rails_adv + MaterialInstance: + Material: 1212b703-b567-40a5-ad55-bee35bebbf97:PlatformsOld/Materials/Rail +Skeleton: null +~SourceHashes: + 317ef3bdca29835610f3d984f591db57~../../Platforms/Meshes/Rails_tube_C_large.FBX: 454702caf9c99fae692fa8329b0900e3 diff --git a/Starbreach/Assets/Shared/PlatformsOld/Models/Rails_tube_C_small.xkm3d b/Starbreach/Assets/Shared/PlatformsOld/Models/Rails_tube_C_small.xkm3d new file mode 100644 index 0000000..bc21c5b --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Models/Rails_tube_C_small.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 73c2de52-c972-4372-9608-f3ff854c1a11 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/Meshes/Rails_tube_C_small.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + cf2dc2a92489591bc118fe54e3d0d234: + Name: rails_adv + MaterialInstance: + Material: 1212b703-b567-40a5-ad55-bee35bebbf97:PlatformsOld/Materials/Rail +Skeleton: null +~SourceHashes: + 1d6b9e3efe01d8dc00408c4961560b7e~../../Platforms/Meshes/Rails_tube_C_small.FBX: 64786e2be30b38e9dd8c675fee1c8821 diff --git a/Starbreach/Assets/Shared/PlatformsOld/Models/Rails_tube_L.xkm3d b/Starbreach/Assets/Shared/PlatformsOld/Models/Rails_tube_L.xkm3d new file mode 100644 index 0000000..4398bea --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Models/Rails_tube_L.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: b2139cec-163e-4e5d-9a73-c53dbb5b0f3a +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/Meshes/Rails_tube_L.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + cf2dc2a92489591bc118fe54e3d0d234: + Name: rails_adv + MaterialInstance: + Material: 1212b703-b567-40a5-ad55-bee35bebbf97:PlatformsOld/Materials/Rail +Skeleton: null +~SourceHashes: + cf61d3e3a10c66143d48048b50d4ff79~../../Platforms/Meshes/Rails_tube_L.FBX: 5616c090fc4c1c69d9db5c2c1b590394 diff --git a/Starbreach/Assets/Shared/PlatformsOld/Models/Rails_tube_L_large.xkm3d b/Starbreach/Assets/Shared/PlatformsOld/Models/Rails_tube_L_large.xkm3d new file mode 100644 index 0000000..f02d8fe --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Models/Rails_tube_L_large.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 53b38240-687f-4a4c-ad08-8f37eb6dba89 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/Meshes/Rails_tube_L_large.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + cf2dc2a92489591bc118fe54e3d0d234: + Name: rails_adv + MaterialInstance: + Material: 1212b703-b567-40a5-ad55-bee35bebbf97:PlatformsOld/Materials/Rail +Skeleton: null +~SourceHashes: + 53f9e90543eb9d943640619751401d4b~../../Platforms/Meshes/Rails_tube_L_large.FBX: e051e78ace3f9b41e63d22e3ff846973 diff --git a/Starbreach/Assets/Shared/PlatformsOld/Models/Ring_border.xkm3d b/Starbreach/Assets/Shared/PlatformsOld/Models/Ring_border.xkm3d new file mode 100644 index 0000000..ca87476 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Models/Ring_border.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 73ccdcb9-76a6-46c8-aed0-15fbc9810af5 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/Meshes/Ring_border.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + cf2dc2a92489591bc118fe54e3d0d234: + Name: rails_adv + MaterialInstance: + Material: 1212b703-b567-40a5-ad55-bee35bebbf97:PlatformsOld/Materials/Rail +Skeleton: null +~SourceHashes: + aaab1fbad02bf257475bedf0b76b6e8b~../../Platforms/Meshes/Ring_border.FBX: 08f2ff692d64bf70e05491e517811944 diff --git a/Starbreach/Assets/Shared/PlatformsOld/Models/b_border.xkm3d b/Starbreach/Assets/Shared/PlatformsOld/Models/b_border.xkm3d new file mode 100644 index 0000000..0286754 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Models/b_border.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/Meshes/b_border.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 516dc2b077de7afb3aef5f143aef5f14: + Name: border3 + MaterialInstance: + Material: null +Skeleton: null +~SourceHashes: + 7b799da7042309615a1a267a8834f953~../../Platforms/Meshes/b_border.FBX: 00000000000000000000000000000000 diff --git a/Starbreach/Assets/Shared/PlatformsOld/Models/b_border_C_small.xkm3d b/Starbreach/Assets/Shared/PlatformsOld/Models/b_border_C_small.xkm3d new file mode 100644 index 0000000..1045e0e --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Models/b_border_C_small.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 488df5da-113b-4500-8075-a23fa6b44432 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/Meshes/b_border_C_small.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 516dc2b077de7afb3aef5f143aef5f14: + Name: border3 + MaterialInstance: + Material: null +Skeleton: null +~SourceHashes: + d3c71970e4a6a9219c9055d9e91357f9~../../Platforms/Meshes/b_border_C_small.FBX: cec6ff4f9da50b345be2be7fd388ce88 diff --git a/Starbreach/Assets/Shared/PlatformsOld/Models/b_border_L_large.xkm3d b/Starbreach/Assets/Shared/PlatformsOld/Models/b_border_L_large.xkm3d new file mode 100644 index 0000000..664fd87 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Models/b_border_L_large.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 8b962b80-b7ad-4c3c-a6a2-2c37177965e8 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/Meshes/b_border_L_large.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 516dc2b077de7afb3aef5f143aef5f14: + Name: border3 + MaterialInstance: + Material: dade43d9-ff9b-456f-a9e7-78f5a26afb39:Environment/Platforms/Materials/Borders/Border_MT +Skeleton: null +~SourceHashes: + ad53c23c75dda49a32888a4dee169151~../../Platforms/Meshes/b_border_L_large.FBX: 00000000000000000000000000000000 diff --git a/Starbreach/Assets/Shared/PlatformsOld/Models/b_border_L_small.xkm3d b/Starbreach/Assets/Shared/PlatformsOld/Models/b_border_L_small.xkm3d new file mode 100644 index 0000000..96688e6 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Models/b_border_L_small.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 5d7344f6-4708-42e0-a7e5-ccaec2aa6952 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/Meshes/b_border_L_small.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 516dc2b077de7afb3aef5f143aef5f14: + Name: border3 + MaterialInstance: + Material: null +Skeleton: null +~SourceHashes: + 868d3ae1c541de5d95d9d8d3f9b37454~../../Platforms/Meshes/b_border_L_small.FBX: fb2758c98f186ecd6d0277223f53cd92 diff --git a/Starbreach/Assets/Shared/PlatformsOld/Models/b_border_L_small_outside.xkm3d b/Starbreach/Assets/Shared/PlatformsOld/Models/b_border_L_small_outside.xkm3d new file mode 100644 index 0000000..703ef54 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Models/b_border_L_small_outside.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 3206529c-484d-4bad-938c-2f0e2e77b6a2 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/Meshes/b_border_L_small_outside.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 516dc2b077de7afb3aef5f143aef5f14: + Name: border3 + MaterialInstance: + Material: dade43d9-ff9b-456f-a9e7-78f5a26afb39:Environment/Platforms/Materials/Borders/Border_MT +Skeleton: null +~SourceHashes: + 29a455f9e604fddaa84f1f6a3bbdeb3d~../../Platforms/Meshes/b_border_L_small_outside.FBX: 8dfc2ba888cc0ccacc0202d68ad3e4ea diff --git a/Starbreach/Assets/Shared/PlatformsOld/Models/b_border_large.xkm3d b/Starbreach/Assets/Shared/PlatformsOld/Models/b_border_large.xkm3d new file mode 100644 index 0000000..02f21b8 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Models/b_border_large.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 9fa0414e-ce68-407d-b576-619a87601f45 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/Meshes/b_border_large.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 516dc2b077de7afb3aef5f143aef5f14: + Name: border3 + MaterialInstance: + Material: null +Skeleton: null +~SourceHashes: + 4adddefb8b9be78c7cd933a73dc34487~../../Platforms/Meshes/b_border_large.FBX: de096db1801ec6f756d93a3afc85a32a diff --git a/Starbreach/Assets/Shared/PlatformsOld/Models/b_border_small.xkm3d b/Starbreach/Assets/Shared/PlatformsOld/Models/b_border_small.xkm3d new file mode 100644 index 0000000..3548b5c --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Models/b_border_small.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: d867ccde-3927-4493-bdf9-b5c75b99d2c8 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/Meshes/b_border_small.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 516dc2b077de7afb3aef5f143aef5f14: + Name: border3 + MaterialInstance: + Material: null +Skeleton: null +~SourceHashes: + a18e1052de43dda0be0b6322743629e9~../../Platforms/Meshes/b_border_small.FBX: e157e6563b2457cc822a0f9b594f39ee diff --git a/Starbreach/Assets/Shared/PlatformsOld/Models/border_1.xkm3d b/Starbreach/Assets/Shared/PlatformsOld/Models/border_1.xkm3d new file mode 100644 index 0000000..1e9ef58 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Models/border_1.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 7b1ec68e-fced-4198-b0b3-b77a91b265b0 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/Meshes/border_1.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + fe0f722b28c564ae044289ea044289ea: + Name: Material + MaterialInstance: + Material: 14acd6d5-f6d1-42a7-928d-5add6341bedf:PlatformsOld/Materials/border +Skeleton: null +~SourceHashes: + ab6f5b6c35582ef8e15c0c55cf021de1~../../Platforms/Meshes/border_1.FBX: 00000000000000000000000000000000 diff --git a/Starbreach/Assets/Shared/PlatformsOld/Models/border_C_large.xkm3d b/Starbreach/Assets/Shared/PlatformsOld/Models/border_C_large.xkm3d new file mode 100644 index 0000000..c0fa14d --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Models/border_C_large.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 71e12b5e-4d32-43af-956c-5c6c336baa52 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/Meshes/border_C_large.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + fe0f722b28c564ae044289ea044289ea: + Name: Material + MaterialInstance: + Material: 14acd6d5-f6d1-42a7-928d-5add6341bedf:PlatformsOld/Materials/border +Skeleton: null +~SourceHashes: + 04f639b9ee34eceb1e8aa693d9d407a3~../../Platforms/Meshes/border_C_large.FBX: 264c50954a724190a5bbe99c1c38ec32 diff --git a/Starbreach/Assets/Shared/PlatformsOld/Models/border_C_small.xkm3d b/Starbreach/Assets/Shared/PlatformsOld/Models/border_C_small.xkm3d new file mode 100644 index 0000000..e876134 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Models/border_C_small.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 303127e3-f8e0-4fe1-bd21-708a70758ddb +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/Meshes/border_C_small.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + fe0f722b28c564ae044289ea044289ea: + Name: Material + MaterialInstance: + Material: null +Skeleton: null +~SourceHashes: + 99589e80304d0c8c9658326a120d3ffd~../../Platforms/Meshes/border_C_small.FBX: 7ad057d136aa2b6d3a570b6bf956558d diff --git a/Starbreach/Assets/Shared/PlatformsOld/Models/border_C_small_inside.xkm3d b/Starbreach/Assets/Shared/PlatformsOld/Models/border_C_small_inside.xkm3d new file mode 100644 index 0000000..d15b729 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Models/border_C_small_inside.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 1878e798-63a9-4aa8-b3ae-0f9dcf02d721 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/Meshes/border_C_small_inside.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + fe0f722b28c564ae044289ea044289ea: + Name: Material + MaterialInstance: + Material: null +Skeleton: null +~SourceHashes: + 5794ee2066abd82353d07686a07ac2be~../../Platforms/Meshes/border_C_small_inside.FBX: 8a079cb0042cbd9d5dfe60740a66691d diff --git a/Starbreach/Assets/Shared/PlatformsOld/Models/border_L_large.xkm3d b/Starbreach/Assets/Shared/PlatformsOld/Models/border_L_large.xkm3d new file mode 100644 index 0000000..6975a25 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Models/border_L_large.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: b5b3c074-7331-41cd-b88b-0d46637ffd7f +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/Meshes/border_L_large.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + fe0f722b28c564ae044289ea044289ea: + Name: Material + MaterialInstance: + Material: 9e3f4553-c2c6-4b3c-8bbe-99e49d11c87b:Environment/Platforms/Materials/Borders/Ledge_Rusted_MT +Skeleton: null +~SourceHashes: + 00d0cf7638a599c54507da725d39a7e8~../../Platforms/Meshes/border_L_large.FBX: 00000000000000000000000000000000 diff --git a/Starbreach/Assets/Shared/PlatformsOld/Models/border_L_small.xkm3d b/Starbreach/Assets/Shared/PlatformsOld/Models/border_L_small.xkm3d new file mode 100644 index 0000000..a946389 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Models/border_L_small.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: e6b30dcb-e5ce-4220-9bc2-600a3651ee1d +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/Meshes/border_L_small.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + fe0f722b28c564ae044289ea044289ea: + Name: Material + MaterialInstance: + Material: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted +Skeleton: null +~SourceHashes: + b5b72cdb51a518f91273318b9ea23add~../../Platforms/Meshes/border_L_small.FBX: 1ef810fda93386639682ac1eac65126a diff --git a/Starbreach/Assets/Shared/PlatformsOld/Models/border_L_small_M.xkm3d b/Starbreach/Assets/Shared/PlatformsOld/Models/border_L_small_M.xkm3d new file mode 100644 index 0000000..934b538 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Models/border_L_small_M.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: e0514356-d16e-4e5b-9008-9f7fb5230bce +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/Meshes/border_L_small_M.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + fe0f722b28c564ae044289ea044289ea: + Name: Material + MaterialInstance: + Material: null +Skeleton: null +~SourceHashes: + 628d622ff2e6fd10c361466f89c11af9~../../Platforms/Meshes/border_L_small_M.FBX: b507f1614cd6a33ce06f88d1b88d2974 diff --git a/Starbreach/Assets/Shared/PlatformsOld/Models/border_small_C2.xkm3d b/Starbreach/Assets/Shared/PlatformsOld/Models/border_small_C2.xkm3d new file mode 100644 index 0000000..7496964 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Models/border_small_C2.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 2bdf4195-335f-4e98-93b4-c55bb8c9f9c7 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/Meshes/border_small_C2.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + fe0f722b28c564ae044289ea044289ea: + Name: Material + MaterialInstance: + Material: null +Skeleton: null +~SourceHashes: + a376ef1c60af0a88dba015765e9ea760~../../Platforms/Meshes/border_small_C2.FBX: 3395761318b4779f90554754d37f710a diff --git a/Starbreach/Assets/Shared/PlatformsOld/Models/border_small_C2_outside.xkm3d b/Starbreach/Assets/Shared/PlatformsOld/Models/border_small_C2_outside.xkm3d new file mode 100644 index 0000000..9f76da5 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Models/border_small_C2_outside.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: ab160c30-d49c-47c7-bbc1-079f53ffd7d1 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/Meshes/border_small_C2_outside.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + 516dc2b077de7afb3aef5f143aef5f14: + Name: border3 + MaterialInstance: + Material: null +Skeleton: null +~SourceHashes: + d155ce8fb81471b5d178c0b2d65bed7b~../../Platforms/Meshes/border_small_C2_outside.FBX: 19a7a30418adb7599815303d9ecf0003 diff --git a/Starbreach/Assets/Shared/PlatformsOld/PrefabModels/Bridge_E.xkprefabmodel b/Starbreach/Assets/Shared/PlatformsOld/PrefabModels/Bridge_E.xkprefabmodel new file mode 100644 index 0000000..6788c5f --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/PrefabModels/Bridge_E.xkprefabmodel @@ -0,0 +1,6 @@ +!PrefabModelAsset +Id: 69ad7fcd-1e75-4088-be75-288477119c1a +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Materials: {} +Prefab: 3d86dedb-6ba0-4964-b730-6195e5deb651:PlatformsOld/Prefabs/Bridge_E diff --git a/Starbreach/Assets/Shared/PlatformsOld/PrefabModels/Bridge_N.xkprefabmodel b/Starbreach/Assets/Shared/PlatformsOld/PrefabModels/Bridge_N.xkprefabmodel new file mode 100644 index 0000000..e59d98e --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/PrefabModels/Bridge_N.xkprefabmodel @@ -0,0 +1,6 @@ +!PrefabModelAsset +Id: 07d0f10f-4618-4ab3-b4cc-c98f18835ac9 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Materials: {} +Prefab: e80fceec-2c70-4bb7-94b8-6bbeccf00db9:PlatformsOld/Prefabs/Bridge_N diff --git a/Starbreach/Assets/Shared/PlatformsOld/PrefabModels/Bridge_Segment_E.xkprefabmodel b/Starbreach/Assets/Shared/PlatformsOld/PrefabModels/Bridge_Segment_E.xkprefabmodel new file mode 100644 index 0000000..87558b6 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/PrefabModels/Bridge_Segment_E.xkprefabmodel @@ -0,0 +1,6 @@ +!PrefabModelAsset +Id: b655fd6f-eb3c-40e3-8634-a0f1eff3cfc5 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Materials: {} +Prefab: 3f6e78ba-304e-4293-a544-c499c32d0262:PlatformsOld/Prefabs/Bridge_Segment_E diff --git a/Starbreach/Assets/Shared/PlatformsOld/PrefabModels/Bridge_Segment_N.xkprefabmodel b/Starbreach/Assets/Shared/PlatformsOld/PrefabModels/Bridge_Segment_N.xkprefabmodel new file mode 100644 index 0000000..6778c31 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/PrefabModels/Bridge_Segment_N.xkprefabmodel @@ -0,0 +1,6 @@ +!PrefabModelAsset +Id: 2060c0da-638d-4b5d-af7d-2785faa12877 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Materials: {} +Prefab: 40286dc2-07fc-45f7-8a56-d2791b231169:PlatformsOld/Prefabs/Bridge_Segment_N diff --git a/Starbreach/Assets/Shared/PlatformsOld/PrefabModels/Center.xkprefabmodel b/Starbreach/Assets/Shared/PlatformsOld/PrefabModels/Center.xkprefabmodel new file mode 100644 index 0000000..a121cb0 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/PrefabModels/Center.xkprefabmodel @@ -0,0 +1,6 @@ +!PrefabModelAsset +Id: ef26afca-8232-45e0-b808-90e508682e2a +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Materials: {} +Prefab: 44c8f228-543c-465f-b72f-e8105edeb8a2:PlatformsOld/Prefabs/Cells_Center diff --git a/Starbreach/Assets/Shared/PlatformsOld/PrefabModels/Corner_1.xkprefabmodel b/Starbreach/Assets/Shared/PlatformsOld/PrefabModels/Corner_1.xkprefabmodel new file mode 100644 index 0000000..bfdd586 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/PrefabModels/Corner_1.xkprefabmodel @@ -0,0 +1,6 @@ +!PrefabModelAsset +Id: eea779ed-ba59-4cc1-9189-5b542d4aa063 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Materials: {} +Prefab: 1d99ac65-03cc-4f03-9879-3e8689dd7d8c:PlatformsOld/Prefabs/PlatformCorner diff --git a/Starbreach/Assets/Shared/PlatformsOld/PrefabModels/Corner_2.xkprefabmodel b/Starbreach/Assets/Shared/PlatformsOld/PrefabModels/Corner_2.xkprefabmodel new file mode 100644 index 0000000..7775637 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/PrefabModels/Corner_2.xkprefabmodel @@ -0,0 +1,6 @@ +!PrefabModelAsset +Id: 3611c152-4c13-4813-927d-09863d2f89e9 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Materials: {} +Prefab: 270d493b-1de9-4301-92d6-56b5fc7e3b93:PlatformsOld/Prefabs/PlatformCorner_M diff --git a/Starbreach/Assets/Shared/PlatformsOld/PrefabModels/Middle_E.xkprefabmodel b/Starbreach/Assets/Shared/PlatformsOld/PrefabModels/Middle_E.xkprefabmodel new file mode 100644 index 0000000..2b0bc66 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/PrefabModels/Middle_E.xkprefabmodel @@ -0,0 +1,6 @@ +!PrefabModelAsset +Id: 73cb4c42-b5ea-42ab-9fbb-5e247850c72c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Materials: {} +Prefab: 97f9230a-4bb7-4816-acb0-fc6756e7f30a:PlatformsOld/Prefabs/Middle_E diff --git a/Starbreach/Assets/Shared/PlatformsOld/PrefabModels/Middle_N.xkprefabmodel b/Starbreach/Assets/Shared/PlatformsOld/PrefabModels/Middle_N.xkprefabmodel new file mode 100644 index 0000000..3f0ca9b --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/PrefabModels/Middle_N.xkprefabmodel @@ -0,0 +1,6 @@ +!PrefabModelAsset +Id: b87c59de-bc90-49cb-b240-36a7c4ddaff3 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Materials: {} +Prefab: 04f8d1d6-3b28-4e63-85f9-4e7dfc60cedb:PlatformsOld/Prefabs/Middle_N diff --git a/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Bridge_E.xkprefab b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Bridge_E.xkprefab new file mode 100644 index 0000000..a5523a2 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Bridge_E.xkprefab @@ -0,0 +1,1572 @@ +!PrefabAsset +Id: 3d86dedb-6ba0-4964-b730-6195e5deb651 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 5f6265ce-e2e6-4a34-9a69-96c7053a0c7c + - ref!! b063a403-87d9-4306-87ae-8572e47188de + - ref!! 99538ce4-3959-4226-a52e-956c3f00b30d + - ref!! 174c5a3b-d298-4fe1-9f06-df276368bd3e + - ref!! 72dba555-94c2-4952-9fe9-2fc259daedbb + - ref!! fc5026c0-6101-49c9-88cf-997d3e08006f + - ref!! c054150a-95a4-4667-b832-0054c3e8888e + - ref!! 5e692df4-2e44-45fc-b146-eca08d715aea + - ref!! 0b251a0e-a1df-4d13-99e0-bdc92a394eda + - ref!! 6810e337-0f8a-43b8-89c2-92e7c19e7d77 + - ref!! d0352dfc-e43b-4a08-b8f5-5603e1b48189 + - ref!! 871544d1-f977-4c66-8f2a-d44886f10811 + - ref!! a3503846-ea08-4d1d-8905-53b24a40e38e + - ref!! 9b1fc1e1-4faf-4d94-ba5c-73da7d4ffc3f + - ref!! 3fda42f1-c5c9-4ebd-abe3-a699e2b3ed19 + - ref!! a6baac9c-c8c7-4c16-a431-394bbbac4fe3 + - ref!! e5103cd8-a6ec-4f3e-b03c-10086a9ba40d + - ref!! 8dcc66a1-f98b-40c8-83fd-4d1e320fa949 + - ref!! 9405d1e1-e827-45f0-91dc-ff83106815e5 + - ref!! 4ead66ac-2140-4eae-b184-b1de0b4b7aa1 + - ref!! 5c84776f-faa5-48b7-8fd6-65daef1b57a2 + - ref!! 8f6d9c44-3409-4a47-9b98-738c71202723 + - ref!! a73f1e07-6d8c-43af-a775-c427f3b57fbd + - ref!! fb2bd6f7-70e7-4915-99d5-d0d43e0b8540 + - ref!! 210abcf4-e16b-45e8-b4b1-efa61fbbdb9a + - ref!! 1e9c80f4-8964-4f41-be87-6bb528ffbe46 + - ref!! 26c13b16-f35c-4267-86a4-197986469aea + - ref!! 2d67bd5b-57fa-46fe-add7-99531a781ab5 + - ref!! 0fdf6c34-3230-45bb-bc07-aa236b9a8200 + - ref!! b55a2f1f-bfe0-4761-b939-4635eb9d23d7 + - ref!! 7f2f6fe8-f679-41dc-bebe-a51f309a58d0 + - ref!! aab6069d-fdbb-493f-8536-fc08373899f5 + - ref!! 9546ec05-8710-486d-8b1e-d3572d6fc430 + - ref!! ec766dfe-54f0-4b1f-9ca5-e114d88f54af + - ref!! 942f4052-d5df-413c-8c04-10a74181d3a6 + - ref!! f472661b-9009-43f6-a549-6de5daa8237e + - ref!! 256dd196-46f9-4542-9e73-e1304830d842 + - ref!! 4387402f-4ae5-4a83-883f-4d318a7c26bd + - ref!! c952cd0e-db0d-4cd2-9ce7-7b5ab5ac737d + Parts: + - Entity: + Id: 00b99850-90d7-4014-9081-8042f0c48633 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: c8a1be11-ce88-447d-adaf-2845b5728fb2 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: c0e46a34-ffbb-46ef-b879-b1dc2a1a2f49 + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: a14d6078-9b64-4f30-88a3-99e4bdbe32c2 + - Entity: + Id: 0551a38a-d577-4c6d-a7a3-5938c8280364 + Name: Rails_tube_L + Components: + bd2b4b3c84df2f439b0519b378e7f817: !TransformComponent + Id: 3c4b2bbd-df84-432f-9b05-19b378e7f817 + Position: {X: -0.0480509177, Y: 3.17927885, Z: 0.0614198036} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c334293b82e83142b3dd04b3f5cf8202: !ModelComponent + Id: 3b2934c3-e882-4231-b3dd-04b3f5cf8202 + Model: b2139cec-163e-4e5d-9a73-c53dbb5b0f3a:PlatformsOld/Models/Rails_tube_L + Materials: + ccadb09936f1334db758b0a075a047e4~0: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv + Base: + BasePartAsset: cf1361d5-4756-46c4-bf91-90a5987c0a5a:PlatformsOld/Prefabs/L_small_out + BasePartId: 6bba10d7-bd83-40b6-99ef-8fdd7ee92a7d + InstanceId: 9ffeda60-568a-4a78-9d23-713639446bff + - Entity: + Id: 0b251a0e-a1df-4d13-99e0-bdc92a394eda + Name: Cell_Loop (7) + Components: + 24d32a439845424b995938499bc29e30: !TransformComponent + Id: 432ad324-4598-4b42-9959-38499bc29e30 + Position: {X: 8.0, Y: 0.0, Z: 4.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 0a3712de-0f5c-4949-8c19-6a676ff51f91 + - Entity: + Id: 0fdf6c34-3230-45bb-bc07-aa236b9a8200 + Name: Cell_Loop_Half2 (4) + Components: + d7699e5885f5a64d9a6e2678f5b6340c: !TransformComponent + Id: 589e69d7-f585-4da6-9a6e-2678f5b6340c + Position: {X: -1.999999, Y: 0.0, Z: 1.5} + Rotation: {X: 0.0, Y: -1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 8434e026-b97c-4fd1-9d76-d656fe3ed00c + - Entity: + Id: 174c5a3b-d298-4fe1-9f06-df276368bd3e + Name: Cell_Loop (2) + Components: + 24d32a439845424b995938499bc29e30: !TransformComponent + Id: 7984eb85-8971-484d-babb-b51fc49020e2 + Position: {X: 12.0, Y: 0.0, Z: 1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 527eb6b1-7dbf-4efc-96a7-bb58dc93ba46 + - Entity: + Id: 1e9c80f4-8964-4f41-be87-6bb528ffbe46 + Name: Cell_Loop_Half2 + Components: + d7699e5885f5a64d9a6e2678f5b6340c: !TransformComponent + Id: 12435f5a-10e5-4521-afc2-49b2e682e9b1 + Position: {X: -1.99999988, Y: 0.0, Z: -1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! c8a1be11-ce88-447d-adaf-2845b5728fb2 + - Entity: + Id: 1f464d6e-03f6-445c-b4a7-b8d6590ef68d + Name: border_1 (3) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: f53ed459-5840-461e-9c03-31197663531a + Position: {X: 0.0, Y: -2.0, Z: 6.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: cf3c3525-0b32-4b67-b48d-523a5323eb69 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: cefd5c0a-8d96-4cb7-8f96-43426815654d + InstanceId: c17499a4-da04-463d-a95b-a93f33ab192c + - Entity: + Id: 210abcf4-e16b-45e8-b4b1-efa61fbbdb9a + Name: Cell_Loop (25) + Components: + 24d32a439845424b995938499bc29e30: !TransformComponent + Id: 96ce92a6-ad0f-4e67-9461-e88e3cc06632 + Position: {X: -4.0, Y: 0.0, Z: 1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 128293cc-37ce-43fe-8503-2958b852c4e6 + - Entity: + Id: 2408217f-4b44-45e7-9e32-ac71e75bb59c + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 5e09414a-2f07-49f4-8951-3d20a8229dd3 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: d6f276df-0429-40ce-ba37-6f9b382a315d + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: a005f970-7823-4d97-aa23-1372c5c159c9 + - Entity: + Id: 256dd196-46f9-4542-9e73-e1304830d842 + Name: border_3-75 (2) + Components: + 0868a71677719641ab17bb242bd827c3: !TransformComponent + Id: 16a76808-7177-4196-ab17-bb242bd827c3 + Position: {X: -8.000001, Y: 0.0, Z: -3.5} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 0.867} + Children: + 59d43ef540581e469c0331197663531a: ref!! f53ed459-5840-461e-9c03-31197663531a + 46ae890674598e4f9731fed939373fe4: ref!! 0689ae46-5974-4f8e-9731-fed939373fe4 + 4ad43f07ccf7fc1b6b005c1bea04627b: ref!! 7e0a50c2-1cb0-45a0-9114-e7fc669dfeb3 + bbb9b7561c894a1042b4be38707e456c: ref!! fcddd7f8-3564-49bb-b37b-fe56ac2c6b07 + 80720280dee53f791b434d33447baaa0: ref!! 8d01e3e7-8a59-4dae-938a-00f3e1314b64 + 887dfb483aaf5fbc8080618c074f92e0: ref!! 3bc2d895-e938-4873-885b-3f73a9b41151 + - Entity: + Id: 263d3776-19d9-4f91-b50a-5f0bc37acdcc + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: a36f49ae-bf9a-46d0-9d87-d18fb8ca05fb + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 3c6dfc24-af51-4fac-94da-0aa57da9f0a0 + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 7659e3d1-a2c6-4a36-97ad-ced72169df42 + - Entity: + Id: 26c13b16-f35c-4267-86a4-197986469aea + Name: Cell_Loop_Half2 (2) + Components: + d7699e5885f5a64d9a6e2678f5b6340c: !TransformComponent + Id: 09a44853-19cf-4925-bc5a-8859e70735d8 + Position: {X: -3.99999976, Y: 0.0, Z: -1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 1ff3732f-e866-4cbf-877c-86fa8c929614 + - Entity: + Id: 2845c30c-0286-49de-874f-36c12cfa51b2 + Name: border_L_small + Components: + 36bde24588195942a938b846329516ff: !TransformComponent + Id: 45e2bd36-1988-4259-a938-b846329516ff + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + b2118b038cbfe8468c90b8162655350f: !ModelComponent + Id: 038b11b2-bf8c-46e8-8c90-b8162655350f + Model: e6b30dcb-e5ce-4220-9bc2-600a3651ee1d:PlatformsOld/Models/border_L_small + Materials: + 52b322b93322284390399348912756d5~0: 14acd6d5-f6d1-42a7-928d-5add6341bedf:PlatformsOld/Materials/border + Base: + BasePartAsset: cf1361d5-4756-46c4-bf91-90a5987c0a5a:PlatformsOld/Prefabs/L_small_out + BasePartId: ef8df8ca-843c-40c9-8ae6-8885e2c28b27 + InstanceId: 9ffeda60-568a-4a78-9d23-713639446bff + - Entity: + Id: 2936de6a-81f8-4af1-81e3-e99563253005 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 9cd61123-6d71-4bf0-8a89-66e826f9f454 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: ef165406-1770-4424-9044-9e07440053e6 + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: e01cdb91-25b4-4f05-b4ac-d2c0e5f32762 + - Entity: + Id: 2d67bd5b-57fa-46fe-add7-99531a781ab5 + Name: Cell_Loop_Half2 (3) + Components: + d7699e5885f5a64d9a6e2678f5b6340c: !TransformComponent + Id: a3907a8f-65c2-4dd9-8a79-ad9f32ac1f32 + Position: {X: 2.38418579E-07, Y: 0.0, Z: 1.5} + Rotation: {X: 0.0, Y: -1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 5e09414a-2f07-49f4-8951-3d20a8229dd3 + - Entity: + Id: 3d5073c5-a8f7-49fa-80e5-c8b957ae99be + Name: b_border (3) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 0689ae46-5974-4f8e-9731-fed939373fe4 + Position: {X: 0.0, Y: -2.0, Z: 6.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: a3a5a0a7-2f3c-4ceb-b0f1-e3a3127f0566 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 2ebd5bea-fe0d-45c7-94a6-f397044d293c + InstanceId: c17499a4-da04-463d-a95b-a93f33ab192c + - Entity: + Id: 3dc662e0-34d5-4e4f-8bdf-1c54b2b17cc0 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 746653c7-74fa-45be-b94c-6445bf156d01 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 01179730-9dc1-4a1e-878b-453c7142b1b3 + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 77fa1bba-de2f-4532-9b87-2678a9f5316c + - Entity: + Id: 3fda42f1-c5c9-4ebd-abe3-a699e2b3ed19 + Name: Cell_Loop (13) + Components: + 24d32a439845424b995938499bc29e30: !TransformComponent + Id: 7bb6f9d9-b4a6-4c8e-b621-15cd44ebb8b3 + Position: {X: 4.0, Y: 0.0, Z: 1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! a36f49ae-bf9a-46d0-9d87-d18fb8ca05fb + - Entity: + Id: 405f87c9-0993-4c43-ad48-5da35e52fe2a + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 42483d46-e762-4095-974a-2892f4fd6310 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 83311231-27a3-4bff-aa08-fa41cb7dd2bc + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: a41dd184-8f73-4aec-a5e0-25328ba6a437 + - Entity: + Id: 4387402f-4ae5-4a83-883f-4d318a7c26bd + Name: rails_straight + Components: + bf1df18b1fc97547ba6b9e6a9e11ad2a: !TransformComponent + Id: 8bf11dbf-c91f-4775-ba6b-9e6a9e11ad2a + Position: {X: -8.0, Y: 0.0, Z: -3.50000048} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 0.8287469} + Children: + 53aa6e32d59eeb45aabd52fde17cd48d: ref!! 326eaa53-9ed5-45eb-aabd-52fde17cd48d + - Entity: + Id: 450dc1e9-cfe3-4c2a-bc25-8054b8e40461 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 7fc5940a-ab41-43a6-a628-eb67462c9bf1 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 1f851b4b-22d9-4d6f-b73c-6d833571aa00 + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 9d3f9c08-5bf9-45e1-971c-945425bf7c24 + - Entity: + Id: 4c294a02-4f6c-411c-bfe1-de275e5a53b5 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: c2868197-b4f1-4a71-9916-2361faaeaa6f + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 17082d93-7bc6-44cd-a2be-0371fe76d02e + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 9d97ff79-0518-4fad-9cfb-eeb024844b18 + - Entity: + Id: 4ead66ac-2140-4eae-b184-b1de0b4b7aa1 + Name: Cell_Loop (18) + Components: + 24d32a439845424b995938499bc29e30: !TransformComponent + Id: ba1caaa8-d5de-4a96-871f-43889cee0e6c + Position: {X: 2.0, Y: 0.0, Z: 4.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 7fc5940a-ab41-43a6-a628-eb67462c9bf1 + - Entity: + Id: 4f70e32d-a153-41b3-9e32-59d1ff6aa387 + Name: b_border_L_small + Components: + 97b82cffd9b03d47aaeb02402b66e8db: !TransformComponent + Id: ff2cb897-b0d9-473d-aaeb-02402b66e8db + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 4d9110a1d99be142ba33a39310bb42cb: !ModelComponent + Id: a110914d-9bd9-42e1-ba33-a39310bb42cb + Model: 5d7344f6-4708-42e0-a7e5-ccaec2aa6952:PlatformsOld/Models/b_border_L_small + Materials: + 67115b975636144f95aaaff094ceaee9~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: cf1361d5-4756-46c4-bf91-90a5987c0a5a:PlatformsOld/Prefabs/L_small_out + BasePartId: 8cde3c03-0d9e-4c56-aa72-80d1484b8375 + InstanceId: 9ffeda60-568a-4a78-9d23-713639446bff + - Entity: + Id: 507d67d4-e524-4797-9464-f995757249b2 + Name: Rails_tube_L + Components: + bd2b4b3c84df2f439b0519b378e7f817: !TransformComponent + Id: 5329f14f-a470-487d-bcc7-0b04cde8391a + Position: {X: -0.0480509177, Y: 3.17927885, Z: 0.0614198036} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c334293b82e83142b3dd04b3f5cf8202: !ModelComponent + Id: 4af934e1-8d34-405c-ab62-4be5f1042907 + Model: b2139cec-163e-4e5d-9a73-c53dbb5b0f3a:PlatformsOld/Models/Rails_tube_L + Materials: + ccadb09936f1334db758b0a075a047e4~0: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv + Base: + BasePartAsset: cf1361d5-4756-46c4-bf91-90a5987c0a5a:PlatformsOld/Prefabs/L_small_out + BasePartId: 6bba10d7-bd83-40b6-99ef-8fdd7ee92a7d + InstanceId: de5242c3-145c-44bc-94db-3cbfe3f54606 + - Entity: + Id: 53f9bdba-45a8-4a9e-9bbe-bb7df252e19b + Name: border_1 + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 1d3ed6b0-f11a-43db-97f4-c39515ed7a4c + Position: {X: 0.0, Y: -2.0, Z: 1.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: 6e6b8f57-a091-4655-b581-a2e5812b7443 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + InstanceId: 22b210ed-8f57-4eca-9fe3-f350342de7df + - Entity: + Id: 5602d4a7-45a6-42b3-80fc-c47463cae965 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 1d1890cd-2894-4f36-9c92-45089f04063f + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 08821ad2-31ab-4a04-ac9b-7d272d53af16 + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: d8f5f53e-530c-488f-8296-bb7cdb09f4fc + - Entity: + Id: 59e8bc52-ec3c-4444-b787-27b0b038c360 + Name: b_border (2) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: fcddd7f8-3564-49bb-b37b-fe56ac2c6b07 + Position: {X: 0.0, Y: -2.0, Z: 3.75} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: 1a0b3a2a-6381-4998-a215-340d2f0be0c4 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 578bb7fc-40be-4480-983d-fde8008120bd + InstanceId: c17499a4-da04-463d-a95b-a93f33ab192c + - Entity: + Id: 5c84776f-faa5-48b7-8fd6-65daef1b57a2 + Name: Cell_Loop (19) + Components: + 24d32a439845424b995938499bc29e30: !TransformComponent + Id: 8e5da1ac-5218-4474-945b-52f9f022016f + Position: {X: 0.0, Y: 0.0, Z: 1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 537ca6c3-754a-4bd0-aa22-89420a9d9071 + - Entity: + Id: 5e692df4-2e44-45fc-b146-eca08d715aea + Name: Cell_Loop (6) + Components: + 24d32a439845424b995938499bc29e30: !TransformComponent + Id: aa3af7e0-67dc-4158-8940-070d4fcb20f5 + Position: {X: 10.0, Y: 0.0, Z: -1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 7f6ab7d8-71b3-4f13-b801-81ec972ee1c8 + - Entity: + Id: 5f6265ce-e2e6-4a34-9a69-96c7053a0c7c + Name: L_small_out + Components: + 23f9f25c14b78444a817575781baa390: !TransformComponent + Id: 5cf2f923-b714-4484-a817-575781baa390 + Position: {X: -0.499999881, Y: -2.0, Z: 3.5} + Rotation: {X: 0.0, Y: -1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 36bde24588195942a938b846329516ff: ref!! 45e2bd36-1988-4259-a938-b846329516ff + 97b82cffd9b03d47aaeb02402b66e8db: ref!! ff2cb897-b0d9-473d-aaeb-02402b66e8db + 67f6aa0148b7d84a8e2f2b02a371cdb6: ref!! 01aaf667-b748-4ad8-8e2f-2b02a371cdb6 + 66fd96c9589943b999075387812e3291: ref!! 075584c7-bb2d-42fe-a8eb-5422927678af + bd2b4b3c84df2f439b0519b378e7f817: ref!! 3c4b2bbd-df84-432f-9b05-19b378e7f817 + - Entity: + Id: 5fc6901d-4d8b-4e49-be92-d4cb4e40a183 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 8c2e34aa-4bd2-4c74-8611-e3b244ab5670 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: be4fae3c-1ad2-42b4-b73d-930dbb85e657 + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: f5b3f9b9-1b2f-47a7-88cf-731516ef1e1e + - Entity: + Id: 6810e337-0f8a-43b8-89c2-92e7c19e7d77 + Name: Cell_Loop (8) + Components: + 24d32a439845424b995938499bc29e30: !TransformComponent + Id: 969740c3-acde-430d-a61e-bd59848a4dfc + Position: {X: 8.0, Y: 0.0, Z: 1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 50beb2b4-1f8f-427a-b5f6-f2e5b81a2c75 + - Entity: + Id: 6e376c9e-e308-4157-83e6-5fc1a5365c57 + Name: border_1 (2) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 7e0a50c2-1cb0-45a0-9114-e7fc669dfeb3 + Position: {X: 0.0, Y: -2.0, Z: 3.75} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: 655d5345-59dd-4955-974b-66dca7cc9cf2 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 583af927-6553-490b-bf64-604837d74650 + InstanceId: c17499a4-da04-463d-a95b-a93f33ab192c + - Entity: + Id: 72dba555-94c2-4952-9fe9-2fc259daedbb + Name: Cell_Loop (3) + Components: + 24d32a439845424b995938499bc29e30: !TransformComponent + Id: bca59a8d-5ca2-4ac7-b698-896a8d3ed73c + Position: {X: 12.0, Y: 0.0, Z: -1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 5b257d00-cd22-4822-b054-466812a4ae28 + - Entity: + Id: 7f2f6fe8-f679-41dc-bebe-a51f309a58d0 + Name: Cell_Loop_Half2 (6) + Components: + d7699e5885f5a64d9a6e2678f5b6340c: !TransformComponent + Id: bd550131-a821-4877-8f1f-3e10a4c97a82 + Position: {X: -5.999999, Y: 0.0, Z: 1.5} + Rotation: {X: 0.0, Y: -1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 1d1890cd-2894-4f36-9c92-45089f04063f + - Entity: + Id: 857cff9a-b57b-48db-8658-9ee1e4939d2c + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 7a49d1ea-1f98-4771-a180-635d08e43370 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: a44e866a-ddb3-4bb4-9e8e-ddfef28e42b3 + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 76fd0ff0-0a53-4c1d-9384-0c8493b81995 + - Entity: + Id: 871544d1-f977-4c66-8f2a-d44886f10811 + Name: Cell_Loop (10) + Components: + 24d32a439845424b995938499bc29e30: !TransformComponent + Id: 76ddce44-7347-47f3-8968-0b8312550867 + Position: {X: 6.0, Y: 0.0, Z: 4.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 0954eca1-49c8-4458-a745-70a33a28b287 + - Entity: + Id: 8abf7625-1d27-4b7f-90ee-58e7b4417aeb + Name: border_1 (3) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 80afb1c6-d9f8-4245-bd6c-2fcf541c193a + Position: {X: 0.0, Y: -2.0, Z: 6.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: bb1fab5a-581c-4e7c-b63d-75b656b0c844 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: cefd5c0a-8d96-4cb7-8f96-43426815654d + InstanceId: 22b210ed-8f57-4eca-9fe3-f350342de7df + - Entity: + Id: 8ac07137-697d-43fe-9258-19f4c58abe22 + Name: b_border (2) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 2a132f88-a2c7-4b7d-b682-13fba8f72db7 + Position: {X: 0.0, Y: -2.0, Z: 3.75} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: d274418f-abdf-4bf0-ae45-0f86024eb7be + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 578bb7fc-40be-4480-983d-fde8008120bd + InstanceId: 22b210ed-8f57-4eca-9fe3-f350342de7df + - Entity: + Id: 8c03f6f7-a9b1-4316-8b08-9426ea157d63 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 5b257d00-cd22-4822-b054-466812a4ae28 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: e2d2bc45-da89-4f5a-9907-fa25d779138e + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: a6de5e82-0dc0-47f0-a77f-689ec5c5a776 + - Entity: + Id: 8c29d369-ff78-47c2-9c13-b7c4ed8c19ba + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 8434e026-b97c-4fd1-9d76-d656fe3ed00c + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 36190c88-3f33-4cf9-ae3c-17d9fda3f30d + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: a606629e-8e1c-4f98-b548-8d56a3784369 + - Entity: + Id: 8cc4d677-4841-4397-862a-72abc3e9628c + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: d7818698-8a4f-4343-b8b7-8763e3993e04 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 34591d1d-a295-457a-8eb1-1b47ede8810b + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: dbaf7108-17d2-4dad-b7ad-3cc160f1f31b + - Entity: + Id: 8d9cd527-0928-4542-a574-a50bf58b8c55 + Name: border_L_small + Components: + 36bde24588195942a938b846329516ff: !TransformComponent + Id: 897c79f5-0335-428b-b53d-ab3fcfd0f37e + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + b2118b038cbfe8468c90b8162655350f: !ModelComponent + Id: 74152eb3-6b91-4ad0-a16e-3dac8a3865ed + Model: e6b30dcb-e5ce-4220-9bc2-600a3651ee1d:PlatformsOld/Models/border_L_small + Materials: + 52b322b93322284390399348912756d5~0: 14acd6d5-f6d1-42a7-928d-5add6341bedf:PlatformsOld/Materials/border + Base: + BasePartAsset: cf1361d5-4756-46c4-bf91-90a5987c0a5a:PlatformsOld/Prefabs/L_small_out + BasePartId: ef8df8ca-843c-40c9-8ae6-8885e2c28b27 + InstanceId: de5242c3-145c-44bc-94db-3cbfe3f54606 + - Entity: + Id: 8dcc66a1-f98b-40c8-83fd-4d1e320fa949 + Name: Cell_Loop (16) + Components: + 24d32a439845424b995938499bc29e30: !TransformComponent + Id: 92cc7518-739c-48e6-ae21-560889265972 + Position: {X: 2.0, Y: 0.0, Z: 1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 1302a463-b103-4fbc-9b3d-4cf26c662eab + - Entity: + Id: 8f5d88b3-9f7a-42eb-8bdf-06318cea4f64 + Name: b_border + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 3bc2d895-e938-4873-885b-3f73a9b41151 + Position: {X: 0.0, Y: -2.0, Z: 1.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: 20cc5835-d42e-4295-8389-84d0dbc9af6b + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: {} + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 753ce80b-d972-427a-8c5b-51c735743184 + InstanceId: c17499a4-da04-463d-a95b-a93f33ab192c + - Entity: + Id: 8f6d9c44-3409-4a47-9b98-738c71202723 + Name: Cell_Loop (20) + Components: + 24d32a439845424b995938499bc29e30: !TransformComponent + Id: 3d8867f8-6f3f-41cb-875e-d8c618b85ad8 + Position: {X: 0.0, Y: 0.0, Z: -1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 7ccbb390-6973-4122-b586-4087fc1b4bf6 + - Entity: + Id: 9328aff5-1cf8-4015-bd85-641dd726cbe7 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 1302a463-b103-4fbc-9b3d-4cf26c662eab + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: a26d6a34-e805-4177-92fa-1b4ddf98998f + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 88323726-d3ec-408f-bb52-fdc8118927cd + - Entity: + Id: 9405d1e1-e827-45f0-91dc-ff83106815e5 + Name: Cell_Loop (17) + Components: + 24d32a439845424b995938499bc29e30: !TransformComponent + Id: 1d93183d-e5ce-403f-9c71-382b3f77770f + Position: {X: 2.0, Y: 0.0, Z: -1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! fa5e7441-b72d-4f7a-accb-27183c02507b + - Entity: + Id: 942f4052-d5df-413c-8c04-10a74181d3a6 + Name: Cell_Loop_Half2 (8) + Components: + d7699e5885f5a64d9a6e2678f5b6340c: !TransformComponent + Id: 3871fd8c-a750-409b-9656-399241fcbd23 + Position: {X: -8.0, Y: 0.0, Z: -1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 7a49d1ea-1f98-4771-a180-635d08e43370 + - Entity: + Id: 9546ec05-8710-486d-8b1e-d3572d6fc430 + Name: Cell_Loop (23) + Components: + 24d32a439845424b995938499bc29e30: !TransformComponent + Id: 5aee5157-1515-4fc5-a850-29e2e2367096 + Position: {X: -6.0, Y: 0.0, Z: 1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! bbbb195a-325f-43ce-a14c-31be5b1b1051 + - Entity: + Id: 97776c60-5eab-43bd-985a-bd8ba597a809 + Name: border_1 + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 8d01e3e7-8a59-4dae-938a-00f3e1314b64 + Position: {X: 0.0, Y: -2.0, Z: 1.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: c634c64c-8747-4652-a48a-d6e10abc5554 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + InstanceId: c17499a4-da04-463d-a95b-a93f33ab192c + - Entity: + Id: 99538ce4-3959-4226-a52e-956c3f00b30d + Name: Cell_Loop + Components: + 24d32a439845424b995938499bc29e30: !TransformComponent + Id: a4992bf3-e4ae-49a3-a78d-e2ae5b247597 + Position: {X: 12.0, Y: 0.0, Z: 4.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 8bc341eb-69f9-4b58-817f-64d2a92166fd + - Entity: + Id: 9ac16c76-b6fc-426b-8d25-e68790436724 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 7f6ab7d8-71b3-4f13-b801-81ec972ee1c8 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 4062dac5-b8c2-47ec-b1fd-52f03adc4a85 + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 4e7b1e58-05ef-44d2-8101-1d12d75e78d3 + - Entity: + Id: 9b1fc1e1-4faf-4d94-ba5c-73da7d4ffc3f + Name: Cell_Loop (12) + Components: + 24d32a439845424b995938499bc29e30: !TransformComponent + Id: b713c0fd-0111-4c42-854d-2ce5e7b06c6a + Position: {X: 6.0, Y: 0.0, Z: -1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 9ef88d06-73f0-4e30-b577-d5b6bb757212 + - Entity: + Id: a34631cc-7b9c-471d-b71b-5fad65285df2 + Name: Rails_adv + Components: + 67f6aa0148b7d84a8e2f2b02a371cdb6: !TransformComponent + Id: 00a65be9-1302-4aca-b53c-baf59b7aa6f5 + Position: {X: 0.0, Y: 0.0, Z: -1.0} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c280a78ea2cdb84b9f99ea3306f71c2b: !ModelComponent + Id: 8ea780c2-cda2-4bb8-9f99-ea3306f71c2b + Model: 6c557c7e-7142-44f1-808d-acaf80a392fb:PlatformsOld/Models/Rails_adv + Materials: + ccadb09936f1334db758b0a075a047e4~0: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv + Base: + BasePartAsset: cf1361d5-4756-46c4-bf91-90a5987c0a5a:PlatformsOld/Prefabs/L_small_out + BasePartId: 53b861bf-60de-4763-ac7b-7ca47a721cbf + InstanceId: de5242c3-145c-44bc-94db-3cbfe3f54606 + - Entity: + Id: a3503846-ea08-4d1d-8905-53b24a40e38e + Name: Cell_Loop (11) + Components: + 24d32a439845424b995938499bc29e30: !TransformComponent + Id: 68de59be-0142-4d8b-9952-5891cf808764 + Position: {X: 6.0, Y: 0.0, Z: 1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 2f311e41-6ed2-4b5b-b714-ee1a31d930a8 + - Entity: + Id: a6baac9c-c8c7-4c16-a431-394bbbac4fe3 + Name: Cell_Loop (14) + Components: + 24d32a439845424b995938499bc29e30: !TransformComponent + Id: 5ff05aa2-9dc7-4ebb-ba2d-11405b53f67b + Position: {X: 4.0, Y: 0.0, Z: -1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! d7818698-8a4f-4343-b8b7-8763e3993e04 + - Entity: + Id: a73f1e07-6d8c-43af-a775-c427f3b57fbd + Name: Cell_Loop (21) + Components: + 24d32a439845424b995938499bc29e30: !TransformComponent + Id: 2ee782d1-a4bf-41ec-9c8e-e67faa9bc0e7 + Position: {X: 0.0, Y: 0.0, Z: 4.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! c2868197-b4f1-4a71-9916-2361faaeaa6f + - Entity: + Id: a9667181-dea8-40eb-97d0-b832e64d0b36 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 7ccbb390-6973-4122-b586-4087fc1b4bf6 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 5b1072de-79db-4fd9-8166-2f3b749cccbe + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 34aa761c-9e84-41b9-9028-a7d0c62dd08c + - Entity: + Id: aab6069d-fdbb-493f-8536-fc08373899f5 + Name: Cell_Loop (26) + Components: + 24d32a439845424b995938499bc29e30: !TransformComponent + Id: 798aa025-a92a-46af-9a5d-a360abf2b6d7 + Position: {X: -8.0, Y: 0.0, Z: 1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 9cd61123-6d71-4bf0-8a89-66e826f9f454 + - Entity: + Id: ac6e8081-2634-4ba0-9334-0b77d8b47823 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: d5eb9fcd-411b-42d1-8815-ee8f33a0f6e0 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 359c61aa-3ae3-449c-a815-1d513571675e + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 35b4c530-9545-4797-9eed-36bac1d23d96 + - Entity: + Id: ad2e29a5-1d41-430c-9fc8-d2b5d2b13996 + Name: Rails_tube (2) + Components: + 53aa6e32d59eeb45aabd52fde17cd48d: !TransformComponent + Id: 17ed3ede-1e09-40eb-ab53-15d1fa06cb41 + Position: {X: -0.06581557, Y: 1.219562, Z: 4.052} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 0.85, Z: 0.85} + Children: {} + 0225b2a01b17f94d8b22f766fa64fa9b: !ModelComponent + Id: a0b22502-171b-4df9-8b22-f766fa64fa9b + Model: 40be0e1d-f941-454c-9f18-c765c7f3bc78:PlatformsOld/Models/Rails_tube + Materials: {} + Base: + BasePartAsset: fca227cf-3f9e-4d9a-96eb-db7a23bf62fd:PlatformsOld/Prefabs/rails_straight + BasePartId: d78c8476-d01e-4383-98cc-9691ec3d06e7 + InstanceId: 0c6f39fc-8d48-4fad-8ef1-2f14033414c6 + - Entity: + Id: ade9aa08-5e54-4fe0-8f47-29dd342e190b + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 967bc240-fffc-4f5f-ac54-39f721ba629f + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 8ab0604d-7975-4286-80dd-86b80bb51a6d + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: e4631d1e-e48b-482d-bbf5-e28f6e0abda8 + - Entity: + Id: ae81e679-244c-47e7-ac31-82a24261ab0b + Name: border_1 (2) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 17228bd5-2f3a-4635-8151-7cd273d3f338 + Position: {X: 0.0, Y: -2.0, Z: 3.75} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: 40bd3adf-42f0-427f-8e25-33a6bd02aa41 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 583af927-6553-490b-bf64-604837d74650 + InstanceId: 22b210ed-8f57-4eca-9fe3-f350342de7df + - Entity: + Id: b063a403-87d9-4306-87ae-8572e47188de + Name: L_small_out (2) + Components: + 23f9f25c14b78444a817575781baa390: !TransformComponent + Id: b57af293-c8be-4296-9a5b-46e0f927ef21 + Position: {X: -0.499999881, Y: -2.0, Z: -3.5} + Rotation: {X: 0.0, Y: -1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: -1.0} + Children: + 36bde24588195942a938b846329516ff: ref!! 897c79f5-0335-428b-b53d-ab3fcfd0f37e + 97b82cffd9b03d47aaeb02402b66e8db: ref!! bb0e497e-ab86-4911-9a0c-fe15510dc9f2 + 67f6aa0148b7d84a8e2f2b02a371cdb6: ref!! 00a65be9-1302-4aca-b53c-baf59b7aa6f5 + b9ad88a47c87685e037c6c3f93f52815: ref!! 75001b1f-42dd-44d2-bd34-3a4d3b905bd2 + bd2b4b3c84df2f439b0519b378e7f817: ref!! 5329f14f-a470-487d-bcc7-0b04cde8391a + - Entity: + Id: b55a2f1f-bfe0-4761-b939-4635eb9d23d7 + Name: Cell_Loop_Half2 (5) + Components: + d7699e5885f5a64d9a6e2678f5b6340c: !TransformComponent + Id: 8b937f85-5f07-428b-a7e9-ef0a6d8b0281 + Position: {X: -3.99999976, Y: 0.0, Z: 1.5} + Rotation: {X: 0.0, Y: -1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 42483d46-e762-4095-974a-2892f4fd6310 + - Entity: + Id: b61322f9-7ab8-4eb8-a784-7c81dfb79ed8 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 128293cc-37ce-43fe-8503-2958b852c4e6 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 4f32615d-a578-49cf-991d-68334c6b830f + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 0d0a4506-728b-4896-ad94-839174e2cd5b + - Entity: + Id: b8a9db34-753a-42ce-b12b-4c99b0ddd080 + Name: Rails_adv + Components: + 67f6aa0148b7d84a8e2f2b02a371cdb6: !TransformComponent + Id: 01aaf667-b748-4ad8-8e2f-2b02a371cdb6 + Position: {X: 0.0, Y: 0.0, Z: -1.0} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c280a78ea2cdb84b9f99ea3306f71c2b: !ModelComponent + Id: e59667ae-684f-4966-b39c-15265255e0b3 + Model: 6c557c7e-7142-44f1-808d-acaf80a392fb:PlatformsOld/Models/Rails_adv + Materials: + ccadb09936f1334db758b0a075a047e4~0: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv + Base: + BasePartAsset: cf1361d5-4756-46c4-bf91-90a5987c0a5a:PlatformsOld/Prefabs/L_small_out + BasePartId: 53b861bf-60de-4763-ac7b-7ca47a721cbf + InstanceId: 9ffeda60-568a-4a78-9d23-713639446bff + - Entity: + Id: bbf7ec27-1f60-4581-845c-7ec556fee205 + Name: Rails_tube (2) + Components: + 53aa6e32d59eeb45aabd52fde17cd48d: !TransformComponent + Id: 326eaa53-9ed5-45eb-aabd-52fde17cd48d + Position: {X: -0.06581557, Y: 1.219562, Z: 4.052} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 0.85, Z: 0.85} + Children: {} + 0225b2a01b17f94d8b22f766fa64fa9b: !ModelComponent + Id: 1ff7b0f7-7fd9-4447-991f-36e1710dd022 + Model: 40be0e1d-f941-454c-9f18-c765c7f3bc78:PlatformsOld/Models/Rails_tube + Materials: {} + Base: + BasePartAsset: fca227cf-3f9e-4d9a-96eb-db7a23bf62fd:PlatformsOld/Prefabs/rails_straight + BasePartId: d78c8476-d01e-4383-98cc-9691ec3d06e7 + InstanceId: df4c9d09-6bf6-48f1-917c-c368a047ccd6 + - Entity: + Id: bf66f774-d3d1-46e0-a252-f1d602abe61e + Name: b_border + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 66149d1f-2ecb-4b5f-8eeb-60d66204acec + Position: {X: 0.0, Y: -2.0, Z: 1.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: bbaf199c-e21d-4a8a-9740-bc6856f0de51 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: {} + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 753ce80b-d972-427a-8c5b-51c735743184 + InstanceId: 22b210ed-8f57-4eca-9fe3-f350342de7df + - Entity: + Id: c054150a-95a4-4667-b832-0054c3e8888e + Name: Cell_Loop (5) + Components: + 24d32a439845424b995938499bc29e30: !TransformComponent + Id: ad33d9dd-a89d-40a3-b81e-56f8e4e48ed5 + Position: {X: 10.0, Y: 0.0, Z: 1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! c6ffa265-0795-4e5e-88b6-b33074afa9d9 + - Entity: + Id: c0b18b59-1c4d-4f7a-9119-73037831f547 + Name: b_border_L_small + Components: + 97b82cffd9b03d47aaeb02402b66e8db: !TransformComponent + Id: bb0e497e-ab86-4911-9a0c-fe15510dc9f2 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 4d9110a1d99be142ba33a39310bb42cb: !ModelComponent + Id: c027946e-e177-4539-a715-e334919e00ef + Model: 5d7344f6-4708-42e0-a7e5-ccaec2aa6952:PlatformsOld/Models/b_border_L_small + Materials: + 67115b975636144f95aaaff094ceaee9~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: cf1361d5-4756-46c4-bf91-90a5987c0a5a:PlatformsOld/Prefabs/L_small_out + BasePartId: 8cde3c03-0d9e-4c56-aa72-80d1484b8375 + InstanceId: de5242c3-145c-44bc-94db-3cbfe3f54606 + - Entity: + Id: c4e6b955-84d1-48f0-9cee-c0ace0a4df98 + Name: b_border (3) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: ea2fe87a-6523-474f-94ee-e04d64f7c191 + Position: {X: 0.0, Y: -2.0, Z: 6.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: 8744eda0-23c0-46f5-b44b-395f4fbfdc93 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 2ebd5bea-fe0d-45c7-94a6-f397044d293c + InstanceId: 22b210ed-8f57-4eca-9fe3-f350342de7df + - Entity: + Id: c952cd0e-db0d-4cd2-9ce7-7b5ab5ac737d + Name: rails_straight (2) + Components: + bf1df18b1fc97547ba6b9e6a9e11ad2a: !TransformComponent + Id: 1e8b9371-f842-430b-a0b3-1b0034850336 + Position: {X: -8.0, Y: 0.0, Z: 3.49999952} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: -1.0, Y: 1.0, Z: 0.8287469} + Children: + 53aa6e32d59eeb45aabd52fde17cd48d: ref!! 17ed3ede-1e09-40eb-ab53-15d1fa06cb41 + - Entity: + Id: ca4c3cdd-bb88-49bf-90d1-f35010e656e0 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: fa5e7441-b72d-4f7a-accb-27183c02507b + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: d157c87e-2809-4b4c-ae75-67130cd26228 + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 0fb7bb51-4633-4a00-b3d5-c068edf725cb + - Entity: + Id: cd3d25e0-0bbe-4223-b803-ab0ff4cf7979 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 0954eca1-49c8-4458-a745-70a33a28b287 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 12d1ea4e-2c9b-4127-9fa5-42d6df1733a8 + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: b23a7f20-73ac-4967-82d4-4c0180b71399 + - Entity: + Id: ce176357-cb46-469e-a8b5-f562c881fcb7 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 527eb6b1-7dbf-4efc-96a7-bb58dc93ba46 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 6cebc835-23b5-4a59-8f75-c358c4075ff1 + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 004d8ac0-4212-4381-9726-6971c473114f + - Entity: + Id: cfa0c6b7-6248-4383-8bda-6c0afcf95f39 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 9ef88d06-73f0-4e30-b577-d5b6bb757212 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 4d3c1949-130d-485d-9cc9-816af5b32b64 + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 60234030-e67e-4afd-bbe8-6009afd31c5b + - Entity: + Id: d0352dfc-e43b-4a08-b8f5-5603e1b48189 + Name: Cell_Loop (9) + Components: + 24d32a439845424b995938499bc29e30: !TransformComponent + Id: 0cee462c-f51e-4ea8-b2a0-8106af6d2eb2 + Position: {X: 8.0, Y: 0.0, Z: -1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 746653c7-74fa-45be-b94c-6445bf156d01 + - Entity: + Id: d27fcbd1-825c-4f2d-921b-c9851107fc29 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: c6ffa265-0795-4e5e-88b6-b33074afa9d9 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 52ea142f-63ae-49c7-8196-290640bf93f6 + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 2f2b4e49-3c9f-4f6c-9069-defa769cef70 + - Entity: + Id: d539b38e-a638-48a6-b8ac-0ec2eedbe1f9 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 50beb2b4-1f8f-427a-b5f6-f2e5b81a2c75 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 8a2067c6-4b4a-4709-98bd-78ace5ecccf2 + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 9b0fb081-1088-40e3-8b9d-811aca1b580d + - Entity: + Id: d5aece78-ef3e-4c64-94d7-1b0195124884 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 8bc341eb-69f9-4b58-817f-64d2a92166fd + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 991e741d-eac9-469a-8c8a-bdb02259e201 + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: db7d7bdd-d243-4d6e-9113-1b262d527d88 + - Entity: + Id: de1fabb1-c431-4332-bf61-db107774112d + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 0a3712de-0f5c-4949-8c19-6a676ff51f91 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: e56a2e51-58b3-4ee2-9a02-8fe04812df87 + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 73735d3d-3a03-4a35-9e94-584792b8a870 + - Entity: + Id: e23b20b8-a34d-4e78-9144-394a51923413 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 1ff3732f-e866-4cbf-877c-86fa8c929614 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 768d1ed0-f273-48c5-8442-6b3964083a48 + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: ebd3ff4d-c879-4b56-bb69-0d30215b8bf6 + - Entity: + Id: e5103cd8-a6ec-4f3e-b03c-10086a9ba40d + Name: Cell_Loop (15) + Components: + 24d32a439845424b995938499bc29e30: !TransformComponent + Id: 435ae869-2878-4c1c-ad1a-f63f4ad93ec7 + Position: {X: 4.0, Y: 0.0, Z: 4.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! d5eb9fcd-411b-42d1-8815-ee8f33a0f6e0 + - Entity: + Id: e69eb091-7509-4960-9c51-7862de3118fd + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 2f311e41-6ed2-4b5b-b714-ee1a31d930a8 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 65d0b53f-f297-48d8-afa0-720c6a8a01de + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: c38618f8-0d22-42a5-9a2e-60085f324736 + - Entity: + Id: eb54f429-d724-454a-a496-4baf64687729 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 01df16ed-d87b-4c6d-8e32-dc94a60f4b93 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: dd07457f-7206-4225-8fb5-7c5de5d6a2c0 + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 08610228-99b5-4728-8886-112e0edafcf4 + - Entity: + Id: ec766dfe-54f0-4b1f-9ca5-e114d88f54af + Name: Cell_Loop_Half2 (7) + Components: + d7699e5885f5a64d9a6e2678f5b6340c: !TransformComponent + Id: bc7fb7b6-2484-4c3b-b639-ce12d8f6eb07 + Position: {X: -6.0, Y: 0.0, Z: -1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 967bc240-fffc-4f5f-ac54-39f721ba629f + - Entity: + Id: f202127a-fb36-498b-9a9b-9a6126fd3fcf + Name: Rails_adv (2) + Components: + 67f6aa0148b7d84a8e2f2b02a371cdb6: !TransformComponent + Id: 075584c7-bb2d-42fe-a8eb-5422927678af + Position: {X: 1.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c280a78ea2cdb84b9f99ea3306f71c2b: !ModelComponent + Id: 8aaa30c1-fec1-48d0-a51b-1f1f3e7a13f3 + Model: 6c557c7e-7142-44f1-808d-acaf80a392fb:PlatformsOld/Models/Rails_adv + Materials: + ccadb09936f1334db758b0a075a047e4~0: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv + Base: + BasePartAsset: cf1361d5-4756-46c4-bf91-90a5987c0a5a:PlatformsOld/Prefabs/L_small_out + BasePartId: 93708d80-9f76-44de-84c3-86e1f1939697 + InstanceId: 9ffeda60-568a-4a78-9d23-713639446bff + - Entity: + Id: f472661b-9009-43f6-a549-6de5daa8237e + Name: border_3-75 + Components: + 0868a71677719641ab17bb242bd827c3: !TransformComponent + Id: e24fd04a-80d8-407d-9814-76b30a7bcb64 + Position: {X: -1.50000036, Y: 0.0, Z: 3.49999428} + Rotation: {X: 0.0, Y: 0.7071067, Z: 0.0, W: -0.7071068} + Scale: {X: 1.0, Y: 1.0, Z: 0.867} + Children: + 59d43ef540581e469c0331197663531a: ref!! 80afb1c6-d9f8-4245-bd6c-2fcf541c193a + 46ae890674598e4f9731fed939373fe4: ref!! ea2fe87a-6523-474f-94ee-e04d64f7c191 + 0549a395d43e4768d20b7f2d970cea66: ref!! 17228bd5-2f3a-4635-8151-7cd273d3f338 + 4134847be5b08a083b07da1d8b183613: ref!! 2a132f88-a2c7-4b7d-b682-13fba8f72db7 + d2a644687e7a92f154eb42508415d74d: ref!! 1d3ed6b0-f11a-43db-97f4-c39515ed7a4c + fea90f22c82adfae733607b2d502180e: ref!! 66149d1f-2ecb-4b5f-8eeb-60d66204acec + - Entity: + Id: f4d0cb41-ac4c-4da3-a74f-ce7647190241 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 537ca6c3-754a-4bd0-aa22-89420a9d9071 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: f5f56b56-e9c7-49d8-958c-b1929c0b65ff + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: c0a785ef-97e9-4acc-b781-cd5204ff6636 + - Entity: + Id: fb2bd6f7-70e7-4915-99d5-d0d43e0b8540 + Name: Cell_Loop (22) + Components: + 24d32a439845424b995938499bc29e30: !TransformComponent + Id: e1c9cfe3-64ba-4a0b-8d54-f045af6254c9 + Position: {X: -2.0, Y: 0.0, Z: 1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 8c2e34aa-4bd2-4c74-8611-e3b244ab5670 + - Entity: + Id: fbd329a0-d686-4ad5-950e-cebc74ff41c8 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: bbbb195a-325f-43ce-a14c-31be5b1b1051 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: d1e85a82-a320-4dfe-aa21-4709479f7067 + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 236eaa10-7043-400f-9efe-dba4f9ac2510 + - Entity: + Id: fc5026c0-6101-49c9-88cf-997d3e08006f + Name: Cell_Loop (4) + Components: + 24d32a439845424b995938499bc29e30: !TransformComponent + Id: 646dbf76-5c00-4e3a-81a5-9409b4282750 + Position: {X: 10.0, Y: 0.0, Z: 4.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 01df16ed-d87b-4c6d-8e32-dc94a60f4b93 + - Entity: + Id: ff7edbc4-a45a-4e49-a945-7b9ee7b2ec72 + Name: Rails_adv (2) + Components: + 67f6aa0148b7d84a8e2f2b02a371cdb6: !TransformComponent + Id: 75001b1f-42dd-44d2-bd34-3a4d3b905bd2 + Position: {X: 1.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c280a78ea2cdb84b9f99ea3306f71c2b: !ModelComponent + Id: 3cce6a17-d245-4f4f-aaa5-ce531112ddd5 + Model: 6c557c7e-7142-44f1-808d-acaf80a392fb:PlatformsOld/Models/Rails_adv + Materials: + ccadb09936f1334db758b0a075a047e4~0: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv + Base: + BasePartAsset: cf1361d5-4756-46c4-bf91-90a5987c0a5a:PlatformsOld/Prefabs/L_small_out + BasePartId: 93708d80-9f76-44de-84c3-86e1f1939697 + InstanceId: de5242c3-145c-44bc-94db-3cbfe3f54606 diff --git a/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Bridge_N.xkprefab b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Bridge_N.xkprefab new file mode 100644 index 0000000..e447c57 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Bridge_N.xkprefab @@ -0,0 +1,1490 @@ +!PrefabAsset +Id: e80fceec-2c70-4bb7-94b8-6bbeccf00db9 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! f1310210-2fe9-489f-a5f7-f1c89c01dc5c + - ref!! d09ca209-2411-47e9-be10-fd4438dd552e + - ref!! 4d352d35-b212-4006-9ff4-ab7b44d4eca0 + - ref!! e99a17b4-2acb-4d06-b8b9-916cd8dab0d4 + - ref!! 8e22e6b7-bb5d-42fa-a6e1-5feeead86228 + - ref!! d8701bc4-94be-4608-a2b0-538def6350db + - ref!! 856105a6-c73d-4bba-b9da-a6f882e9ec06 + - ref!! 27885c62-be43-447f-b36c-e98c9ac36625 + - ref!! 54fe0544-7d14-471e-8e5b-93e1595b284d + - ref!! 88060876-65db-46e4-a22c-26b4f5f33b5e + - ref!! efeaa731-8b14-4767-a122-d1512b926ffc + - ref!! a8d527c6-6275-4f17-bdc4-d84b6d8cfc0a + - ref!! 6c2fbf3a-d6b8-4fcb-bd46-60141f63d8a6 + - ref!! b69fa14c-c21f-4b6f-a381-faf4c0eca158 + - ref!! 6797dd06-185a-413a-ad01-6d26e0a17156 + - ref!! 988b1c73-16fc-4c67-a958-ef0adc43bd78 + - ref!! e7a0fa06-2343-474d-acdf-6179352fe27f + - ref!! d9cf00af-5935-40dd-8bac-fbe2b9eb88ce + - ref!! 54817126-dffc-492a-8667-b01c5fe9279b + - ref!! cab6a727-093d-40d7-8b9c-3a73a5b2df48 + - ref!! ee6a6e63-0262-459b-abc1-6469791934fc + - ref!! dd8122b3-f4e3-45d5-883a-67381734bb59 + - ref!! 2cd904b1-243b-4e75-947d-f305f18f6b15 + - ref!! 0832748c-eb3c-45af-b747-cf33cfb7193d + - ref!! 2090574d-f883-4f45-b2ea-4f7093403610 + - ref!! 958a7258-0907-4ed2-84ad-d0a9d755531d + - ref!! 6c5a2822-62f2-44a0-8253-5bf44610782b + - ref!! 8c07e35a-a0d0-484f-b9f7-c22278d4f96e + - ref!! b985085a-d9b9-4f12-a27c-aff546ad4be7 + - ref!! e6840b80-a088-4490-ba6e-f62b2a3075ef + - ref!! 38331f21-5d4f-4ca0-93f6-53498a87e0f1 + - ref!! 6b87f10b-7897-43ab-9982-71ce3edb5bf4 + - ref!! b79a56f1-5fcb-4a7a-907c-e63acc5021dd + - ref!! de1d9529-34c7-40ac-a6db-bdf382bf404a + - ref!! fa8fb501-7024-4238-ac1a-af2f8f42bca2 + - ref!! 6c786363-92e3-4fd2-8aeb-787cfabfd916 + - ref!! 58352339-df60-43f3-996d-0e31b4a0f301 + Parts: + - Entity: + Id: 00d65a2c-b4a2-45c1-a4a3-37319ffe2eef + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: c8a1be11-ce88-447d-adaf-2845b5728fb2 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: c0e46a34-ffbb-46ef-b879-b1dc2a1a2f49 + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: caed3e36-88ff-4914-8a73-4b5fa257fed6 + - Entity: + Id: 01e2d462-2670-46a5-a117-505261170842 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 5380f043-1877-441e-916d-c8ee0f148f3d + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 437701af-8257-4dea-b5b8-4b5a805326ea + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 57749fce-fbfa-4024-9d8d-71080fc848a3 + - Entity: + Id: 02ed0f7c-e2f5-40bd-8849-9b877e968850 + Name: b_border + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 0689ae46-5974-4f8e-9731-fed939373fe4 + Position: {X: 0.0, Y: -2.0, Z: 1.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: a3a5a0a7-2f3c-4ceb-b0f1-e3a3127f0566 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: {} + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 753ce80b-d972-427a-8c5b-51c735743184 + InstanceId: c89b3016-7943-4d85-b35d-a03883e4f261 + - Entity: + Id: 03a84662-fa09-42d0-ad48-501e7c4f4c2a + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 57f39b2d-83c4-444c-ac7f-c0d349a7e706 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: b4d17da4-5e5d-4718-ab91-0533a3324cac + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 4f96cd12-5151-4d52-841e-5737a600d231 + - Entity: + Id: 0832748c-eb3c-45af-b747-cf33cfb7193d + Name: Cell_Loop (4) + Components: + d6fd48a163356e49b193f2aa0371d588: !TransformComponent + Id: a148fdd6-3563-496e-b193-f2aa0371d588 + Position: {X: -1.0, Y: 0.0, Z: 3.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! fe516065-a08e-4f96-85e9-b0fe5cd6437a + - Entity: + Id: 11eb234e-27d7-456b-a98d-8d651c9b46a1 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 11636db5-de45-4028-aa9a-310cc94c9456 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 282a70d2-ef1b-491e-8ebf-5ca6297625d0 + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 3efdc6e3-4b3d-42c1-9bdf-db512f4def9c + - Entity: + Id: 16e47325-c41d-43fd-ba82-4f89145d15b1 + Name: Rails_tube_L + Components: + bd2b4b3c84df2f439b0519b378e7f817: !TransformComponent + Id: 3c4b2bbd-df84-432f-9b05-19b378e7f817 + Position: {X: -0.0480509177, Y: 3.17927885, Z: 0.0614198036} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c334293b82e83142b3dd04b3f5cf8202: !ModelComponent + Id: 3b2934c3-e882-4231-b3dd-04b3f5cf8202 + Model: b2139cec-163e-4e5d-9a73-c53dbb5b0f3a:PlatformsOld/Models/Rails_tube_L + Materials: + ccadb09936f1334db758b0a075a047e4~0: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv + Base: + BasePartAsset: cf1361d5-4756-46c4-bf91-90a5987c0a5a:PlatformsOld/Prefabs/L_small_out + BasePartId: 6bba10d7-bd83-40b6-99ef-8fdd7ee92a7d + InstanceId: e62cef7a-dca2-4f0a-9823-240e29cee4fc + - Entity: + Id: 2090574d-f883-4f45-b2ea-4f7093403610 + Name: Cell_Loop (14) + Components: + d6fd48a163356e49b193f2aa0371d588: !TransformComponent + Id: ee121f27-8ebb-4eed-9615-4b21a248b09d + Position: {X: -5.0, Y: 0.0, Z: 3.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! d6b83cd1-bf54-49ac-82ef-f9cda90dcbad + - Entity: + Id: 24feb574-e922-4fec-b488-33754531a7c6 + Name: border_1 + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: f53ed459-5840-461e-9c03-31197663531a + Position: {X: 0.0, Y: -2.0, Z: 1.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: cf3c3525-0b32-4b67-b48d-523a5323eb69 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + InstanceId: 999c5823-f16c-45f4-862c-0177bf44bf75 + - Entity: + Id: 252d029d-9c9e-4aaa-acb2-8a456ad87c1a + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: a1b24cdc-7edf-4625-99d6-830968bfca65 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: b018daaf-3344-4451-bb6e-b179563e1df8 + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 3b457548-4780-45db-a950-a87171433200 + - Entity: + Id: 2665771c-d97c-4b14-8d6d-cb6a4da864de + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 059ec184-17b6-4a0e-98f4-bcde1ed589c1 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 12c3df3c-99fa-4f10-8057-ab0c97a5decd + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 67508752-64fc-4778-a017-c4512485320c + - Entity: + Id: 27885c62-be43-447f-b36c-e98c9ac36625 + Name: Entity + Components: + a179ab9fef3b184e94f7f8cfa864ff1a: !TransformComponent + Id: 9fab79a1-3bef-4e18-94f7-f8cfa864ff1a + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + - Entity: + Id: 2cd904b1-243b-4e75-947d-f305f18f6b15 + Name: Cell_Loop (3) + Components: + d6fd48a163356e49b193f2aa0371d588: !TransformComponent + Id: 9be4bd73-c4a5-43dc-ad85-5d4da3b0600e + Position: {X: -3.0, Y: 0.0, Z: 3.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 28205b23-7a31-45eb-97ba-c4d867dfd320 + - Entity: + Id: 2f2ca156-ade7-4a71-86a2-5c10090c85c8 + Name: border_L_small + Components: + 36bde24588195942a938b846329516ff: !TransformComponent + Id: 45e2bd36-1988-4259-a938-b846329516ff + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + b2118b038cbfe8468c90b8162655350f: !ModelComponent + Id: 038b11b2-bf8c-46e8-8c90-b8162655350f + Model: e6b30dcb-e5ce-4220-9bc2-600a3651ee1d:PlatformsOld/Models/border_L_small + Materials: + 52b322b93322284390399348912756d5~0: 14acd6d5-f6d1-42a7-928d-5add6341bedf:PlatformsOld/Materials/border + Base: + BasePartAsset: cf1361d5-4756-46c4-bf91-90a5987c0a5a:PlatformsOld/Prefabs/L_small_out + BasePartId: ef8df8ca-843c-40c9-8ae6-8885e2c28b27 + InstanceId: e0eb6e89-71f8-44a5-bed9-5294d7c8e7d1 + - Entity: + Id: 32aded1c-f3e8-44b0-ad26-9cb8106a904b + Name: b_border (2) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 61b2230e-7c1e-4d4a-87df-dbd1d3a6c175 + Position: {X: 0.0, Y: -2.0, Z: 3.75} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: e35efb47-2432-4980-856a-125e438f0a07 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 578bb7fc-40be-4480-983d-fde8008120bd + InstanceId: c89b3016-7943-4d85-b35d-a03883e4f261 + - Entity: + Id: 350443f7-902d-4156-b3c7-2e64e963b623 + Name: border_L_small + Components: + 36bde24588195942a938b846329516ff: !TransformComponent + Id: 7e089c8d-bb0b-4756-9dda-8b8fbb67d377 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + b2118b038cbfe8468c90b8162655350f: !ModelComponent + Id: 6c59eee5-5673-4349-a3ef-9d50b7286124 + Model: e6b30dcb-e5ce-4220-9bc2-600a3651ee1d:PlatformsOld/Models/border_L_small + Materials: + 52b322b93322284390399348912756d5~0: 14acd6d5-f6d1-42a7-928d-5add6341bedf:PlatformsOld/Materials/border + Base: + BasePartAsset: cf1361d5-4756-46c4-bf91-90a5987c0a5a:PlatformsOld/Prefabs/L_small_out + BasePartId: ef8df8ca-843c-40c9-8ae6-8885e2c28b27 + InstanceId: e62cef7a-dca2-4f0a-9823-240e29cee4fc + - Entity: + Id: 38331f21-5d4f-4ca0-93f6-53498a87e0f1 + Name: Cell_Loop (20) + Components: + d6fd48a163356e49b193f2aa0371d588: !TransformComponent + Id: fd46d3e7-c707-4d02-9c52-ed4ed8e41923 + Position: {X: -5.0, Y: 0.0, Z: 9.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 739ad998-4797-427e-a861-3a70eb9f4eb9 + - Entity: + Id: 4163b1a5-1884-41e1-9925-0049f159ad6b + Name: border_1 + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: f0306c47-2a76-4c79-8084-648440af3401 + Position: {X: 0.0, Y: -2.0, Z: 1.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: 4c33ca46-da4f-448e-8228-f9e4f4be859e + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + InstanceId: c89b3016-7943-4d85-b35d-a03883e4f261 + - Entity: + Id: 477279fb-a4d4-4a5b-830f-0a4c9a1e9ea3 + Name: b_border_L_small + Components: + 97b82cffd9b03d47aaeb02402b66e8db: !TransformComponent + Id: ff2cb897-b0d9-473d-aaeb-02402b66e8db + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 4d9110a1d99be142ba33a39310bb42cb: !ModelComponent + Id: a110914d-9bd9-42e1-ba33-a39310bb42cb + Model: 5d7344f6-4708-42e0-a7e5-ccaec2aa6952:PlatformsOld/Models/b_border_L_small + Materials: + 67115b975636144f95aaaff094ceaee9~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: cf1361d5-4756-46c4-bf91-90a5987c0a5a:PlatformsOld/Prefabs/L_small_out + BasePartId: 8cde3c03-0d9e-4c56-aa72-80d1484b8375 + InstanceId: e0eb6e89-71f8-44a5-bed9-5294d7c8e7d1 + - Entity: + Id: 499944ee-4d16-4a3e-b2b2-a59746672b16 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 739ad998-4797-427e-a861-3a70eb9f4eb9 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: c25dcc86-33c5-46d7-b2b4-56d6f0f765f7 + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 9e3999d9-ebcd-4a84-95e3-297c72e135bc + - Entity: + Id: 4bfbc6a8-2ec2-44b2-885b-ad5736809fd4 + Name: Rails_tube (2) + Components: + 53aa6e32d59eeb45aabd52fde17cd48d: !TransformComponent + Id: 326eaa53-9ed5-45eb-aabd-52fde17cd48d + Position: {X: -0.06581557, Y: 1.219562, Z: 4.052} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 0.85, Z: 0.85} + Children: {} + 0225b2a01b17f94d8b22f766fa64fa9b: !ModelComponent + Id: a0b22502-171b-4df9-8b22-f766fa64fa9b + Model: 40be0e1d-f941-454c-9f18-c765c7f3bc78:PlatformsOld/Models/Rails_tube + Materials: {} + Base: + BasePartAsset: fca227cf-3f9e-4d9a-96eb-db7a23bf62fd:PlatformsOld/Prefabs/rails_straight + BasePartId: d78c8476-d01e-4383-98cc-9691ec3d06e7 + InstanceId: 598887af-318b-4d04-8e62-12f397b8a0e7 + - Entity: + Id: 4d352d35-b212-4006-9ff4-ab7b44d4eca0 + Name: Cell_Loop_Half (2) + Components: + f4e2a02aefccd44b9536a74296174962: !TransformComponent + Id: 2aa0e2f4-ccef-4bd4-9536-a74296174962 + Position: {X: 2.999998, Y: 0.0, Z: 0.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! c8a1be11-ce88-447d-adaf-2845b5728fb2 + - Entity: + Id: 4e281b73-05d9-4273-ad2d-81a96dd00b80 + Name: Rails_tube (2) + Components: + 53aa6e32d59eeb45aabd52fde17cd48d: !TransformComponent + Id: 0a4eb5be-0ff1-4497-a5ca-f0a956d3d0e2 + Position: {X: -0.06581557, Y: 1.219562, Z: 4.052} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 0.85, Z: 0.85} + Children: {} + 0225b2a01b17f94d8b22f766fa64fa9b: !ModelComponent + Id: 9967f5a9-10da-4c3b-9ac8-bc14cc902395 + Model: 40be0e1d-f941-454c-9f18-c765c7f3bc78:PlatformsOld/Models/Rails_tube + Materials: {} + Base: + BasePartAsset: fca227cf-3f9e-4d9a-96eb-db7a23bf62fd:PlatformsOld/Prefabs/rails_straight + BasePartId: d78c8476-d01e-4383-98cc-9691ec3d06e7 + InstanceId: bf82a493-5674-49e1-b69f-2e874c2a5c37 + - Entity: + Id: 4f51bdfa-92dd-435d-a0df-72d3028e16ee + Name: b_border (2) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 5fc70c46-813b-43b7-858a-e9e58a674214 + Position: {X: 0.0, Y: -2.0, Z: 3.75} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: 7424eef7-3edf-4a9e-9597-5c9f8886aca9 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 578bb7fc-40be-4480-983d-fde8008120bd + InstanceId: 999c5823-f16c-45f4-862c-0177bf44bf75 + - Entity: + Id: 508a5e24-6640-40de-8cea-f0eb4e5d2b62 + Name: Rails_adv + Components: + 67f6aa0148b7d84a8e2f2b02a371cdb6: !TransformComponent + Id: 01aaf667-b748-4ad8-8e2f-2b02a371cdb6 + Position: {X: 0.0, Y: 0.0, Z: -1.0} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c280a78ea2cdb84b9f99ea3306f71c2b: !ModelComponent + Id: 8ea780c2-cda2-4bb8-9f99-ea3306f71c2b + Model: 6c557c7e-7142-44f1-808d-acaf80a392fb:PlatformsOld/Models/Rails_adv + Materials: + ccadb09936f1334db758b0a075a047e4~0: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv + Base: + BasePartAsset: cf1361d5-4756-46c4-bf91-90a5987c0a5a:PlatformsOld/Prefabs/L_small_out + BasePartId: 53b861bf-60de-4763-ac7b-7ca47a721cbf + InstanceId: e0eb6e89-71f8-44a5-bed9-5294d7c8e7d1 + - Entity: + Id: 520487d9-a4ff-4315-9f36-67e7bb8ad979 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 5455f1fe-3fa6-411e-b486-3ed62e9585fa + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 4d2e9914-a74e-43db-b3f0-cf418fb6fc19 + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 59360bec-9aad-4372-8b14-93e53eeb86c0 + - Entity: + Id: 54817126-dffc-492a-8667-b01c5fe9279b + Name: border_3-75 + Components: + 3090618e1b866c4198ae9cbad200e0bd: !TransformComponent + Id: 8e619030-861b-416c-98ae-9cbad200e0bd + Position: {X: 3.99999976, Y: 0.0, Z: -8.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 59d43ef540581e469c0331197663531a: ref!! 64d9f58c-325f-4903-ae44-4f01c90a8b87 + 46ae890674598e4f9731fed939373fe4: ref!! f9ac63bd-c390-4259-ae13-bbce12b975c2 + 2acd0ac5feb8de619e7050d91cdf8464: ref!! 5e4afbb5-ed3c-48da-b584-cafe8ec18983 + cbe580c2dacf4228cf3ce9fa9f3a892e: ref!! 61b2230e-7c1e-4d4a-87df-dbd1d3a6c175 + 8656763c383dd2f385c8de3b76ba9d43: ref!! f0306c47-2a76-4c79-8084-648440af3401 + 3b7fe66aff25eea5c234ae34190846aa: ref!! 0689ae46-5974-4f8e-9731-fed939373fe4 + - Entity: + Id: 54fe0544-7d14-471e-8e5b-93e1595b284d + Name: Cell_Loop (6) + Components: + fdc386e655c76a48895b63f7ca23fbd6: !TransformComponent + Id: e686c3fd-c755-486a-895b-63f7ca23fbd6 + Position: {X: 0.9999981, Y: 0.0, Z: -2.50000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 124de091-9b55-489a-9847-91fea5932906 + - Entity: + Id: 58352339-df60-43f3-996d-0e31b4a0f301 + Name: rails_straight (2) + Components: + 955f98fee7516b4ea74ddff2575fd179: !TransformComponent + Id: fe985f95-51e7-4e6b-a74d-dff2575fd179 + Position: {X: -4.0, Y: 0.0, Z: -8.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: -1.0, Y: 1.0, Z: 1.0} + Children: + 53aa6e32d59eeb45aabd52fde17cd48d: ref!! 326eaa53-9ed5-45eb-aabd-52fde17cd48d + - Entity: + Id: 5aea2843-1596-419f-b632-5489266a9313 + Name: b_border (3) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: f9ac63bd-c390-4259-ae13-bbce12b975c2 + Position: {X: 0.0, Y: -2.0, Z: 6.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: 37b4169f-28eb-434a-a39a-7ed114b17d18 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 2ebd5bea-fe0d-45c7-94a6-f397044d293c + InstanceId: c89b3016-7943-4d85-b35d-a03883e4f261 + - Entity: + Id: 5e665196-c488-4796-a52d-9c91f3f49185 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: a6b32758-ca1f-460d-98df-e98425718382 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: c96a6f59-3425-4a4e-8469-61094c597558 + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 2101c3c6-dc91-4383-bdbf-09a06ebab5be + - Entity: + Id: 6267d76b-b366-48ff-b6a3-7401c8243380 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: ab9d1968-5f8a-4495-8142-461745170e4d + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 5af5caad-e2de-4230-8ecc-b1771f9bbf92 + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 8d069c2a-668c-4ce0-8b6d-41ab00e26483 + - Entity: + Id: 66297230-0c38-4fab-98ef-8f0ca543398f + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: d6b83cd1-bf54-49ac-82ef-f9cda90dcbad + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 2259ce8f-7852-4c82-a9d0-9822cdda7028 + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: c89cc1e6-2c6c-4fec-9ccb-e299815321ba + - Entity: + Id: 6797dd06-185a-413a-ad01-6d26e0a17156 + Name: Cell_Loop (11) + Components: + fdc386e655c76a48895b63f7ca23fbd6: !TransformComponent + Id: 8b5b83b7-0ca2-431a-842a-aff6a0966052 + Position: {X: -3.000002, Y: 0.0, Z: -5.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! ab9d1968-5f8a-4495-8142-461745170e4d + - Entity: + Id: 6a579a0f-0f9f-4857-9e65-ab5b85ee5791 + Name: b_border + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 013b9a27-e4fa-4ec7-9394-5ed6662caac8 + Position: {X: 0.0, Y: -2.0, Z: 1.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: 86310ed9-8a28-4f4c-ab06-225356025e6f + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: {} + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 753ce80b-d972-427a-8c5b-51c735743184 + InstanceId: 999c5823-f16c-45f4-862c-0177bf44bf75 + - Entity: + Id: 6b87f10b-7897-43ab-9982-71ce3edb5bf4 + Name: Cell_Loop (21) + Components: + d6fd48a163356e49b193f2aa0371d588: !TransformComponent + Id: 39710a4d-0da7-4e65-83fe-2bcd2135435f + Position: {X: -3.0, Y: 0.0, Z: 9.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 5455f1fe-3fa6-411e-b486-3ed62e9585fa + - Entity: + Id: 6c2fbf3a-d6b8-4fcb-bd46-60141f63d8a6 + Name: Cell_Loop_Half (4) + Components: + f4e2a02aefccd44b9536a74296174962: !TransformComponent + Id: 7c36bf13-b9df-4d7b-99de-384947065121 + Position: {X: -3.000002, Y: 0.0, Z: -5.5} + Rotation: {X: 0.0, Y: -1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! a1b24cdc-7edf-4625-99d6-830968bfca65 + - Entity: + Id: 6c5a2822-62f2-44a0-8253-5bf44610782b + Name: Cell_Loop (16) + Components: + d6fd48a163356e49b193f2aa0371d588: !TransformComponent + Id: 3e7e656f-b247-4836-b5da-fec8354a7ed8 + Position: {X: -3.0, Y: 0.0, Z: 6.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 18559fcf-4cfb-4891-9ca0-e22be79c5db0 + - Entity: + Id: 6c786363-92e3-4fd2-8aeb-787cfabfd916 + Name: rails_straight + Components: + 955f98fee7516b4ea74ddff2575fd179: !TransformComponent + Id: 95dd538d-74bc-4883-bbec-35acacd90525 + Position: {X: 4.0, Y: 0.0, Z: -8.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 53aa6e32d59eeb45aabd52fde17cd48d: ref!! 0a4eb5be-0ff1-4497-a5ca-f0a956d3d0e2 + - Entity: + Id: 71c61484-fe2a-421b-ac99-f28361321539 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 95333542-31af-46a5-ae29-b08abaedf81d + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 79a2fecf-d41a-4845-9512-a057ce4d4fde + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: a028538f-3722-4baf-8386-d317d20fe0ba + - Entity: + Id: 737f8b34-fe89-41bd-a277-ba017ba03922 + Name: border_1 (3) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: ba465ba7-25d8-46cf-94df-7dc3fcf96bda + Position: {X: 0.0, Y: -2.0, Z: 6.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: bb3def9d-f062-4a53-9a11-04d3693e50d0 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: cefd5c0a-8d96-4cb7-8f96-43426815654d + InstanceId: 999c5823-f16c-45f4-862c-0177bf44bf75 + - Entity: + Id: 856105a6-c73d-4bba-b9da-a6f882e9ec06 + Name: L_small_out + Components: + e28d3cea8a884543a37c2fbcb01015fa: !TransformComponent + Id: ea3c8de2-888a-4345-a37c-2fbcb01015fa + Position: {X: -4.0, Y: -2.0, Z: -9.536743E-07} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 36bde24588195942a938b846329516ff: ref!! 7e089c8d-bb0b-4756-9dda-8b8fbb67d377 + 97b82cffd9b03d47aaeb02402b66e8db: ref!! 79316a8d-daa3-4471-bda1-4df1389c807b + 67f6aa0148b7d84a8e2f2b02a371cdb6: ref!! 852a386c-55cd-49f7-9c8f-81d074fba04c + 11c2cc4517bd62470f07bad7721c7349: ref!! 600e8ce0-5a66-40d7-b0b3-a549d728ffab + bd2b4b3c84df2f439b0519b378e7f817: ref!! 3c4b2bbd-df84-432f-9b05-19b378e7f817 + - Entity: + Id: 8764cac2-be40-48e0-998a-313fe486310f + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 31d49cd1-f727-4ecc-8076-b95318e6b45c + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 2453f49d-3faa-4159-9998-b8fa041fcdde + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: a24647fe-0bd8-4d3a-8921-162283e5a11f + - Entity: + Id: 88060876-65db-46e4-a22c-26b4f5f33b5e + Name: Cell_Loop_Half (3) + Components: + f4e2a02aefccd44b9536a74296174962: !TransformComponent + Id: 7f15036d-7b56-4ba2-8969-f5b90d5a7ed7 + Position: {X: 2.999998, Y: 0.0, Z: -2.50000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 7499b05e-0db3-4707-bf6f-90a299679110 + - Entity: + Id: 88ff7de4-ff0f-4d26-856a-2beca43209c7 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: cfc1eecc-7975-4967-88d9-6ae8d11a1876 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: e62f9ece-df2a-467d-8e51-210efb765809 + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: f16f2e1d-7521-4734-82f8-27850e686a70 + - Entity: + Id: 8c07e35a-a0d0-484f-b9f7-c22278d4f96e + Name: Cell_Loop (17) + Components: + d6fd48a163356e49b193f2aa0371d588: !TransformComponent + Id: 7f4cf931-c754-4877-abae-b1dbd7990266 + Position: {X: -1.0, Y: 0.0, Z: 6.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! e6ab8437-9bcc-4774-8686-34daf329fcd7 + - Entity: + Id: 8e22e6b7-bb5d-42fa-a6e1-5feeead86228 + Name: Cell_Loop (8) + Components: + fdc386e655c76a48895b63f7ca23fbd6: !TransformComponent + Id: cd933c3b-8e04-43da-9f1a-109e6260b537 + Position: {X: -3.000002, Y: 0.0, Z: 0.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 730d1114-8c63-4f72-874a-67817330e479 + - Entity: + Id: 9359c5a9-b719-4a27-8403-19d0f8119801 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: fe516065-a08e-4f96-85e9-b0fe5cd6437a + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 495b2532-e652-4c0f-aef5-0371d034ea41 + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 7cbac7d5-459f-4696-90d0-f5ce8efa62e3 + - Entity: + Id: 9555cb17-64c3-4047-9adc-831484bd468c + Name: Rails_adv (2) + Components: + 67f6aa0148b7d84a8e2f2b02a371cdb6: !TransformComponent + Id: 600e8ce0-5a66-40d7-b0b3-a549d728ffab + Position: {X: 1.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c280a78ea2cdb84b9f99ea3306f71c2b: !ModelComponent + Id: cd6ce2ae-6074-4ea5-846d-c8a6bac56a6a + Model: 6c557c7e-7142-44f1-808d-acaf80a392fb:PlatformsOld/Models/Rails_adv + Materials: + ccadb09936f1334db758b0a075a047e4~0: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv + Base: + BasePartAsset: cf1361d5-4756-46c4-bf91-90a5987c0a5a:PlatformsOld/Prefabs/L_small_out + BasePartId: 93708d80-9f76-44de-84c3-86e1f1939697 + InstanceId: e62cef7a-dca2-4f0a-9823-240e29cee4fc + - Entity: + Id: 958a7258-0907-4ed2-84ad-d0a9d755531d + Name: Cell_Loop (15) + Components: + d6fd48a163356e49b193f2aa0371d588: !TransformComponent + Id: 5c164c7a-f021-4b6e-a275-572ecb061ff8 + Position: {X: -5.0, Y: 0.0, Z: 6.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! aee178ed-d24a-415a-b190-db0325fd4134 + - Entity: + Id: 988b1c73-16fc-4c67-a958-ef0adc43bd78 + Name: Cell_Loop (12) + Components: + fdc386e655c76a48895b63f7ca23fbd6: !TransformComponent + Id: f7911d77-1890-403f-b8b4-e0c93eb05963 + Position: {X: -1.00000191, Y: 0.0, Z: -5.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 059ec184-17b6-4a0e-98f4-bcde1ed589c1 + - Entity: + Id: 994dc087-8954-4cde-a6e3-8186ba37af71 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: e7749f37-6629-4678-a5aa-66dfbe489701 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 03bf7fb6-0c26-45c0-8a5c-b81a9f0ac853 + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 3bf6bb38-9ec2-4439-bd36-23a2ead8aaba + - Entity: + Id: 9a691017-e353-40b0-bea8-3957e2560705 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: aee178ed-d24a-415a-b190-db0325fd4134 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 20a58ccb-4362-45c1-864e-dfa70d78df0d + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: a9306eef-7612-42c3-a5c3-1a3fbc26c98c + - Entity: + Id: a39b8b2c-9019-40c4-8a1c-bf8ddb6dc83f + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 271da816-8670-4cc2-bcd0-82e641128a2f + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: c4a9f7a5-aa09-4bd5-83a0-540052943a87 + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 3beb40d1-1473-4191-87bb-2c247111072d + - Entity: + Id: a3f84bcf-7eac-42c8-8c31-47e3c221391a + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: e6ab8437-9bcc-4774-8686-34daf329fcd7 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 2928c30b-0b32-42d5-84fe-b8ddf1b86510 + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 444d3355-8dd0-458c-980f-e22ffe3dde18 + - Entity: + Id: a7a64ae7-39d2-4db2-bbb9-b72f71fafea4 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 084bb58a-0ae2-400f-bca2-6cc4590aae75 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 7c8cd639-d5d1-47ce-9976-099446e2b726 + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 5570eb9d-677d-4939-8ee8-04fc5a08328e + - Entity: + Id: a8d527c6-6275-4f17-bdc4-d84b6d8cfc0a + Name: Cell_Loop (10) + Components: + fdc386e655c76a48895b63f7ca23fbd6: !TransformComponent + Id: 767130c8-a62f-4ced-9bd5-4e52c398fe23 + Position: {X: -3.000002, Y: 0.0, Z: -2.50000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! a6b32758-ca1f-460d-98df-e98425718382 + - Entity: + Id: aa36ea35-6817-4f3a-a29e-92a18010b1a0 + Name: border_1 (3) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 64d9f58c-325f-4903-ae44-4f01c90a8b87 + Position: {X: 0.0, Y: -2.0, Z: 6.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: b71321c3-3c2f-4edd-8591-dac639efa0db + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: cefd5c0a-8d96-4cb7-8f96-43426815654d + InstanceId: c89b3016-7943-4d85-b35d-a03883e4f261 + - Entity: + Id: b0d7608a-ed47-4bcd-9fce-cd6855eecc6b + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: d79c3669-bcab-4402-8180-c5ea42558cef + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 3383c76f-61d1-4044-8939-c3338b3047d7 + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: bf62f193-61e8-45c6-93ef-1e58e19afa01 + - Entity: + Id: b3e739dc-c5ec-4089-935c-a07548018ebd + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: bbd4f2fb-b567-4738-a0f0-56559d9589fe + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 77329181-87c1-47bb-ab1d-edaaf88c8046 + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 543cd3bd-7a45-41ca-b0bd-2e092e244d7a + - Entity: + Id: b69fa14c-c21f-4b6f-a381-faf4c0eca158 + Name: Cell_Loop_Half (5) + Components: + f4e2a02aefccd44b9536a74296174962: !TransformComponent + Id: 9cd783ce-77b5-4cdb-9ac5-9ab09f41d742 + Position: {X: -3.000002, Y: 0.0, Z: -8.5} + Rotation: {X: 0.0, Y: -1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 5380f043-1877-441e-916d-c8ee0f148f3d + - Entity: + Id: b79a56f1-5fcb-4a7a-907c-e63acc5021dd + Name: Cell_Loop (22) + Components: + d6fd48a163356e49b193f2aa0371d588: !TransformComponent + Id: 9b78a81c-cdac-4dd8-970a-258cd7531383 + Position: {X: -1.0, Y: 0.0, Z: 9.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! e7749f37-6629-4678-a5aa-66dfbe489701 + - Entity: + Id: b936eb75-1212-46cf-a3cb-fdacc4d0bd66 + Name: Rails_tube_L + Components: + bd2b4b3c84df2f439b0519b378e7f817: !TransformComponent + Id: 91611670-e1e2-43c6-ad0d-ec53865ffefa + Position: {X: -0.0480509177, Y: 3.17927885, Z: 0.0614198036} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c334293b82e83142b3dd04b3f5cf8202: !ModelComponent + Id: 284556f4-3b60-4ed8-9e0f-15debbf89b95 + Model: b2139cec-163e-4e5d-9a73-c53dbb5b0f3a:PlatformsOld/Models/Rails_tube_L + Materials: + ccadb09936f1334db758b0a075a047e4~0: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv + Base: + BasePartAsset: cf1361d5-4756-46c4-bf91-90a5987c0a5a:PlatformsOld/Prefabs/L_small_out + BasePartId: 6bba10d7-bd83-40b6-99ef-8fdd7ee92a7d + InstanceId: e0eb6e89-71f8-44a5-bed9-5294d7c8e7d1 + - Entity: + Id: b985085a-d9b9-4f12-a27c-aff546ad4be7 + Name: Cell_Loop (18) + Components: + d6fd48a163356e49b193f2aa0371d588: !TransformComponent + Id: a5be6506-447d-4a09-a739-2a488593aa0e + Position: {X: 0.9999999, Y: 0.0, Z: 6.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 31d49cd1-f727-4ecc-8076-b95318e6b45c + - Entity: + Id: bd9000ca-769b-430f-9554-8c2c9299532b + Name: border_1 (2) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 62faeb0f-3cf5-4aa4-b861-5db32fbb9a1c + Position: {X: 0.0, Y: -2.0, Z: 3.75} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: d295428d-aea6-498f-acca-96955130c0ff + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 583af927-6553-490b-bf64-604837d74650 + InstanceId: 999c5823-f16c-45f4-862c-0177bf44bf75 + - Entity: + Id: c217e821-d28d-478b-994c-4eb3caa7a5f4 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 52854201-097c-4dce-888f-09dcedee945f + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 148dee70-2c2f-4961-92ac-35b8168478be + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 9218cbc9-f353-4d5c-becb-52e6f75078fc + - Entity: + Id: cab6a727-093d-40d7-8b9c-3a73a5b2df48 + Name: border_3-75 (2) + Components: + 3090618e1b866c4198ae9cbad200e0bd: !TransformComponent + Id: 73bae5e8-dd76-435c-be24-33b7e5d5a607 + Position: {X: -4.0, Y: 0.0, Z: -1.000001} + Rotation: {X: 0.0, Y: -1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 59d43ef540581e469c0331197663531a: ref!! ba465ba7-25d8-46cf-94df-7dc3fcf96bda + 46ae890674598e4f9731fed939373fe4: ref!! f96db6dc-92c3-4e2b-b7b0-a75f51927785 + 82d935a34d536f6a1f75d39d3261d017: ref!! 62faeb0f-3cf5-4aa4-b861-5db32fbb9a1c + 7cc6d4abe6d5587ebcc12a341d303cab: ref!! 5fc70c46-813b-43b7-858a-e9e58a674214 + aab0c39961c03cb636a4919ff73f7efe: ref!! f53ed459-5840-461e-9c03-31197663531a + e5984a1919ecd35f8dd64911b4bf6637: ref!! 013b9a27-e4fa-4ec7-9394-5ed6662caac8 + - Entity: + Id: cd5f6bef-1d27-404e-8810-4a8524f4074b + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 10d8ef07-d62c-4615-8c20-96d011e562e4 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: a7f1cf6c-09e2-4419-82c0-b20bb1894726 + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 33cb4276-500c-41cc-9f9d-23fa0ceced2a + - Entity: + Id: cdcd08e8-d339-4d4b-b0a4-758c382d9404 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 7499b05e-0db3-4707-bf6f-90a299679110 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 0933e7f8-93c7-4e74-9db5-a7855540f23a + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 1c7ca2dc-fa99-4a80-8232-5d4c4762aa68 + - Entity: + Id: d09ca209-2411-47e9-be10-fd4438dd552e + Name: Cell_Loop (5) + Components: + fdc386e655c76a48895b63f7ca23fbd6: !TransformComponent + Id: 1e196717-25bc-4516-9eea-716a19babf83 + Position: {X: 0.9999981, Y: 0.0, Z: 0.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 084bb58a-0ae2-400f-bca2-6cc4590aae75 + - Entity: + Id: d468e8bb-cff1-4d44-9fd6-0e5b6aacc6c3 + Name: Rails_adv + Components: + 67f6aa0148b7d84a8e2f2b02a371cdb6: !TransformComponent + Id: 852a386c-55cd-49f7-9c8f-81d074fba04c + Position: {X: 0.0, Y: 0.0, Z: -1.0} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c280a78ea2cdb84b9f99ea3306f71c2b: !ModelComponent + Id: b7acda18-52a7-4171-95b2-ab8adc92b18b + Model: 6c557c7e-7142-44f1-808d-acaf80a392fb:PlatformsOld/Models/Rails_adv + Materials: + ccadb09936f1334db758b0a075a047e4~0: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv + Base: + BasePartAsset: cf1361d5-4756-46c4-bf91-90a5987c0a5a:PlatformsOld/Prefabs/L_small_out + BasePartId: 53b861bf-60de-4763-ac7b-7ca47a721cbf + InstanceId: e62cef7a-dca2-4f0a-9823-240e29cee4fc + - Entity: + Id: d7d43511-a3e6-450b-b215-5fe6008995c0 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 124de091-9b55-489a-9847-91fea5932906 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: cdb9e591-ac01-45e0-8dfe-3e1906d954ee + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 234534d8-e5fe-40eb-b7f8-6f511063592a + - Entity: + Id: d8701bc4-94be-4608-a2b0-538def6350db + Name: Cell_Loop_Half + Components: + f4e2a02aefccd44b9536a74296174962: !TransformComponent + Id: 6a36d043-114e-4bd0-a82c-64650f373973 + Position: {X: -3.000002, Y: 0.0, Z: -2.5} + Rotation: {X: 0.0, Y: -1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 95333542-31af-46a5-ae29-b08abaedf81d + - Entity: + Id: d94b1a74-4aa8-46bc-8c2e-5fead568fc1c + Name: border_1 (2) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 5e4afbb5-ed3c-48da-b584-cafe8ec18983 + Position: {X: 0.0, Y: -2.0, Z: 3.75} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: ac296823-5090-4f73-9e9c-cd2b4d3399be + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 583af927-6553-490b-bf64-604837d74650 + InstanceId: c89b3016-7943-4d85-b35d-a03883e4f261 + - Entity: + Id: d9cf00af-5935-40dd-8bac-fbe2b9eb88ce + Name: Cell_Loop (13) + Components: + fdc386e655c76a48895b63f7ca23fbd6: !TransformComponent + Id: e239e7d3-b0de-4691-8064-4bf040e894b5 + Position: {X: 0.9999981, Y: 0.0, Z: -5.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 271da816-8670-4cc2-bcd0-82e641128a2f + - Entity: + Id: dd8122b3-f4e3-45d5-883a-67381734bb59 + Name: Cell_Loop (2) + Components: + d6fd48a163356e49b193f2aa0371d588: !TransformComponent + Id: fcc478e7-7519-4dea-b4db-62c0a7b6e9b7 + Position: {X: 3.0, Y: 0.0, Z: 3.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! cfc1eecc-7975-4967-88d9-6ae8d11a1876 + - Entity: + Id: de1d9529-34c7-40ac-a6db-bdf382bf404a + Name: Cell_Loop (23) + Components: + d6fd48a163356e49b193f2aa0371d588: !TransformComponent + Id: dff248ba-67d0-47f7-b8f2-e2eae0b351c8 + Position: {X: 0.9999999, Y: 0.0, Z: 9.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 57f39b2d-83c4-444c-ac7f-c0d349a7e706 + - Entity: + Id: e55edbdf-2daa-4891-8167-ea51ece3e168 + Name: b_border (3) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: f96db6dc-92c3-4e2b-b7b0-a75f51927785 + Position: {X: 0.0, Y: -2.0, Z: 6.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: 192c0d5c-71f2-4590-aba9-793e3b2b390b + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 2ebd5bea-fe0d-45c7-94a6-f397044d293c + InstanceId: 999c5823-f16c-45f4-862c-0177bf44bf75 + - Entity: + Id: e6415f4f-cafe-4e4b-89ec-fbcc9e2119fa + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 28205b23-7a31-45eb-97ba-c4d867dfd320 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: fb7e3e8f-a662-46be-ac66-a24a3122382c + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 15a9af53-cd9b-4df6-ba46-1fbfbed7a525 + - Entity: + Id: e6840b80-a088-4490-ba6e-f62b2a3075ef + Name: Cell_Loop (19) + Components: + d6fd48a163356e49b193f2aa0371d588: !TransformComponent + Id: 5229e9b4-63e7-4f9c-a5d7-e05021844386 + Position: {X: 3.0, Y: 0.0, Z: 6.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 10d8ef07-d62c-4615-8c20-96d011e562e4 + - Entity: + Id: e7a0fa06-2343-474d-acdf-6179352fe27f + Name: Cell_Loop_Half (6) + Components: + f4e2a02aefccd44b9536a74296174962: !TransformComponent + Id: da845c41-648a-4ea4-95fd-daaceb056974 + Position: {X: 2.999998, Y: 0.0, Z: -5.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 30ce2c18-4f97-4d11-a0ff-a250c52a6658 + - Entity: + Id: e8434584-f033-4dd0-b9fe-f19077451b83 + Name: Rails_adv (2) + Components: + 67f6aa0148b7d84a8e2f2b02a371cdb6: !TransformComponent + Id: ca939b19-1b21-4719-978c-f2c749a68c88 + Position: {X: 1.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c280a78ea2cdb84b9f99ea3306f71c2b: !ModelComponent + Id: 392a1c05-90ec-4b7f-bd0b-d55798345ff4 + Model: 6c557c7e-7142-44f1-808d-acaf80a392fb:PlatformsOld/Models/Rails_adv + Materials: + ccadb09936f1334db758b0a075a047e4~0: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv + Base: + BasePartAsset: cf1361d5-4756-46c4-bf91-90a5987c0a5a:PlatformsOld/Prefabs/L_small_out + BasePartId: 93708d80-9f76-44de-84c3-86e1f1939697 + InstanceId: e0eb6e89-71f8-44a5-bed9-5294d7c8e7d1 + - Entity: + Id: e99a17b4-2acb-4d06-b8b9-916cd8dab0d4 + Name: Cell_Loop (7) + Components: + fdc386e655c76a48895b63f7ca23fbd6: !TransformComponent + Id: d99c5600-1a07-4501-9d86-d7aa3c6f152a + Position: {X: -1.00000191, Y: 0.0, Z: 0.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 52854201-097c-4dce-888f-09dcedee945f + - Entity: + Id: ee6a6e63-0262-459b-abc1-6469791934fc + Name: Cell_Loop + Components: + d6fd48a163356e49b193f2aa0371d588: !TransformComponent + Id: 08799301-d62d-4c0c-89be-2092bc2112bb + Position: {X: 0.9999999, Y: 0.0, Z: 3.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! d79c3669-bcab-4402-8180-c5ea42558cef + - Entity: + Id: efeaa731-8b14-4767-a122-d1512b926ffc + Name: Cell_Loop (9) + Components: + fdc386e655c76a48895b63f7ca23fbd6: !TransformComponent + Id: 801d63b2-9be5-48e0-9997-115396559606 + Position: {X: -1.00000191, Y: 0.0, Z: -2.50000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! bbd4f2fb-b567-4738-a0f0-56559d9589fe + - Entity: + Id: f1310210-2fe9-489f-a5f7-f1c89c01dc5c + Name: L_small_out (2) + Components: + e28d3cea8a884543a37c2fbcb01015fa: !TransformComponent + Id: b46f8f0b-c537-4972-87e6-c0387e4281c8 + Position: {X: 3.999998, Y: -2.0, Z: 2.861023E-06} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 0.99999994} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 36bde24588195942a938b846329516ff: ref!! 45e2bd36-1988-4259-a938-b846329516ff + 97b82cffd9b03d47aaeb02402b66e8db: ref!! ff2cb897-b0d9-473d-aaeb-02402b66e8db + 67f6aa0148b7d84a8e2f2b02a371cdb6: ref!! 01aaf667-b748-4ad8-8e2f-2b02a371cdb6 + a05cbb0f79427650c6022b951cc067b8: ref!! ca939b19-1b21-4719-978c-f2c749a68c88 + bd2b4b3c84df2f439b0519b378e7f817: ref!! 91611670-e1e2-43c6-ad0d-ec53865ffefa + - Entity: + Id: f131adf9-9fe6-42ce-9ee7-fb0b76a39be7 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 730d1114-8c63-4f72-874a-67817330e479 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 97fa6261-86e4-444b-8ee5-518e34f17960 + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: ca7fab21-c0ef-48a9-aad1-22d720da0cba + - Entity: + Id: f47d8362-eca0-408c-9cb3-88d82d4f6d61 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 30ce2c18-4f97-4d11-a0ff-a250c52a6658 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 984511f8-5073-4beb-999b-d861448cefd5 + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 707337bf-fab4-4b0f-839b-aa42624f56bc + - Entity: + Id: f5d5fe0e-6ec5-4f54-aaf4-6800db48d8ee + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 18559fcf-4cfb-4891-9ca0-e22be79c5db0 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: aecb23d3-1a4b-4b56-92f8-cc98bcad5eda + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 00f9ad1d-1478-4cbd-b103-81a2fa943e30 + - Entity: + Id: f62f9ab1-490e-48bc-acad-2a05dac1105f + Name: b_border_L_small + Components: + 97b82cffd9b03d47aaeb02402b66e8db: !TransformComponent + Id: 79316a8d-daa3-4471-bda1-4df1389c807b + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 4d9110a1d99be142ba33a39310bb42cb: !ModelComponent + Id: 16f624fc-2072-4d50-be9a-31946d9740bc + Model: 5d7344f6-4708-42e0-a7e5-ccaec2aa6952:PlatformsOld/Models/b_border_L_small + Materials: + 67115b975636144f95aaaff094ceaee9~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: cf1361d5-4756-46c4-bf91-90a5987c0a5a:PlatformsOld/Prefabs/L_small_out + BasePartId: 8cde3c03-0d9e-4c56-aa72-80d1484b8375 + InstanceId: e62cef7a-dca2-4f0a-9823-240e29cee4fc + - Entity: + Id: fa8fb501-7024-4238-ac1a-af2f8f42bca2 + Name: Cell_Loop (24) + Components: + d6fd48a163356e49b193f2aa0371d588: !TransformComponent + Id: 5b544290-23d1-4f82-9205-78aa24eba61c + Position: {X: 3.0, Y: 0.0, Z: 9.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 11636db5-de45-4028-aa9a-310cc94c9456 diff --git a/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Bridge_Segment_E.xkprefab b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Bridge_Segment_E.xkprefab new file mode 100644 index 0000000..76109a6 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Bridge_Segment_E.xkprefab @@ -0,0 +1,652 @@ +!PrefabAsset +Id: 3f6e78ba-304e-4293-a544-c499c32d0262 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! a3c7f047-9f31-466c-b750-1fd2f8829b1a + - ref!! eda97eb7-6786-4761-916f-f45dd99248ad + - ref!! 3d582c09-73ae-423b-b1a6-5727df8922c8 + - ref!! f2dde03c-14e3-4760-a61c-c7c8c974598b + - ref!! ffb871c4-b996-49e8-9ddf-028cf7145dd3 + - ref!! 008661a8-9924-4469-a82d-a752b13f14e6 + - ref!! 50ac804a-99e6-47d0-a757-3007d3c451cb + - ref!! 516de771-a9ca-4d83-a366-5925b7acd5b2 + - ref!! 32d19166-e82a-4187-ac6a-17db91b4577f + - ref!! dbb141b6-b653-4668-bbdf-562c1efafa7b + - ref!! 03f53ce3-d7d9-4816-ab33-ba7d1bb13edc + - ref!! f41ce51d-6f68-4585-b889-b67af030b001 + - ref!! 532d5657-4394-4e81-8e81-464f4de7df5c + - ref!! c50f49f3-73c7-4c1d-8bdf-139cb31b2440 + - ref!! b1d49408-08c9-4ef5-b9c5-7dd4810929d9 + - ref!! 57faa299-8a3e-45ac-9007-7ab3b3bb2d00 + - ref!! fb281dc0-8de1-4187-91ae-84f551498158 + Parts: + - Entity: + Id: 008661a8-9924-4469-a82d-a752b13f14e6 + Name: Cell_Loop_Half2 + Components: + 977ccea4671e484e9f21358b54169bb1: !TransformComponent + Id: a4ce7c97-1e67-4e48-9f21-358b54169bb1 + Position: {X: 0.9999962, Y: 0.0, Z: -1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! c8a1be11-ce88-447d-adaf-2845b5728fb2 + - Entity: + Id: 03f53ce3-d7d9-4816-ab33-ba7d1bb13edc + Name: border_1-75 + Components: + 409e1d2bcd91c64d8b9d387cb2720da8: !TransformComponent + Id: 2b1d9e40-91cd-4dc6-8b9d-387cb2720da8 + Position: {X: -1.75, Y: 0.0, Z: -3.49999523} + Rotation: {X: 0.0, Y: -0.7071067, Z: 0.0, W: -0.7071068} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 46ae890674598e4f9731fed939373fe4: ref!! 0689ae46-5974-4f8e-9731-fed939373fe4 + 59d43ef540581e469c0331197663531a: ref!! f53ed459-5840-461e-9c03-31197663531a + - Entity: + Id: 0dfe053a-3737-477f-9736-2928b6ccad64 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 3d2d8ac8-1bc1-43f5-9fdb-6a3f0d647bf5 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: c0e46a34-ffbb-46ef-b879-b1dc2a1a2f49 + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 61168447-41ce-49fc-92bc-96a7bd30e449 + - Entity: + Id: 12029008-c5ba-442a-81bd-1b713c46941b + Name: border_1 + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: b514c467-81b6-4611-ba42-7b070cce2460 + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: cf3c3525-0b32-4b67-b48d-523a5323eb69 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: 628f9986-331c-4898-ac40-2ea978ad6478:PlatformsOld/Prefabs/border_1-75 + BasePartId: 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + InstanceId: 2bff0236-1c89-4f76-8540-3c284cba1e1e + - Entity: + Id: 1808cf56-efb8-4d70-ac13-5a8199095468 + Name: b_border + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 0689ae46-5974-4f8e-9731-fed939373fe4 + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: a3a5a0a7-2f3c-4ceb-b0f1-e3a3127f0566 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: 628f9986-331c-4898-ac40-2ea978ad6478:PlatformsOld/Prefabs/border_1-75 + BasePartId: 753ce80b-d972-427a-8c5b-51c735743184 + InstanceId: 6610d77b-4cf3-4e7f-bf96-83bbf626f042 + - Entity: + Id: 22abcbfc-3e88-4524-a8bc-813a7d77d3e5 + Name: Rails_tube (2) + Components: + 53aa6e32d59eeb45aabd52fde17cd48d: !TransformComponent + Id: 326eaa53-9ed5-45eb-aabd-52fde17cd48d + Position: {X: -0.06581557, Y: 1.219562, Z: 4.052} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 0.85, Z: 0.85} + Children: {} + 0225b2a01b17f94d8b22f766fa64fa9b: !ModelComponent + Id: a0b22502-171b-4df9-8b22-f766fa64fa9b + Model: 40be0e1d-f941-454c-9f18-c765c7f3bc78:PlatformsOld/Models/Rails_tube + Materials: {} + Base: + BasePartAsset: fca227cf-3f9e-4d9a-96eb-db7a23bf62fd:PlatformsOld/Prefabs/rails_straight + BasePartId: d78c8476-d01e-4383-98cc-9691ec3d06e7 + InstanceId: bff448e0-5f2d-4dc8-8703-c54d46b779e9 + - Entity: + Id: 2848baf0-4d16-4204-8ec9-30b7da2f729a + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 58ce66eb-ac0b-4368-a3ec-b08993322b30 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 8ccf08c7-8197-416a-8138-d18e3faacadb + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 910bd3bd-8284-40be-88b5-87771543ecf4 + - Entity: + Id: 2e572c17-7187-4cfe-8f45-ff846a9abef1 + Name: Rails_tube (2) + Components: + 53aa6e32d59eeb45aabd52fde17cd48d: !TransformComponent + Id: 168b6982-558a-46f1-a52c-f6088e183c6b + Position: {X: -0.06581557, Y: 1.219562, Z: 4.052} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 0.85, Z: 0.85} + Children: {} + 0225b2a01b17f94d8b22f766fa64fa9b: !ModelComponent + Id: 2e83ddc7-7f21-4f4a-a16a-4674ee9b25fc + Model: 40be0e1d-f941-454c-9f18-c765c7f3bc78:PlatformsOld/Models/Rails_tube + Materials: {} + Base: + BasePartAsset: fca227cf-3f9e-4d9a-96eb-db7a23bf62fd:PlatformsOld/Prefabs/rails_straight + BasePartId: d78c8476-d01e-4383-98cc-9691ec3d06e7 + InstanceId: b99b6ff4-601b-4692-943d-6a83cff991a4 + - Entity: + Id: 32d19166-e82a-4187-ac6a-17db91b4577f + Name: border_1 (3) + Components: + 840f79e18707da4390fa433d8a758439: !TransformComponent + Id: e1790f84-0787-43da-90fa-433d8a758439 + Position: {X: 2.0, Y: 0.0, Z: 3.50000286} + Rotation: {X: 0.0, Y: 0.7071068, Z: 0.0, W: -0.7071067} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 46ae890674598e4f9731fed939373fe4: ref!! 925ea840-6d1b-47dc-a529-a168bd406d95 + 59d43ef540581e469c0331197663531a: ref!! 57859727-0d11-449d-9279-87033e7921a1 + - Entity: + Id: 3d582c09-73ae-423b-b1a6-5727df8922c8 + Name: Cell_Loop_Half2 (4) + Components: + 977ccea4671e484e9f21358b54169bb1: !TransformComponent + Id: 24f5dda5-ca4d-4797-9ff6-813abc1aba30 + Position: {X: 2.99999619, Y: 0.0, Z: 1.5} + Rotation: {X: 0.0, Y: -1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 12fd3d5d-2bca-49bb-bfed-74a12fabf193 + - Entity: + Id: 4f76b54d-6d3d-4a9f-991d-53ef6b33a2ca + Name: border_1 + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: b2ceb8f4-a599-475e-b591-668bb71fa253 + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: 4fdd89d0-25eb-4d2e-ac93-2219104d6e9e + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: 628f9986-331c-4898-ac40-2ea978ad6478:PlatformsOld/Prefabs/border_1-75 + BasePartId: 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + InstanceId: 716acdac-3c10-470e-a241-c3e558746066 + - Entity: + Id: 50ac804a-99e6-47d0-a757-3007d3c451cb + Name: border_1-75 (2) + Components: + 409e1d2bcd91c64d8b9d387cb2720da8: !TransformComponent + Id: 4c0d444d-7c49-4a89-95a4-d18556e88ae9 + Position: {X: -1.75, Y: 0.0, Z: 3.50000286} + Rotation: {X: 0.0, Y: 0.7071068, Z: 0.0, W: -0.7071067} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 46ae890674598e4f9731fed939373fe4: ref!! 1629f90a-3153-496d-a245-6cccd64c4b40 + 59d43ef540581e469c0331197663531a: ref!! 148c49e5-70cd-42aa-979c-a0e800b09fba + - Entity: + Id: 516de771-a9ca-4d83-a366-5925b7acd5b2 + Name: border_1 (4) + Components: + 64832f9db923a94a94c197adf0251d86: !TransformComponent + Id: 9d2f8364-23b9-4aa9-94c1-97adf0251d86 + Position: {X: 0.249996245, Y: 0.0, Z: 3.50000858} + Rotation: {X: 0.0, Y: 0.7071068, Z: 0.0, W: -0.7071067} + Scale: {X: 1.0, Y: 1.0, Z: 0.75} + Children: + 46ae890674598e4f9731fed939373fe4: ref!! dff112bd-ce59-48f1-8e79-4e0eefa029a3 + 59d43ef540581e469c0331197663531a: ref!! fa621301-8bf1-4a6e-81e9-3b5052cc1ca0 + - Entity: + Id: 51be7dcc-64a0-4229-8a1b-25c88f69728a + Name: border_1 + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: f53ed459-5840-461e-9c03-31197663531a + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: a9bf737f-b0f9-4488-8ff5-1bf26dc6b73e + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: 628f9986-331c-4898-ac40-2ea978ad6478:PlatformsOld/Prefabs/border_1-75 + BasePartId: 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + InstanceId: 6610d77b-4cf3-4e7f-bf96-83bbf626f042 + - Entity: + Id: 532d5657-4394-4e81-8e81-464f4de7df5c + Name: Cell_Loop (6) + Components: + 19a0d84d5a07574e9a5df1d9abce67a0: !TransformComponent + Id: 4dd8a019-075a-4e57-9a5d-f1d9abce67a0 + Position: {X: 0.9999962, Y: 0.0, Z: 1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 58ce66eb-ac0b-4368-a3ec-b08993322b30 + - Entity: + Id: 57faa299-8a3e-45ac-9007-7ab3b3bb2d00 + Name: rails_straight + Components: + 16035414b1c7674a863f1459b8538b57: !TransformComponent + Id: 14540316-c7b1-4a67-863f-1459b8538b57 + Position: {X: -2.99999976, Y: 0.0, Z: -3.49999952} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 0.741} + Children: + 53aa6e32d59eeb45aabd52fde17cd48d: ref!! 168b6982-558a-46f1-a52c-f6088e183c6b + - Entity: + Id: 72e7295b-8206-48b0-864d-842148826f39 + Name: b_border + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: f518920a-e3f3-4de0-8a51-680646edcd04 + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: f38a98af-0c2c-4488-80f0-fee2cdd8c224 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: 628f9986-331c-4898-ac40-2ea978ad6478:PlatformsOld/Prefabs/border_1-75 + BasePartId: 753ce80b-d972-427a-8c5b-51c735743184 + InstanceId: 2bff0236-1c89-4f76-8540-3c284cba1e1e + - Entity: + Id: 9a7d5649-c835-4c8e-a249-3f3f8f01ac46 + Name: border_1 + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 57859727-0d11-449d-9279-87033e7921a1 + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: efbd8926-361c-432b-8f35-7e6f23b37a39 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: 628f9986-331c-4898-ac40-2ea978ad6478:PlatformsOld/Prefabs/border_1-75 + BasePartId: 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + InstanceId: 3d7bec2b-ab86-4c14-bf04-3c15d96ff709 + - Entity: + Id: a0c7ecd0-c779-4477-8003-825eabbfd43d + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 487eaff3-cdfb-48b8-b643-e93ad7b33ae6 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 6c06739e-23b0-4672-ad21-ea07056898b9 + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: bed98536-d2a6-4a3f-b0e6-759f4efa2c4b + - Entity: + Id: a3c7f047-9f31-466c-b750-1fd2f8829b1a + Name: Cell_Loop_Half2 (6) + Components: + 977ccea4671e484e9f21358b54169bb1: !TransformComponent + Id: f44dca15-1b27-46dd-ae60-45b47c0dec5f + Position: {X: -1.00000381, Y: 0.0, Z: 1.5} + Rotation: {X: 0.0, Y: -1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 7f3ee55b-6851-4e37-a146-a97505ec337e + - Entity: + Id: a6ea054c-0a81-46ab-9604-ca8ec0f93371 + Name: b_border + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 1629f90a-3153-496d-a245-6cccd64c4b40 + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: e5569021-9830-487d-8b3d-133cdfe8f2d9 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: 628f9986-331c-4898-ac40-2ea978ad6478:PlatformsOld/Prefabs/border_1-75 + BasePartId: 753ce80b-d972-427a-8c5b-51c735743184 + InstanceId: 6c9f959a-aa73-47a2-ac83-40975b05336f + - Entity: + Id: b1d49408-08c9-4ef5-b9c5-7dd4810929d9 + Name: Cell_Loop (4) + Components: + 19a0d84d5a07574e9a5df1d9abce67a0: !TransformComponent + Id: 18b89b1d-36d2-4642-badd-66ff1873accc + Position: {X: -3.00000381, Y: 0.0, Z: 1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 73062b50-7647-4262-acfe-852651274e4b + - Entity: + Id: b2dbc800-9e5b-4d06-b7c5-ae3e70d29931 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: c8a1be11-ce88-447d-adaf-2845b5728fb2 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: f27a6f05-d8da-453a-a9b3-769382feb2ba + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: d7320b0f-8c5c-4147-802b-530ed9b21790 + - Entity: + Id: b6b08ea4-1705-46c5-a4c1-33fb5c2bb243 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 73062b50-7647-4262-acfe-852651274e4b + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 0e651d87-257b-461b-98df-cbb730af5d4c + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 8ae3bef9-8da8-4f1a-932b-9477a38dba89 + - Entity: + Id: bd306991-dce7-45b8-bd0f-deddb84fd278 + Name: border_1 + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: fa621301-8bf1-4a6e-81e9-3b5052cc1ca0 + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: 230b8ce2-b88d-436b-b90d-54676ef93cf9 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: 628f9986-331c-4898-ac40-2ea978ad6478:PlatformsOld/Prefabs/border_1-75 + BasePartId: 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + InstanceId: 241861b9-3530-4566-a4ff-2adfd6d7c3e2 + - Entity: + Id: c50f49f3-73c7-4c1d-8bdf-139cb31b2440 + Name: Cell_Loop (5) + Components: + 19a0d84d5a07574e9a5df1d9abce67a0: !TransformComponent + Id: b44f3dee-31ed-452d-9cb6-ec2423658cec + Position: {X: -1.00000381, Y: 0.0, Z: 1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 487eaff3-cdfb-48b8-b643-e93ad7b33ae6 + - Entity: + Id: c54e18f6-dfa1-4de2-bd43-5f3a0ad73cf7 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 043e409b-8dc7-4ceb-a275-bcdd8cec9162 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: c4640a3c-091c-48b7-90a9-fdda03ee530b + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: fa8df7ee-34a8-4dff-9abe-86748be7bef7 + - Entity: + Id: d9a44864-8f0b-4461-91bc-486b2203ddac + Name: b_border + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: dff112bd-ce59-48f1-8e79-4e0eefa029a3 + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: 591c0416-8449-415b-88f1-ef7177a2c4ef + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: 628f9986-331c-4898-ac40-2ea978ad6478:PlatformsOld/Prefabs/border_1-75 + BasePartId: 753ce80b-d972-427a-8c5b-51c735743184 + InstanceId: 241861b9-3530-4566-a4ff-2adfd6d7c3e2 + - Entity: + Id: dbb141b6-b653-4668-bbdf-562c1efafa7b + Name: border_1 (2) + Components: + 840f79e18707da4390fa433d8a758439: !TransformComponent + Id: 0508f83f-3159-41df-be1f-c3aaa6b3a3ff + Position: {X: 2.0, Y: 0.0, Z: -3.49999523} + Rotation: {X: 0.0, Y: -0.7071067, Z: 0.0, W: -0.7071068} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 46ae890674598e4f9731fed939373fe4: ref!! 66bfb9b8-ab64-4743-984f-161aa5fbd137 + 59d43ef540581e469c0331197663531a: ref!! b2ceb8f4-a599-475e-b591-668bb71fa253 + - Entity: + Id: e036c644-fc54-4922-bc41-42a1cc0dda39 + Name: b_border + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 925ea840-6d1b-47dc-a529-a168bd406d95 + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: 2b47843d-d869-416b-97d7-d469b13dd216 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: 628f9986-331c-4898-ac40-2ea978ad6478:PlatformsOld/Prefabs/border_1-75 + BasePartId: 753ce80b-d972-427a-8c5b-51c735743184 + InstanceId: 3d7bec2b-ab86-4c14-bf04-3c15d96ff709 + - Entity: + Id: e79d7dcf-a460-4d79-b28f-30453bf0ec12 + Name: b_border + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 66bfb9b8-ab64-4743-984f-161aa5fbd137 + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: a9b90ae1-c956-4c5d-b2bb-d1959e9ca639 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: 628f9986-331c-4898-ac40-2ea978ad6478:PlatformsOld/Prefabs/border_1-75 + BasePartId: 753ce80b-d972-427a-8c5b-51c735743184 + InstanceId: 716acdac-3c10-470e-a241-c3e558746066 + - Entity: + Id: eda97eb7-6786-4761-916f-f45dd99248ad + Name: Cell_Loop_Half2 (5) + Components: + 977ccea4671e484e9f21358b54169bb1: !TransformComponent + Id: 48ad49df-c755-4b00-92be-2986a170c018 + Position: {X: 0.9999962, Y: 0.0, Z: 1.5} + Rotation: {X: 0.0, Y: -1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 043e409b-8dc7-4ceb-a275-bcdd8cec9162 + - Entity: + Id: f02e7510-e31f-415f-a8a0-cf05be73d25c + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 7f3ee55b-6851-4e37-a146-a97505ec337e + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 7779edd9-dc5c-47d1-b882-4e02e7e6b6c2 + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 62bd277c-b058-4eb1-81aa-bdc8ec797b88 + - Entity: + Id: f0590002-1183-4568-8af5-a45b89b669d0 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 12fd3d5d-2bca-49bb-bfed-74a12fabf193 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: fa091b9b-c9b1-479e-be7b-5d1b93f513c8 + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 9f6ce85f-a3f6-4061-b54f-550c5e68fb36 + - Entity: + Id: f2dde03c-14e3-4760-a61c-c7c8c974598b + Name: Cell_Loop_Half2 (3) + Components: + 977ccea4671e484e9f21358b54169bb1: !TransformComponent + Id: 9f1b5c45-784c-4476-848d-02e49444099d + Position: {X: -3.00000381, Y: 0.0, Z: -1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! b3b999c0-c4cf-4377-9b16-9e697b3f596e + - Entity: + Id: f41ce51d-6f68-4585-b889-b67af030b001 + Name: border_1 + Components: + 64832f9db923a94a94c197adf0251d86: !TransformComponent + Id: e5311394-2d67-4dc2-88f6-7b5a25aaf2f6 + Position: {X: 0.250003874, Y: 0.0, Z: -3.49999523} + Rotation: {X: 0.0, Y: -0.7071067, Z: 0.0, W: -0.7071068} + Scale: {X: 1.0, Y: 1.0, Z: 0.75} + Children: + 46ae890674598e4f9731fed939373fe4: ref!! f518920a-e3f3-4de0-8a51-680646edcd04 + 59d43ef540581e469c0331197663531a: ref!! b514c467-81b6-4611-ba42-7b070cce2460 + - Entity: + Id: f754dadb-93d4-44f9-a9f7-36723257ce03 + Name: border_1 + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 148c49e5-70cd-42aa-979c-a0e800b09fba + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: ad7887e7-c869-48fb-9ac4-ff55828fa514 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: 628f9986-331c-4898-ac40-2ea978ad6478:PlatformsOld/Prefabs/border_1-75 + BasePartId: 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + InstanceId: 6c9f959a-aa73-47a2-ac83-40975b05336f + - Entity: + Id: f8bef9ee-7e21-477e-af73-41f1ded83ad1 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: b3b999c0-c4cf-4377-9b16-9e697b3f596e + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: e16489cd-4bbc-4f13-9ec0-e98f31a4a7d8 + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01:PlatformsOld/Prefabs/Cell_Loop_Half2 + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: f90106e8-46e1-4e54-aa3c-028f1eb7d753 + - Entity: + Id: fb281dc0-8de1-4187-91ae-84f551498158 + Name: rails_straight (2) + Components: + 16035414b1c7674a863f1459b8538b57: !TransformComponent + Id: f403ce56-45a1-4bd1-9f77-9762a581ac4f + Position: {X: -3.00000024, Y: 0.0, Z: 3.5} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: -1.0, Y: 1.0, Z: 0.741} + Children: + 53aa6e32d59eeb45aabd52fde17cd48d: ref!! 326eaa53-9ed5-45eb-aabd-52fde17cd48d + - Entity: + Id: ffb871c4-b996-49e8-9ddf-028cf7145dd3 + Name: Cell_Loop_Half2 (2) + Components: + 977ccea4671e484e9f21358b54169bb1: !TransformComponent + Id: a27790e4-fc84-4563-8cec-84132458ee4c + Position: {X: -1.00000381, Y: 0.0, Z: -1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 3d2d8ac8-1bc1-43f5-9fdb-6a3f0d647bf5 diff --git a/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Bridge_Segment_N.xkprefab b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Bridge_Segment_N.xkprefab new file mode 100644 index 0000000..9d58fe5 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Bridge_Segment_N.xkprefab @@ -0,0 +1,683 @@ +!PrefabAsset +Id: 40286dc2-07fc-45f7-8a56-d2791b231169 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! ab87ab20-f6ec-4110-b0c1-887a25b11b82 + - ref!! 55490f34-e6bf-465d-9fd2-9744b1bae7ee + - ref!! 6660a7c5-d635-4796-878d-d78999b8edd8 + - ref!! 7dae0ff9-036a-49b2-8d52-4a1e96db252e + - ref!! c913cb31-8f1a-4f6a-bc4d-0b5e7a35be86 + - ref!! d60fa7eb-72c8-4f08-9001-e85f10cdb15a + - ref!! 598f3d9f-9b77-43dd-b864-cc14378ef973 + - ref!! 6acb2b60-3f29-4656-a992-892c48a9206f + - ref!! 81747c3e-d049-414e-9ee3-d026ae527dc6 + - ref!! 62a7b8a9-b9a4-4d32-8117-0d676fef46d4 + - ref!! 5fd756df-08e7-44df-8fab-4334e82a62e7 + - ref!! df714ea4-f21c-4d81-90e4-93d3902f0cd5 + - ref!! bd7d0634-d1f4-4425-9ec1-f93582798184 + - ref!! 3e4b0dcc-116d-4930-b0e6-f93bb8ca562e + - ref!! bdd7d6dc-df1e-4cd7-b418-3a850fdedde8 + - ref!! 4eadf25a-2925-4110-bc19-e13edf15f5c6 + - ref!! 9a310212-e40d-4ce0-962d-2534b40e2be9 + - ref!! 2c3f1b0f-6242-4bc9-9bcd-eb045c4fce91 + Parts: + - Entity: + Id: 06502fcd-c5f7-46a9-86e4-cebf421a1d76 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: c8a1be11-ce88-447d-adaf-2845b5728fb2 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: c0e46a34-ffbb-46ef-b879-b1dc2a1a2f49 + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 0f62e65d-78ba-48dc-b805-e69714f1bc13 + - Entity: + Id: 132d46a0-f615-44e1-bf85-3f725b98cc95 + Name: border_1 + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: f53ed459-5840-461e-9c03-31197663531a + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: cf3c3525-0b32-4b67-b48d-523a5323eb69 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: 628f9986-331c-4898-ac40-2ea978ad6478:PlatformsOld/Prefabs/border_1-75 + BasePartId: 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + InstanceId: c538dcf7-510c-48d2-a727-d94996efc39b + - Entity: + Id: 1bc1f82f-b7d1-4c37-8edb-96a9badb5bcc + Name: b_border + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 0689ae46-5974-4f8e-9731-fed939373fe4 + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: a3a5a0a7-2f3c-4ceb-b0f1-e3a3127f0566 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: 628f9986-331c-4898-ac40-2ea978ad6478:PlatformsOld/Prefabs/border_1-75 + BasePartId: 753ce80b-d972-427a-8c5b-51c735743184 + InstanceId: 5a2f5028-4cf5-4779-becc-2a326c47f354 + - Entity: + Id: 2c3f1b0f-6242-4bc9-9bcd-eb045c4fce91 + Name: rails_straight (2) + Components: + eacf5f1393bb0c44898bafc68b329274: !TransformComponent + Id: 135fcfea-bb93-440c-898b-afc68b329274 + Position: {X: -3.99999976, Y: 0.0, Z: -3.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: -1.0, Y: 1.0, Z: 0.741} + Children: + 53aa6e32d59eeb45aabd52fde17cd48d: ref!! 326eaa53-9ed5-45eb-aabd-52fde17cd48d + - Entity: + Id: 31913727-b8d0-4e3b-ba2d-e844bc4d3c26 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 984f3893-4766-4fd8-b02f-d34caaabb098 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 3c7b15f0-4d34-4df5-8773-6afa72a000b3 + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 51637a14-de06-430f-9730-d35c5a48e387 + - Entity: + Id: 39699f70-948f-4305-87be-c8c2cad06528 + Name: border_1 + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 45784e3a-e880-4c67-a6e6-d2e5705edfa7 + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: 5192e13f-5f7c-40c8-8bef-b98433019271 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: 628f9986-331c-4898-ac40-2ea978ad6478:PlatformsOld/Prefabs/border_1-75 + BasePartId: 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + InstanceId: 9b862567-2460-4915-80a8-42ffd69c09c7 + - Entity: + Id: 3dae029e-d103-4b5a-9cde-df2feae353d4 + Name: Rails_tube (2) + Components: + 53aa6e32d59eeb45aabd52fde17cd48d: !TransformComponent + Id: 55c57e92-8a64-4749-9cc3-a112e535aeb9 + Position: {X: -0.06581557, Y: 1.219562, Z: 4.052} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 0.85, Z: 0.85} + Children: {} + 0225b2a01b17f94d8b22f766fa64fa9b: !ModelComponent + Id: a0b22502-171b-4df9-8b22-f766fa64fa9b + Model: 40be0e1d-f941-454c-9f18-c765c7f3bc78:PlatformsOld/Models/Rails_tube + Materials: {} + Base: + BasePartAsset: fca227cf-3f9e-4d9a-96eb-db7a23bf62fd:PlatformsOld/Prefabs/rails_straight + BasePartId: d78c8476-d01e-4383-98cc-9691ec3d06e7 + InstanceId: 01df2be3-4fc8-4584-9429-baa2127267a4 + - Entity: + Id: 3e4b0dcc-116d-4930-b0e6-f93bb8ca562e + Name: Cell_Loop_Half (2) + Components: + 19000593597cfd48b489212e9b15ad4a: !TransformComponent + Id: 93050019-7c59-48fd-b489-212e9b15ad4a + Position: {X: -2.99999762, Y: 0.0, Z: -3.00000477} + Rotation: {X: 0.0, Y: -1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 5611f12a-35d7-4d78-83ec-2db28cd2ddb3 + - Entity: + Id: 456a4dbd-a00a-4cac-a3b6-c8a358d2ff37 + Name: border_1 + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: c58f80aa-f66e-425c-8db6-f365189686c2 + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: 40bc66ec-9d8c-43a5-9922-a14f2f1e7a02 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: 628f9986-331c-4898-ac40-2ea978ad6478:PlatformsOld/Prefabs/border_1-75 + BasePartId: 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + InstanceId: 3e5790d6-a81d-4400-a738-48de8abe88f4 + - Entity: + Id: 47c3a52e-1e9f-4e41-b732-aea78b26ced1 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 5611f12a-35d7-4d78-83ec-2db28cd2ddb3 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 46fbc054-c6ea-4f93-a6b4-bd2cb435bf30 + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 2733f33a-09e1-49ab-97b4-24cc4ae962a5 + - Entity: + Id: 491deabc-ca82-4af1-8720-65ec224df55e + Name: b_border + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: b87340a9-6669-4cd0-8ea6-d71fee7e49a6 + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: 71e2aa66-2736-428d-8b51-60b01bad47e6 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: 628f9986-331c-4898-ac40-2ea978ad6478:PlatformsOld/Prefabs/border_1-75 + BasePartId: 753ce80b-d972-427a-8c5b-51c735743184 + InstanceId: fa4d97e1-cbf6-48c2-a6ea-e6137ab807b3 + - Entity: + Id: 4a4ea0e2-7576-4d62-8b03-0383bf407949 + Name: b_border + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: b033f5c9-5a1c-4267-92e4-f24d799fed2d + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: e9533abf-4b7a-467b-ba3a-f41a04722c49 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: 628f9986-331c-4898-ac40-2ea978ad6478:PlatformsOld/Prefabs/border_1-75 + BasePartId: 753ce80b-d972-427a-8c5b-51c735743184 + InstanceId: 3e5790d6-a81d-4400-a738-48de8abe88f4 + - Entity: + Id: 4d25c1af-2d67-4a15-8b96-93c979616f82 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 549444b1-6543-4990-9ccd-df9ba7ea9906 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: c02d4b9e-ffa5-4025-8db1-d0489c780fa6 + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 0e5d2da1-87dd-4eac-b008-7f23cc354400 + - Entity: + Id: 4e4e3e2d-43e2-498c-9ab0-f29da5e9b45b + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: db37e0ea-a23f-4407-8c18-6d2ac7d04300 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 602d34b2-f9ac-499f-bc20-d941f3a9fd2e + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: b837c0a5-f312-4e37-8816-f8fa49bdd1c0 + - Entity: + Id: 4eadf25a-2925-4110-bc19-e13edf15f5c6 + Name: Cell_Loop_Half (4) + Components: + 19000593597cfd48b489212e9b15ad4a: !TransformComponent + Id: 953f2e8b-eec7-4e67-b48a-64aecd88a61c + Position: {X: 3.00000238, Y: 0.0, Z: 2.99999523} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! c8a1be11-ce88-447d-adaf-2845b5728fb2 + - Entity: + Id: 50e98a33-fc64-4314-ac6e-24368fea2620 + Name: Rails_tube (2) + Components: + 53aa6e32d59eeb45aabd52fde17cd48d: !TransformComponent + Id: 326eaa53-9ed5-45eb-aabd-52fde17cd48d + Position: {X: -0.06581557, Y: 1.219562, Z: 4.052} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 0.85, Z: 0.85} + Children: {} + 0225b2a01b17f94d8b22f766fa64fa9b: !ModelComponent + Id: 0232de06-8ef0-41ea-aee7-dd20e0938027 + Model: 40be0e1d-f941-454c-9f18-c765c7f3bc78:PlatformsOld/Models/Rails_tube + Materials: {} + Base: + BasePartAsset: fca227cf-3f9e-4d9a-96eb-db7a23bf62fd:PlatformsOld/Prefabs/rails_straight + BasePartId: d78c8476-d01e-4383-98cc-9691ec3d06e7 + InstanceId: 8fb066b4-2a08-47ce-977b-2b04fb9beaea + - Entity: + Id: 55490f34-e6bf-465d-9fd2-9744b1bae7ee + Name: Cell_Loop + Components: + 19a0d84d5a07574e9a5df1d9abce67a0: !TransformComponent + Id: 4dd8a019-075a-4e57-9a5d-f1d9abce67a0 + Position: {X: 1.00000238, Y: 0.0, Z: -4.76837158E-06} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 984f3893-4766-4fd8-b02f-d34caaabb098 + - Entity: + Id: 598f3d9f-9b77-43dd-b864-cc14378ef973 + Name: border_1-75 + Components: + 409e1d2bcd91c64d8b9d387cb2720da8: !TransformComponent + Id: 2b1d9e40-91cd-4dc6-8b9d-387cb2720da8 + Position: {X: -3.99999762, Y: 0.0, Z: 1.74999523} + Rotation: {X: 0.0, Y: -1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 46ae890674598e4f9731fed939373fe4: ref!! b033f5c9-5a1c-4267-92e4-f24d799fed2d + 59d43ef540581e469c0331197663531a: ref!! c58f80aa-f66e-425c-8db6-f365189686c2 + - Entity: + Id: 5b87bbbf-a1f0-42f6-85e5-2714ba27e1eb + Name: b_border + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 1ff97ba6-ff76-4a80-a41b-e2b97eed3691 + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: 25ded76f-744c-41fe-8ac2-b46755ad5f8d + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: 628f9986-331c-4898-ac40-2ea978ad6478:PlatformsOld/Prefabs/border_1-75 + BasePartId: 753ce80b-d972-427a-8c5b-51c735743184 + InstanceId: c538dcf7-510c-48d2-a727-d94996efc39b + - Entity: + Id: 5fd756df-08e7-44df-8fab-4334e82a62e7 + Name: border_1-75 (2) + Components: + 409e1d2bcd91c64d8b9d387cb2720da8: !TransformComponent + Id: e4c70461-3b9e-4dfb-a042-7d55481090c9 + Position: {X: 4.00000238, Y: 0.0, Z: 1.74999619} + Rotation: {X: 0.0, Y: 8.742278E-08, Z: 0.0, W: -1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 46ae890674598e4f9731fed939373fe4: ref!! 0689ae46-5974-4f8e-9731-fed939373fe4 + 59d43ef540581e469c0331197663531a: ref!! 9650c700-fc30-4748-9a59-31872f5a8178 + - Entity: + Id: 62547c2c-4839-418c-a4a6-d251c13dcbe2 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: a449dd43-c6d5-4d27-969a-3062d9e62c35 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 98c629b6-8703-4ecb-854c-89fc9ebd97d1 + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: e0706719-e903-40a8-825f-860f726b9f8d + - Entity: + Id: 62a7b8a9-b9a4-4d32-8117-0d676fef46d4 + Name: Cell_Loop (6) + Components: + 19a0d84d5a07574e9a5df1d9abce67a0: !TransformComponent + Id: ea7f5a72-1f70-4a54-bc25-22e93e544ed7 + Position: {X: 1.00000238, Y: 0.0, Z: 2.99999523} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 4dae0497-d7b5-4ba0-a54c-f6d51c5b1a0e + - Entity: + Id: 6660a7c5-d635-4796-878d-d78999b8edd8 + Name: Cell_Loop (2) + Components: + 19a0d84d5a07574e9a5df1d9abce67a0: !TransformComponent + Id: 45524a67-edd8-4967-aa85-44b0f9198c04 + Position: {X: -0.999997556, Y: 0.0, Z: -4.76837158E-06} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! db37e0ea-a23f-4407-8c18-6d2ac7d04300 + - Entity: + Id: 699ea90f-3de2-45ec-9dda-3ed03c0257ae + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 4dae0497-d7b5-4ba0-a54c-f6d51c5b1a0e + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: ace30ba6-eb3d-4672-933c-70652ecf8d8b + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 023e3fba-9970-40d4-9d0d-41239ab91012 + - Entity: + Id: 6acb2b60-3f29-4656-a992-892c48a9206f + Name: Cell_Loop (4) + Components: + 19a0d84d5a07574e9a5df1d9abce67a0: !TransformComponent + Id: 1390c393-7e1c-467e-b533-df57b5950326 + Position: {X: -2.99999762, Y: 0.0, Z: 2.99999523} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! a449dd43-c6d5-4d27-969a-3062d9e62c35 + - Entity: + Id: 6d5c991f-327b-4b84-bb0a-08d6c52b5992 + Name: border_1 + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 39a78af1-51d9-4f71-bd93-7d6119a3a893 + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: 0a0cb849-5b17-4771-a3e2-079715417ff5 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: 628f9986-331c-4898-ac40-2ea978ad6478:PlatformsOld/Prefabs/border_1-75 + BasePartId: 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + InstanceId: b80300af-4f2c-4f5b-976b-cfc64970b48a + - Entity: + Id: 73cca138-220f-4b1a-bb3c-86a89d618ea8 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 964dab65-cb32-43d3-bc3c-f4ad54dd0e13 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: ec3248c1-4e4a-439c-91a4-a3762149c9ab + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 230dbe3e-b2cc-4722-9223-7c84ace6890b + - Entity: + Id: 7dae0ff9-036a-49b2-8d52-4a1e96db252e + Name: Cell_Loop (3) + Components: + 19a0d84d5a07574e9a5df1d9abce67a0: !TransformComponent + Id: 36cf8cd7-7455-4aae-884a-d86d84b79ee2 + Position: {X: -2.99999762, Y: 0.0, Z: -4.76837158E-06} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! e3d6526e-35f9-4e81-a0d8-f8a2f157d97c + - Entity: + Id: 81747c3e-d049-414e-9ee3-d026ae527dc6 + Name: Cell_Loop (5) + Components: + 19a0d84d5a07574e9a5df1d9abce67a0: !TransformComponent + Id: 3d0ba5c6-23b9-47ef-a364-c18f8c5a2763 + Position: {X: -0.999997556, Y: 0.0, Z: 2.99999523} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 964dab65-cb32-43d3-bc3c-f4ad54dd0e13 + - Entity: + Id: 9a310212-e40d-4ce0-962d-2534b40e2be9 + Name: rails_straight + Components: + eacf5f1393bb0c44898bafc68b329274: !TransformComponent + Id: 5df488ae-58bc-4a80-baed-b87298eb1e10 + Position: {X: 4.0, Y: 0.0, Z: -3.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 0.741} + Children: + 53aa6e32d59eeb45aabd52fde17cd48d: ref!! 55c57e92-8a64-4749-9cc3-a112e535aeb9 + - Entity: + Id: 9fc0a94e-7cd7-473c-9a88-b530e1f34726 + Name: border_1 + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 8693e417-d278-494f-ae76-1a32e9e9c760 + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: d87b26c9-bd42-439c-8766-6d5010746c0d + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: 628f9986-331c-4898-ac40-2ea978ad6478:PlatformsOld/Prefabs/border_1-75 + BasePartId: 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + InstanceId: fa4d97e1-cbf6-48c2-a6ea-e6137ab807b3 + - Entity: + Id: a66b7027-3a47-40e5-a60d-16042c2ae972 + Name: border_1 + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 9650c700-fc30-4748-9a59-31872f5a8178 + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: 03836fe1-ae74-415b-9ab7-26e46b97273e + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: 628f9986-331c-4898-ac40-2ea978ad6478:PlatformsOld/Prefabs/border_1-75 + BasePartId: 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + InstanceId: 5a2f5028-4cf5-4779-becc-2a326c47f354 + - Entity: + Id: ab87ab20-f6ec-4110-b0c1-887a25b11b82 + Name: border_1 (3) + Components: + 840f79e18707da4390fa433d8a758439: !TransformComponent + Id: e1790f84-0787-43da-90fa-433d8a758439 + Position: {X: 4.00000238, Y: 0.0, Z: -2.00000381} + Rotation: {X: 0.0, Y: 8.742278E-08, Z: 0.0, W: -1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 46ae890674598e4f9731fed939373fe4: ref!! b87340a9-6669-4cd0-8ea6-d71fee7e49a6 + 59d43ef540581e469c0331197663531a: ref!! 8693e417-d278-494f-ae76-1a32e9e9c760 + - Entity: + Id: bd7d0634-d1f4-4425-9ec1-f93582798184 + Name: Cell_Loop_Half + Components: + 19000593597cfd48b489212e9b15ad4a: !TransformComponent + Id: 3b60e3d2-5fb5-4544-8a6b-f76ca78e9abf + Position: {X: 3.00000238, Y: 0.0, Z: -4.76837158E-06} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 549444b1-6543-4990-9ccd-df9ba7ea9906 + - Entity: + Id: bdd7d6dc-df1e-4cd7-b418-3a850fdedde8 + Name: Cell_Loop_Half (3) + Components: + 19000593597cfd48b489212e9b15ad4a: !TransformComponent + Id: 8eb5e06d-1295-47d0-814a-a1115045b485 + Position: {X: -2.99999762, Y: 0.0, Z: -4.76837158E-06} + Rotation: {X: 0.0, Y: -1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 23ab35f5-4173-41c1-925f-d7b5aa0587ba + - Entity: + Id: c913cb31-8f1a-4f6a-bc4d-0b5e7a35be86 + Name: border_1 (2) + Components: + 840f79e18707da4390fa433d8a758439: !TransformComponent + Id: d5fc3baf-0c0e-4dd0-9c40-278f51ac6f6d + Position: {X: -3.99999762, Y: 0.0, Z: -2.00000477} + Rotation: {X: 0.0, Y: -1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 46ae890674598e4f9731fed939373fe4: ref!! 325c6148-aab4-4fc8-a06e-ab93116732b4 + 59d43ef540581e469c0331197663531a: ref!! 45784e3a-e880-4c67-a6e6-d2e5705edfa7 + - Entity: + Id: d00a8f2e-e647-42b3-bfea-f69d31f83b50 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: e3d6526e-35f9-4e81-a0d8-f8a2f157d97c + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 4770901a-1179-4bcf-a16f-bc40b14bab32 + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: ae663413-1cca-4005-b406-0829e7b956e8 + - Entity: + Id: d49e358b-dc6f-4c56-a294-fbbf64782ada + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 23ab35f5-4173-41c1-925f-d7b5aa0587ba + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: d7c196c7-f656-4bd2-8cd8-80d6e628f4af + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed + Base: + BasePartAsset: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9:PlatformsOld/Prefabs/Cell_Loop_Half + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 6ce4d66e-842c-4eb8-9b5c-506fc52f52f8 + - Entity: + Id: d60fa7eb-72c8-4f08-9001-e85f10cdb15a + Name: border_1 + Components: + 64832f9db923a94a94c197adf0251d86: !TransformComponent + Id: 9d2f8364-23b9-4aa9-94c1-97adf0251d86 + Position: {X: -3.99999762, Y: 0.0, Z: -0.250006676} + Rotation: {X: 0.0, Y: -1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 0.75} + Children: + 46ae890674598e4f9731fed939373fe4: ref!! 1818cc41-4958-45a7-b774-c04561fc8563 + 59d43ef540581e469c0331197663531a: ref!! 39a78af1-51d9-4f71-bd93-7d6119a3a893 + - Entity: + Id: df714ea4-f21c-4d81-90e4-93d3902f0cd5 + Name: border_1 (4) + Components: + 64832f9db923a94a94c197adf0251d86: !TransformComponent + Id: 49f5c97d-6c68-49b8-8923-0ace3d1da7f1 + Position: {X: 4.000006, Y: 0.0, Z: -0.250005722} + Rotation: {X: 0.0, Y: 8.742278E-08, Z: 0.0, W: -1.0} + Scale: {X: 1.0, Y: 1.0, Z: 0.75} + Children: + 46ae890674598e4f9731fed939373fe4: ref!! 1ff97ba6-ff76-4a80-a41b-e2b97eed3691 + 59d43ef540581e469c0331197663531a: ref!! f53ed459-5840-461e-9c03-31197663531a + - Entity: + Id: e7c684d1-7cdf-4d7b-87cb-5ef17124ad09 + Name: b_border + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 325c6148-aab4-4fc8-a06e-ab93116732b4 + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: 76c0d2be-7285-4915-a2e2-acb5c77b7514 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: 628f9986-331c-4898-ac40-2ea978ad6478:PlatformsOld/Prefabs/border_1-75 + BasePartId: 753ce80b-d972-427a-8c5b-51c735743184 + InstanceId: 9b862567-2460-4915-80a8-42ffd69c09c7 + - Entity: + Id: f4412af8-463a-4259-8fae-c2cbf48c5285 + Name: b_border + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 1818cc41-4958-45a7-b774-c04561fc8563 + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: f78279ae-8d0b-4539-843d-032843d6aa1c + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: 628f9986-331c-4898-ac40-2ea978ad6478:PlatformsOld/Prefabs/border_1-75 + BasePartId: 753ce80b-d972-427a-8c5b-51c735743184 + InstanceId: b80300af-4f2c-4f5b-976b-cfc64970b48a diff --git a/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Cell_Guide.xkprefab b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Cell_Guide.xkprefab new file mode 100644 index 0000000..5a35097 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Cell_Guide.xkprefab @@ -0,0 +1,23 @@ +!PrefabAsset +Id: e11a6c2e-3d60-43a9-b54b-5c126b9b8f64 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! ea106d9d-1797-471b-b347-75767df9d559 + Parts: + - Entity: + Id: ea106d9d-1797-471b-b347-75767df9d559 + Name: Cell + Components: + 803571f73b40b944a0bc88cb20e67b4a: !TransformComponent + Id: f7713580-403b-44b9-a0bc-88cb20e67b4a + Position: {X: 0.0, Y: 0.01, Z: 0.0} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 39a6aabd84b00246acbaf4bd2fe7caa3: !ModelComponent + Id: bdaaa639-b084-4602-acba-f4bd2fe7caa3 + Model: 93eb4db8-c550-4028-911a-eecf037f8f2d:PlatformsOld/Models/Cell + Materials: + 85dbab117089e6449dd170e6ebf51f67~0: ec7eeef7-c6bf-4edf-b5e8-90c115d1b689:PlatformsOld/Materials/cell02_off diff --git a/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Cell_Loop.xkprefab b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Cell_Loop.xkprefab new file mode 100644 index 0000000..9daedc6 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Cell_Loop.xkprefab @@ -0,0 +1,22 @@ +!PrefabAsset +Id: 3e25b1d8-144d-4d20-a657-d652fa707e44 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + Parts: + - Entity: + Id: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: c8a1be11-ce88-447d-adaf-2845b5728fb2 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: c0e46a34-ffbb-46ef-b879-b1dc2a1a2f49 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Cell_Loop_Half.xkprefab b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Cell_Loop_Half.xkprefab new file mode 100644 index 0000000..5202256 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Cell_Loop_Half.xkprefab @@ -0,0 +1,23 @@ +!PrefabAsset +Id: 22eb9b40-04f2-4d26-82bd-7d1d207a5dd9 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + Parts: + - Entity: + Id: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: c8a1be11-ce88-447d-adaf-2845b5728fb2 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: c0e46a34-ffbb-46ef-b879-b1dc2a1a2f49 + Model: b9f5f187-c589-407a-8aa1-cd18650df4c6:PlatformsOld/Models/Cell_loop_half + Materials: + b7d282c7628e6749aa1d6b4cb1ae3ec3~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed diff --git a/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Cell_Loop_Half2.xkprefab b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Cell_Loop_Half2.xkprefab new file mode 100644 index 0000000..1b130ae --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Cell_Loop_Half2.xkprefab @@ -0,0 +1,23 @@ +!PrefabAsset +Id: cf1f3352-d8df-45fa-84b7-a4d03f8b3c01 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + Parts: + - Entity: + Id: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: c8a1be11-ce88-447d-adaf-2845b5728fb2 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: c0e46a34-ffbb-46ef-b879-b1dc2a1a2f49 + Model: e63af0bb-3c5c-4345-9946-2b2a16ffb435:PlatformsOld/Models/Cell_loop_half2 + Materials: + eef1bcbc6771d94788ba09ae85ba5cf5~0: 2f5f609d-0f93-4f71-9390-2cb3d16a098c:PlatformsOld/Materials/cell01_backed diff --git a/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Cells_Center.xkprefab b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Cells_Center.xkprefab new file mode 100644 index 0000000..3947d3b --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Cells_Center.xkprefab @@ -0,0 +1,457 @@ +!PrefabAsset +Id: 44c8f228-543c-465f-b72f-e8105edeb8a2 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! f5394a39-4730-47a0-a20e-3ebc7d6296ce + - ref!! 352d25ea-cf1a-4815-a4dc-48bf636aff70 + - ref!! 9f7a618e-7829-4589-bc57-0b496b86f542 + - ref!! 6ed4515b-b3bf-4457-851e-0f0a13fe1607 + - ref!! 4779125d-15b4-495e-b3a6-821d38708d90 + - ref!! b01008f1-df5e-48e4-beca-98cb63e712ef + - ref!! 0a5e964c-b8d6-436c-b1e3-0be7d3e08008 + - ref!! b60a5b66-4a78-496c-b8cb-3e7b78edc639 + - ref!! 070be087-d229-495d-93c0-1ef76502b95c + - ref!! dc102fea-8c6b-429f-9e81-0c8826b967f1 + - ref!! 4898b697-ac54-4f4b-af30-30287c23fe2b + - ref!! a8257f1c-d760-4d4f-9d62-df9cccc22e0b + - ref!! 866f6fbb-445e-4ca7-8ca9-bbeb5917fd84 + - ref!! 6e147a1c-b6c5-4434-b86b-f04031270d2c + - ref!! f19d8dfc-1872-4485-9460-e1b9a7ece24c + - ref!! edf38ff4-6379-4cd1-b5fa-cad95cdb4470 + - ref!! dff0613d-4729-41c4-b88f-00ab250e2bab + - ref!! 06b2e14d-d0f7-46dc-a3ce-09ddb1ef3623 + - ref!! 47dec09c-672e-4cbf-8ecb-36f13dbd4145 + - ref!! 9eecb8ec-5e66-4655-b258-37ccdcb826ae + - ref!! 79e0f94f-8f95-4e2e-8080-79f8fdca0e72 + - ref!! 92afd80b-b12d-4b95-a361-2202e4c221e3 + - ref!! 337bf919-6b59-4105-b623-0e63f864364b + - ref!! a0222416-954d-4503-91ab-f5df73e1b761 + - ref!! 55b3fd65-4f75-4b1a-803c-ff376b8d7d31 + - ref!! 2699af42-80fb-4bca-9edf-10a48d34978b + Parts: + - Entity: + Id: 06b2e14d-d0f7-46dc-a3ce-09ddb1ef3623 + Name: b_border_L_small + Components: + a9820c549a615d8bfef45a92481cf633: !TransformComponent + Id: d598ff72-07de-4293-9718-d250db125c2a + Position: {X: 17.0, Y: 0.0, Z: -4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 606c088c281018e2ad82a1fbbdf12757: !ModelComponent + Id: 7c045225-2934-4a40-8771-814b15418ae6 + Model: 5d7344f6-4708-42e0-a7e5-ccaec2aa6952:PlatformsOld/Models/b_border_L_small + Materials: {} + - Entity: + Id: 070be087-d229-495d-93c0-1ef76502b95c + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: c8a1be11-ce88-447d-adaf-2845b5728fb2 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: c0e46a34-ffbb-46ef-b879-b1dc2a1a2f49 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: a28cad73-9597-4935-a1a0-d8c2febcd04b + - Entity: + Id: 0a5e964c-b8d6-436c-b1e3-0be7d3e08008 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 373aab20-ec3c-4477-9ce3-531ad44fee4f + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 75a83f33-83fe-4c3f-9efe-61fe5cd95528 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: bff2b78e-58e0-42fb-91d4-cb8542d089f2 + - Entity: + Id: 2699af42-80fb-4bca-9edf-10a48d34978b + Name: border_L_large + Components: + de7c485c17e7638c3c3ac21f2e69ccf0: !TransformComponent + Id: eed9fe5f-fb5a-4bf2-853f-f5e95ee5a3e6 + Position: {X: 21.0, Y: -1.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e7c7cb43b1caec98fa314077afba0d50: !ModelComponent + Id: 7a9b2cfb-9997-45a1-a8e8-13ef602be6f0 + Model: b5b3c074-7331-41cd-b88b-0d46637ffd7f:PlatformsOld/Models/border_L_large + Materials: {} + - Entity: + Id: 337bf919-6b59-4105-b623-0e63f864364b + Name: Border_straight + Components: + 74da46e77be575b43b410e675dd6f2fd: !TransformComponent + Id: 07031da0-7fef-47d3-ab7b-74e7edeb3879 + Position: {X: 28.0, Y: 0.0, Z: -13.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 0cf5a68ccdaaee4b8f78863d137b8a1e: !ModelComponent + Id: 2a8e7b4e-6863-43c7-a964-6505f661c15b + Model: 8ec5ea63-3993-47b9-b6de-9f82c4a3f3c3:Environment/Platforms/Models/Border_straight + Materials: {} + - Entity: + Id: 352d25ea-cf1a-4815-a4dc-48bf636aff70 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: f7830e5c-aa2a-4685-99a8-bac24660dbeb + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: f3233d39-275d-4417-bed6-9b70360f2e6d + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 9a7903fb-b5d5-4c1d-a1c2-479d040d2d12 + - Entity: + Id: 4779125d-15b4-495e-b3a6-821d38708d90 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 182de804-5304-4203-af5b-0808f42a0c51 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 4cf6a363-6a11-4b46-9811-6f49c370e5c0 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 47eecd4a-62c2-47d0-9f11-2bf12f314cbf + - Entity: + Id: 47dec09c-672e-4cbf-8ecb-36f13dbd4145 + Name: b_border_L_large + Components: + 23085fb92a65ac313674e503a494d198: !TransformComponent + Id: da2b5534-8ed5-4650-a18e-d10d899bb14f + Position: {X: 21.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 43bcff651109bbe0a7544999aef957fc: !ModelComponent + Id: e033301a-cf4b-471a-894f-d534c8197ba3 + Model: 8b962b80-b7ad-4c3c-a6a2-2c37177965e8:PlatformsOld/Models/b_border_L_large + Materials: {} + - Entity: + Id: 4898b697-ac54-4f4b-af30-30287c23fe2b + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 25bca295-1011-4677-ad2d-c5e2930a622f + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: c97a7f96-5795-4fc5-8bfd-060d793e86ac + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 54e79db3-3b7f-4626-8ec6-3a9b848c4dde + - Entity: + Id: 55b3fd65-4f75-4b1a-803c-ff376b8d7d31 + Name: border_L_small + Components: + 7f24c59767099f30c37a40f1a8d497c5: !TransformComponent + Id: d60ff4f1-b7de-4707-b13e-963f49891252 + Position: {X: 25.0, Y: 0.0, Z: -12.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c804c71282ee962528de09a98b292c42: !ModelComponent + Id: 9477e903-e1dd-489e-8752-0e7508352d9f + Model: e6b30dcb-e5ce-4220-9bc2-600a3651ee1d:PlatformsOld/Models/border_L_small + Materials: {} + - Entity: + Id: 6e147a1c-b6c5-4434-b86b-f04031270d2c + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: f08d247b-5232-42a3-8767-405ae637518b + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: e694f24c-341a-44e2-a166-9617a001de63 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 00f3aeb6-8c03-46c1-ac19-ebb37316de0d + - Entity: + Id: 6ed4515b-b3bf-4457-851e-0f0a13fe1607 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: a9e95f91-a687-4af8-9939-706b6c3e270f + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: b99738aa-0a19-4278-bcea-9ad80fec7154 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: a97c8092-179f-467b-8c5a-e132a23864c2 + - Entity: + Id: 79e0f94f-8f95-4e2e-8080-79f8fdca0e72 + Name: b_border + Components: + f63ca3fd7e6d894acf0eb9003853fded: !TransformComponent + Id: fc1d00cd-2e34-44c4-be5f-ae5bddc0a528 + Position: {X: 21.0, Y: 0.0, Z: -4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f3ce3898e684164668b105ebb18fe19a: !ModelComponent + Id: 0c7751a9-1945-4c24-a70a-c8063ce64547 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: {} + - Entity: + Id: 866f6fbb-445e-4ca7-8ca9-bbeb5917fd84 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 2be9f641-30ce-4748-8b7b-b77be90c50f1 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 0cd9447e-2bc3-4e14-b875-e823d45a6b0c + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: bdc0ed63-f4e1-4a6b-af59-d54083a73bca + - Entity: + Id: 92afd80b-b12d-4b95-a361-2202e4c221e3 + Name: b_border (2) + Components: + f63ca3fd7e6d894acf0eb9003853fded: !TransformComponent + Id: 16af8ee7-1fc4-4d55-9d27-5e48f93e3fe3 + Position: {X: 13.0, Y: 0.0, Z: -6.0} + Rotation: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f3ce3898e684164668b105ebb18fe19a: !ModelComponent + Id: a8f8e792-d4af-4d36-92e4-c8067f062bfc + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: {} + - Entity: + Id: 9eecb8ec-5e66-4655-b258-37ccdcb826ae + Name: b_border_C_small + Components: + 94f34159f99a456d43d00713e43c4009: !TransformComponent + Id: 84a5ce16-c9b1-4092-8643-f6fe91b4c923 + Position: {X: 22.0, Y: 0.0, Z: -7.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + ad212fac72618c77117fb83ac0cdc5c8: !ModelComponent + Id: eaec3e8f-05e0-4458-a502-498dd5273170 + Model: 488df5da-113b-4500-8075-a23fa6b44432:PlatformsOld/Models/b_border_C_small + Materials: {} + - Entity: + Id: 9f7a618e-7829-4589-bc57-0b496b86f542 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 17cc6e48-590a-4541-b39a-df9d5ad35978 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: c3bb8a5f-8cc8-49f5-9082-a65c094fe6c3 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 48fdde40-a823-4b1b-aa5c-32612d4e6bf8 + - Entity: + Id: a0222416-954d-4503-91ab-f5df73e1b761 + Name: border_1 + Components: + 793ca81aa6f66ec8a943c422f7ca2234: !TransformComponent + Id: 18ef4e35-e46a-4063-b28a-5cf116b38d19 + Position: {X: 28.0, Y: -2.0, Z: -12.0} + Rotation: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 45a59183775e2609e37cb433d5396b29: !ModelComponent + Id: a0e2c0c4-cc04-4fdf-b601-e14850ee2211 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: {} + - Entity: + Id: a8257f1c-d760-4d4f-9d62-df9cccc22e0b + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: abcb0aeb-6836-4641-83f1-75cb0dad7449 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: acd3f130-0be1-411e-a01a-b58796b773a4 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 16e23e0b-c8ac-4e2a-913b-5b7c84801ee5 + - Entity: + Id: b01008f1-df5e-48e4-beca-98cb63e712ef + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 7d35ba9d-82cb-4c19-8031-c18533775516 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 9e1da41b-9933-4ce7-99c5-88dfdcbb2109 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 5852f84e-938b-4228-9f64-e4176a85dd71 + - Entity: + Id: b60a5b66-4a78-496c-b8cb-3e7b78edc639 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: a63136c5-ce09-41f2-a0f1-a8cf8cd01315 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: c5e62fda-94c2-4cc0-9e3a-49bd23dfe72c + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 51d0a7dc-a433-4c47-b08c-abd9990381b9 + - Entity: + Id: dc102fea-8c6b-429f-9e81-0c8826b967f1 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 0c0bc31c-724b-4e98-ab6a-2b0171470154 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 59102f12-6846-4857-b633-127454cc6145 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: b7fe71e6-c4b7-40a1-af35-7af691fdf4c9 + - Entity: + Id: dff0613d-4729-41c4-b88f-00ab250e2bab + Name: b_border_large + Components: + 462990fc34040e2037dad7d5b9ae5f09: !TransformComponent + Id: 8bf722f1-94d7-412a-9944-149b51332007 + Position: {X: 13.0, Y: 0.0, Z: -5.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + b54c2ca23545b3b245ad8369cd550416: !ModelComponent + Id: 8b40aaf8-2b6a-4db1-94f2-f525c0a7a674 + Model: 9fa0414e-ce68-407d-b576-619a87601f45:PlatformsOld/Models/b_border_large + Materials: {} + - Entity: + Id: edf38ff4-6379-4cd1-b5fa-cad95cdb4470 + Name: b_border_small + Components: + a9bc46dd00a454167d61a2ae8e670907: !TransformComponent + Id: f5d1e9df-9908-4883-ae64-d5e021d852d9 + Position: {X: 13.0, Y: 0.0, Z: -8.0} + Rotation: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e8daa283da58c7f541ecd8b841f9e931: !ModelComponent + Id: 73b5c0bb-85a7-481a-a5ac-b943ef2eb5e4 + Model: d867ccde-3927-4493-bdf9-b5c75b99d2c8:PlatformsOld/Models/b_border_small + Materials: {} + - Entity: + Id: f19d8dfc-1872-4485-9460-e1b9a7ece24c + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: e0e1fee0-5fcf-43ea-918a-100bb92ee0cd + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 324b903d-dfe4-4b15-80c2-d6275e0c6f63 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 49e29ebc-b8e6-47bd-b4bb-825dbb400acc + - Entity: + Id: f5394a39-4730-47a0-a20e-3ebc7d6296ce + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 88823b54-2005-47c7-bb2f-6bf87cdcf8c8 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: ea813182-ffb9-4543-84bb-35859ba8a58c + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 03860c61-d7f7-4cd5-9352-82c726de2944 diff --git a/Starbreach/Assets/Shared/PlatformsOld/Prefabs/L_small_in.xkprefab b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/L_small_in.xkprefab new file mode 100644 index 0000000..0a3aa45 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/L_small_in.xkprefab @@ -0,0 +1,87 @@ +!PrefabAsset +Id: 4c3c392a-5cce-42c9-a4ae-4ef9ea40031b +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 0abaf04c-8cea-44c7-8bff-cce681b5a789 + - ref!! 485d184e-90fc-4c9e-9f32-13d7174a4a54 + - ref!! 04591edf-2a3e-4558-a2ad-452f3e9d3ac9 + - ref!! 7a45fb81-048d-442e-8b03-9f3dca855f3f + - ref!! d29ed7c3-b9b6-4360-8da9-c604dfd64474 + Parts: + - Entity: + Id: 04591edf-2a3e-4558-a2ad-452f3e9d3ac9 + Name: Rails_adv + Components: + 174c53c97defbd42be3c2a8a2f359168: !TransformComponent + Id: c9534c17-ef7d-42bd-be3c-2a8a2f359168 + Position: {X: 2.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + ddc53876499d1e4ca088c61406981df0: !ModelComponent + Id: 7638c5dd-9d49-4c1e-a088-c61406981df0 + Model: 6c557c7e-7142-44f1-808d-acaf80a392fb:PlatformsOld/Models/Rails_adv + Materials: + ccadb09936f1334db758b0a075a047e4~0: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv + - Entity: + Id: 0abaf04c-8cea-44c7-8bff-cce681b5a789 + Name: border_L_small_M + Components: + 710f86d688118344850e4b543db0384f: !TransformComponent + Id: d6860f71-1188-4483-850e-4b543db0384f + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f147101f9257a7418b8c6a82fc7bbac7: !ModelComponent + Id: 1f1047f1-5792-41a7-8b8c-6a82fc7bbac7 + Model: e0514356-d16e-4e5b-9008-9f7fb5230bce:PlatformsOld/Models/border_L_small_M + Materials: + 52b322b93322284390399348912756d5~0: 14acd6d5-f6d1-42a7-928d-5add6341bedf:PlatformsOld/Materials/border + - Entity: + Id: 485d184e-90fc-4c9e-9f32-13d7174a4a54 + Name: b_border_L_small_outside + Components: + b5dedca46541e04896ab43152a71ca97: !TransformComponent + Id: a4dcdeb5-4165-48e0-96ab-43152a71ca97 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8899e3b5e28fa242900f5277aac668fe: !ModelComponent + Id: b5e39988-8fe2-42a2-900f-5277aac668fe + Model: 3206529c-484d-4bad-938c-2f0e2e77b6a2:PlatformsOld/Models/b_border_L_small_outside + Materials: + 67115b975636144f95aaaff094ceaee9~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + - Entity: + Id: 7a45fb81-048d-442e-8b03-9f3dca855f3f + Name: Rails_adv (2) + Components: + 174c53c97defbd42be3c2a8a2f359168: !TransformComponent + Id: 081fb7a0-bf36-4a93-96cf-c92300340465 + Position: {X: 0.0, Y: 0.0, Z: -2.0} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + ddc53876499d1e4ca088c61406981df0: !ModelComponent + Id: 46c71309-deb2-460f-8bb2-9ffae95bbb2b + Model: 6c557c7e-7142-44f1-808d-acaf80a392fb:PlatformsOld/Models/Rails_adv + Materials: + ccadb09936f1334db758b0a075a047e4~0: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv + - Entity: + Id: d29ed7c3-b9b6-4360-8da9-c604dfd64474 + Name: Rails_tube_L + Components: + ca718c2a3618ce4c9385cb9d1f7c2f21: !TransformComponent + Id: 2a8c71ca-1836-4cce-9385-cb9d1f7c2f21 + Position: {X: 0.072814025, Y: 3.1820724, Z: -0.0786868259} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + cd368b794a2fe44793d6846662a05df1: !ModelComponent + Id: 798b36cd-2f4a-47e4-93d6-846662a05df1 + Model: b2139cec-163e-4e5d-9a73-c53dbb5b0f3a:PlatformsOld/Models/Rails_tube_L + Materials: + ccadb09936f1334db758b0a075a047e4~0: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv diff --git a/Starbreach/Assets/Shared/PlatformsOld/Prefabs/L_small_out.xkprefab b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/L_small_out.xkprefab new file mode 100644 index 0000000..34a55fb --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/L_small_out.xkprefab @@ -0,0 +1,87 @@ +!PrefabAsset +Id: cf1361d5-4756-46c4-bf91-90a5987c0a5a +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! ef8df8ca-843c-40c9-8ae6-8885e2c28b27 + - ref!! 8cde3c03-0d9e-4c56-aa72-80d1484b8375 + - ref!! 53b861bf-60de-4763-ac7b-7ca47a721cbf + - ref!! 93708d80-9f76-44de-84c3-86e1f1939697 + - ref!! 6bba10d7-bd83-40b6-99ef-8fdd7ee92a7d + Parts: + - Entity: + Id: 53b861bf-60de-4763-ac7b-7ca47a721cbf + Name: Rails_adv + Components: + 67f6aa0148b7d84a8e2f2b02a371cdb6: !TransformComponent + Id: 01aaf667-b748-4ad8-8e2f-2b02a371cdb6 + Position: {X: 0.0, Y: 0.0, Z: -1.0} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c280a78ea2cdb84b9f99ea3306f71c2b: !ModelComponent + Id: 8ea780c2-cda2-4bb8-9f99-ea3306f71c2b + Model: 6c557c7e-7142-44f1-808d-acaf80a392fb:PlatformsOld/Models/Rails_adv + Materials: + ccadb09936f1334db758b0a075a047e4~0: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv + - Entity: + Id: 6bba10d7-bd83-40b6-99ef-8fdd7ee92a7d + Name: Rails_tube_L + Components: + bd2b4b3c84df2f439b0519b378e7f817: !TransformComponent + Id: 3c4b2bbd-df84-432f-9b05-19b378e7f817 + Position: {X: -0.0480509177, Y: 3.17927885, Z: 0.0614198036} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c334293b82e83142b3dd04b3f5cf8202: !ModelComponent + Id: 3b2934c3-e882-4231-b3dd-04b3f5cf8202 + Model: b2139cec-163e-4e5d-9a73-c53dbb5b0f3a:PlatformsOld/Models/Rails_tube_L + Materials: + ccadb09936f1334db758b0a075a047e4~0: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv + - Entity: + Id: 8cde3c03-0d9e-4c56-aa72-80d1484b8375 + Name: b_border_L_small + Components: + 97b82cffd9b03d47aaeb02402b66e8db: !TransformComponent + Id: ff2cb897-b0d9-473d-aaeb-02402b66e8db + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 4d9110a1d99be142ba33a39310bb42cb: !ModelComponent + Id: a110914d-9bd9-42e1-ba33-a39310bb42cb + Model: 5d7344f6-4708-42e0-a7e5-ccaec2aa6952:PlatformsOld/Models/b_border_L_small + Materials: + 67115b975636144f95aaaff094ceaee9~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + - Entity: + Id: 93708d80-9f76-44de-84c3-86e1f1939697 + Name: Rails_adv (2) + Components: + 67f6aa0148b7d84a8e2f2b02a371cdb6: !TransformComponent + Id: 1d699779-8607-46f7-a0dc-dbbc8e08165f + Position: {X: 1.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c280a78ea2cdb84b9f99ea3306f71c2b: !ModelComponent + Id: 738dd101-b757-4a7a-ae0c-ab5504ee2720 + Model: 6c557c7e-7142-44f1-808d-acaf80a392fb:PlatformsOld/Models/Rails_adv + Materials: + ccadb09936f1334db758b0a075a047e4~0: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv + - Entity: + Id: ef8df8ca-843c-40c9-8ae6-8885e2c28b27 + Name: border_L_small + Components: + 36bde24588195942a938b846329516ff: !TransformComponent + Id: 45e2bd36-1988-4259-a938-b846329516ff + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + b2118b038cbfe8468c90b8162655350f: !ModelComponent + Id: 038b11b2-bf8c-46e8-8c90-b8162655350f + Model: e6b30dcb-e5ce-4220-9bc2-600a3651ee1d:PlatformsOld/Models/border_L_small + Materials: + 52b322b93322284390399348912756d5~0: 14acd6d5-f6d1-42a7-928d-5add6341bedf:PlatformsOld/Materials/border diff --git a/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Middle_E.xkprefab b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Middle_E.xkprefab new file mode 100644 index 0000000..fc860cc --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Middle_E.xkprefab @@ -0,0 +1,669 @@ +!PrefabAsset +Id: 97f9230a-4bb7-4816-acb0-fc6756e7f30a +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 11665c3f-49ee-42e8-a384-b1a9aa58740e + - ref!! 40597916-d12e-449f-a78e-7effc399c201 + - ref!! e9d85612-99e0-4edd-84e3-fe2df86796bf + - ref!! ba136374-7aac-4330-96fd-8388c4400982 + - ref!! c559d7ba-640e-42b0-935e-5360f5c41795 + - ref!! 1e9f5828-e552-4a41-a934-362c5f284256 + - ref!! b532cf6c-c386-4097-9e86-237b5b2009ac + - ref!! 4cea0894-f31a-4d5f-a115-0ab8a0671e91 + - ref!! d241f317-83a1-4206-acf9-0f8f67e7eb57 + - ref!! 921bc1a7-d6ce-4c67-80c6-8e44f3b327eb + - ref!! 11358dd7-d494-47f4-b1aa-4ae72d00d596 + - ref!! d5987d00-e193-4947-9a31-96d4395e2c46 + - ref!! ffaecfa5-2a52-432c-a215-874a9b16b213 + - ref!! c6dda92b-fd0a-4454-870c-41a9c087a27f + - ref!! 22c45043-8055-4c34-9c14-fcf5f2f09479 + - ref!! 7c43e779-4f79-4d8f-b3cd-8189b5ef71c7 + - ref!! 89293f69-37d9-4934-a526-cce82b586c62 + - ref!! 526ff0c9-f0d7-442b-93ef-c62d8dd514da + Parts: + - Entity: + Id: 031f9f32-e8d9-4127-892f-67af2a343f3c + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: c8a1be11-ce88-447d-adaf-2845b5728fb2 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: c0e46a34-ffbb-46ef-b879-b1dc2a1a2f49 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: a22f454b-bb69-426b-967f-a3530aff8a11 + - Entity: + Id: 11358dd7-d494-47f4-b1aa-4ae72d00d596 + Name: Cell_Loop (11) + Components: + df8d94b0b00d8b4199577ce15ce1bec6: !TransformComponent + Id: b0948ddf-0db0-418b-9957-7ce15ce1bec6 + Position: {X: 1.0, Y: 0.0, Z: 1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! fb1faacb-d5ec-44cb-a73c-84efd18ebe16 + - Entity: + Id: 11665c3f-49ee-42e8-a384-b1a9aa58740e + Name: Cell_Loop + Components: + df8d94b0b00d8b4199577ce15ce1bec6: !TransformComponent + Id: 25a2cdf4-4a98-4843-88b3-dc499188e551 + Position: {X: -5.0, Y: 0.0, Z: 4.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! b06ad263-8f93-4442-8fd0-76d93fed0f6b + - Entity: + Id: 1e9f5828-e552-4a41-a934-362c5f284256 + Name: Cell_Loop (6) + Components: + df8d94b0b00d8b4199577ce15ce1bec6: !TransformComponent + Id: e4671deb-b8dd-4352-a4eb-17134cc9f2c3 + Position: {X: -3.0, Y: 0.0, Z: 4.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! c8a1be11-ce88-447d-adaf-2845b5728fb2 + - Entity: + Id: 22c45043-8055-4c34-9c14-fcf5f2f09479 + Name: Cell_Loop (15) + Components: + df8d94b0b00d8b4199577ce15ce1bec6: !TransformComponent + Id: a6922862-3a3c-46d5-8fb5-d3b7703c307e + Position: {X: 3.0, Y: 0.0, Z: 4.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 38d859c3-1369-4365-b7a5-ff972ee6f66e + - Entity: + Id: 40597916-d12e-449f-a78e-7effc399c201 + Name: Cell_Loop (2) + Components: + df8d94b0b00d8b4199577ce15ce1bec6: !TransformComponent + Id: c6d7e2f2-ab99-4cbd-b7e2-7412fb0439c0 + Position: {X: -5.0, Y: 0.0, Z: 1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 7d46cda5-7ffe-4904-889a-7eba9922a03e + - Entity: + Id: 454f53c8-7380-4d8d-a81b-50ad98d08d79 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: eae6c4eb-6099-4fcb-979b-68d324d194aa + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 90f865d2-e200-4938-a675-f51775c788a9 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 323102e5-29ae-40c3-8a4a-d81730709446 + - Entity: + Id: 4cea0894-f31a-4d5f-a115-0ab8a0671e91 + Name: Cell_Loop (8) + Components: + df8d94b0b00d8b4199577ce15ce1bec6: !TransformComponent + Id: bb3bfe1e-c37f-4a4b-9665-8868f84caab3 + Position: {X: -1.0, Y: 0.0, Z: 1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! cb8a7230-0990-43d2-880a-e106fb0dff95 + - Entity: + Id: 4ecca552-9c92-428e-99a0-731b56e73df7 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 7d46cda5-7ffe-4904-889a-7eba9922a03e + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 86156308-be01-4177-9029-2766eb805e1e + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 01148743-703b-4255-970b-508212404461 + - Entity: + Id: 526ff0c9-f0d7-442b-93ef-c62d8dd514da + Name: rails_straight + Components: + 3f88546779b5fa48a881b5b7498f2236: !TransformComponent + Id: 6754883f-b579-48fa-a881-b5b7498f2236 + Position: {X: -4.99999857, Y: -2.38418579E-07, Z: -5.000001} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.235} + Children: + 53aa6e32d59eeb45aabd52fde17cd48d: ref!! 326eaa53-9ed5-45eb-aabd-52fde17cd48d + - Entity: + Id: 5b3be844-df2f-4469-ac7b-13ce5dc45fa0 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 48a831fa-af4b-4e9a-9bd2-8c4c18730b1e + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 56d76a8a-903d-47cc-9542-ac2807c17c44 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 7f3e62a9-6363-4b26-a7dd-f5b12bc9dac0 + - Entity: + Id: 5f2800ff-6188-458f-a44f-6f5ded59ef4e + Name: b_border + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 0689ae46-5974-4f8e-9731-fed939373fe4 + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: a3a5a0a7-2f3c-4ceb-b0f1-e3a3127f0566 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: b1b3c139-0b60-4b58-bec2-44936662b685:PlatformsOld/Prefabs/border_1 + BasePartId: 753ce80b-d972-427a-8c5b-51c735743184 + InstanceId: f8251c43-03e7-4e2b-a772-c0fd2e191865 + - Entity: + Id: 62a34ae2-4ecf-4e21-9742-00f557f1ec18 + Name: Rails_tube (2) + Components: + 53aa6e32d59eeb45aabd52fde17cd48d: !TransformComponent + Id: 326eaa53-9ed5-45eb-aabd-52fde17cd48d + Position: {X: -0.06581557, Y: 1.219562, Z: 4.052} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 0.85, Z: 0.85} + Children: {} + 0225b2a01b17f94d8b22f766fa64fa9b: !ModelComponent + Id: a0b22502-171b-4df9-8b22-f766fa64fa9b + Model: 40be0e1d-f941-454c-9f18-c765c7f3bc78:PlatformsOld/Models/Rails_tube + Materials: {} + Base: + BasePartAsset: fca227cf-3f9e-4d9a-96eb-db7a23bf62fd:PlatformsOld/Prefabs/rails_straight + BasePartId: d78c8476-d01e-4383-98cc-9691ec3d06e7 + InstanceId: 71228f82-724a-434e-b86c-83039544e516 + - Entity: + Id: 63204dfb-4d62-4bf8-b49b-67ec33344cf7 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 04be81a5-1309-4f2d-91aa-1fd4bdb0806f + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 6d745cf6-824a-49e7-91a9-e8e69874a135 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 7190e8b7-8bf6-421d-a05b-f32020fa3abd + - Entity: + Id: 66308d39-c9a3-4307-9744-eece1109f68d + Name: border_1 (2) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: f53ed459-5840-461e-9c03-31197663531a + Position: {X: 0.0, Y: -2.0, Z: 3.75} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: cf3c3525-0b32-4b67-b48d-523a5323eb69 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 583af927-6553-490b-bf64-604837d74650 + InstanceId: be2424d7-fb35-4663-a83d-2f81178b2d1a + - Entity: + Id: 6a686026-5683-4350-af94-a657a64182fd + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 38d859c3-1369-4365-b7a5-ff972ee6f66e + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 9d151410-b0cb-4bf4-b22c-2f1d34dbfdae + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 20fe8959-a3b5-4a3c-8d6c-7f68ab28d65d + - Entity: + Id: 7c43e779-4f79-4d8f-b3cd-8189b5ef71c7 + Name: border_3-75 + Components: + 88dce39184b10649af1efd9b13589861: !TransformComponent + Id: 91e3dc88-b184-4906-af1e-fd9b13589861 + Position: {X: -4.999998, Y: 0.0, Z: -5.000004} + Rotation: {X: 0.0, Y: -0.7071067, Z: 0.0, W: -0.7071068} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 59d43ef540581e469c0331197663531a: ref!! 7f2cf83b-98d8-4964-ac21-95800940f84d + 46ae890674598e4f9731fed939373fe4: ref!! 83dbedb7-993f-42cd-9dae-056c4a60a13c + 41c51c4f9215cd58c84994d925578ff5: ref!! f53ed459-5840-461e-9c03-31197663531a + ed5b1c06ff5a8a9aa969fa55be0b900f: ref!! 3eb1f117-b7fb-4fbd-916e-bacfc1d8e51b + 3625b0974a8219e6b935d331292e6283: ref!! 7c8d3e17-d2c8-465a-b6c8-da6b7b3f98f0 + 506076e8aa33c9bbe4cc082b5e34687c: ref!! 85b79ab0-d60b-4150-b4a2-a0cb056054ce + - Entity: + Id: 8429eceb-c54d-42ea-8a63-43cbb7f6fea8 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: fb1faacb-d5ec-44cb-a73c-84efd18ebe16 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 3e5eda05-b71d-4526-9ddc-8da73cfde14f + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 65246d62-998a-4a22-8d02-99cbf0e6ebf3 + - Entity: + Id: 89293f69-37d9-4934-a526-cce82b586c62 + Name: border_1 + Components: + a3bfb9472b697849be4978d50b7c6203: !TransformComponent + Id: 47b9bfa3-692b-4978-be49-78d50b7c6203 + Position: {X: 3.75, Y: 0.0, Z: -5.0} + Rotation: {X: 0.0, Y: -0.7071067, Z: 0.0, W: -0.7071068} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: + 46ae890674598e4f9731fed939373fe4: ref!! 0689ae46-5974-4f8e-9731-fed939373fe4 + 59d43ef540581e469c0331197663531a: ref!! d235dad4-539d-43a7-ae8d-0dedd642a943 + - Entity: + Id: 90c4f784-21d8-4276-a8f4-ffcc30d6a1f1 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 6793faee-ea55-4202-aef0-a518b2d92194 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 3fa6abf4-ca8c-46f1-b473-649c2151314a + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 5e41f478-89bc-4c30-bb6a-3729ca3a7a6c + - Entity: + Id: 921bc1a7-d6ce-4c67-80c6-8e44f3b327eb + Name: Cell_Loop (10) + Components: + df8d94b0b00d8b4199577ce15ce1bec6: !TransformComponent + Id: 19b7c6e3-c131-4d6a-90d4-5a2bd0acf106 + Position: {X: 1.0, Y: 0.0, Z: -1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 48a831fa-af4b-4e9a-9bd2-8c4c18730b1e + - Entity: + Id: 977a047f-7b3e-4d0d-b77a-7a2ada9fa64c + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: f0ebcab3-b75a-47d2-805b-e1ba6c82067d + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 63ed9e48-234e-4906-9692-72e7d6639ecd + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: b58b92c3-931c-419a-b811-e03c29da3b52 + - Entity: + Id: 9b71bac7-3aab-4ae2-8699-25ae4b796cf7 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 52f2361c-fc35-46cf-af39-4e63acc8b327 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 0e9c2f8b-e018-4c27-bfcf-f1bbbf65d4f2 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: f515c671-befe-42d9-8447-37db275aeee7 + - Entity: + Id: a7ba2e04-c45b-4b14-9838-ae472d119a49 + Name: border_1 + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: d235dad4-539d-43a7-ae8d-0dedd642a943 + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: ba31b1ea-d596-46a4-801e-afac03d4392a + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: b1b3c139-0b60-4b58-bec2-44936662b685:PlatformsOld/Prefabs/border_1 + BasePartId: 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + InstanceId: f8251c43-03e7-4e2b-a772-c0fd2e191865 + - Entity: + Id: af1ede7a-626f-443c-a313-79a16d4125f6 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: b06ad263-8f93-4442-8fd0-76d93fed0f6b + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 15739336-d2f7-4fc6-9cd1-227822861135 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: a78df875-a3bd-4082-96e1-b6e306dcc89e + - Entity: + Id: b532cf6c-c386-4097-9e86-237b5b2009ac + Name: Cell_Loop (7) + Components: + df8d94b0b00d8b4199577ce15ce1bec6: !TransformComponent + Id: fdf2dc76-d9f5-40e8-ba2b-cb3f2d807a04 + Position: {X: -1.0, Y: 0.0, Z: -1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! f0ebcab3-b75a-47d2-805b-e1ba6c82067d + - Entity: + Id: b64cd6dc-dc9d-4ff9-8c2a-df8d20dc6130 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: cb8a7230-0990-43d2-880a-e106fb0dff95 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: dbbefbd5-c5d4-4592-a910-d6c1dcb78712 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 58ef5d12-4429-497a-9129-03d545e55dcf + - Entity: + Id: b8486a44-4d10-46bb-91d1-666204e1cb48 + Name: border_1 + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 7c8d3e17-d2c8-465a-b6c8-da6b7b3f98f0 + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: 9d6e90db-c3dc-4c9e-8924-064e92a0fb20 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: b1b3c139-0b60-4b58-bec2-44936662b685:PlatformsOld/Prefabs/border_1 + BasePartId: 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + InstanceId: be2424d7-fb35-4663-a83d-2f81178b2d1a + - Entity: + Id: ba136374-7aac-4330-96fd-8388c4400982 + Name: Cell_Loop (4) + Components: + df8d94b0b00d8b4199577ce15ce1bec6: !TransformComponent + Id: 524f1bf2-614c-4ded-a63d-85694c429ccd + Position: {X: -3.0, Y: 0.0, Z: -1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 04be81a5-1309-4f2d-91aa-1fd4bdb0806f + - Entity: + Id: bb9a61a4-7091-445f-8721-bc33f46d88dd + Name: border_1 (3) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 7f2cf83b-98d8-4964-ac21-95800940f84d + Position: {X: 0.0, Y: -2.0, Z: 6.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: d6a50413-62fb-49e2-9b75-dc1d9840c855 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: cefd5c0a-8d96-4cb7-8f96-43426815654d + InstanceId: be2424d7-fb35-4663-a83d-2f81178b2d1a + - Entity: + Id: bbabc43d-b1c7-42da-ba09-1d29616aadaf + Name: b_border + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 85b79ab0-d60b-4150-b4a2-a0cb056054ce + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: 5239a996-f20b-4c45-8896-391ca793f069 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: b1b3c139-0b60-4b58-bec2-44936662b685:PlatformsOld/Prefabs/border_1 + BasePartId: 753ce80b-d972-427a-8c5b-51c735743184 + InstanceId: be2424d7-fb35-4663-a83d-2f81178b2d1a + - Entity: + Id: c559d7ba-640e-42b0-935e-5360f5c41795 + Name: Cell_Loop (5) + Components: + df8d94b0b00d8b4199577ce15ce1bec6: !TransformComponent + Id: fb21666e-2985-44d1-a9e6-c8f3c284acd9 + Position: {X: -3.0, Y: 0.0, Z: 1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! eae6c4eb-6099-4fcb-979b-68d324d194aa + - Entity: + Id: c6dda92b-fd0a-4454-870c-41a9c087a27f + Name: Cell_Loop (14) + Components: + df8d94b0b00d8b4199577ce15ce1bec6: !TransformComponent + Id: 2dcdc04d-03e1-411b-bde6-52c22dcef5d5 + Position: {X: 3.0, Y: 0.0, Z: 1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! a23fc227-f882-4e2c-a659-5ecef2f1a5ab + - Entity: + Id: d13fdda0-6b23-4517-a116-05d68769cd80 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: a23fc227-f882-4e2c-a659-5ecef2f1a5ab + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: ba26879b-b6fc-428b-8553-896b2b49c037 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 702497c4-8e4c-41d3-9948-cead40c7202b + - Entity: + Id: d241f317-83a1-4206-acf9-0f8f67e7eb57 + Name: Cell_Loop (9) + Components: + df8d94b0b00d8b4199577ce15ce1bec6: !TransformComponent + Id: 0c7411b5-7d4b-49fa-93d9-7c7169c23674 + Position: {X: -1.0, Y: 0.0, Z: 4.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 6fd00870-8ae3-415f-ace9-76beaff89ca1 + - Entity: + Id: d5987d00-e193-4947-9a31-96d4395e2c46 + Name: Cell_Loop (12) + Components: + df8d94b0b00d8b4199577ce15ce1bec6: !TransformComponent + Id: b313b277-e1b7-41d4-a9f3-a5615dca4aaa + Position: {X: 1.0, Y: 0.0, Z: 4.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! ad4a5911-1d06-4f05-bb68-990111b576e9 + - Entity: + Id: e68770ef-4238-4d5c-b126-c7f69bb578d8 + Name: b_border (2) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 3eb1f117-b7fb-4fbd-916e-bacfc1d8e51b + Position: {X: 0.0, Y: -2.0, Z: 3.75} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: a727491b-24bb-47c3-8335-ece686c70799 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 578bb7fc-40be-4480-983d-fde8008120bd + InstanceId: be2424d7-fb35-4663-a83d-2f81178b2d1a + - Entity: + Id: e9d85612-99e0-4edd-84e3-fe2df86796bf + Name: Cell_Loop (3) + Components: + df8d94b0b00d8b4199577ce15ce1bec6: !TransformComponent + Id: 45857457-efec-4719-89ce-9e46f765ab01 + Position: {X: -5.0, Y: 0.0, Z: -1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 6793faee-ea55-4202-aef0-a518b2d92194 + - Entity: + Id: f3870e5b-75f3-471d-b51e-d4f29330acb2 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 6fd00870-8ae3-415f-ace9-76beaff89ca1 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 9dbd4523-d03c-4e70-bc95-094d2728fc9b + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: a575d5d3-8601-45fc-907b-9b23f1f7178e + - Entity: + Id: f6838ce3-0303-49fe-8491-6f9946db82e1 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: ad4a5911-1d06-4f05-bb68-990111b576e9 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 171106fa-5bee-45fb-b7f6-49859ccf1da7 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 2876837c-cf20-4f4e-80bf-8e4fc0433741 + - Entity: + Id: fc0ad0e9-ade4-4d8f-9089-c8123103e4c8 + Name: b_border (3) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 83dbedb7-993f-42cd-9dae-056c4a60a13c + Position: {X: 0.0, Y: -2.0, Z: 6.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: f9458df4-540b-40bb-b739-a008e7f46752 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 2ebd5bea-fe0d-45c7-94a6-f397044d293c + InstanceId: be2424d7-fb35-4663-a83d-2f81178b2d1a + - Entity: + Id: ffaecfa5-2a52-432c-a215-874a9b16b213 + Name: Cell_Loop (13) + Components: + df8d94b0b00d8b4199577ce15ce1bec6: !TransformComponent + Id: 5797067b-9d04-4ff4-afff-61e91044223c + Position: {X: 3.0, Y: 0.0, Z: -1.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 52f2361c-fc35-46cf-af39-4e63acc8b327 diff --git a/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Middle_N.xkprefab b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Middle_N.xkprefab new file mode 100644 index 0000000..bcec03d --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Middle_N.xkprefab @@ -0,0 +1,889 @@ +!PrefabAsset +Id: 04f8d1d6-3b28-4e63-85f9-4e7dfc60cedb +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 44c06162-5efe-412e-b92c-c6df07386e3a + - ref!! c6efaf16-4812-4b2e-9b98-acc1ad35e8a7 + - ref!! e1f07020-9650-47ae-940c-5c4270bb469a + - ref!! d4f68877-84ce-4ee8-9260-a51280a4486a + - ref!! 29eebecf-f302-4007-a660-eeba8d205c01 + - ref!! 8febc9e4-3113-4f8d-8906-cfae98ceff5e + - ref!! df110001-6921-48d8-b37d-67d9f9a51050 + - ref!! 4f069453-39c5-455d-b939-b5515d77b082 + - ref!! badcd16a-18ff-4d58-bed7-72895308b46f + - ref!! 1062a622-6087-4e0e-a392-18ffc695fe70 + - ref!! 6bf3530c-2ae2-4acf-a815-6aec2f02755e + - ref!! ee4e94be-86da-4767-aa87-6ba05b837623 + - ref!! 3b8618d3-fffe-43e3-a2d9-e4a987e8330f + - ref!! 2a071cf7-8070-40a2-920a-955724c340c4 + - ref!! 171e693b-27af-48c0-8514-d1cc8a91cc98 + - ref!! f05287ce-b3f1-43bf-9c63-cd82b4105391 + - ref!! 97aba327-7ec8-4e3e-a7d3-cc9e317d8e1f + - ref!! a8f50df4-1d17-47f8-96a6-4964ace9c6d7 + - ref!! bffe5030-347f-4980-b7d9-5dfcfe8f5be7 + - ref!! 485e2189-b134-4fdf-976c-2e2f7cca400f + - ref!! 9e79895a-e89a-4d7a-82a0-193e43c9dcbb + - ref!! 7118b4de-037e-45b0-a5b5-305b34b88e05 + - ref!! 804bf548-f31b-4a9e-a0c3-c363c4a40c06 + - ref!! c9957b71-5d37-4fb9-b8e9-7f4eb0fc8026 + Parts: + - Entity: + Id: 010204c9-76fd-4a72-9051-d6a6c9ef547a + Name: b_border + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 0689ae46-5974-4f8e-9731-fed939373fe4 + Position: {X: 1.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: a3a5a0a7-2f3c-4ceb-b0f1-e3a3127f0566 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: b6efbb2d-2700-45d6-ac38-799ebd53780b:PlatformsOld/Prefabs/border_2 + BasePartId: 753ce80b-d972-427a-8c5b-51c735743184 + InstanceId: 2debe0af-8efe-4226-ab8e-946835ca5b96 + - Entity: + Id: 1062a622-6087-4e0e-a392-18ffc695fe70 + Name: Cell_Loop (10) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 6f4c16dd-5a38-4ecf-beff-fa8db8a64afa + Position: {X: 0.0, Y: 0.0, Z: -3.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! c8a1be11-ce88-447d-adaf-2845b5728fb2 + - Entity: + Id: 14f08496-e4e0-450f-b226-66ef25fe5b77 + Name: border_1 + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: f53ed459-5840-461e-9c03-31197663531a + Position: {X: 1.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: cf3c3525-0b32-4b67-b48d-523a5323eb69 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: b6efbb2d-2700-45d6-ac38-799ebd53780b:PlatformsOld/Prefabs/border_2 + BasePartId: 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + InstanceId: 5dacbb0e-9d87-4e64-893f-21880cdecaca + - Entity: + Id: 171e693b-27af-48c0-8514-d1cc8a91cc98 + Name: Cell_Loop (15) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: a08f7f0c-2cba-41fa-89b7-896c7ec72d9b + Position: {X: 8.0, Y: 0.0, Z: -3.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 7d9440fe-a10b-4c53-8def-48d7d899ee96 + - Entity: + Id: 185def85-493e-4925-929d-94bf37df2d51 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: f60899e4-979f-4575-8c58-2c2f253c0019 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: c0e46a34-ffbb-46ef-b879-b1dc2a1a2f49 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 5ea41a1c-89b9-4c20-8371-8f04283914c2 + - Entity: + Id: 1f432d1c-a982-494a-b946-dc01a4e10e7e + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 2d5ffc46-9ad4-4b9a-9e15-b46f90bff315 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 81fddc9b-1d09-48ed-9f88-cca22c88d264 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 12cd959f-96aa-4cf8-8f1c-13e7c3c7b850 + - Entity: + Id: 27f442ab-61bb-49bb-9679-265b58bda105 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 41ba6a29-06f7-451f-9b48-94035e48b3e9 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 7a58de92-5264-4b7a-b5e4-45b6012d2716 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 52cbf411-0155-41db-952f-92ab2a7dce24 + - Entity: + Id: 29eebecf-f302-4007-a660-eeba8d205c01 + Name: Cell_Loop (5) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: d43aced9-581b-4462-bb7a-6e4df2f0bf85 + Position: {X: 2.0, Y: 0.0, Z: 3.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! e3415667-8093-4eda-af09-c160409df17b + - Entity: + Id: 2a071cf7-8070-40a2-920a-955724c340c4 + Name: Cell_Loop (14) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: e75e015d-411e-47a9-a8b6-b6acb0d6bd60 + Position: {X: 8.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 41ba6a29-06f7-451f-9b48-94035e48b3e9 + - Entity: + Id: 2a3ddab8-ae8f-433f-93b5-b03c3c4a1515 + Name: border_1 (4) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: f9ca95ae-04a7-4171-8b11-2e9af6e9f11b + Position: {X: 0.5, Y: -2.0, Z: 6.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: e2a14568-5308-4776-afcb-aa73df582aaa + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: fdef8ba7-3ddb-4b7a-a3cb-9dab4fb2f457:PlatformsOld/Prefabs/border_3-5 + BasePartId: 5da61f03-37f4-4793-ba00-fa55def69b07 + InstanceId: 5dacbb0e-9d87-4e64-893f-21880cdecaca + - Entity: + Id: 2a807acf-6fce-4de7-8acf-b3143909560c + Name: b_border + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 38570c13-3488-42c9-8418-8b2b4881c7b8 + Position: {X: 1.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: ae458ce4-034f-4e35-9e15-824abbc63513 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: b6efbb2d-2700-45d6-ac38-799ebd53780b:PlatformsOld/Prefabs/border_2 + BasePartId: 753ce80b-d972-427a-8c5b-51c735743184 + InstanceId: 5dacbb0e-9d87-4e64-893f-21880cdecaca + - Entity: + Id: 2fe4b4ba-daf9-4eeb-a1b8-bfcb1591ba88 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: c8a1be11-ce88-447d-adaf-2845b5728fb2 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 7af298e0-28f9-4090-b955-9445f14ddada + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 7de424e3-b19d-462d-8f58-1e17580021f2 + - Entity: + Id: 344af8fa-c260-4865-929a-7acf1321fcd1 + Name: b_border (3) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: f220d4a7-4fa4-48e0-8fd1-3b8a6c27accc + Position: {X: 0.5, Y: -2.0, Z: 4.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 0.75} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: 2dbb2027-c499-4a16-834c-d9d276fa8508 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: fdef8ba7-3ddb-4b7a-a3cb-9dab4fb2f457:PlatformsOld/Prefabs/border_3-5 + BasePartId: 2837a08f-5006-455e-b75a-559e645538ee + InstanceId: 5dacbb0e-9d87-4e64-893f-21880cdecaca + - Entity: + Id: 3b8618d3-fffe-43e3-a2d9-e4a987e8330f + Name: Cell_Loop (13) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 97f65e40-3e5f-43dc-bde2-e097ec2f6767 + Position: {X: 8.0, Y: 0.0, Z: 3.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! e2c94b43-124a-461f-aea6-07d27058df31 + - Entity: + Id: 3bd396b5-7d30-46f0-80e3-4c986ec87dc7 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 10aa0483-2d63-424b-b13e-e4eb7bfd1846 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 43efca5e-74d8-4578-88cc-90c5f1c5596f + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 97ac1ca6-17b2-4625-9502-a43645b13448 + - Entity: + Id: 44c06162-5efe-412e-b92c-c6df07386e3a + Name: Cell_Loop + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 617330b3-0e95-4d75-b0c4-b6d07724b861 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 77d65f76-5090-49b5-9b44-c11670b53b21 + - Entity: + Id: 485e2189-b134-4fdf-976c-2e2f7cca400f + Name: Cell_Loop (20) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: c6483eaa-3285-43ae-899e-cbec3e4f6cf3 + Position: {X: 12.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 3746014a-12f8-4e83-9bf9-f28d15d06db1 + - Entity: + Id: 4a383590-2dd5-446e-9bb7-e6f19cc59c07 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: ea206ee0-9e1f-4e93-aa2e-2693bca0be24 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: cd4d3b5c-556d-41d6-bc8a-df38baba7c50 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 742bb7f2-bd40-4b85-8f3c-cb1cb46d0893 + - Entity: + Id: 4b3ede5f-fa9e-4fe4-9843-a6e6f424db44 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 77d65f76-5090-49b5-9b44-c11670b53b21 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: f7a302ad-26a2-4edb-81cc-4990ba937e09 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: c72bca8c-5fcd-41c5-9cf6-f797207ad42d + - Entity: + Id: 4f069453-39c5-455d-b939-b5515d77b082 + Name: Cell_Loop (8) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 05ce85a0-7396-4798-924d-c832c5ad3acf + Position: {X: 6.0, Y: 0.0, Z: 3.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 5febaea5-8ab4-4205-b6a9-a713dd0fb164 + - Entity: + Id: 55fdeff6-a291-4854-9b38-0b7686365e77 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: e3415667-8093-4eda-af09-c160409df17b + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 50d49b39-b077-498f-a699-1459cea35b78 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 7062dfb9-8465-44a5-9cfa-2b673842e839 + - Entity: + Id: 6bf3530c-2ae2-4acf-a815-6aec2f02755e + Name: Cell_Loop (11) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: e3393b9f-5b6a-4e9a-92b1-cb464896447c + Position: {X: 4.0, Y: 0.0, Z: -3.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! ef2fce2c-d9ad-4fd4-9b43-361fce887598 + - Entity: + Id: 6d27e9dd-bdcc-497b-b32f-6f78d4836b0c + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 5febaea5-8ab4-4205-b6a9-a713dd0fb164 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 0655ead8-afa3-42a0-84c0-ed62f4a5ae79 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 6d084ce7-ac8b-4a01-a96d-ae641cf92e59 + - Entity: + Id: 7118b4de-037e-45b0-a5b5-305b34b88e05 + Name: border_1 + Components: + 4f986ba6c3bfa84ca055fc0d25903335: !TransformComponent + Id: a66b984f-bfc3-4ca8-a055-fc0d25903335 + Position: {X: -0.5, Y: 0.0, Z: 1.99999988} + Rotation: {X: 0.0, Y: -1.0, Z: 0.0, W: -2.5331974E-07} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 46ae890674598e4f9731fed939373fe4: ref!! 0689ae46-5974-4f8e-9731-fed939373fe4 + 59d43ef540581e469c0331197663531a: ref!! 56e708ae-b187-4921-aa84-15ff08240297 + - Entity: + Id: 76acbac4-011f-4c42-b939-0d9243f4c755 + Name: Rails_tube (2) + Components: + 53aa6e32d59eeb45aabd52fde17cd48d: !TransformComponent + Id: 326eaa53-9ed5-45eb-aabd-52fde17cd48d + Position: {X: -0.06581557, Y: 1.219562, Z: 4.052} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 0.85, Z: 0.85} + Children: {} + 0225b2a01b17f94d8b22f766fa64fa9b: !ModelComponent + Id: a0b22502-171b-4df9-8b22-f766fa64fa9b + Model: 40be0e1d-f941-454c-9f18-c765c7f3bc78:PlatformsOld/Models/Rails_tube + Materials: {} + Base: + BasePartAsset: fca227cf-3f9e-4d9a-96eb-db7a23bf62fd:PlatformsOld/Prefabs/rails_straight + BasePartId: d78c8476-d01e-4383-98cc-9691ec3d06e7 + InstanceId: ecdf3bb1-efc4-46fe-849c-5a2d24c532e7 + - Entity: + Id: 7a8a467d-2eec-477b-ba35-e597f38e9e08 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: e2c94b43-124a-461f-aea6-07d27058df31 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 0808b418-c849-4f11-9fd1-043816130208 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: cb5417b6-d29d-47a2-816c-5dc299a5c2c1 + - Entity: + Id: 804bf548-f31b-4a9e-a0c3-c363c4a40c06 + Name: border_3-5 + Components: + fea062bb0128a444bf074df7851e16a2: !TransformComponent + Id: bb62a0fe-2801-44a4-bf07-4df7851e16a2 + Position: {X: -5.96046448E-08, Y: 0.0, Z: 1.00000048} + Rotation: {X: 0.0, Y: -1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 46ae890674598e4f9731fed939373fe4: ref!! 38570c13-3488-42c9-8418-8b2b4881c7b8 + 59d43ef540581e469c0331197663531a: ref!! f53ed459-5840-461e-9c03-31197663531a + 9d2d0c18e12d670bf2712117c8cefe5c: ref!! b09ed529-808f-4d3d-a8e5-739aaab3a6f9 + 78efe86f745cfbfa448d78495f1c62bd: ref!! c94483ef-6956-4b06-b01b-616422877b03 + 6504cc7c72de5be90415b64d1b1eaf97: ref!! f220d4a7-4fa4-48e0-8fd1-3b8a6c27accc + a4e842aebd585df1d136105bbf38beaa: ref!! 66d8de72-5964-4970-9227-8f78a80ec0cf + 56fe9dfe0937fb486974a66936b53f8d: ref!! 2b0b7a0e-286c-4475-b5db-13b342c09382 + b08e7338ff0440bb8899f61200952db0: ref!! f9ca95ae-04a7-4171-8b11-2e9af6e9f11b + - Entity: + Id: 832eac34-5165-4513-b1ce-d5fc9d08ffd3 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 2a93fbff-f532-4b10-8230-9bfc39a4250a + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: d29546de-be64-4d7c-abd3-12166c2985eb + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 9f5ab604-85b2-47f4-844f-c85ee41a0def + - Entity: + Id: 8421ad59-cb3c-47b1-a621-f6f85511a0fe + Name: b_border (4) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 2b0b7a0e-286c-4475-b5db-13b342c09382 + Position: {X: 0.5, Y: -2.0, Z: 6.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: 004c81f2-062d-4bec-b694-541650d347b3 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: fdef8ba7-3ddb-4b7a-a3cb-9dab4fb2f457:PlatformsOld/Prefabs/border_3-5 + BasePartId: a8a4b832-ca27-4650-868e-91274c5e8ea4 + InstanceId: 5dacbb0e-9d87-4e64-893f-21880cdecaca + - Entity: + Id: 86069d92-8ea8-45ea-a295-a274d78b3138 + Name: border_1 (3) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 66d8de72-5964-4970-9227-8f78a80ec0cf + Position: {X: 0.5, Y: -2.0, Z: 4.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 0.75} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: 4a188da3-7ac6-4718-9f4c-f098a96a5422 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: fdef8ba7-3ddb-4b7a-a3cb-9dab4fb2f457:PlatformsOld/Prefabs/border_3-5 + BasePartId: adf0e0fd-5178-44f5-a7f5-913d47267c61 + InstanceId: 5dacbb0e-9d87-4e64-893f-21880cdecaca + - Entity: + Id: 889f316b-a2f3-4ff9-8910-38b40ae39ffc + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 7d9440fe-a10b-4c53-8def-48d7d899ee96 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: bb9deeb3-1bd5-4457-b134-7037087e3921 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 5715e718-7e2a-4820-b91f-56c004244be1 + - Entity: + Id: 8febc9e4-3113-4f8d-8906-cfae98ceff5e + Name: Cell_Loop (6) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: ca0c7e5c-6cec-4039-9e80-3606b8fbad97 + Position: {X: 4.0, Y: 0.0, Z: 3.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 5ccad97a-dbb8-4210-93e7-6887a6cdf751 + - Entity: + Id: 95fbf47a-eaeb-461e-9902-30a49fe386c4 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 3746014a-12f8-4e83-9bf9-f28d15d06db1 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: d1e2738a-6692-4f16-b850-3baba09f9413 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 1e1f47bc-47bb-41ef-8c1e-43d6fe9dbecd + - Entity: + Id: 97aba327-7ec8-4e3e-a7d3-cc9e317d8e1f + Name: Cell_Loop (17) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: d79c489f-067d-43a1-a533-d82cd56b3cb9 + Position: {X: 10.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! a276f867-8aa4-4578-a784-cc37715e3da6 + - Entity: + Id: 9e70b8fe-7ffb-47bb-b795-764d236adbcc + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: a276f867-8aa4-4578-a784-cc37715e3da6 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 5177a648-c388-44a7-950e-01c13858f951 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: e6f74180-4bd5-4f38-9511-aa1b77be1b71 + - Entity: + Id: 9e79895a-e89a-4d7a-82a0-193e43c9dcbb + Name: Cell_Loop (21) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: a16519c3-c976-46dc-ac3c-98f323900c53 + Position: {X: 12.0, Y: 0.0, Z: -3.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 7d9f4f75-60af-4f97-9286-ef277edb3012 + - Entity: + Id: a8f50df4-1d17-47f8-96a6-4964ace9c6d7 + Name: Cell_Loop (18) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 47299348-decb-4552-b9e9-9b3e46743373 + Position: {X: 10.0, Y: 0.0, Z: 3.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 10aa0483-2d63-424b-b13e-e4eb7bfd1846 + - Entity: + Id: ae5b5d6e-1489-403c-b488-2a2dd572ea97 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 4014fe22-7748-4656-b581-c2419987abe2 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 6b69b494-c0e9-4f50-9e22-4e20ec019ab3 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: cbebb156-118d-45bd-8b8a-fb0c682254aa + - Entity: + Id: b0b53936-2751-4c3f-a30d-a80659914043 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 2b082fff-8a36-4701-a29c-60fc4737b5d7 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: e933e0f6-0fc7-4971-a163-2553e5afac45 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 0b91d102-f4e8-439b-9806-3894b5bb6155 + - Entity: + Id: b436e47d-719a-48ec-a9ab-5d99cd3b1625 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: ef2fce2c-d9ad-4fd4-9b43-361fce887598 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 558d9ffe-1db1-4dfe-b5b8-c4dabb79990c + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: ffeed4c1-2b7a-4b4a-984b-b6b01acccf0c + - Entity: + Id: badcd16a-18ff-4d58-bed7-72895308b46f + Name: Cell_Loop (9) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: f7761283-6805-4c86-89df-93783b63e5ea + Position: {X: 2.0, Y: 0.0, Z: -3.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! ea206ee0-9e1f-4e93-aa2e-2693bca0be24 + - Entity: + Id: bffe5030-347f-4980-b7d9-5dfcfe8f5be7 + Name: Cell_Loop (19) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 01477d17-f6e0-4eae-9c06-28651f92138b + Position: {X: 12.0, Y: 0.0, Z: 3.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! f60899e4-979f-4575-8c58-2c2f253c0019 + - Entity: + Id: c4d7cb77-f48c-47db-b786-3dd5ad791e35 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 7d9f4f75-60af-4f97-9286-ef277edb3012 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 66533fe4-d483-4bc3-8cb8-7f3a86f47011 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 70ee04b4-6fa6-4997-beb1-49dd11224506 + - Entity: + Id: c6efaf16-4812-4b2e-9b98-acc1ad35e8a7 + Name: Cell_Loop (2) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: e4264a94-766a-48fd-b8a3-fd28c0ac65b8 + Position: {X: 2.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 2a93fbff-f532-4b10-8230-9bfc39a4250a + - Entity: + Id: c9957b71-5d37-4fb9-b8e9-7f4eb0fc8026 + Name: rails_straight + Components: + 0a4bac6064ccdc448772333684e30353: !TransformComponent + Id: 60ac4b0a-cc64-44dc-8772-333684e30353 + Position: {X: -0.5, Y: 0.0, Z: 3.0} + Rotation: {X: 0.0, Y: -1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.115} + Children: + 53aa6e32d59eeb45aabd52fde17cd48d: ref!! 326eaa53-9ed5-45eb-aabd-52fde17cd48d + - Entity: + Id: d0ee1d94-e77b-4d6c-8eaa-f9f73cfc9717 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 5ccad97a-dbb8-4210-93e7-6887a6cdf751 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 7f29ed11-3a64-4fad-b90a-96c5055fb97e + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: ec25b0c5-5574-408f-a10e-4cf85bcfad35 + - Entity: + Id: d4f68877-84ce-4ee8-9260-a51280a4486a + Name: Cell_Loop (4) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 0daab001-5730-49c7-b08f-e5f612e32309 + Position: {X: 0.0, Y: 0.0, Z: 3.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! f1534898-127c-4918-8ac3-f95bf4c05b97 + - Entity: + Id: dac23312-a1b3-40de-a6ac-77f64aa5af10 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 79858dc2-3963-4680-9c03-8f5407571e3a + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: e3ab4b1b-cace-4d40-a8e8-efad5608e774 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 38a75bdc-ccc5-4c0f-9ae6-1f620b912ea4 + - Entity: + Id: df110001-6921-48d8-b37d-67d9f9a51050 + Name: Cell_Loop (7) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: d47e06cc-337d-44bb-b565-d3b2b708f37b + Position: {X: 6.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 2b082fff-8a36-4701-a29c-60fc4737b5d7 + - Entity: + Id: e1f07020-9650-47ae-940c-5c4270bb469a + Name: Cell_Loop (3) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 3c249fa6-1bab-4de7-9c0d-8a8b53b71f4b + Position: {X: 4.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 79858dc2-3963-4680-9c03-8f5407571e3a + - Entity: + Id: ee4e94be-86da-4767-aa87-6ba05b837623 + Name: Cell_Loop (12) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 0474e957-461d-4d11-a7db-71506e1f1dd4 + Position: {X: 6.0, Y: 0.0, Z: -3.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 2d5ffc46-9ad4-4b9a-9e15-b46f90bff315 + - Entity: + Id: f05287ce-b3f1-43bf-9c63-cd82b4105391 + Name: Cell_Loop (16) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: bf4dda67-b98b-43e8-a9a3-bb54b309f267 + Position: {X: 10.0, Y: 0.0, Z: -3.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 4014fe22-7748-4656-b581-c2419987abe2 + - Entity: + Id: f4136700-391a-47af-9ff4-d993e0905659 + Name: b_border (2) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: b09ed529-808f-4d3d-a8e5-739aaab3a6f9 + Position: {X: 1.0, Y: -2.0, Z: 2.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: f81b21eb-d8e7-4ddc-8452-e7a01f48e2b5 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: b6efbb2d-2700-45d6-ac38-799ebd53780b:PlatformsOld/Prefabs/border_2 + BasePartId: 578bb7fc-40be-4480-983d-fde8008120bd + InstanceId: 5dacbb0e-9d87-4e64-893f-21880cdecaca + - Entity: + Id: fafa2491-1bed-4aa0-8dba-d49c11c7c318 + Name: border_1 + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 56e708ae-b187-4921-aa84-15ff08240297 + Position: {X: 1.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: eae1d0e7-496b-4235-b0e6-3c31ee072ec9 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: b6efbb2d-2700-45d6-ac38-799ebd53780b:PlatformsOld/Prefabs/border_2 + BasePartId: 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + InstanceId: 2debe0af-8efe-4226-ab8e-946835ca5b96 + - Entity: + Id: fc111c4e-1530-41f4-9c58-7278654526f5 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: f1534898-127c-4918-8ac3-f95bf4c05b97 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 761f5f5c-0834-4cd5-83e7-66da1b690a62 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 9684e2ca-150f-4ba0-a014-c8c6e9920f83 + - Entity: + Id: fe38f391-f922-4eff-b39c-6fba94cc0227 + Name: border_1 (2) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: c94483ef-6956-4b06-b01b-616422877b03 + Position: {X: 1.0, Y: -2.0, Z: 2.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: 8686b5ff-4886-4b0f-a814-8166a3a8f14c + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: b6efbb2d-2700-45d6-ac38-799ebd53780b:PlatformsOld/Prefabs/border_2 + BasePartId: 583af927-6553-490b-bf64-604837d74650 + InstanceId: 5dacbb0e-9d87-4e64-893f-21880cdecaca diff --git a/Starbreach/Assets/Shared/PlatformsOld/Prefabs/PlatformCorner.xkprefab b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/PlatformCorner.xkprefab new file mode 100644 index 0000000..2ab1a77 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/PlatformCorner.xkprefab @@ -0,0 +1,1199 @@ +!PrefabAsset +Id: 1d99ac65-03cc-4f03-9879-3e8689dd7d8c +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 44c06162-5efe-412e-b92c-c6df07386e3a + - ref!! c6efaf16-4812-4b2e-9b98-acc1ad35e8a7 + - ref!! e1f07020-9650-47ae-940c-5c4270bb469a + - ref!! d4f68877-84ce-4ee8-9260-a51280a4486a + - ref!! 29eebecf-f302-4007-a660-eeba8d205c01 + - ref!! 8febc9e4-3113-4f8d-8906-cfae98ceff5e + - ref!! f64fe6a4-9706-4fb2-b9c2-57e040905cb3 + - ref!! df110001-6921-48d8-b37d-67d9f9a51050 + - ref!! 4f069453-39c5-455d-b939-b5515d77b082 + - ref!! badcd16a-18ff-4d58-bed7-72895308b46f + - ref!! 1062a622-6087-4e0e-a392-18ffc695fe70 + - ref!! 6bf3530c-2ae2-4acf-a815-6aec2f02755e + - ref!! ee4e94be-86da-4767-aa87-6ba05b837623 + - ref!! 3b8618d3-fffe-43e3-a2d9-e4a987e8330f + - ref!! 2a071cf7-8070-40a2-920a-955724c340c4 + - ref!! 171e693b-27af-48c0-8514-d1cc8a91cc98 + - ref!! f05287ce-b3f1-43bf-9c63-cd82b4105391 + - ref!! 97aba327-7ec8-4e3e-a7d3-cc9e317d8e1f + - ref!! a8f50df4-1d17-47f8-96a6-4964ace9c6d7 + - ref!! bffe5030-347f-4980-b7d9-5dfcfe8f5be7 + - ref!! 485e2189-b134-4fdf-976c-2e2f7cca400f + - ref!! 9e79895a-e89a-4d7a-82a0-193e43c9dcbb + - ref!! bdc1f08e-07f6-4d2a-813b-bf7ee402c585 + - ref!! 22875fdc-5c28-4d62-a425-dc615ee937c0 + - ref!! 9d7cbe7b-09c4-4947-a8a0-656c89090360 + - ref!! 9a819983-12c1-4627-84cf-48494e94a899 + - ref!! 8497ca34-4209-42bd-9459-9a51c07840c5 + Parts: + - Entity: + Id: 1062a622-6087-4e0e-a392-18ffc695fe70 + Name: Cell_Loop (10) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 6f4c16dd-5a38-4ecf-beff-fa8db8a64afa + Position: {X: 0.0, Y: 0.0, Z: -3.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! c8a1be11-ce88-447d-adaf-2845b5728fb2 + - Entity: + Id: 171e693b-27af-48c0-8514-d1cc8a91cc98 + Name: Cell_Loop (15) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 27c4664e-01ca-4e4b-a552-2f9d282fa84b + Position: {X: 8.0, Y: 0.0, Z: -3.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 5654ce10-ad21-4d9f-8fe3-843d31c9e326 + - Entity: + Id: 185def85-493e-4925-929d-94bf37df2d51 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 0649432a-342e-4583-8bcf-ba5943e824fe + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: c0e46a34-ffbb-46ef-b879-b1dc2a1a2f49 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 28a7ab4a-66f2-469c-962c-4f76f8afd957 + - Entity: + Id: 1f432d1c-a982-494a-b946-dc01a4e10e7e + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 5c293287-bdcd-401e-9933-75fce3f2bde8 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 94329868-d832-4ce5-b338-2eb5a2f5bd5f + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: f95bdda3-f84e-4d57-a3fc-4658e88d06db + - Entity: + Id: 1fae3a55-5b86-411d-9962-242b1512ba20 + Name: border_L_small_M + Components: + 710f86d688118344850e4b543db0384f: !TransformComponent + Id: d6860f71-1188-4483-850e-4b543db0384f + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f147101f9257a7418b8c6a82fc7bbac7: !ModelComponent + Id: 1f1047f1-5792-41a7-8b8c-6a82fc7bbac7 + Model: e0514356-d16e-4e5b-9008-9f7fb5230bce:PlatformsOld/Models/border_L_small_M + Materials: + 52b322b93322284390399348912756d5~0: 14acd6d5-f6d1-42a7-928d-5add6341bedf:PlatformsOld/Materials/border + Base: + BasePartAsset: 4c3c392a-5cce-42c9-a4ae-4ef9ea40031b:PlatformsOld/Prefabs/L_small_in + BasePartId: 0abaf04c-8cea-44c7-8bff-cce681b5a789 + InstanceId: 7fe7c106-16ac-47ca-b980-05d244b7ce10 + - Entity: + Id: 22875fdc-5c28-4d62-a425-dc615ee937c0 + Name: border_3-75 + Components: + 0feca88971d4584aa0917e40ecc5d325: !TransformComponent + Id: 89a8ec0f-d471-4a58-a091-7e40ecc5d325 + Position: {X: 9.0, Y: 0.0, Z: 3.5} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 59d43ef540581e469c0331197663531a: ref!! f53ed459-5840-461e-9c03-31197663531a + 46ae890674598e4f9731fed939373fe4: ref!! 0689ae46-5974-4f8e-9731-fed939373fe4 + b3204f0989db0e1a39b5a83535c9fcd9: ref!! ed966132-d619-4288-915b-d5f494e5949f + ff69c671324b8a4f623bf9acddc55af2: ref!! fc46fd44-70a1-4bdc-b7f7-e4e7a788e38d + 3616765f045f7e2ff92f5daa175ddc9a: ref!! 837e51b8-e649-4b30-b942-141d087d2e77 + 00fb90ebc9359bc9743489c484acfe3f: ref!! f236be21-a94a-4a1e-b2b3-9710b2bce148 + - Entity: + Id: 27f442ab-61bb-49bb-9679-265b58bda105 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: c1464cac-beca-4bf6-97bc-532b17f3af47 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: a3284337-c04f-4770-affa-ba1811aed7df + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 41359736-ccd0-4921-a355-f52933bc05ac + - Entity: + Id: 29eebecf-f302-4007-a660-eeba8d205c01 + Name: Cell_Loop (5) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: ffa7fb3c-13b0-4077-97ba-12d9c99815f0 + Position: {X: 2.0, Y: 0.0, Z: 3.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! d3478efa-b5d0-45c9-bb1b-ff7e057a7c56 + - Entity: + Id: 2a071cf7-8070-40a2-920a-955724c340c4 + Name: Cell_Loop (14) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 3b2756fb-50c3-43ee-b6be-a1d6773eaea7 + Position: {X: 8.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! c1464cac-beca-4bf6-97bc-532b17f3af47 + - Entity: + Id: 2fe4b4ba-daf9-4eeb-a1b8-bfcb1591ba88 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: c8a1be11-ce88-447d-adaf-2845b5728fb2 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 9276003d-dd59-4f82-a8c1-ea83b597fa5b + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: a183efba-a76a-40b6-a2e9-77fb51c59fca + - Entity: + Id: 356c9032-a78a-4416-9052-f1f069e5e1cd + Name: Rails_adv + Components: + 174c53c97defbd42be3c2a8a2f359168: !TransformComponent + Id: c9534c17-ef7d-42bd-be3c-2a8a2f359168 + Position: {X: 2.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + ddc53876499d1e4ca088c61406981df0: !ModelComponent + Id: 7638c5dd-9d49-4c1e-a088-c61406981df0 + Model: 6c557c7e-7142-44f1-808d-acaf80a392fb:PlatformsOld/Models/Rails_adv + Materials: + ccadb09936f1334db758b0a075a047e4~0: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv + Base: + BasePartAsset: 4c3c392a-5cce-42c9-a4ae-4ef9ea40031b:PlatformsOld/Prefabs/L_small_in + BasePartId: 04591edf-2a3e-4558-a2ad-452f3e9d3ac9 + InstanceId: 7fe7c106-16ac-47ca-b980-05d244b7ce10 + - Entity: + Id: 3b8618d3-fffe-43e3-a2d9-e4a987e8330f + Name: Cell_Loop (13) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 84a038b8-e18d-4a51-9a99-2cd05a839f62 + Position: {X: 8.0, Y: 0.0, Z: 3.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! e45bf892-c43b-4c72-aa1b-950087fc7e1b + - Entity: + Id: 3bd396b5-7d30-46f0-80e3-4c986ec87dc7 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 6426cec2-906a-465b-be92-57b331ef7ce3 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: fda4aa9e-01a0-4037-98be-1b49551f33cd + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: ecbf292d-f88e-477e-89be-e6329779c4d4 + - Entity: + Id: 3ec79382-36c2-4e72-bc60-b85f0bfe675b + Name: b_border (4) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 563ff3bd-a336-4121-b956-dea0ac4c9d44 + Position: {X: 1.0, Y: -2.0, Z: 4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: a3a5a0a7-2f3c-4ceb-b0f1-e3a3127f0566 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: e3af4670-1249-417d-9e6b-763880ef6efa:PlatformsOld/Prefabs/border_2-5 + BasePartId: a8a4b832-ca27-4650-868e-91274c5e8ea4 + InstanceId: 2e1e4045-3960-433f-9e90-46533c1f6135 + - Entity: + Id: 44c06162-5efe-412e-b92c-c6df07386e3a + Name: Cell_Loop + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 2d88d188-d409-44fe-9a51-57e6e36564e1 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 8e4f6868-982d-4359-9e8a-0cc41272f7c0 + - Entity: + Id: 45da3e05-d556-4c43-8f73-2f69c7edc009 + Name: border_1 (2) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: bab6695e-ee91-4269-81f0-ecc47b8585ee + Position: {X: 0.0, Y: -2.0, Z: 3.75} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: cf3c3525-0b32-4b67-b48d-523a5323eb69 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 583af927-6553-490b-bf64-604837d74650 + InstanceId: 15faa664-41c5-43cd-953e-a28e45c47ff7 + - Entity: + Id: 485e2189-b134-4fdf-976c-2e2f7cca400f + Name: Cell_Loop (20) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 033e0883-b1ea-4294-9aca-e67a61d770fa + Position: {X: 12.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! b1145118-bf8d-4c45-90bc-7f922e1cd8aa + - Entity: + Id: 4a383590-2dd5-446e-9bb7-e6f19cc59c07 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 9e5c4082-33ba-4bd8-a792-87ab90dc5335 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 6efed36f-7dcd-4f94-a8eb-29317937c8b4 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 6f9f6971-e087-49bc-80d0-7f1bd27e2244 + - Entity: + Id: 4a8e6448-53d1-4317-bc44-07470558ceaf + Name: Rails_adv (2) + Components: + 174c53c97defbd42be3c2a8a2f359168: !TransformComponent + Id: 24e66fe1-9886-44f1-a130-b20ebfbf60fb + Position: {X: 0.0, Y: 0.0, Z: -2.0} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + ddc53876499d1e4ca088c61406981df0: !ModelComponent + Id: b2a4ae64-4777-4dfd-b672-5673154cc06f + Model: 6c557c7e-7142-44f1-808d-acaf80a392fb:PlatformsOld/Models/Rails_adv + Materials: + ccadb09936f1334db758b0a075a047e4~0: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv + Base: + BasePartAsset: 4c3c392a-5cce-42c9-a4ae-4ef9ea40031b:PlatformsOld/Prefabs/L_small_in + BasePartId: 7a45fb81-048d-442e-8b03-9f3dca855f3f + InstanceId: 7fe7c106-16ac-47ca-b980-05d244b7ce10 + - Entity: + Id: 4b3ede5f-fa9e-4fe4-9843-a6e6f424db44 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 8e4f6868-982d-4359-9e8a-0cc41272f7c0 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 3cc681f7-e0ab-4a73-a554-cf5e4f403010 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 0a1a5d9b-16e2-4b99-889f-536bb8d53150 + - Entity: + Id: 4f069453-39c5-455d-b939-b5515d77b082 + Name: Cell_Loop (8) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 88fe13a1-7bff-4d31-9718-5d2f01f6729f + Position: {X: 6.0, Y: 0.0, Z: 3.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 84b64354-b4f1-4807-880e-8f3e494a5c4f + - Entity: + Id: 527d970e-0f31-42ee-b7b6-5858a9abd49d + Name: b_border (2) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: fc46fd44-70a1-4bdc-b7f7-e4e7a788e38d + Position: {X: 0.0, Y: -2.0, Z: 3.75} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: edd94870-4e9b-484d-bbbc-4514bd335119 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 578bb7fc-40be-4480-983d-fde8008120bd + InstanceId: 03f022c8-f742-44f1-b85f-3d1c756bbb27 + - Entity: + Id: 55fdeff6-a291-4854-9b38-0b7686365e77 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: d3478efa-b5d0-45c9-bb1b-ff7e057a7c56 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: c487bb2f-e5d9-4e87-b810-805798f26b09 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 3bf2cc97-5049-4ec1-9175-66b0735554b6 + - Entity: + Id: 576b3a6b-c56d-4eb9-b23d-7e5a5f6f69aa + Name: b_border (3) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 65c28fdd-69cb-4887-ac14-83f3b724f9a2 + Position: {X: 0.0, Y: -2.0, Z: 6.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: 4f7c0f95-d19e-4e03-8dfc-55a8bd653127 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 2ebd5bea-fe0d-45c7-94a6-f397044d293c + InstanceId: 15faa664-41c5-43cd-953e-a28e45c47ff7 + - Entity: + Id: 5f4928db-1ab9-4dcf-b9d2-5c0811226b1a + Name: b_border (2) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: b88c7133-b3a6-421c-90b0-bce7dad45a38 + Position: {X: 0.0, Y: -2.0, Z: 3.75} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: 585feea4-509c-47d3-a381-6a8208f3611f + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 578bb7fc-40be-4480-983d-fde8008120bd + InstanceId: 2e1e4045-3960-433f-9e90-46533c1f6135 + - Entity: + Id: 681e0408-34a6-4723-89b6-693424faa058 + Name: Rails_tube (2) + Components: + 53aa6e32d59eeb45aabd52fde17cd48d: !TransformComponent + Id: 326eaa53-9ed5-45eb-aabd-52fde17cd48d + Position: {X: -0.06581557, Y: 1.219562, Z: 4.052} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 0.85, Z: 0.85} + Children: {} + 0225b2a01b17f94d8b22f766fa64fa9b: !ModelComponent + Id: a0b22502-171b-4df9-8b22-f766fa64fa9b + Model: 40be0e1d-f941-454c-9f18-c765c7f3bc78:PlatformsOld/Models/Rails_tube + Materials: {} + Base: + BasePartAsset: fca227cf-3f9e-4d9a-96eb-db7a23bf62fd:PlatformsOld/Prefabs/rails_straight + BasePartId: d78c8476-d01e-4383-98cc-9691ec3d06e7 + InstanceId: 81b269b1-5941-498a-bf0a-045fdb47b669 + - Entity: + Id: 6bf3530c-2ae2-4acf-a815-6aec2f02755e + Name: Cell_Loop (11) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: c79f046d-c3e6-4517-9fff-186ec97075f4 + Position: {X: 4.0, Y: 0.0, Z: -3.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! aa6a5999-e7e7-4449-a8f1-15d7aed392c8 + - Entity: + Id: 6d27e9dd-bdcc-497b-b32f-6f78d4836b0c + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 84b64354-b4f1-4807-880e-8f3e494a5c4f + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 214321e6-e7fc-47ce-a4ef-a0505286d9e3 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 3de73ca4-afb9-403e-9f73-1fb34373d90f + - Entity: + Id: 738f1c29-a9d4-4090-85ae-c8eb3a41381c + Name: border_1 (4) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: bc22298f-ef64-45e7-89f5-11fe5d506edd + Position: {X: 1.0, Y: -2.0, Z: 4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: ae798967-5b97-4e12-a7d0-656b60f1c528 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: e3af4670-1249-417d-9e6b-763880ef6efa:PlatformsOld/Prefabs/border_2-5 + BasePartId: 5da61f03-37f4-4793-ba00-fa55def69b07 + InstanceId: 2e1e4045-3960-433f-9e90-46533c1f6135 + - Entity: + Id: 79337665-74b7-4663-ace8-f434fd7ffcd0 + Name: border_1 (3) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: c5284de6-8927-4532-b469-a50d00466b53 + Position: {X: 0.0, Y: -2.0, Z: 6.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: 6fc0636b-61eb-4b7d-9568-6d41dd6c03ec + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: cefd5c0a-8d96-4cb7-8f96-43426815654d + InstanceId: 15faa664-41c5-43cd-953e-a28e45c47ff7 + - Entity: + Id: 7a8a467d-2eec-477b-ba35-e597f38e9e08 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: e45bf892-c43b-4c72-aa1b-950087fc7e1b + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: b6891825-f5f0-40bb-a0a6-b9695a0f4dd9 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: f9693fb5-dff2-48fe-99be-50de56b3d7ea + - Entity: + Id: 7ee9e160-b650-449c-8e4a-292c9ef4fc7d + Name: b_border (3) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 0689ae46-5974-4f8e-9731-fed939373fe4 + Position: {X: 0.0, Y: -2.0, Z: 6.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: b9408337-ba1e-45f9-a4d7-62f06389eb66 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 2ebd5bea-fe0d-45c7-94a6-f397044d293c + InstanceId: 03f022c8-f742-44f1-b85f-3d1c756bbb27 + - Entity: + Id: 832eac34-5165-4513-b1ce-d5fc9d08ffd3 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: a1a2a824-033c-4ca3-96f4-a497a9ddd859 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: c791b26c-2e62-424c-9134-3feeffeabb74 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 8caf75a3-3092-4dfb-93e7-4836bad5deac + - Entity: + Id: 8497ca34-4209-42bd-9459-9a51c07840c5 + Name: rails_straight (2) + Components: + d8c438aae684ec40a1140ee3eab84cce: !TransformComponent + Id: aa38c4d8-84e6-40ec-a114-0ee3eab84cce + Position: {X: 13.999999, Y: 0.0, Z: 3.513068} + Rotation: {X: 0.0, Y: 0.7071068, Z: 0.0, W: -0.7071067} + Scale: {X: 1.0, Y: 1.0, Z: 1.535} + Children: + 53aa6e32d59eeb45aabd52fde17cd48d: ref!! bf2f5ffb-dca8-4d9f-802b-78b63bfc315f + - Entity: + Id: 85329883-37ab-44a7-a376-b61d5688f511 + Name: border_1 (3) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: f53ed459-5840-461e-9c03-31197663531a + Position: {X: 0.0, Y: -2.0, Z: 6.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: 463d7b3a-e5f3-4e59-8496-899f4946746c + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: cefd5c0a-8d96-4cb7-8f96-43426815654d + InstanceId: 03f022c8-f742-44f1-b85f-3d1c756bbb27 + - Entity: + Id: 889f316b-a2f3-4ff9-8910-38b40ae39ffc + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 5654ce10-ad21-4d9f-8fe3-843d31c9e326 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: d2195bb7-c00e-46bf-92d6-a704e5de1e62 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: cf78eb83-6195-452a-bf8f-49357eabd398 + - Entity: + Id: 8befcd6e-54ff-40a7-9556-2f446ea14a4d + Name: b_border (3) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 729ead8e-a694-4a18-afc0-0dc3b241455a + Position: {X: 1.0, Y: -2.0, Z: 2.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 0.75} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: af9c802e-2da2-4422-ba72-7bca3e0a7401 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: e3af4670-1249-417d-9e6b-763880ef6efa:PlatformsOld/Prefabs/border_2-5 + BasePartId: 2837a08f-5006-455e-b75a-559e645538ee + InstanceId: 2e1e4045-3960-433f-9e90-46533c1f6135 + - Entity: + Id: 8c5c2d3c-c702-404b-86d8-40eccec15924 + Name: border_1 (2) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: ed966132-d619-4288-915b-d5f494e5949f + Position: {X: 0.0, Y: -2.0, Z: 3.75} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: 1f8add25-edcf-4ff3-a7cd-d4744c12450d + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 583af927-6553-490b-bf64-604837d74650 + InstanceId: 03f022c8-f742-44f1-b85f-3d1c756bbb27 + - Entity: + Id: 8febc9e4-3113-4f8d-8906-cfae98ceff5e + Name: Cell_Loop (6) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: cdf889cc-c6cb-4b95-a3a7-fa8eec7dc54a + Position: {X: 4.0, Y: 0.0, Z: 3.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 48842ad9-507f-4c7a-83b3-6bd492bb6edf + - Entity: + Id: 95fbf47a-eaeb-461e-9902-30a49fe386c4 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: b1145118-bf8d-4c45-90bc-7f922e1cd8aa + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 397cc8f1-3736-4dcb-9d4c-e65f72d62123 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 3dd61165-11b7-4090-a4f7-7ecba6f59e55 + - Entity: + Id: 97aba327-7ec8-4e3e-a7d3-cc9e317d8e1f + Name: Cell_Loop (17) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 21a7d2e0-99a1-4c58-8cc9-5c6c60336d9f + Position: {X: 10.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 631817e1-3c90-4a09-8fb9-ea6d14aa234d + - Entity: + Id: 9a819983-12c1-4627-84cf-48494e94a899 + Name: rails_straight + Components: + d8c438aae684ec40a1140ee3eab84cce: !TransformComponent + Id: e36936bc-ea48-4f5f-952e-1597a2bfa3a3 + Position: {X: -0.499999017, Y: 0.0, Z: -5.98693562} + Rotation: {X: 0.0, Y: 1.0, Z: 0.0, W: 1.31134158E-07} + Scale: {X: 1.0, Y: 1.0, Z: -1.0} + Children: + 53aa6e32d59eeb45aabd52fde17cd48d: ref!! 326eaa53-9ed5-45eb-aabd-52fde17cd48d + - Entity: + Id: 9ca62ea0-3454-44cf-8e94-1429caff6ce1 + Name: Rails_tube (2) + Components: + 53aa6e32d59eeb45aabd52fde17cd48d: !TransformComponent + Id: bf2f5ffb-dca8-4d9f-802b-78b63bfc315f + Position: {X: -0.06581557, Y: 1.219562, Z: 4.052} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 0.85, Z: 0.85} + Children: {} + 0225b2a01b17f94d8b22f766fa64fa9b: !ModelComponent + Id: 65f92be4-40bf-49bb-abfc-b1ed5021c5cf + Model: 40be0e1d-f941-454c-9f18-c765c7f3bc78:PlatformsOld/Models/Rails_tube + Materials: {} + Base: + BasePartAsset: fca227cf-3f9e-4d9a-96eb-db7a23bf62fd:PlatformsOld/Prefabs/rails_straight + BasePartId: d78c8476-d01e-4383-98cc-9691ec3d06e7 + InstanceId: 1ea8669e-639c-4901-b0b3-cf4606149556 + - Entity: + Id: 9d7cbe7b-09c4-4947-a8a0-656c89090360 + Name: border_3-75 (2) + Components: + c982617d0fecb74e8d4ceddc3164de77: !TransformComponent + Id: 7d6182c9-ec0f-4eb7-8d4c-eddc3164de77 + Position: {X: -0.50000006, Y: 0.0, Z: 1.5} + Rotation: {X: 0.0, Y: -1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 59d43ef540581e469c0331197663531a: ref!! c5284de6-8927-4532-b469-a50d00466b53 + 46ae890674598e4f9731fed939373fe4: ref!! 65c28fdd-69cb-4887-ac14-83f3b724f9a2 + b441e214c06d0ccb07a1c995bbdba908: ref!! bab6695e-ee91-4269-81f0-ecc47b8585ee + 185ada9b04095db02b6989a44b0912a7: ref!! 88b28dec-a5bf-42fe-a6a1-a224683be0a3 + 8794c47ce8862aa1086ac3576bc7a90b: ref!! 8e7cea50-9781-442b-8ab7-f22d4bc354cb + f336a3be3bd47fa7be24c383a5fb1cde: ref!! f1107518-ffa9-4aa0-8c18-14261e7f58bc + - Entity: + Id: 9e70b8fe-7ffb-47bb-b795-764d236adbcc + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 631817e1-3c90-4a09-8fb9-ea6d14aa234d + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 4b81e576-fed2-4b51-a914-7942219f8650 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: f945525a-39bd-4ebc-b469-be3675524086 + - Entity: + Id: 9e79895a-e89a-4d7a-82a0-193e43c9dcbb + Name: Cell_Loop (21) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 7b0ed365-5ade-4893-b50f-a8d6b9e92bdc + Position: {X: 12.0, Y: 0.0, Z: -3.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 3ef36ec7-4436-4b67-a710-edd2a8cad046 + - Entity: + Id: 9ee7105c-1316-4165-a8ad-b44e481bc41e + Name: border_1 (2) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: aa5452a0-7329-4695-9f43-1a34897783d3 + Position: {X: 0.0, Y: -2.0, Z: 3.75} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: 8f211b5b-5dc6-4e96-9b94-baf582993c0e + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 583af927-6553-490b-bf64-604837d74650 + InstanceId: 2e1e4045-3960-433f-9e90-46533c1f6135 + - Entity: + Id: a8f50df4-1d17-47f8-96a6-4964ace9c6d7 + Name: Cell_Loop (18) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: c000de54-a686-4cd8-977c-dc07b4ad7793 + Position: {X: 10.0, Y: 0.0, Z: 3.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 6426cec2-906a-465b-be92-57b331ef7ce3 + - Entity: + Id: ae5b5d6e-1489-403c-b488-2a2dd572ea97 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 8f810267-39cf-4d22-9af8-f580d7c2052b + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: c8f3da9e-b8b6-4059-9657-b6b3c9e7455d + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 13c38352-73bd-4da9-93a0-301cbc04f9ad + - Entity: + Id: b0b53936-2751-4c3f-a30d-a80659914043 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: f8edd72a-23b1-4b2e-a208-8c85f73bca5e + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 2eaeb95d-75d6-454f-ba19-754fa64fa2ac + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: e77ca847-de28-4795-a269-d4c9c7965b22 + - Entity: + Id: b359e516-fb7c-4d0f-a6f0-29414ca77ac4 + Name: border_1 + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 8e7cea50-9781-442b-8ab7-f22d4bc354cb + Position: {X: 0.0, Y: -2.0, Z: 1.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: 73b789fa-71b7-49ed-98e6-397f4e5a20e2 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + InstanceId: 15faa664-41c5-43cd-953e-a28e45c47ff7 + - Entity: + Id: b3a6976f-7b5b-4be5-b9a9-22ac7c7a24ac + Name: Rails_tube_L + Components: + ca718c2a3618ce4c9385cb9d1f7c2f21: !TransformComponent + Id: 2a8c71ca-1836-4cce-9385-cb9d1f7c2f21 + Position: {X: 0.072814025, Y: 3.1820724, Z: -0.0786868259} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + cd368b794a2fe44793d6846662a05df1: !ModelComponent + Id: 798b36cd-2f4a-47e4-93d6-846662a05df1 + Model: b2139cec-163e-4e5d-9a73-c53dbb5b0f3a:PlatformsOld/Models/Rails_tube_L + Materials: + ccadb09936f1334db758b0a075a047e4~0: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv + Base: + BasePartAsset: 4c3c392a-5cce-42c9-a4ae-4ef9ea40031b:PlatformsOld/Prefabs/L_small_in + BasePartId: d29ed7c3-b9b6-4360-8da9-c604dfd64474 + InstanceId: 7fe7c106-16ac-47ca-b980-05d244b7ce10 + - Entity: + Id: b436e47d-719a-48ec-a9ab-5d99cd3b1625 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: aa6a5999-e7e7-4449-a8f1-15d7aed392c8 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: a2a0d242-3cc7-4b5c-88cf-2038992ce51f + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: e4457c71-d8f6-4532-8d1d-36c3779e444f + - Entity: + Id: badcd16a-18ff-4d58-bed7-72895308b46f + Name: Cell_Loop (9) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 554e98f0-78e7-41e9-88d3-3e0294fc6b3d + Position: {X: 2.0, Y: 0.0, Z: -3.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 9e5c4082-33ba-4bd8-a792-87ab90dc5335 + - Entity: + Id: bdc1f08e-07f6-4d2a-813b-bf7ee402c585 + Name: border_2-5 + Components: + ee068ca61372df4c86a09d9d71ae89f0: !TransformComponent + Id: a68c06ee-7213-4cdf-86a0-9d9d71ae89f0 + Position: {X: 14.0, Y: 0.0, Z: 2.5} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 46ae890674598e4f9731fed939373fe4: ref!! b88c7133-b3a6-421c-90b0-bce7dad45a38 + 59d43ef540581e469c0331197663531a: ref!! aa5452a0-7329-4695-9f43-1a34897783d3 + 9dc17e9e853e1ae26e73681766cddf0d: ref!! 729ead8e-a694-4a18-afc0-0dc3b241455a + 6428a4d2da363ef121091020df634b32: ref!! 0aa1fb6d-c1d5-40db-b3af-1d3514d21ae4 + 9aa12e88e8dcaa267a207a07f574278a: ref!! 563ff3bd-a336-4121-b956-dea0ac4c9d44 + 7ba8db20f44cc70a9d971243fb2e4042: ref!! bc22298f-ef64-45e7-89f5-11fe5d506edd + - Entity: + Id: bde43a62-302c-41a4-b949-5a76d35e623a + Name: border_1 (3) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 0aa1fb6d-c1d5-40db-b3af-1d3514d21ae4 + Position: {X: 1.0, Y: -2.0, Z: 2.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 0.75} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: 1468be64-0504-4e9f-b21c-7ae209cb6933 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: e3af4670-1249-417d-9e6b-763880ef6efa:PlatformsOld/Prefabs/border_2-5 + BasePartId: adf0e0fd-5178-44f5-a7f5-913d47267c61 + InstanceId: 2e1e4045-3960-433f-9e90-46533c1f6135 + - Entity: + Id: bffe5030-347f-4980-b7d9-5dfcfe8f5be7 + Name: Cell_Loop (19) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 508e2f9e-c145-4bc2-9b05-98bcadbd52e9 + Position: {X: 12.0, Y: 0.0, Z: 3.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 0649432a-342e-4583-8bcf-ba5943e824fe + - Entity: + Id: c4d7cb77-f48c-47db-b786-3dd5ad791e35 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 3ef36ec7-4436-4b67-a710-edd2a8cad046 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: ce3e7927-c51e-4dc0-8430-7d0fae477f85 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: ce4466e9-7191-44f9-84c7-c06a76352748 + - Entity: + Id: c6efaf16-4812-4b2e-9b98-acc1ad35e8a7 + Name: Cell_Loop (2) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 8d1e0db1-778f-47cc-b6ca-49606822d8a1 + Position: {X: 2.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! a1a2a824-033c-4ca3-96f4-a497a9ddd859 + - Entity: + Id: cc8ff648-45fb-4a54-8c4d-a87e424c4584 + Name: b_border_L_small_outside + Components: + b5dedca46541e04896ab43152a71ca97: !TransformComponent + Id: a4dcdeb5-4165-48e0-96ab-43152a71ca97 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8899e3b5e28fa242900f5277aac668fe: !ModelComponent + Id: b5e39988-8fe2-42a2-900f-5277aac668fe + Model: 3206529c-484d-4bad-938c-2f0e2e77b6a2:PlatformsOld/Models/b_border_L_small_outside + Materials: + 67115b975636144f95aaaff094ceaee9~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: 4c3c392a-5cce-42c9-a4ae-4ef9ea40031b:PlatformsOld/Prefabs/L_small_in + BasePartId: 485d184e-90fc-4c9e-9f32-13d7174a4a54 + InstanceId: 7fe7c106-16ac-47ca-b980-05d244b7ce10 + - Entity: + Id: cec6b9aa-85d8-4230-908b-24903875968c + Name: b_border + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: f236be21-a94a-4a1e-b2b3-9710b2bce148 + Position: {X: 0.0, Y: -2.0, Z: 1.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: f377240f-f7fd-4d13-b0c1-6230cb6bdf02 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: {} + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 753ce80b-d972-427a-8c5b-51c735743184 + InstanceId: 03f022c8-f742-44f1-b85f-3d1c756bbb27 + - Entity: + Id: d0a17305-4451-4077-9812-892205f12c5a + Name: b_border (2) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 88b28dec-a5bf-42fe-a6a1-a224683be0a3 + Position: {X: 0.0, Y: -2.0, Z: 3.75} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: 0304f63d-6133-4299-af0d-9d59f73be2d6 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 578bb7fc-40be-4480-983d-fde8008120bd + InstanceId: 15faa664-41c5-43cd-953e-a28e45c47ff7 + - Entity: + Id: d0ee1d94-e77b-4d6c-8eaa-f9f73cfc9717 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 48842ad9-507f-4c7a-83b3-6bd492bb6edf + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 6931b0b0-8c45-4c8d-a503-3b11a3067c3b + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 662fc181-ca18-45e2-9ce7-d84643edd59c + - Entity: + Id: d4f68877-84ce-4ee8-9260-a51280a4486a + Name: Cell_Loop (4) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: ae0c730a-aed3-4fe2-8905-3cf34bcc3e9a + Position: {X: 0.0, Y: 0.0, Z: 3.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 44fb74cc-d37b-4327-a3ef-122e092f64d4 + - Entity: + Id: dac23312-a1b3-40de-a6ac-77f64aa5af10 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 0c85422b-92fd-40c4-afb3-beeca2f97f7a + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 1b5db659-1f35-4832-9b27-c7e26b804b8a + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: a2a7643a-2825-45c5-a8d9-90d891b3cdf9 + - Entity: + Id: df110001-6921-48d8-b37d-67d9f9a51050 + Name: Cell_Loop (7) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: c7e3acf1-ee9a-4ced-a9a5-a892bd73e764 + Position: {X: 6.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! f8edd72a-23b1-4b2e-a208-8c85f73bca5e + - Entity: + Id: e1f07020-9650-47ae-940c-5c4270bb469a + Name: Cell_Loop (3) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: fc142cee-a798-4b72-9431-88bca95b98a2 + Position: {X: 4.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 0c85422b-92fd-40c4-afb3-beeca2f97f7a + - Entity: + Id: ea4d6ff3-313b-4c9e-8df4-d9491701f954 + Name: border_1 + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 837e51b8-e649-4b30-b942-141d087d2e77 + Position: {X: 0.0, Y: -2.0, Z: 1.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: f3bd3965-17ca-47df-84ba-ae8f270b24ed + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + InstanceId: 03f022c8-f742-44f1-b85f-3d1c756bbb27 + - Entity: + Id: ee4e94be-86da-4767-aa87-6ba05b837623 + Name: Cell_Loop (12) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 0404082b-58c4-4162-979a-f54b610de205 + Position: {X: 6.0, Y: 0.0, Z: -3.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 5c293287-bdcd-401e-9933-75fce3f2bde8 + - Entity: + Id: f05287ce-b3f1-43bf-9c63-cd82b4105391 + Name: Cell_Loop (16) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 42583fea-09d5-428c-a0ab-b5648fdb8055 + Position: {X: 10.0, Y: 0.0, Z: -3.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 8f810267-39cf-4d22-9af8-f580d7c2052b + - Entity: + Id: f64fe6a4-9706-4fb2-b9c2-57e040905cb3 + Name: L_small_in + Components: + f081652cda61f444806d0373c06ff074: !TransformComponent + Id: 2c6581f0-61da-44f4-806d-0373c06ff074 + Position: {X: -0.5, Y: -2.0, Z: 3.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 710f86d688118344850e4b543db0384f: ref!! d6860f71-1188-4483-850e-4b543db0384f + b5dedca46541e04896ab43152a71ca97: ref!! a4dcdeb5-4165-48e0-96ab-43152a71ca97 + 174c53c97defbd42be3c2a8a2f359168: ref!! c9534c17-ef7d-42bd-be3c-2a8a2f359168 + 7618cc4a2d0b128f9de984a0690bfd14: ref!! 24e66fe1-9886-44f1-a130-b20ebfbf60fb + ca718c2a3618ce4c9385cb9d1f7c2f21: ref!! 2a8c71ca-1836-4cce-9385-cb9d1f7c2f21 + - Entity: + Id: f78e4b44-4903-4bb9-8885-c241dc837cfe + Name: b_border + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: f1107518-ffa9-4aa0-8c18-14261e7f58bc + Position: {X: 0.0, Y: -2.0, Z: 1.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: f8f1e4f5-46f0-4fe6-be55-5f4c68bf6900 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: {} + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 753ce80b-d972-427a-8c5b-51c735743184 + InstanceId: 15faa664-41c5-43cd-953e-a28e45c47ff7 + - Entity: + Id: fc111c4e-1530-41f4-9c58-7278654526f5 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 44fb74cc-d37b-4327-a3ef-122e092f64d4 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: e56a4c4e-974f-450f-8cc4-834884cd6ba6 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 5a195fa2-8510-4288-809b-ca07e935a4f5 diff --git a/Starbreach/Assets/Shared/PlatformsOld/Prefabs/PlatformCorner_M.xkprefab b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/PlatformCorner_M.xkprefab new file mode 100644 index 0000000..2965c2f --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/PlatformCorner_M.xkprefab @@ -0,0 +1,1139 @@ +!PrefabAsset +Id: 270d493b-1de9-4301-92d6-56b5fc7e3b93 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 44c06162-5efe-412e-b92c-c6df07386e3a + - ref!! c6efaf16-4812-4b2e-9b98-acc1ad35e8a7 + - ref!! e1f07020-9650-47ae-940c-5c4270bb469a + - ref!! d4f68877-84ce-4ee8-9260-a51280a4486a + - ref!! 29eebecf-f302-4007-a660-eeba8d205c01 + - ref!! 8febc9e4-3113-4f8d-8906-cfae98ceff5e + - ref!! f64fe6a4-9706-4fb2-b9c2-57e040905cb3 + - ref!! df110001-6921-48d8-b37d-67d9f9a51050 + - ref!! 4f069453-39c5-455d-b939-b5515d77b082 + - ref!! badcd16a-18ff-4d58-bed7-72895308b46f + - ref!! 1062a622-6087-4e0e-a392-18ffc695fe70 + - ref!! 6bf3530c-2ae2-4acf-a815-6aec2f02755e + - ref!! ee4e94be-86da-4767-aa87-6ba05b837623 + - ref!! 3b8618d3-fffe-43e3-a2d9-e4a987e8330f + - ref!! 2a071cf7-8070-40a2-920a-955724c340c4 + - ref!! 171e693b-27af-48c0-8514-d1cc8a91cc98 + - ref!! f05287ce-b3f1-43bf-9c63-cd82b4105391 + - ref!! 97aba327-7ec8-4e3e-a7d3-cc9e317d8e1f + - ref!! a8f50df4-1d17-47f8-96a6-4964ace9c6d7 + - ref!! bffe5030-347f-4980-b7d9-5dfcfe8f5be7 + - ref!! 485e2189-b134-4fdf-976c-2e2f7cca400f + - ref!! 9e79895a-e89a-4d7a-82a0-193e43c9dcbb + - ref!! a67c12a5-5f21-482b-a83c-85a40943b1f3 + - ref!! 92f36b1d-079a-4e0c-8c59-b88340fc2c8c + - ref!! 49ac1044-c7a2-42e7-afba-9bbe632c6617 + Parts: + - Entity: + Id: 0b7c79b2-0878-4ad8-8b9a-e55909ff44d8 + Name: border_1 (2) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: f53ed459-5840-461e-9c03-31197663531a + Position: {X: 1.0, Y: -2.0, Z: 0.75} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 0.75} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: cf3c3525-0b32-4b67-b48d-523a5323eb69 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: e3af4670-1249-417d-9e6b-763880ef6efa:PlatformsOld/Prefabs/border_2-5 + BasePartId: 583af927-6553-490b-bf64-604837d74650 + InstanceId: a4850cf2-8551-444c-ac2c-c193147213d3 + - Entity: + Id: 1062a622-6087-4e0e-a392-18ffc695fe70 + Name: Cell_Loop (10) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 6f4c16dd-5a38-4ecf-beff-fa8db8a64afa + Position: {X: 0.0, Y: 0.0, Z: -3.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! c8a1be11-ce88-447d-adaf-2845b5728fb2 + - Entity: + Id: 171e693b-27af-48c0-8514-d1cc8a91cc98 + Name: Cell_Loop (15) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: a05c7cb0-d1d0-4cad-bf8f-302501947de0 + Position: {X: 8.0, Y: 0.0, Z: -3.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 9ed782f1-9319-4ef8-a2d3-f1c0d641d45d + - Entity: + Id: 185def85-493e-4925-929d-94bf37df2d51 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 20f5620e-586a-44be-9543-2fbe682b5e2d + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: c0e46a34-ffbb-46ef-b879-b1dc2a1a2f49 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 6178e6ea-0cd6-4fbc-9602-848528d19be0 + - Entity: + Id: 1f432d1c-a982-494a-b946-dc01a4e10e7e + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 140b3021-b7ee-4f87-9740-cd90c73a78a4 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: d8c786f4-acad-4e76-80c9-0bff06456e07 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 15a22d82-7b21-4450-a9f7-3a9ed77722d3 + - Entity: + Id: 1fae3a55-5b86-411d-9962-242b1512ba20 + Name: border_L_small_M + Components: + 710f86d688118344850e4b543db0384f: !TransformComponent + Id: d6860f71-1188-4483-850e-4b543db0384f + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f147101f9257a7418b8c6a82fc7bbac7: !ModelComponent + Id: 1f1047f1-5792-41a7-8b8c-6a82fc7bbac7 + Model: e0514356-d16e-4e5b-9008-9f7fb5230bce:PlatformsOld/Models/border_L_small_M + Materials: + 52b322b93322284390399348912756d5~0: 14acd6d5-f6d1-42a7-928d-5add6341bedf:PlatformsOld/Materials/border + Base: + BasePartAsset: 4c3c392a-5cce-42c9-a4ae-4ef9ea40031b:PlatformsOld/Prefabs/L_small_in + BasePartId: 0abaf04c-8cea-44c7-8bff-cce681b5a789 + InstanceId: 146645c9-f14b-459c-adb6-5cf04b887c63 + - Entity: + Id: 27f442ab-61bb-49bb-9679-265b58bda105 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: c8d43be6-61e9-4b42-b2b9-8ef3d20c9dd5 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: a358fbf1-7c18-45c2-a956-ed34d8aeaa60 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 0095d01a-0f74-46ed-bd96-e66af25b06f1 + - Entity: + Id: 29eebecf-f302-4007-a660-eeba8d205c01 + Name: Cell_Loop (5) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: aa52e200-ba60-48aa-8489-61f743bfff78 + Position: {X: 2.0, Y: 0.0, Z: 3.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! b6ec6c26-fda4-4ecb-bca7-980204aa838f + - Entity: + Id: 2a071cf7-8070-40a2-920a-955724c340c4 + Name: Cell_Loop (14) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: b7a9af47-6bc3-4a01-8682-91d66b3efcb6 + Position: {X: 8.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! c8d43be6-61e9-4b42-b2b9-8ef3d20c9dd5 + - Entity: + Id: 2fe4b4ba-daf9-4eeb-a1b8-bfcb1591ba88 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: c8a1be11-ce88-447d-adaf-2845b5728fb2 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 60f0e22a-9a7a-4438-a3a2-a5b03ba6e833 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 33abacd9-e3f5-488b-84e1-c4b1d59749fc + - Entity: + Id: 356c9032-a78a-4416-9052-f1f069e5e1cd + Name: Rails_adv + Components: + 174c53c97defbd42be3c2a8a2f359168: !TransformComponent + Id: c9534c17-ef7d-42bd-be3c-2a8a2f359168 + Position: {X: 2.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + ddc53876499d1e4ca088c61406981df0: !ModelComponent + Id: 7638c5dd-9d49-4c1e-a088-c61406981df0 + Model: 6c557c7e-7142-44f1-808d-acaf80a392fb:PlatformsOld/Models/Rails_adv + Materials: + ccadb09936f1334db758b0a075a047e4~0: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv + Base: + BasePartAsset: 4c3c392a-5cce-42c9-a4ae-4ef9ea40031b:PlatformsOld/Prefabs/L_small_in + BasePartId: 04591edf-2a3e-4558-a2ad-452f3e9d3ac9 + InstanceId: 771276e1-8d71-4484-839b-577271289e42 + - Entity: + Id: 3b8618d3-fffe-43e3-a2d9-e4a987e8330f + Name: Cell_Loop (13) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 16ab03c4-65fd-4c40-98e9-4f5fa4444386 + Position: {X: 8.0, Y: 0.0, Z: 3.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! e241b223-b7cf-4acf-aabf-400af2b52575 + - Entity: + Id: 3bd396b5-7d30-46f0-80e3-4c986ec87dc7 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 9bd54713-19b0-4b8b-9843-110ebf654696 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 158339c5-56c0-4017-906f-92db2ddef8a7 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 75e8de93-791e-42ad-8c9f-ae68d071bea4 + - Entity: + Id: 3c321b8a-f971-42fb-a1d6-ac4b637ae6fd + Name: border_1 (3) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 0bae06b3-3149-4774-b570-adf57bb2a5c0 + Position: {X: 0.0, Y: -2.0, Z: 6.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: 1d5a81b6-c28f-4ee4-ac1c-f1b9de91dd17 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: cefd5c0a-8d96-4cb7-8f96-43426815654d + InstanceId: 1f784ffa-6270-453a-8a8f-135aa19348aa + - Entity: + Id: 44c06162-5efe-412e-b92c-c6df07386e3a + Name: Cell_Loop + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 6d699e1d-e22b-4112-90b3-5b5e19b10b08 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! c0a579e1-9aab-442b-ba08-68ed44f0c079 + - Entity: + Id: 485e2189-b134-4fdf-976c-2e2f7cca400f + Name: Cell_Loop (20) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 5032442e-e899-45bc-b5d8-771907de935c + Position: {X: 12.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! c7498e63-6b26-429b-af7a-b981ce094d5a + - Entity: + Id: 49ac1044-c7a2-42e7-afba-9bbe632c6617 + Name: border_2-5 + Components: + 74ecec39b55d094bb94843dcab1ce1f7: !TransformComponent + Id: 39ecec74-5db5-4b09-b948-43dcab1ce1f7 + Position: {X: 9.000001, Y: 0.0, Z: -5.49999952} + Rotation: {X: 0.0, Y: 0.7071069, Z: 0.0, W: 0.70710665} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 46ae890674598e4f9731fed939373fe4: ref!! 0689ae46-5974-4f8e-9731-fed939373fe4 + 59d43ef540581e469c0331197663531a: ref!! 8a6c1e94-a04a-4e9f-a0dd-725854d7b334 + adf2b02344ff1a6878578db1eed48e6e: ref!! be900527-f1b7-47f7-9826-729c889f6ac6 + 524488a47110d4fce2244c60ff5bb7ef: ref!! 9036cdf2-ac28-432c-86dc-23c56eece785 + 490d0bbe0446a974af8855e6e01f8648: ref!! 7cd31ad3-c4dd-4347-8923-97962c8f8de2 + 9121a37259f36361873c99a150dde296: ref!! 9a15f357-e6d2-4773-982c-e23a41de558e + - Entity: + Id: 4a383590-2dd5-446e-9bb7-e6f19cc59c07 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: b9bf252a-c83a-4436-a838-b8b2b7faa5b9 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 6a6d523c-cc34-47a8-9be6-330ef404bef7 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 2d07f0a5-847f-4d7a-8b26-fc5322375cc1 + - Entity: + Id: 4a8e6448-53d1-4317-bc44-07470558ceaf + Name: Rails_adv (2) + Components: + 174c53c97defbd42be3c2a8a2f359168: !TransformComponent + Id: 061b6a66-da2f-4c8c-8a36-080e4bee7485 + Position: {X: 0.0, Y: 0.0, Z: -2.0} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + ddc53876499d1e4ca088c61406981df0: !ModelComponent + Id: 11e1e472-1f7b-411e-a343-ee229b279c9c + Model: 6c557c7e-7142-44f1-808d-acaf80a392fb:PlatformsOld/Models/Rails_adv + Materials: + ccadb09936f1334db758b0a075a047e4~0: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv + Base: + BasePartAsset: 4c3c392a-5cce-42c9-a4ae-4ef9ea40031b:PlatformsOld/Prefabs/L_small_in + BasePartId: 7a45fb81-048d-442e-8b03-9f3dca855f3f + InstanceId: 65733c19-bd4b-450b-b1bf-108a5275edd8 + - Entity: + Id: 4b3ede5f-fa9e-4fe4-9843-a6e6f424db44 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: c0a579e1-9aab-442b-ba08-68ed44f0c079 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 3d914d99-2d41-4a36-800b-d548583dad3f + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 34d6be1d-bba9-4b96-ac0d-91f6f6b3417d + - Entity: + Id: 4f069453-39c5-455d-b939-b5515d77b082 + Name: Cell_Loop (8) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 3c9bb21e-30c7-479b-9b6c-a0d0c1510117 + Position: {X: 6.0, Y: 0.0, Z: 3.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 7a139382-cbdf-49bb-96b4-aaf34f67efbf + - Entity: + Id: 55fdeff6-a291-4854-9b38-0b7686365e77 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: b6ec6c26-fda4-4ecb-bca7-980204aa838f + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 362a45c9-9af4-4c6a-81c8-01358e877d06 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 7e51faca-0742-41b0-a10e-cf0838d50f70 + - Entity: + Id: 5b6ed14c-2f52-4d98-a22e-83e286395e76 + Name: border_1 (3) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 9036cdf2-ac28-432c-86dc-23c56eece785 + Position: {X: 1.0, Y: -2.0, Z: 2.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 0.75} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: 2620c1d9-8cc8-49fd-8d80-84cb52301ea3 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: e3af4670-1249-417d-9e6b-763880ef6efa:PlatformsOld/Prefabs/border_2-5 + BasePartId: adf0e0fd-5178-44f5-a7f5-913d47267c61 + InstanceId: 16b6bea0-9336-4f48-8b85-1353524a1816 + - Entity: + Id: 690136d6-e5d1-4277-85e4-33cce2269fa2 + Name: b_border + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 06500984-365a-4021-9ea6-05c404efdad7 + Position: {X: 0.0, Y: -2.0, Z: 1.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: a3a5a0a7-2f3c-4ceb-b0f1-e3a3127f0566 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: {} + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 753ce80b-d972-427a-8c5b-51c735743184 + InstanceId: a4850cf2-8551-444c-ac2c-c193147213d3 + - Entity: + Id: 6bf3530c-2ae2-4acf-a815-6aec2f02755e + Name: Cell_Loop (11) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 661448bc-669b-4af7-ae8a-2fec7795a162 + Position: {X: 4.0, Y: 0.0, Z: -3.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 048a4060-084f-40a4-a91b-fa55da21b308 + - Entity: + Id: 6d27e9dd-bdcc-497b-b32f-6f78d4836b0c + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 7a139382-cbdf-49bb-96b4-aaf34f67efbf + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 62e6fc70-85e7-48f6-b1ad-3fe88bc61fba + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: cde90d62-00b4-456e-99bf-9ca2e8a514da + - Entity: + Id: 77965ebb-21c9-4a74-ba98-e5a26c4e6131 + Name: border_1 (3) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: acc33f65-f27e-4fd4-8264-5899f352785f + Position: {X: 0.0, Y: -2.0, Z: 6.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: cc84b809-4ce6-4589-a315-6daf17982f80 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: cefd5c0a-8d96-4cb7-8f96-43426815654d + InstanceId: a4850cf2-8551-444c-ac2c-c193147213d3 + - Entity: + Id: 7a8a467d-2eec-477b-ba35-e597f38e9e08 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: e241b223-b7cf-4acf-aabf-400af2b52575 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: ffab83a3-0363-450e-b19b-2cf3fe7624ec + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 3af0ea53-cec5-4bde-a65e-159fdddfac4e + - Entity: + Id: 832eac34-5165-4513-b1ce-d5fc9d08ffd3 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: fc14fe30-9bb2-4e1b-8bae-edd09bba20a8 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 20c90786-b9e1-4356-84a0-41a40ea8ccf7 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 368d682b-8910-4570-8136-8a4de5af0ed1 + - Entity: + Id: 889f316b-a2f3-4ff9-8910-38b40ae39ffc + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 9ed782f1-9319-4ef8-a2d3-f1c0d641d45d + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: da7a1710-4e7d-410d-ac7b-422d251316c4 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: b49ad1d2-996b-40aa-a9e7-dbd1ebe9a3aa + - Entity: + Id: 8febc9e4-3113-4f8d-8906-cfae98ceff5e + Name: Cell_Loop (6) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 66199a23-b37e-4c0b-a048-07e276f742ca + Position: {X: 4.0, Y: 0.0, Z: 3.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 8518f61a-7cbe-473f-a14a-4e6d9be7fd6c + - Entity: + Id: 92f36b1d-079a-4e0c-8c59-b88340fc2c8c + Name: border_3-75 (2) + Components: + 5ae2e670da1d834dbfcc0a5c55dc6b4e: !TransformComponent + Id: 70e6e25a-1dda-4d83-bfcc-0a5c55dc6b4e + Position: {X: 1.50000048, Y: 0.0, Z: -6.5} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 59d43ef540581e469c0331197663531a: ref!! 0bae06b3-3149-4774-b570-adf57bb2a5c0 + 46ae890674598e4f9731fed939373fe4: ref!! f8547357-eb72-44c8-8a26-f19690842024 + d35dff3dcf13e3b77d5df5c1c9fd7dbf: ref!! 5264e3c9-45f6-4ec9-9172-b8e49ec51663 + 638d6c64c82be88bae8205d39384e7be: ref!! 289f284d-9b5b-40e3-a833-ab8f29d9fe72 + b4eb5adb86c7c9ce2f4e8dd162e99652: ref!! 682d05a0-6465-484a-b1fa-e103bd5aca8a + 5f3ee104e7de8d811ded1d1861af658e: ref!! 652d4946-6d5b-4eea-b01a-5d12c1ba0f30 + - Entity: + Id: 95fbf47a-eaeb-461e-9902-30a49fe386c4 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: c7498e63-6b26-429b-af7a-b981ce094d5a + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 4a914c52-4154-4a0a-81a4-8964c7168b9f + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: aefa3301-30b2-4ec1-b7a4-7143af7a8de3 + - Entity: + Id: 97aba327-7ec8-4e3e-a7d3-cc9e317d8e1f + Name: Cell_Loop (17) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: b543af5e-8eb5-42d2-9bf1-8d444d2f475e + Position: {X: 10.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 3807cb99-b863-43de-80ab-edefd6ab7164 + - Entity: + Id: 9a7d0beb-77e3-4db8-bf4a-fb7f4d20e8f5 + Name: b_border (3) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: f8547357-eb72-44c8-8a26-f19690842024 + Position: {X: 0.0, Y: -2.0, Z: 6.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: ae1d8d74-c127-49dc-b52c-8f3538e65f82 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 2ebd5bea-fe0d-45c7-94a6-f397044d293c + InstanceId: 1f784ffa-6270-453a-8a8f-135aa19348aa + - Entity: + Id: 9ddb606a-3be0-4589-8ce7-ac820f6c9822 + Name: border_1 (4) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 9a15f357-e6d2-4773-982c-e23a41de558e + Position: {X: 1.0, Y: -2.0, Z: 4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: 674f7ae8-3e8a-48b4-ac48-888adc8ef542 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: e3af4670-1249-417d-9e6b-763880ef6efa:PlatformsOld/Prefabs/border_2-5 + BasePartId: 5da61f03-37f4-4793-ba00-fa55def69b07 + InstanceId: 16b6bea0-9336-4f48-8b85-1353524a1816 + - Entity: + Id: 9e70b8fe-7ffb-47bb-b795-764d236adbcc + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 3807cb99-b863-43de-80ab-edefd6ab7164 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: c0dc1219-b4a0-439d-8848-86151ecb2be7 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 6ea89987-7477-4706-99cd-580ee67fb494 + - Entity: + Id: 9e79895a-e89a-4d7a-82a0-193e43c9dcbb + Name: Cell_Loop (21) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 87d7c8dd-120e-4e47-bc36-bff1ccc00a53 + Position: {X: 12.0, Y: 0.0, Z: -3.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 86083395-317a-41e5-9fe6-f9e437e861d3 + - Entity: + Id: a156559c-4c01-4cf7-8b32-5160507b8743 + Name: b_border (2) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 2298c2fb-e740-4091-9a4f-5111e1ee1dc3 + Position: {X: 1.0, Y: -2.0, Z: 0.74999994} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 0.75} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: 41ce5ff7-9ff0-4e3c-a0bd-ab1568da4784 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: e3af4670-1249-417d-9e6b-763880ef6efa:PlatformsOld/Prefabs/border_2-5 + BasePartId: 578bb7fc-40be-4480-983d-fde8008120bd + InstanceId: a4850cf2-8551-444c-ac2c-c193147213d3 + - Entity: + Id: a322ed62-9339-4eb2-91ee-e4932e678c1c + Name: b_border (3) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: be900527-f1b7-47f7-9826-729c889f6ac6 + Position: {X: 1.0, Y: -2.0, Z: 2.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 0.75} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: 8a53a280-9727-450f-b10c-a6c713868f62 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: e3af4670-1249-417d-9e6b-763880ef6efa:PlatformsOld/Prefabs/border_2-5 + BasePartId: 2837a08f-5006-455e-b75a-559e645538ee + InstanceId: 16b6bea0-9336-4f48-8b85-1353524a1816 + - Entity: + Id: a67c12a5-5f21-482b-a83c-85a40943b1f3 + Name: border_3-75 + Components: + 48834ef941a5654897b6b2665e703db0: !TransformComponent + Id: f94e8348-a541-4865-97b6-b2665e703db0 + Position: {X: -0.5, Y: 0.0, Z: 3.0} + Rotation: {X: 0.0, Y: -1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 59d43ef540581e469c0331197663531a: ref!! acc33f65-f27e-4fd4-8264-5899f352785f + 46ae890674598e4f9731fed939373fe4: ref!! a0a0e802-e2b5-4fb6-bc8e-909e797efdeb + 207a2b7e0c56d088c5c47e524c751574: ref!! f53ed459-5840-461e-9c03-31197663531a + f36f77c3954300467fceff13642febbe: ref!! 2298c2fb-e740-4091-9a4f-5111e1ee1dc3 + 6f51f0a00b904e73ec6c1715bc8fca56: ref!! ebc41b85-f9cd-4e79-949e-0563b19b3322 + 6d9f683807db86ca6c617522084184a2: ref!! 06500984-365a-4021-9ea6-05c404efdad7 + - Entity: + Id: a8f50df4-1d17-47f8-96a6-4964ace9c6d7 + Name: Cell_Loop (18) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 5de8567d-87e2-49d0-8ef8-45afc95b3a12 + Position: {X: 10.0, Y: 0.0, Z: 3.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 9bd54713-19b0-4b8b-9843-110ebf654696 + - Entity: + Id: a9772f35-2941-4226-8bce-a397c360ba92 + Name: border_1 (2) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 5264e3c9-45f6-4ec9-9172-b8e49ec51663 + Position: {X: 1.0, Y: -2.0, Z: 0.75} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 0.75} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: dd9b8cba-c9e2-478c-ad96-9e2f9eac01d7 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: e3af4670-1249-417d-9e6b-763880ef6efa:PlatformsOld/Prefabs/border_2-5 + BasePartId: 583af927-6553-490b-bf64-604837d74650 + InstanceId: 1f784ffa-6270-453a-8a8f-135aa19348aa + - Entity: + Id: ae5b5d6e-1489-403c-b488-2a2dd572ea97 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 2cf6bd6b-3640-4644-a31d-a9423fd5b580 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 0f5abcb2-ed6a-40d8-b834-11736eb3fad2 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 691cb685-b82f-405a-8cb2-d4bd64c60faa + - Entity: + Id: b0b53936-2751-4c3f-a30d-a80659914043 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 6b7b7e1f-52a9-4a06-b50f-d609cb61514d + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: e8e04b85-66bb-4062-b0e3-37251c8f28d6 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: e423da11-2dd6-44e8-90e3-554bca5a6ff7 + - Entity: + Id: b0e18242-d222-454f-b88a-b61297ad4f0d + Name: b_border (2) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 289f284d-9b5b-40e3-a833-ab8f29d9fe72 + Position: {X: 1.0, Y: -2.0, Z: 0.74999994} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 0.75} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: c1ced1b0-05d2-4710-a196-79d1b6e42a40 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: e3af4670-1249-417d-9e6b-763880ef6efa:PlatformsOld/Prefabs/border_2-5 + BasePartId: 578bb7fc-40be-4480-983d-fde8008120bd + InstanceId: 1f784ffa-6270-453a-8a8f-135aa19348aa + - Entity: + Id: b167fc88-f292-461c-a76d-6196f8658a18 + Name: border_1 (2) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 8a6c1e94-a04a-4e9f-a0dd-725854d7b334 + Position: {X: 1.0, Y: -2.0, Z: 0.75} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 0.75} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: afc35131-a826-4eac-b3b1-8a3ef7bb82be + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: e3af4670-1249-417d-9e6b-763880ef6efa:PlatformsOld/Prefabs/border_2-5 + BasePartId: 583af927-6553-490b-bf64-604837d74650 + InstanceId: 16b6bea0-9336-4f48-8b85-1353524a1816 + - Entity: + Id: b3a6976f-7b5b-4be5-b9a9-22ac7c7a24ac + Name: Rails_tube_L + Components: + ca718c2a3618ce4c9385cb9d1f7c2f21: !TransformComponent + Id: 2a8c71ca-1836-4cce-9385-cb9d1f7c2f21 + Position: {X: 0.072814025, Y: 3.1820724, Z: -0.0786868259} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + cd368b794a2fe44793d6846662a05df1: !ModelComponent + Id: 798b36cd-2f4a-47e4-93d6-846662a05df1 + Model: b2139cec-163e-4e5d-9a73-c53dbb5b0f3a:PlatformsOld/Models/Rails_tube_L + Materials: + ccadb09936f1334db758b0a075a047e4~0: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv + Base: + BasePartAsset: 4c3c392a-5cce-42c9-a4ae-4ef9ea40031b:PlatformsOld/Prefabs/L_small_in + BasePartId: d29ed7c3-b9b6-4360-8da9-c604dfd64474 + InstanceId: 66685d5b-6803-4a4f-9302-cfeccd1557f5 + - Entity: + Id: b3ed8f89-8503-4680-9d64-b8ac68f9d6ec + Name: border_1 + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: ebc41b85-f9cd-4e79-949e-0563b19b3322 + Position: {X: 0.0, Y: -2.0, Z: 1.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: 06ee1f29-dfd8-4161-8599-dc80e86abacb + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + InstanceId: a4850cf2-8551-444c-ac2c-c193147213d3 + - Entity: + Id: b436e47d-719a-48ec-a9ab-5d99cd3b1625 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 048a4060-084f-40a4-a91b-fa55da21b308 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 5f477852-7af3-46a9-9851-efcf0ae56427 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 618a2cd9-8134-4131-9e9a-d1f0051b514d + - Entity: + Id: badcd16a-18ff-4d58-bed7-72895308b46f + Name: Cell_Loop (9) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: d89125a8-fbcc-455b-82bb-17750de39dca + Position: {X: 2.0, Y: 0.0, Z: -3.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! b9bf252a-c83a-4436-a838-b8b2b7faa5b9 + - Entity: + Id: bffe5030-347f-4980-b7d9-5dfcfe8f5be7 + Name: Cell_Loop (19) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: d241e33a-021c-49bf-b5c2-451cdab8772f + Position: {X: 12.0, Y: 0.0, Z: 3.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 20f5620e-586a-44be-9543-2fbe682b5e2d + - Entity: + Id: c47e0228-bad8-4f5b-b5bb-0b884aa031a5 + Name: border_1 + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 682d05a0-6465-484a-b1fa-e103bd5aca8a + Position: {X: 0.0, Y: -2.0, Z: 1.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: 28ecab73-0e74-47c2-967a-a4f653840e38 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + InstanceId: 1f784ffa-6270-453a-8a8f-135aa19348aa + - Entity: + Id: c4d7cb77-f48c-47db-b786-3dd5ad791e35 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 86083395-317a-41e5-9fe6-f9e437e861d3 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 5d590cf7-27f6-4851-b883-21e1fb76f99b + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 0d55e20e-e8e7-457b-bda7-2227e0268609 + - Entity: + Id: c6efaf16-4812-4b2e-9b98-acc1ad35e8a7 + Name: Cell_Loop (2) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: b470c077-9237-48e1-9203-1a95a73b7069 + Position: {X: 2.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! fc14fe30-9bb2-4e1b-8bae-edd09bba20a8 + - Entity: + Id: cc8ff648-45fb-4a54-8c4d-a87e424c4584 + Name: b_border_L_small_outside + Components: + b5dedca46541e04896ab43152a71ca97: !TransformComponent + Id: a4dcdeb5-4165-48e0-96ab-43152a71ca97 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8899e3b5e28fa242900f5277aac668fe: !ModelComponent + Id: b5e39988-8fe2-42a2-900f-5277aac668fe + Model: 3206529c-484d-4bad-938c-2f0e2e77b6a2:PlatformsOld/Models/b_border_L_small_outside + Materials: + 67115b975636144f95aaaff094ceaee9~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: 4c3c392a-5cce-42c9-a4ae-4ef9ea40031b:PlatformsOld/Prefabs/L_small_in + BasePartId: 485d184e-90fc-4c9e-9f32-13d7174a4a54 + InstanceId: 978059f1-1ed0-4450-a071-4110d1f75a88 + - Entity: + Id: d0ee1d94-e77b-4d6c-8eaa-f9f73cfc9717 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: 8518f61a-7cbe-473f-a14a-4e6d9be7fd6c + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 7a6b25d9-c72b-4382-aa18-105b089c7630 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: e032f72e-74e9-420b-9344-fabeb3771393 + - Entity: + Id: d4f68877-84ce-4ee8-9260-a51280a4486a + Name: Cell_Loop (4) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 2b8b366e-d9e4-486a-9e34-bdeb7c24c81b + Position: {X: 0.0, Y: 0.0, Z: 3.00000024} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! a7e61de2-a220-4a41-976b-8506fafb4864 + - Entity: + Id: dac23312-a1b3-40de-a6ac-77f64aa5af10 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: c2b7ba6c-b7ca-4373-a53a-80e600d37a5d + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 89b61f55-88b6-4be9-8e23-5a3886f59d8d + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: 858d7ee4-0743-420c-a09f-04ae1fd77427 + - Entity: + Id: dc68ccc8-0a6e-4418-a59b-89748e913375 + Name: b_border (4) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 7cd31ad3-c4dd-4347-8923-97962c8f8de2 + Position: {X: 1.0, Y: -2.0, Z: 4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: eedec07d-8aa4-43e6-9b85-7adc2f1b8529 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: e3af4670-1249-417d-9e6b-763880ef6efa:PlatformsOld/Prefabs/border_2-5 + BasePartId: a8a4b832-ca27-4650-868e-91274c5e8ea4 + InstanceId: 16b6bea0-9336-4f48-8b85-1353524a1816 + - Entity: + Id: df110001-6921-48d8-b37d-67d9f9a51050 + Name: Cell_Loop (7) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: c79d3a10-0692-4da9-a786-e493135ebfdd + Position: {X: 6.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 6b7b7e1f-52a9-4a06-b50f-d609cb61514d + - Entity: + Id: e1f07020-9650-47ae-940c-5c4270bb469a + Name: Cell_Loop (3) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: fd0aa26b-76f7-4dc9-925c-2ae4899ea56c + Position: {X: 4.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! c2b7ba6c-b7ca-4373-a53a-80e600d37a5d + - Entity: + Id: e219836a-b54c-4158-8983-b0dac34d487c + Name: b_border (2) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 0689ae46-5974-4f8e-9731-fed939373fe4 + Position: {X: 1.0, Y: -2.0, Z: 0.74999994} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 0.75} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: 058a6c6a-1302-4d33-87a5-bbe811e1ddda + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: e3af4670-1249-417d-9e6b-763880ef6efa:PlatformsOld/Prefabs/border_2-5 + BasePartId: 578bb7fc-40be-4480-983d-fde8008120bd + InstanceId: 16b6bea0-9336-4f48-8b85-1353524a1816 + - Entity: + Id: e4e0113e-7029-44ce-8d81-6b9fa1183378 + Name: b_border + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 652d4946-6d5b-4eea-b01a-5d12c1ba0f30 + Position: {X: 0.0, Y: -2.0, Z: 1.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: ddf64f68-1746-45fc-8dfc-5cb1ef1537a1 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: {} + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 753ce80b-d972-427a-8c5b-51c735743184 + InstanceId: 1f784ffa-6270-453a-8a8f-135aa19348aa + - Entity: + Id: ee4e94be-86da-4767-aa87-6ba05b837623 + Name: Cell_Loop (12) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 2034d104-754d-4c6d-84c2-b238212817c4 + Position: {X: 6.0, Y: 0.0, Z: -3.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 140b3021-b7ee-4f87-9740-cd90c73a78a4 + - Entity: + Id: f05287ce-b3f1-43bf-9c63-cd82b4105391 + Name: Cell_Loop (16) + Components: + dd164c6f385acf4ebefffa8db8a64afa: !TransformComponent + Id: 84f74c93-f554-4fdf-ba54-4a8ec82b7b7f + Position: {X: 10.0, Y: 0.0, Z: -3.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 11bea1c888ce7d44adaf2845b5728fb2: ref!! 2cf6bd6b-3640-4644-a31d-a9423fd5b580 + - Entity: + Id: f64fe6a4-9706-4fb2-b9c2-57e040905cb3 + Name: L_small_in + Components: + f081652cda61f444806d0373c06ff074: !TransformComponent + Id: 2c6581f0-61da-44f4-806d-0373c06ff074 + Position: {X: -0.5, Y: -2.0, Z: -6.499999} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 710f86d688118344850e4b543db0384f: ref!! d6860f71-1188-4483-850e-4b543db0384f + b5dedca46541e04896ab43152a71ca97: ref!! a4dcdeb5-4165-48e0-96ab-43152a71ca97 + 174c53c97defbd42be3c2a8a2f359168: ref!! c9534c17-ef7d-42bd-be3c-2a8a2f359168 + 14c7e1abfa930842c263a38f7d6b0b1e: ref!! 061b6a66-da2f-4c8c-8a36-080e4bee7485 + ca718c2a3618ce4c9385cb9d1f7c2f21: ref!! 2a8c71ca-1836-4cce-9385-cb9d1f7c2f21 + - Entity: + Id: fc111c4e-1530-41f4-9c58-7278654526f5 + Name: Cell_Loop + Components: + 11bea1c888ce7d44adaf2845b5728fb2: !TransformComponent + Id: a7e61de2-a220-4a41-976b-8506fafb4864 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 346ae4c0bbffef46b879b1dc2a1a2f49: !ModelComponent + Id: 447858d6-41b9-4e31-83b8-8f3905c5c9b6 + Model: e3fa4405-a073-4a01-a959-1b0b57028bbb:PlatformsOld/Models/Cell_Loop + Materials: {} + Base: + BasePartAsset: 3e25b1d8-144d-4d20-a657-d652fa707e44:PlatformsOld/Prefabs/Cell_Loop + BasePartId: b9692c73-a7ed-42c2-a7c2-5ff0b3451ec5 + InstanceId: c3eb2d38-ab10-4b2c-9322-b59387d56c15 + - Entity: + Id: fcd84fa7-71a4-4de1-8c6b-3ced070cb179 + Name: b_border (3) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: a0a0e802-e2b5-4fb6-bc8e-909e797efdeb + Position: {X: 0.0, Y: -2.0, Z: 6.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: 9e990642-4287-4335-a586-c37914e4650a + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + Base: + BasePartAsset: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e:PlatformsOld/Prefabs/border_3-75 + BasePartId: 2ebd5bea-fe0d-45c7-94a6-f397044d293c + InstanceId: a4850cf2-8551-444c-ac2c-c193147213d3 diff --git a/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Rails.xkprefab b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Rails.xkprefab new file mode 100644 index 0000000..1e188e4 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/Rails.xkprefab @@ -0,0 +1,37 @@ +!PrefabAsset +Id: 21f6ebc2-07d3-4cdd-89e9-07b0a2713904 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 6f8eaba3-b78e-445f-8ba5-f22f43244c5b + Parts: + - Entity: + Id: 6f8eaba3-b78e-445f-8ba5-f22f43244c5b + Name: Rails + Components: + f51f59cfaabba24aa10acbe24b1577c2: !TransformComponent + Id: cf591ff5-bbaa-4aa2-a10a-cbe24b1577c2 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6bb42ae176ba9d449398275f18ac377c: !ModelComponent + Id: e12ab46b-ba76-449d-9398-275f18ac377c + Model: b144c0e0-a473-485a-97a9-99c8440543f9:PlatformsOld/Models/Rails + Materials: {} + c3490972a36d22459d73d5e05679a26c: !StaticColliderComponent + Id: 720949c3-6da3-4522-9d73-d5e05679a26c + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 8e2989441024a842bae572fd1895b241: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.0, Y: 1.5, Z: 0.25} + LocalOffset: {X: 0.0, Y: 0.75, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Prefabs/border_1-75.xkprefab b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/border_1-75.xkprefab new file mode 100644 index 0000000..7066f24 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/border_1-75.xkprefab @@ -0,0 +1,39 @@ +!PrefabAsset +Id: 628f9986-331c-4898-ac40-2ea978ad6478 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 753ce80b-d972-427a-8c5b-51c735743184 + - ref!! 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + Parts: + - Entity: + Id: 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + Name: border_1 + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: f53ed459-5840-461e-9c03-31197663531a + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: cf3c3525-0b32-4b67-b48d-523a5323eb69 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + - Entity: + Id: 753ce80b-d972-427a-8c5b-51c735743184 + Name: b_border + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 0689ae46-5974-4f8e-9731-fed939373fe4 + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: a3a5a0a7-2f3c-4ceb-b0f1-e3a3127f0566 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 diff --git a/Starbreach/Assets/Shared/PlatformsOld/Prefabs/border_1.xkprefab b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/border_1.xkprefab new file mode 100644 index 0000000..1b110d3 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/border_1.xkprefab @@ -0,0 +1,39 @@ +!PrefabAsset +Id: b1b3c139-0b60-4b58-bec2-44936662b685 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 753ce80b-d972-427a-8c5b-51c735743184 + - ref!! 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + Parts: + - Entity: + Id: 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + Name: border_1 + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: f53ed459-5840-461e-9c03-31197663531a + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: cf3c3525-0b32-4b67-b48d-523a5323eb69 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + - Entity: + Id: 753ce80b-d972-427a-8c5b-51c735743184 + Name: b_border + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 0689ae46-5974-4f8e-9731-fed939373fe4 + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: a3a5a0a7-2f3c-4ceb-b0f1-e3a3127f0566 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 diff --git a/Starbreach/Assets/Shared/PlatformsOld/Prefabs/border_2-5.xkprefab b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/border_2-5.xkprefab new file mode 100644 index 0000000..0cd100e --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/border_2-5.xkprefab @@ -0,0 +1,103 @@ +!PrefabAsset +Id: e3af4670-1249-417d-9e6b-763880ef6efa +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 578bb7fc-40be-4480-983d-fde8008120bd + - ref!! 583af927-6553-490b-bf64-604837d74650 + - ref!! 2837a08f-5006-455e-b75a-559e645538ee + - ref!! adf0e0fd-5178-44f5-a7f5-913d47267c61 + - ref!! a8a4b832-ca27-4650-868e-91274c5e8ea4 + - ref!! 5da61f03-37f4-4793-ba00-fa55def69b07 + Parts: + - Entity: + Id: 2837a08f-5006-455e-b75a-559e645538ee + Name: b_border (3) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 0689ae46-5974-4f8e-9731-fed939373fe4 + Position: {X: 1.0, Y: -2.0, Z: 2.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 0.75} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: a3a5a0a7-2f3c-4ceb-b0f1-e3a3127f0566 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + - Entity: + Id: 578bb7fc-40be-4480-983d-fde8008120bd + Name: b_border (2) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: eea7b04c-062e-4456-802f-7da517690637 + Position: {X: 1.0, Y: -2.0, Z: 0.74999994} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 0.75} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: 87652f33-9829-4761-be20-6f4dad425437 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + - Entity: + Id: 583af927-6553-490b-bf64-604837d74650 + Name: border_1 (2) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: f53ed459-5840-461e-9c03-31197663531a + Position: {X: 1.0, Y: -2.0, Z: 0.75} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 0.75} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: cf3c3525-0b32-4b67-b48d-523a5323eb69 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + - Entity: + Id: 5da61f03-37f4-4793-ba00-fa55def69b07 + Name: border_1 (4) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 259d8fa5-ec27-435b-8a44-9a9d9f44cb21 + Position: {X: 1.0, Y: -2.0, Z: 4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: 71e951db-308d-4a1d-9410-f9925dc4b542 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + - Entity: + Id: a8a4b832-ca27-4650-868e-91274c5e8ea4 + Name: b_border (4) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 2c595725-c10b-460f-99fb-faa74c05c931 + Position: {X: 1.0, Y: -2.0, Z: 4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: a8e4e094-4a10-44ce-a880-0d68702f1725 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + - Entity: + Id: adf0e0fd-5178-44f5-a7f5-913d47267c61 + Name: border_1 (3) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: e8fad407-b56e-4bfc-aed5-3d514d7a1d99 + Position: {X: 1.0, Y: -2.0, Z: 2.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 0.75} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: 690475d9-430d-4da5-91b9-c03c44acbc37 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted diff --git a/Starbreach/Assets/Shared/PlatformsOld/Prefabs/border_2.xkprefab b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/border_2.xkprefab new file mode 100644 index 0000000..7b2931e --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/border_2.xkprefab @@ -0,0 +1,71 @@ +!PrefabAsset +Id: b6efbb2d-2700-45d6-ac38-799ebd53780b +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 753ce80b-d972-427a-8c5b-51c735743184 + - ref!! 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + - ref!! 578bb7fc-40be-4480-983d-fde8008120bd + - ref!! 583af927-6553-490b-bf64-604837d74650 + Parts: + - Entity: + Id: 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + Name: border_1 + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: f53ed459-5840-461e-9c03-31197663531a + Position: {X: 1.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: cf3c3525-0b32-4b67-b48d-523a5323eb69 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + - Entity: + Id: 578bb7fc-40be-4480-983d-fde8008120bd + Name: b_border (2) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 0689ae46-5974-4f8e-9731-fed939373fe4 + Position: {X: 1.0, Y: -2.0, Z: 2.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: a3a5a0a7-2f3c-4ceb-b0f1-e3a3127f0566 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + - Entity: + Id: 583af927-6553-490b-bf64-604837d74650 + Name: border_1 (2) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 50063a56-e3a1-459d-9f29-1361cce1445b + Position: {X: 1.0, Y: -2.0, Z: 2.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: dc391f35-09aa-42c6-948a-2e6f2445f9aa + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + - Entity: + Id: 753ce80b-d972-427a-8c5b-51c735743184 + Name: b_border + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 1253d089-ded3-457e-8795-4bb014d1d75f + Position: {X: 1.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: c17be811-a957-4ffd-b54b-9ca631c3bc0d + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 diff --git a/Starbreach/Assets/Shared/PlatformsOld/Prefabs/border_3-5.xkprefab b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/border_3-5.xkprefab new file mode 100644 index 0000000..f366380 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/border_3-5.xkprefab @@ -0,0 +1,135 @@ +!PrefabAsset +Id: fdef8ba7-3ddb-4b7a-a3cb-9dab4fb2f457 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 753ce80b-d972-427a-8c5b-51c735743184 + - ref!! 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + - ref!! 578bb7fc-40be-4480-983d-fde8008120bd + - ref!! 583af927-6553-490b-bf64-604837d74650 + - ref!! 2837a08f-5006-455e-b75a-559e645538ee + - ref!! adf0e0fd-5178-44f5-a7f5-913d47267c61 + - ref!! a8a4b832-ca27-4650-868e-91274c5e8ea4 + - ref!! 5da61f03-37f4-4793-ba00-fa55def69b07 + Parts: + - Entity: + Id: 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + Name: border_1 + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: f53ed459-5840-461e-9c03-31197663531a + Position: {X: 0.5, Y: -2.0, Z: 1.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: cf3c3525-0b32-4b67-b48d-523a5323eb69 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + - Entity: + Id: 2837a08f-5006-455e-b75a-559e645538ee + Name: b_border (3) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 0689ae46-5974-4f8e-9731-fed939373fe4 + Position: {X: 0.5, Y: -2.0, Z: 4.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 0.75} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: a3a5a0a7-2f3c-4ceb-b0f1-e3a3127f0566 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + - Entity: + Id: 578bb7fc-40be-4480-983d-fde8008120bd + Name: b_border (2) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 792ff5c5-6dc7-4978-9fba-c7b15988089f + Position: {X: 0.5, Y: -2.0, Z: 2.75} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 0.75} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: 672a1e79-dea6-44fd-8b65-3f2f4d14a722 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + - Entity: + Id: 583af927-6553-490b-bf64-604837d74650 + Name: border_1 (2) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: fab37059-084b-427c-a886-0038b25f31ae + Position: {X: 0.5, Y: -2.0, Z: 2.75} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 0.75} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: 552c92bb-9a33-4663-9c29-7c144f2b599c + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + - Entity: + Id: 5da61f03-37f4-4793-ba00-fa55def69b07 + Name: border_1 (4) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 29a6f95a-ab08-4d1c-8509-eb0bacb41d9c + Position: {X: 0.5, Y: -2.0, Z: 6.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: 24031e4e-ec47-44c5-97e9-c22615b64633 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + - Entity: + Id: 753ce80b-d972-427a-8c5b-51c735743184 + Name: b_border + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: c92e5725-1282-43f1-9214-1190d751ebf2 + Position: {X: 0.5, Y: -2.0, Z: 1.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: e844cdcb-629b-4af3-b190-c4813904eb6f + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + - Entity: + Id: a8a4b832-ca27-4650-868e-91274c5e8ea4 + Name: b_border (4) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 63786f6a-a102-4261-907a-fcea7eed1f2e + Position: {X: 0.5, Y: -2.0, Z: 6.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: c78de604-2963-4d7c-8d8b-e947b4692fa4 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + - Entity: + Id: adf0e0fd-5178-44f5-a7f5-913d47267c61 + Name: border_1 (3) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: b010341a-feb0-4084-90c3-fc38bdbe523a + Position: {X: 0.5, Y: -2.0, Z: 4.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 0.75} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: 8bac1dff-1190-43e8-ae4a-855053bf9459 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted diff --git a/Starbreach/Assets/Shared/PlatformsOld/Prefabs/border_3-75.xkprefab b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/border_3-75.xkprefab new file mode 100644 index 0000000..3510869 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/border_3-75.xkprefab @@ -0,0 +1,102 @@ +!PrefabAsset +Id: dce4385a-26ba-4dc8-81eb-62e69a2b6b7e +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! cefd5c0a-8d96-4cb7-8f96-43426815654d + - ref!! 2ebd5bea-fe0d-45c7-94a6-f397044d293c + - ref!! 583af927-6553-490b-bf64-604837d74650 + - ref!! 578bb7fc-40be-4480-983d-fde8008120bd + - ref!! 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + - ref!! 753ce80b-d972-427a-8c5b-51c735743184 + Parts: + - Entity: + Id: 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + Name: border_1 + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: f53ed459-5840-461e-9c03-31197663531a + Position: {X: 0.0, Y: -2.0, Z: 1.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: cf3c3525-0b32-4b67-b48d-523a5323eb69 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + - Entity: + Id: 2ebd5bea-fe0d-45c7-94a6-f397044d293c + Name: b_border (3) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 0689ae46-5974-4f8e-9731-fed939373fe4 + Position: {X: 0.0, Y: -2.0, Z: 6.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: a3a5a0a7-2f3c-4ceb-b0f1-e3a3127f0566 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + - Entity: + Id: 578bb7fc-40be-4480-983d-fde8008120bd + Name: b_border (2) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 4cd880c9-e26b-4bf3-b5ff-a5ffa4df90bc + Position: {X: 0.0, Y: -2.0, Z: 3.75} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: ad1e45d5-3dba-4c83-99e6-62cac8506f13 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + - Entity: + Id: 583af927-6553-490b-bf64-604837d74650 + Name: border_1 (2) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 0a8bddd7-a83e-4d0c-934f-eaa9cc57cb7a + Position: {X: 0.0, Y: -2.0, Z: 3.75} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: 7bf413d4-7d4e-4b3c-b42f-afa1cc4ee50e + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + - Entity: + Id: 753ce80b-d972-427a-8c5b-51c735743184 + Name: b_border + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 04de1410-122a-4403-9289-e867ae2e18b9 + Position: {X: 0.0, Y: -2.0, Z: 1.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: 4b49b0fe-3557-4f90-8243-e9e0859baa3d + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: {} + - Entity: + Id: cefd5c0a-8d96-4cb7-8f96-43426815654d + Name: border_1 (3) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 6b003a13-7983-419b-9f57-03a61064b765 + Position: {X: 0.0, Y: -2.0, Z: 6.25} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.25} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: ab4db0ac-23e6-41eb-a1d1-8c5ff8180c14 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted diff --git a/Starbreach/Assets/Shared/PlatformsOld/Prefabs/border_6.xkprefab b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/border_6.xkprefab new file mode 100644 index 0000000..e39bbed --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/border_6.xkprefab @@ -0,0 +1,199 @@ +!PrefabAsset +Id: 909f5419-3db5-4b1d-8a17-c777f9bfdbbd +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 753ce80b-d972-427a-8c5b-51c735743184 + - ref!! 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + - ref!! 578bb7fc-40be-4480-983d-fde8008120bd + - ref!! 583af927-6553-490b-bf64-604837d74650 + - ref!! 2837a08f-5006-455e-b75a-559e645538ee + - ref!! adf0e0fd-5178-44f5-a7f5-913d47267c61 + - ref!! a8a4b832-ca27-4650-868e-91274c5e8ea4 + - ref!! 5da61f03-37f4-4793-ba00-fa55def69b07 + - ref!! 00e08eb2-2aca-4a0d-846e-7ee03d4a04e8 + - ref!! 6092a809-e04b-4163-a468-df4ce75dcd77 + - ref!! 34c5acf9-ec10-43ea-ae67-02cba276b558 + - ref!! 01a16ea9-bf23-41b0-98f3-81dbb0c0f0e7 + Parts: + - Entity: + Id: 00e08eb2-2aca-4a0d-846e-7ee03d4a04e8 + Name: b_border (5) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 0689ae46-5974-4f8e-9731-fed939373fe4 + Position: {X: 1.0, Y: -2.0, Z: 8.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: a3a5a0a7-2f3c-4ceb-b0f1-e3a3127f0566 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + - Entity: + Id: 01a16ea9-bf23-41b0-98f3-81dbb0c0f0e7 + Name: border_1 (6) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: f53ed459-5840-461e-9c03-31197663531a + Position: {X: 1.0, Y: -2.0, Z: 10.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: cf3c3525-0b32-4b67-b48d-523a5323eb69 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + - Entity: + Id: 1ebfeb7d-a325-4c3c-9f7f-dccf9c383d44 + Name: border_1 + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: f235939d-4ae6-496b-bb8b-453f14906a07 + Position: {X: 1.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: ccc67620-fffd-45f3-919c-38b1cf367d9d + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + - Entity: + Id: 2837a08f-5006-455e-b75a-559e645538ee + Name: b_border (3) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 7f934a8f-62a6-464a-8d39-baa3487f2264 + Position: {X: 1.0, Y: -2.0, Z: 4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: 284d92e6-d19e-4d66-aa07-f26a80396bf3 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + - Entity: + Id: 34c5acf9-ec10-43ea-ae67-02cba276b558 + Name: b_border (6) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 0ad4cd8c-6cb4-4675-9e6d-ed9d6ae984e8 + Position: {X: 1.0, Y: -2.0, Z: 10.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: c46ebfcb-071a-439f-a13c-dd9fbbf96b2c + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + - Entity: + Id: 578bb7fc-40be-4480-983d-fde8008120bd + Name: b_border (2) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 892e4789-bb56-48cc-94b1-d9d3c3af7bac + Position: {X: 1.0, Y: -2.0, Z: 2.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: 1a760984-73fa-4d84-91c6-38074e64f887 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + - Entity: + Id: 583af927-6553-490b-bf64-604837d74650 + Name: border_1 (2) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 19635ea5-9254-45b1-a4ac-705bad689543 + Position: {X: 1.0, Y: -2.0, Z: 2.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: c7557de6-4551-4ef4-874f-ac02a9c4c603 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + - Entity: + Id: 5da61f03-37f4-4793-ba00-fa55def69b07 + Name: border_1 (4) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: bffdacc0-66ab-48d2-b7ce-7ea00b119f34 + Position: {X: 1.0, Y: -2.0, Z: 6.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: 75ede430-2dfe-46db-96c2-0745946dc8f1 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + - Entity: + Id: 6092a809-e04b-4163-a468-df4ce75dcd77 + Name: border_1 (5) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 902a4fcd-1163-43c7-ae42-14cbbece84e5 + Position: {X: 1.0, Y: -2.0, Z: 8.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: 8a7152f6-109e-49fd-9172-f9de469e70d2 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + - Entity: + Id: 753ce80b-d972-427a-8c5b-51c735743184 + Name: b_border + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: bfcd2f61-1be3-48d0-acf6-4a6f2283b279 + Position: {X: 1.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: 7cbd2b29-32c2-491e-bf22-fee977039b3e + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + - Entity: + Id: a8a4b832-ca27-4650-868e-91274c5e8ea4 + Name: b_border (4) + Components: + 46ae890674598e4f9731fed939373fe4: !TransformComponent + Id: 928e5af8-3589-4434-9b26-4a01017e15ad + Position: {X: 1.0, Y: -2.0, Z: 6.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + a7a0a5a33c2feb4cb0f1e3a3127f0566: !ModelComponent + Id: fbbb61d6-dd69-4981-a678-23b940974532 + Model: 37a94f52-f261-4ca5-98cb-0f0e8edffb7d:PlatformsOld/Models/b_border + Materials: + 91adc08ae0d90640ac9d32209e9009f5~0: 03a35a7a-565d-4880-9dba-bc7667431daa:PlatformsOld/Materials/b_border1 + - Entity: + Id: adf0e0fd-5178-44f5-a7f5-913d47267c61 + Name: border_1 (3) + Components: + 59d43ef540581e469c0331197663531a: !TransformComponent + Id: 937ff36e-ca76-4806-b916-e5245add4a34 + Position: {X: 1.0, Y: -2.0, Z: 4.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 25353ccf320b674bb48d523a5323eb69: !ModelComponent + Id: 9fb85eac-9411-4ad5-b1bd-2308098b6c59 + Model: 7b1ec68e-fced-4198-b0b3-b77a91b265b0:PlatformsOld/Models/border_1 + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted diff --git a/Starbreach/Assets/Shared/PlatformsOld/Prefabs/border_C_large_in.xkprefab b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/border_C_large_in.xkprefab new file mode 100644 index 0000000..432f624 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/border_C_large_in.xkprefab @@ -0,0 +1,87 @@ +!PrefabAsset +Id: 112e3bcb-2a13-428b-9313-1a52be2f69a7 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 845e23af-f910-44ce-80ea-8b5449795cbc + - ref!! 4d9d9f8f-e668-48d9-9b7f-6275165e88a1 + - ref!! 4e232b39-91e9-4923-b4b9-2635a310a92f + - ref!! f2d39b17-53cb-4ece-a15e-2798fe3eec03 + - ref!! 0446b086-2c89-40cf-b986-4fdae75d1899 + Parts: + - Entity: + Id: 0446b086-2c89-40cf-b986-4fdae75d1899 + Name: Rails_adv (2) + Components: + cce77c729b864b448e1c26d95433cb49: !TransformComponent + Id: 727ce7cc-869b-444b-8e1c-26d95433cb49 + Position: {X: 5.0, Y: -2.0, Z: 5.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 657e2f72bd7b374b8bb6efbd6bc61608: !ModelComponent + Id: 722f7e65-7bbd-4b37-8bb6-efbd6bc61608 + Model: 6c557c7e-7142-44f1-808d-acaf80a392fb:PlatformsOld/Models/Rails_adv + Materials: + bcddad59903b0a4b8eeeeea4b1344717~0: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv + - Entity: + Id: 4d9d9f8f-e668-48d9-9b7f-6275165e88a1 + Name: b_border_large + Components: + cbcc8bcf8abe2742bfad875eecdb81e9: !TransformComponent + Id: cf8bcccb-be8a-4227-bfad-875eecdb81e9 + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + f8ecc54829e73147b85e355c99072393: !ModelComponent + Id: 48c5ecf8-e729-4731-b85e-355c99072393 + Model: 9fa0414e-ce68-407d-b576-619a87601f45:PlatformsOld/Models/b_border_large + Materials: + 1b1bc585faa2c247a39a5c8c07d577dc~0: 545cfd6f-b0c6-4a6f-8838-b383d7198bf5:PlatformsOld/Materials/b_border3 + - Entity: + Id: 4e232b39-91e9-4923-b4b9-2635a310a92f + Name: Rails_tube_C_large + Components: + e2c02bdf36129343b958e3cc11458931: !TransformComponent + Id: df2bc0e2-1236-4393-b958-e3cc11458931 + Position: {X: -0.08036609, Y: 1.182862, Z: 0.0748438463} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 1ac04d75057ca64295485066ff6df2cf: !ModelComponent + Id: 754dc01a-7c05-42a6-9548-5066ff6df2cf + Model: d4e25abb-0b9f-490f-91f4-af70270c98c6:PlatformsOld/Models/Rails_tube_C_large + Materials: + bcddad59903b0a4b8eeeeea4b1344717~0: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv + - Entity: + Id: 845e23af-f910-44ce-80ea-8b5449795cbc + Name: border_C_large + Components: + f9a081d85da8b745abd2d659e8071009: !TransformComponent + Id: d881a0f9-a85d-45b7-abd2-d659e8071009 + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 532ace0f04433645b5a746916cd5c303: !ModelComponent + Id: 0fce2a53-4304-4536-b5a7-46916cd5c303 + Model: 71e12b5e-4d32-43af-956c-5c6c336baa52:PlatformsOld/Models/border_C_large + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + - Entity: + Id: f2d39b17-53cb-4ece-a15e-2798fe3eec03 + Name: Rails_adv + Components: + cce77c729b864b448e1c26d95433cb49: !TransformComponent + Id: 5df9100a-75e9-4ee4-981f-e3dab91f26ac + Position: {X: 0.0, Y: -2.0, Z: 0.0} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 657e2f72bd7b374b8bb6efbd6bc61608: !ModelComponent + Id: dec8938a-771e-44ee-8595-ad565fce9fda + Model: 6c557c7e-7142-44f1-808d-acaf80a392fb:PlatformsOld/Models/Rails_adv + Materials: + bcddad59903b0a4b8eeeeea4b1344717~0: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv diff --git a/Starbreach/Assets/Shared/PlatformsOld/Prefabs/border_C_small_in.xkprefab b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/border_C_small_in.xkprefab new file mode 100644 index 0000000..6fde0d3 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/border_C_small_in.xkprefab @@ -0,0 +1,87 @@ +!PrefabAsset +Id: 369cc398-cf91-443b-99ae-b56af5c29e00 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! a4f00287-341e-46b4-ba21-88ab93586168 + - ref!! 74d6d1a5-2d62-4fee-95d1-de7e18d81dbb + - ref!! a1f266b2-a413-4fac-9212-e060e34b7784 + - ref!! 6d8e81fc-c0a8-4571-8aa5-3a533564f85e + - ref!! 0e473fa4-3ce1-4013-99a5-0b8f08378cbc + Parts: + - Entity: + Id: 0e473fa4-3ce1-4013-99a5-0b8f08378cbc + Name: Rails_tube_C_small + Components: + dd9d21424cfafd4fbbec762cefec2ff9: !TransformComponent + Id: 42219ddd-fa4c-4ffd-bbec-762cefec2ff9 + Position: {X: -0.0474190749, Y: 3.17846918, Z: 0.0215808917} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c711f04866f7f44393b6c95b8f9836e1: !ModelComponent + Id: 48f011c7-f766-43f4-93b6-c95b8f9836e1 + Model: 73c2de52-c972-4372-9608-f3ff854c1a11:PlatformsOld/Models/Rails_tube_C_small + Materials: + bcddad59903b0a4b8eeeeea4b1344717~0: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv + - Entity: + Id: 6d8e81fc-c0a8-4571-8aa5-3a533564f85e + Name: Rails_adv (2) + Components: + ddc5ac91aad765449d38fc32ac34b00f: !TransformComponent + Id: 91acc5dd-d7aa-4465-9d38-fc32ac34b00f + Position: {X: -2.0, Y: 0.0, Z: -1.0} + Rotation: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 5bef7a1e802bf142ac3ea19a7288cece: !ModelComponent + Id: 1e7aef5b-2b80-42f1-ac3e-a19a7288cece + Model: 6c557c7e-7142-44f1-808d-acaf80a392fb:PlatformsOld/Models/Rails_adv + Materials: + bcddad59903b0a4b8eeeeea4b1344717~0: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv + - Entity: + Id: 74d6d1a5-2d62-4fee-95d1-de7e18d81dbb + Name: border_small_C2 + Components: + 1454630c7e86434caea308e9eff31903: !TransformComponent + Id: 0c635414-867e-4c43-aea3-08e9eff31903 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e3ccac59b5547740b11b7d4acfb1eefd: !ModelComponent + Id: 59accce3-54b5-4077-b11b-7d4acfb1eefd + Model: 2bdf4195-335f-4e98-93b4-c55bb8c9f9c7:PlatformsOld/Models/border_small_C2 + Materials: + 1b1cca677b702447b613f6d15717caf1~0: 14acd6d5-f6d1-42a7-928d-5add6341bedf:PlatformsOld/Materials/border + - Entity: + Id: a1f266b2-a413-4fac-9212-e060e34b7784 + Name: Rails_adv + Components: + ddc5ac91aad765449d38fc32ac34b00f: !TransformComponent + Id: ec7497ba-b9f6-402b-a90d-98e85fbfd4a8 + Position: {X: 1.0, Y: 0.0, Z: 2.0} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 5bef7a1e802bf142ac3ea19a7288cece: !ModelComponent + Id: b064914f-c330-4f85-9e56-8e50cb9a3c1b + Model: 6c557c7e-7142-44f1-808d-acaf80a392fb:PlatformsOld/Models/Rails_adv + Materials: + bcddad59903b0a4b8eeeeea4b1344717~0: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv + - Entity: + Id: a4f00287-341e-46b4-ba21-88ab93586168 + Name: border_small_C2_outside + Components: + fe0f5a5e7830e94f8ba1d7bc801d8a29: !TransformComponent + Id: 5e5a0ffe-3078-4fe9-8ba1-d7bc801d8a29 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + da18f59724be54448f12ca878c5b7bd5: !ModelComponent + Id: 97f518da-be24-4454-8f12-ca878c5b7bd5 + Model: ab160c30-d49c-47c7-bbc1-079f53ffd7d1:PlatformsOld/Models/border_small_C2_outside + Materials: + 1b1bc585faa2c247a39a5c8c07d577dc~0: 545cfd6f-b0c6-4a6f-8838-b383d7198bf5:PlatformsOld/Materials/b_border3 diff --git a/Starbreach/Assets/Shared/PlatformsOld/Prefabs/border_L_large.xkprefab b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/border_L_large.xkprefab new file mode 100644 index 0000000..0a01749 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/border_L_large.xkprefab @@ -0,0 +1,86 @@ +!PrefabAsset +Id: fa64ee8c-21b1-45ca-a6e9-9826b231e6c2 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 1c98ef6e-be55-4744-9b48-b1a707ff0171 + - ref!! bc9c12de-74f1-4c8e-8dee-f3ec87a46a87 + - ref!! a2080d23-1c86-4d08-a344-8d178bc8c0e5 + - ref!! d70cf3ff-14af-4c9b-bdbe-282a9f74685a + - ref!! 16342eaf-0b20-434c-81c7-c2f778b6238d + Parts: + - Entity: + Id: 16342eaf-0b20-434c-81c7-c2f778b6238d + Name: Rails_tube_L_large + Components: + de3983a380e07941bb80eb4e8f0bcee4: !TransformComponent + Id: a38339de-e080-4179-bb80-eb4e8f0bcee4 + Position: {X: -0.0614615455, Y: 3.16241431, Z: -0.0953784} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 89b586bff6fea04ea1786184a0f75e3c: !ModelComponent + Id: bf86b589-fef6-4ea0-a178-6184a0f75e3c + Model: 53b38240-687f-4a4c-ad08-8f37eb6dba89:PlatformsOld/Models/Rails_tube_L_large + Materials: + bcddad59903b0a4b8eeeeea4b1344717~0: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv + - Entity: + Id: 1c98ef6e-be55-4744-9b48-b1a707ff0171 + Name: border_L_large + Components: + 72b100f2d4b1b0468d67f5bdcbb69b09: !TransformComponent + Id: f200b172-b1d4-46b0-8d67-f5bdcbb69b09 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + de0f3918402e2249a67f321993bc2ca0: !ModelComponent + Id: 18390fde-2e40-4922-a67f-321993bc2ca0 + Model: b5b3c074-7331-41cd-b88b-0d46637ffd7f:PlatformsOld/Models/border_L_large + Materials: + 1bfd8835bd05be4bab9d5ea9b927c049~0: 58a81ffa-b3ac-444f-8aab-63c4a61d130b:PlatformsOld/Materials/Bord_rusted + - Entity: + Id: a2080d23-1c86-4d08-a344-8d178bc8c0e5 + Name: Rails_adv + Components: + 4c144a31b2fe2c44876f879b57cd6b14: !TransformComponent + Id: 314a144c-feb2-442c-876f-879b57cd6b14 + Position: {X: -3.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e6e65b25ac5f73439f848cafd1250d85: !ModelComponent + Id: 255be6e6-5fac-4373-9f84-8cafd1250d85 + Model: 6c557c7e-7142-44f1-808d-acaf80a392fb:PlatformsOld/Models/Rails_adv + Materials: + bcddad59903b0a4b8eeeeea4b1344717~0: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv + - Entity: + Id: bc9c12de-74f1-4c8e-8dee-f3ec87a46a87 + Name: b_border_L_large + Components: + 0cc4a08491573748bf0478c9f18e13be: !TransformComponent + Id: 84a0c40c-5791-4837-bf04-78c9f18e13be + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8134a8b89b602c479967973f4f012eb2: !ModelComponent + Id: b8a83481-609b-472c-9967-973f4f012eb2 + Model: 8b962b80-b7ad-4c3c-a6a2-2c37177965e8:PlatformsOld/Models/b_border_L_large + Materials: {} + - Entity: + Id: d70cf3ff-14af-4c9b-bdbe-282a9f74685a + Name: Rails_adv (2) + Components: + 4c144a31b2fe2c44876f879b57cd6b14: !TransformComponent + Id: 7bc01dfc-47ea-481b-8db8-6d688180c0be + Position: {X: 0.0, Y: 0.0, Z: -3.0} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e6e65b25ac5f73439f848cafd1250d85: !ModelComponent + Id: a3fdc1c9-cab1-4beb-91de-b4399098a3e8 + Model: 6c557c7e-7142-44f1-808d-acaf80a392fb:PlatformsOld/Models/Rails_adv + Materials: + bcddad59903b0a4b8eeeeea4b1344717~0: df4fd775-8301-4a81-9edb-2c9ce04eb2c2:PlatformsOld/Materials/raild_adv diff --git a/Starbreach/Assets/Shared/PlatformsOld/Prefabs/rails_straight.xkprefab b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/rails_straight.xkprefab new file mode 100644 index 0000000..90c7988 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Prefabs/rails_straight.xkprefab @@ -0,0 +1,22 @@ +!PrefabAsset +Id: fca227cf-3f9e-4d9a-96eb-db7a23bf62fd +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! d78c8476-d01e-4383-98cc-9691ec3d06e7 + Parts: + - Entity: + Id: d78c8476-d01e-4383-98cc-9691ec3d06e7 + Name: Rails_tube (2) + Components: + 53aa6e32d59eeb45aabd52fde17cd48d: !TransformComponent + Id: 326eaa53-9ed5-45eb-aabd-52fde17cd48d + Position: {X: -0.06581557, Y: 1.219562, Z: 4.052} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 0.85, Z: 0.85} + Children: {} + 0225b2a01b17f94d8b22f766fa64fa9b: !ModelComponent + Id: a0b22502-171b-4df9-8b22-f766fa64fa9b + Model: 40be0e1d-f941-454c-9f18-c765c7f3bc78:PlatformsOld/Models/Rails_tube + Materials: {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/Bord_rust_A.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/Bord_rust_A.xktex new file mode 100644 index 0000000..f7d5aae --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/Bord_rust_A.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 3e73b216-24e7-425a-9ca0-49a778640035 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/border/rusted/Bord_rust_A.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/Bord_rust_G.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/Bord_rust_G.xktex new file mode 100644 index 0000000..21c8e03 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/Bord_rust_G.xktex @@ -0,0 +1,6 @@ +!Texture +Id: ba449fee-0327-4e54-bf1e-df22d585fc9f +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/border/rusted/Bord_rust_G.tga +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/Bord_rust_M.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/Bord_rust_M.xktex new file mode 100644 index 0000000..d53a3dd --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/Bord_rust_M.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 24c80f8e-0ba8-442f-8c9e-9aa17670cba7 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/border/rusted/Bord_rust_M.tga +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/Bord_rust_N.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/Bord_rust_N.xktex new file mode 100644 index 0000000..4beeb2f --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/Bord_rust_N.xktex @@ -0,0 +1,6 @@ +!Texture +Id: d6c4cd38-5005-45b0-a204-e02fe2212497 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/border/rusted/Bord_rust_N.tga +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/Bord_rust_O.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/Bord_rust_O.xktex new file mode 100644 index 0000000..7a00b00 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/Bord_rust_O.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 2757519a-f40a-42b4-901c-7313a499c3eb +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/border/rusted/Bord_rust_O.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/b_b_border_metalness.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/b_b_border_metalness.xktex new file mode 100644 index 0000000..c14a85f --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/b_b_border_metalness.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 446e3a12-527d-464d-951a-d535429beb0d +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/b_border1/b_b_border_metalness.tga +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/b_border_albedo.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/b_border_albedo.xktex new file mode 100644 index 0000000..4d86d90 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/b_border_albedo.xktex @@ -0,0 +1,7 @@ +!Texture +Id: d68b480e-f028-4152-b09c-23223b3e39b5 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/b_border1/b_border_albedo.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/b_border_albedo2.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/b_border_albedo2.xktex new file mode 100644 index 0000000..04cf22c --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/b_border_albedo2.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 47f7d65e-1670-4622-b99a-74136baaacef +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/b_border1/b_border_albedo2.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/b_border_albedo3.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/b_border_albedo3.xktex new file mode 100644 index 0000000..393c483 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/b_border_albedo3.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 06d1a51e-66e6-4538-8722-41d9b78bede9 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/b_border1/b_border_albedo3.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/b_border_gloss.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/b_border_gloss.xktex new file mode 100644 index 0000000..7069db6 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/b_border_gloss.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 1ff820d8-0c5a-420a-91ec-4a8d662a01ed +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/b_border1/b_border_gloss.tga +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/b_border_gloss2.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/b_border_gloss2.xktex new file mode 100644 index 0000000..83e0076 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/b_border_gloss2.xktex @@ -0,0 +1,6 @@ +!Texture +Id: b8ad34c3-67a1-4dda-a7a2-d98e27618f67 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/b_border1/b_border_gloss2.tga +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/b_border_normal.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/b_border_normal.xktex new file mode 100644 index 0000000..72079ff --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/b_border_normal.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 1eafe878-b0b1-4733-b9e7-0a176909fc5e +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/b_border1/b_border_normal.tga +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/border2_albedo.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/border2_albedo.xktex new file mode 100644 index 0000000..5234039 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/border2_albedo.xktex @@ -0,0 +1,7 @@ +!Texture +Id: dbcc4468-dd8d-4555-929d-e957f20c1e7c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/border/border2_albedo.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/border2_ao.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/border2_ao.xktex new file mode 100644 index 0000000..f4638c4 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/border2_ao.xktex @@ -0,0 +1,6 @@ +!Texture +Id: d57bd008-2a28-4c32-8628-c260e08f1627 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/border/border2_ao.tga +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/border2_gloss.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/border2_gloss.xktex new file mode 100644 index 0000000..736d969 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/border2_gloss.xktex @@ -0,0 +1,6 @@ +!Texture +Id: da4f4ec6-eced-47a6-94be-fa1feddf033e +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/border/border2_gloss.tga +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/border2_metalness.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/border2_metalness.xktex new file mode 100644 index 0000000..783f80b --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/border2_metalness.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 659fe958-9f5e-44ad-9ea0-6f46c2e2c386 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/border/border2_metalness.tga +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/border2_normal.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/border2_normal.xktex new file mode 100644 index 0000000..9640aad --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/border2_normal.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 7949f76c-553f-4992-9053-d7da3a6b4568 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/border/border2_normal.tga +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell01_albedo_baked.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell01_albedo_baked.xktex new file mode 100644 index 0000000..c9522dd --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell01_albedo_baked.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 6d0e34dc-565f-4a64-9835-52114389b718 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Platforms/Cells/cell01_albedo_baked.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell01_gloss_baked.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell01_gloss_baked.xktex new file mode 100644 index 0000000..40ec8c8 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell01_gloss_baked.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 23b2256e-51a4-4234-a517-142f48cdd62b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Platforms/Cells/cell01_gloss_baked.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell01_metalness_baked.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell01_metalness_baked.xktex new file mode 100644 index 0000000..51bd241 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell01_metalness_baked.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 937d1ffa-a1ce-42b4-8ad2-6931a936da08 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Platforms/Cells/cell01_metalness_baked.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell01_normal_baked.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell01_normal_baked.xktex new file mode 100644 index 0000000..1625ac8 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell01_normal_baked.xktex @@ -0,0 +1,6 @@ +!Texture +Id: fb501c6f-5ea0-4132-955b-b96beab65629 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Platforms/Cells/cell01_normal_baked.png +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell02_albedo_baked.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell02_albedo_baked.xktex new file mode 100644 index 0000000..2488cc2 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell02_albedo_baked.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 94ff492d-0706-4b4a-b0ac-0f4cafc6e390 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Platforms/Cells/cell02_albedo_baked.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell02_emissive.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell02_emissive.xktex new file mode 100644 index 0000000..d38d63c --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell02_emissive.xktex @@ -0,0 +1,7 @@ +!Texture +Id: a6b44706-45b0-42b1-8112-4fe306fa02ac +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/cell/cell02_emissive.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell02_emissive2_baked.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell02_emissive2_baked.xktex new file mode 100644 index 0000000..7b728e9 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell02_emissive2_baked.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 1e2dd2f1-744d-462d-a46e-534b49097cbd +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Platforms/Cells/cell02_emissive2_baked.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell02_emissive_baked.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell02_emissive_baked.xktex new file mode 100644 index 0000000..c6f1446 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell02_emissive_baked.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 916979dd-10aa-4414-a9f2-77cb20f3c4dc +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Platforms/Cells/cell02_emissive_baked.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell02_gloss_baked.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell02_gloss_baked.xktex new file mode 100644 index 0000000..44d7a5c --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell02_gloss_baked.xktex @@ -0,0 +1,6 @@ +!Texture +Id: b505a23a-ed68-495a-aeda-0893f885b6eb +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Platforms/Cells/cell02_gloss_baked.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell02_metalness_baked.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell02_metalness_baked.xktex new file mode 100644 index 0000000..4f5d10c --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell02_metalness_baked.xktex @@ -0,0 +1,6 @@ +!Texture +Id: abaeb670-6095-455d-b84e-d23b2591ef8c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Platforms/Cells/cell02_metalness_baked.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell02_normal_baked.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell02_normal_baked.xktex new file mode 100644 index 0000000..04e4e89 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell02_normal_baked.xktex @@ -0,0 +1,6 @@ +!Texture +Id: a33b8535-2e7e-404a-874b-8bbc8438f876 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Platforms/Cells/cell02_normal_baked.png +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_albedo_baked.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_albedo_baked.xktex new file mode 100644 index 0000000..9c1c29b --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_albedo_baked.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 359d1798-dc94-43ec-b7d1-3c1187da605d +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Platforms/Cells/cell03_albedo_baked.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_albedo_baked_2.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_albedo_baked_2.xktex new file mode 100644 index 0000000..88e83da --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_albedo_baked_2.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 88436d6c-563a-4105-9222-4dc729eb77af +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Platforms/Cells/cell03_albedo_baked.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_emissive2.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_emissive2.xktex new file mode 100644 index 0000000..0ffa3cb --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_emissive2.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 6027492f-5fab-4a56-a169-a2a1a0ad071c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/cell/cell03_emissive2.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_emissive3_baked.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_emissive3_baked.xktex new file mode 100644 index 0000000..80d68f8 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_emissive3_baked.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 63714b04-cb8d-42f4-94be-3eeca564e743 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Platforms/Cells/cell03_emissive3_baked.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_emissive4_baked.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_emissive4_baked.xktex new file mode 100644 index 0000000..696fc4c --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_emissive4_baked.xktex @@ -0,0 +1,7 @@ +!Texture +Id: ed2a0e2b-7e79-430b-8946-35aaf3ebc155 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Platforms/Cells/cell03_emissive4_baked.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_gloss_baked.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_gloss_baked.xktex new file mode 100644 index 0000000..96eed61 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_gloss_baked.xktex @@ -0,0 +1,6 @@ +!Texture +Id: adb0ea2d-fb8e-4676-bb46-d1d9263eb0ce +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Platforms/Cells/cell03_gloss_baked.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_gloss_baked_2.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_gloss_baked_2.xktex new file mode 100644 index 0000000..279f6e5 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_gloss_baked_2.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 59868164-962c-4281-8f6f-211c4ffd3aeb +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Platforms/Cells/cell03_gloss_baked.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_metalness_baked.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_metalness_baked.xktex new file mode 100644 index 0000000..dcce699 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_metalness_baked.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 13a9fd1c-9f93-4cce-b4c4-cb05ec1547ac +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Platforms/Cells/cell03_metalness_baked.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_metalness_baked_2.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_metalness_baked_2.xktex new file mode 100644 index 0000000..31a18f3 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_metalness_baked_2.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 43b6f56b-a7f6-41dc-9e9d-b4094f77068a +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Platforms/Cells/cell03_metalness_baked.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_normal.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_normal.xktex new file mode 100644 index 0000000..1d3bfa6 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_normal.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 0bc3a6fc-298b-40d3-a997-8c6130c5ff88 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/cell/cell03_normal.tga +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_normal_baked.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_normal_baked.xktex new file mode 100644 index 0000000..83bd967 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_normal_baked.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 0466581b-d91a-41d0-9d7f-43f1d6802247 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Platforms/Cells/cell03_normal_baked.png +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_normal_baked_2.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_normal_baked_2.xktex new file mode 100644 index 0000000..949d76b --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell03_normal_baked_2.xktex @@ -0,0 +1,6 @@ +!Texture +Id: f8c07864-21b2-4eae-8495-0677380aeb6d +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Platforms/Cells/cell03_normal_baked.png +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell04_albedo_baked.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell04_albedo_baked.xktex new file mode 100644 index 0000000..3aaa145 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell04_albedo_baked.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 375ed57b-f158-4c48-814c-b5597c4066eb +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Platforms/Cells/cell04_albedo_baked.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell04_gloss_baked.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell04_gloss_baked.xktex new file mode 100644 index 0000000..c0bab2c --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell04_gloss_baked.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 143597d7-fa34-4d07-8d81-45c483a952c9 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Platforms/Cells/cell04_gloss_baked.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell04_metalness_baked.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell04_metalness_baked.xktex new file mode 100644 index 0000000..0862f71 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell04_metalness_baked.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 4cdb90fc-84e9-44ea-8c2d-53bc7cc40a51 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Platforms/Cells/cell04_metalness_baked.png +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell04_normal_baked.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell04_normal_baked.xktex new file mode 100644 index 0000000..97d6b2b --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell04_normal_baked.xktex @@ -0,0 +1,6 @@ +!Texture +Id: af6d2c70-d980-4b4b-8c34-67cd881980b8 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/Platforms/Cells/cell04_normal_baked.png +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell1R_A.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell1R_A.xktex new file mode 100644 index 0000000..5580487 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell1R_A.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 1eb0221a-54cf-42bb-afbe-b827737b3998 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Platforms/cell/rusted/cell1R_A.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell1R_G.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell1R_G.xktex new file mode 100644 index 0000000..b330b35 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell1R_G.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 5715dfdc-0694-4622-bfa4-7016c160582f +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Platforms/cell/rusted/cell1R_G.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell1R_M.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell1R_M.xktex new file mode 100644 index 0000000..e5c1f70 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell1R_M.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 4a78a32c-bdad-47b7-b517-b9c9d74fb9b1 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Platforms/cell/rusted/cell1R_M.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell1R_N.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell1R_N.xktex new file mode 100644 index 0000000..eb8d1dd --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell1R_N.xktex @@ -0,0 +1,7 @@ +!Texture +Id: f31ea6f1-1ec1-475a-b466-69af041b5c47 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Platforms/cell/rusted/cell1R_N.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell2R_A.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell2R_A.xktex new file mode 100644 index 0000000..576f1e4 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell2R_A.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 2f81f964-e66c-4a7e-9e28-f70150dd09b8 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Platforms/cell/rusted/cell2R_A.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell2R_G.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell2R_G.xktex new file mode 100644 index 0000000..0fe00f7 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell2R_G.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 5792bebe-62ea-4adb-a1af-fcd966b232ad +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Platforms/cell/rusted/cell2R_G.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell2R_M.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell2R_M.xktex new file mode 100644 index 0000000..8669d83 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell2R_M.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 9f5fea24-f16b-4c6f-b925-d7b9a7c8d8a8 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Platforms/cell/rusted/cell2R_M.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell2R_N.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell2R_N.xktex new file mode 100644 index 0000000..24b739e --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell2R_N.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 9121b4a7-1f18-435b-a9da-149d4c95e96d +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Platforms/cell/rusted/cell2R_N.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell3R_A.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell3R_A.xktex new file mode 100644 index 0000000..c9609a3 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell3R_A.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 35c04689-a013-4fd1-96da-77d032a4ad91 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Platforms/cell/rusted/cell3_A.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell3R_G.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell3R_G.xktex new file mode 100644 index 0000000..fc857c9 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell3R_G.xktex @@ -0,0 +1,7 @@ +!Texture +Id: e5975529-e710-4759-a4dc-d09fe7c0d349 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Platforms/cell/rusted/cell3_G.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell3R_M.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell3R_M.xktex new file mode 100644 index 0000000..8cb3d14 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell3R_M.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 81d67a7b-8318-4696-a586-7a765b1516e6 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Platforms/cell/rusted/cell3_M.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell3R_N.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell3R_N.xktex new file mode 100644 index 0000000..efbed22 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/cell_rust/cell3R_N.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 11ff52fa-fcb1-415d-8daa-f0cbaa63c829 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Platforms/cell/rusted/cell3_N.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/pillar_albedo.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/pillar_albedo.xktex new file mode 100644 index 0000000..e9d9c30 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/pillar_albedo.xktex @@ -0,0 +1,7 @@ +!Texture +Id: e213e285-1233-4c3d-9334-10bf307eb26f +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/Pillar/pillar_albedo.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/pillar_gloss.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/pillar_gloss.xktex new file mode 100644 index 0000000..651b872 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/pillar_gloss.xktex @@ -0,0 +1,6 @@ +!Texture +Id: cff569fc-f11a-4a2f-be47-f86edb6e2669 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/Pillar/pillar_gloss.tga +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/pillar_metalness.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/pillar_metalness.xktex new file mode 100644 index 0000000..4510d57 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/pillar_metalness.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 52c59467-6bff-495c-88da-99e59f6b100a +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/Pillar/pillar_metalness.tga +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/pillar_normal.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/pillar_normal.xktex new file mode 100644 index 0000000..5ba49b6 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/pillar_normal.xktex @@ -0,0 +1,6 @@ +!Texture +Id: e1d3d5fb-c616-4293-8daf-58249eb7e2ad +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/Pillar/pillar_normal.tga +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/pillar_occlusion.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/pillar_occlusion.xktex new file mode 100644 index 0000000..092d99c --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/pillar_occlusion.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 9aa9be9a-24f6-4879-8ede-5ceec1ef39d3 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/Pillar/pillar_occlusion.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/rail01_albedo.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/rail01_albedo.xktex new file mode 100644 index 0000000..b60e2f7 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/rail01_albedo.xktex @@ -0,0 +1,7 @@ +!Texture +Id: eea15ead-9d19-4148-a554-32bccd0a3462 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/rails_adv/rail01_albedo.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/rail01_gloss.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/rail01_gloss.xktex new file mode 100644 index 0000000..fa7e424 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/rail01_gloss.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 95a2f237-aa4c-4062-9696-b7cc63ebe30a +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/rails_adv/rail01_gloss.tga +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/rail01_metalness.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/rail01_metalness.xktex new file mode 100644 index 0000000..9522c97 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/rail01_metalness.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 134e6010-42aa-4ca0-9452-a48a1a16d7f2 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/rails_adv/rail01_metalness.tga +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/rail01_normal.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/rail01_normal.xktex new file mode 100644 index 0000000..89f3620 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/rail01_normal.xktex @@ -0,0 +1,6 @@ +!Texture +Id: cc860e70-9f21-4d11-afc1-20dbda99aab2 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/rails_adv/rail01_normal.tga +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/rail_adv_albedo.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/rail_adv_albedo.xktex new file mode 100644 index 0000000..f183b6c --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/rail_adv_albedo.xktex @@ -0,0 +1,7 @@ +!Texture +Id: b0cac25a-fbe4-4b74-88fc-03a848c55186 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/rails_adv/rail_adv_albedo.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/rail_adv_gloss.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/rail_adv_gloss.xktex new file mode 100644 index 0000000..e3b9da9 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/rail_adv_gloss.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 930f51c9-2015-487c-87f0-49c2f5be4502 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/rails_adv/rail_adv_gloss.tga +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/rail_adv_metalness.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/rail_adv_metalness.xktex new file mode 100644 index 0000000..a7082e6 --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/rail_adv_metalness.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 53ae0067-84a4-456c-aec5-efb1f6aa0044 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/rails_adv/rail_adv_metalness.tga +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/PlatformsOld/Textures/rail_adv_normal.xktex b/Starbreach/Assets/Shared/PlatformsOld/Textures/rail_adv_normal.xktex new file mode 100644 index 0000000..70d0ebb --- /dev/null +++ b/Starbreach/Assets/Shared/PlatformsOld/Textures/rail_adv_normal.xktex @@ -0,0 +1,6 @@ +!Texture +Id: c45adf88-596f-4876-aacb-14136a1adaa9 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Platforms/rails_adv/rail_adv_normal.tga +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Props/Comet/Comet_p.xkprefab b/Starbreach/Assets/Shared/Props/Comet/Comet_p.xkprefab new file mode 100644 index 0000000..9bc278b --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Comet/Comet_p.xkprefab @@ -0,0 +1,531 @@ +!PrefabAsset +Id: 0b0f353e-a953-4da4-9292-d146c537760a +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 532d0bcc-8d8c-4161-933b-b3bced366b7f + Parts: + - Entity: + Id: 532d0bcc-8d8c-4161-933b-b3bced366b7f + Name: Comet + Components: + d0bd5e93915fda2f9c20ba9d434f3ce7: !TransformComponent + Id: 0474e14e-e3fe-45e4-a475-7b1ac14d070e + Position: {X: 0.0, Y: 0.0, Z: -13.4004517} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + e884f20e0f46046c55a87e1f0f9870ca: ref!! 5faabfbc-1d14-404e-9148-f425628247fc + 6078a350452e214abaaf90d78d57395d: ref!! 48396ceb-2f93-46c2-8a22-6a48364fc232 + - Entity: + Id: 769cb962-facd-4472-9883-3f45ee3a9c05 + Name: comet + Components: + bcbfaa5f141d4e409148f425628247fc: !TransformComponent + Id: 5faabfbc-1d14-404e-9148-f425628247fc + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 10.0, Y: 10.0, Z: 10.0} + Children: {} + 37ec1b6f1f59f741ad1969c1e16713dc: !ModelComponent + Id: 6f1bec37-591f-41f7-ad19-69c1e16713dc + Model: 284e6a20-861f-4586-9827-682ebf856c18:Props/Comet/comet + Materials: {} + - Entity: + Id: 7adae965-152d-4feb-9513-bdc70c754474 + Name: Meteoritetrail + Components: + eb6c3948932fc2468a226a48364fc232: !TransformComponent + Id: 48396ceb-2f93-46c2-8a22-6a48364fc232 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale*: {X: 2.0, Y: 2.0, Z: 2.0} + Children: {} + e8942245f4d83244ac2eaebee7fe00a8: !ParticleSystemComponent + Id: 452294e8-d8f4-4432-ac2e-aebee7fe00a8 + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + 9f9db0940beb7d4f83a1a85eadf5852f: + EmitterName: smoke01 + MaxParticlesOverride*: 200 + ParticleLifetime: {X: 1.0, Y: 3.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + d1898d5139695644a70690e67ae7c125: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 01f5ba53c4800c4bb797935fb325d39e: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 3.0, Y: 3.0, Z: 3.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: fa1018e4-c74d-4495-9535-134f5a06e4cd:Textures/SMO001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: !UVBuilderFlipbook + XDivisions: 8 + YDivisions: 8 + StartingFrame: 8 + AnimationSpeed: 56 + ForceTexCoords: false + Spawners: + 1f97da64c163ae4896c44d8c05d168c0: !SpawnerFromDistance + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount*: 5.0 + 524887814b78b540a3243c3a915012ee: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount*: 25.0 + Initializers: + 49172c0d4e4e7344afd5efeae1e31d22: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.5, Y: 1.0} + bbe3f14c720d74468bf98d060775a4a4: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.1, Y: -0.1, Z: -0.1} + PositionMax: {X: 0.1, Y: 0.1, Z: 0.1} + Interpolate: false + 91c36e9f3675a44daefb7ebc2edf5857: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.1, Y: -0.1, Z: -0.1} + VelocityMax: {X: 0.1, Y: 0.1, Z: 0.1} + 2e0a84ba7259d4428760fd3a6755ae93: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + Updaters: + 7738024cd38b5046baddd368f6bac396: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + cc5f1e1ebe36d04d8d8888c5f17decf4: + Key: 0.0 + Value: {R: 1.0, G: 0.3, B: 0.2, A: 0.7} + TangentType: Linear + 3ec066b5ef32ca4a9c09a811a89ad183: + Key: 0.5 + Value: {R: 0.6, G: 0.5, B: 0.45, A: 0.3} + TangentType: Linear + e63c7ccf4a657b40bd884ca0ecc4ff98: + Key: 0.9201655 + Value: {R: 0.6, G: 0.6, B: 0.6, A: 0.1} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 45d7c5d25db41d4d90e256d3fdc42b6e: + EmitterName: fire + ParticleLifetime: {X: 0.25, Y: 0.5} + DrawPriority: 1 + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 67a0c3e3b5b9d04dadca7b20f1101f4f: + Key: 1.0 + Value: 0.5 + TangentType: Linear + 485e51c5ebbab84bab8e87555cc8ec60: + Key: 0.0 + Value: 1.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + AlphaAdditive: 0.7 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value*: {X: 50.0, Y: 15.0, Z: 10.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: d023ae47-8f08-4abd-b82b-0e27e5d89515:Textures/FIR001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: !UVBuilderFlipbook + XDivisions: 8 + YDivisions: 8 + StartingFrame: 0 + AnimationSpeed: 64 + ForceTexCoords: false + Spawners: + 9e54077ffbab124392fcc318f002ddd9: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 50.0 + Initializers: + e252b5d40e49f240b9e02acd3e60cdc7: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -60.0, Y: 60.0} + 337eb7ba5012974c909637ccdcf147c8: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.7 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.1, Y: 1.0} + 04de135ab78ac34489f36246360be2ed: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.1, Y: -0.1, Z: -0.1} + PositionMax: {X: 0.1, Y: 0.1, Z: 0.1} + Interpolate: false + Updaters: + 6a855da6a1a402408c01e318e66ef4b8: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 333e1a0b1e3c0d46aee19e484b3636a0: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.5} + TangentType: Linear + 89ed92ed1bab27429b04e6e28f9c0c10: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + c769db5a729f034aa21b734b562edd9e: + EmitterName: sparks + ParticleLifetime: {X: 0.2, Y: 3.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: null + SamplerRotation: null + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 20.0, Y: 10.0, Z: 10.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 91119660-137e-4be0-bcb9-32f8aeee6ca8:Textures/dota + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 80f4e2001f81d14893c69211a7237b96: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 100.0 + Initializers: + 62a7cfa19d5a284fa8a119df690d10ac: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.05 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.1, Y: 0.4} + 038b9a33d2f15d4fb0535fa8da6fb251: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.1, Y: -0.1, Z: -0.1} + PositionMax: {X: 0.1, Y: 0.1, Z: 0.1} + Interpolate: false + df3a2d3e26a5a34c996beae533df52ee: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.2, Y: -0.2, Z: -0.2} + VelocityMax: {X: 0.2, Y: 0.2, Z: 0.2} + 56f14fa708cc1141ab6317a9bb597913: !InitialColorSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ColorMin: {R: 1.0, G: 0.0, B: 0.0, A: 1.0} + ColorMax: {R: 1.0, G: 0.1875, B: 0.0, A: 1.0} + Updaters: {} + 995833730340af46b651896b85531f79: + EmitterName: smoke02 + ParticleLifetime: {X: 1.0, Y: 3.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 814710ab1c7ba343b80ae572314a0522: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 3b856dfd126ba241892eadec74939c43: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 13a8dcd016ae6d4c82184820d704cfae: + Key: 0.0 + Value: 0.0 + TangentType: Linear + 44f0bf7b0d7d2442af0d9bfcc35226ff: + Key: 1.0 + Value: 60.0 + TangentType: Linear + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 1.0, Y: 1.0, Z: 1.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8ab2edfe-0ead-489f-a899-97a8112807f7:Textures/Smoke02 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8dbe2382-769c-45fe-9604-98c5ae5c434c:Textures/SMO001_3 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + df5be9083c1a45408d1c2879dd1fb421: !SpawnerPerFrame + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 1.0 + Framerate: 60.0 + Initializers: + da656289b5b8164f83430671a0ac96ac: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.1, Y: -0.1, Z: -0.1} + VelocityMax: {X: 0.1, Y: 0.1, Z: 0.1} + 0e0d619e916e504db4a42d074366c720: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.5, Y: 1.5} + Updaters: + 27abceb134154d4d8b62904663ff272c: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: {} + SamplerOptional: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 99330dd5e326404486641066d960359c: + Key: 0.0 + Value: {R: 1.0, G: 0.6, B: 0.5, A: 1.0} + TangentType: Linear + 82b514d3e1c20a4d93357a3a6730fb2e: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SeedOffset: 0 + Base: + BasePartAsset: 67f0d9a3-3e9f-41b3-a925-1a4b32c42b40:VFXPrefabs/vfx-MeteoriteTrail + BasePartId: 8fdae74d-bb9e-4313-9c5b-e33a859823a7 + InstanceId: 6b6acbc3-2491-4d31-83df-896e0880da38 diff --git a/Starbreach/Assets/Shared/Props/Comet/comet.FBX b/Starbreach/Assets/Shared/Props/Comet/comet.FBX new file mode 100644 index 0000000..cb640bd --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Comet/comet.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01bf0a6a4a7885b8f26d1cc71e7a4962e470d90a0f640616b496a2c9de7a7193 +size 320128 diff --git a/Starbreach/Assets/Shared/Props/Comet/comet.xkm3d b/Starbreach/Assets/Shared/Props/Comet/comet.xkm3d new file mode 100644 index 0000000..0b31d22 --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Comet/comet.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 284e6a20-861f-4586-9827-682ebf856c18 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: comet.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + b7e17100e61847668b1cdb558b1cdb55: + Name: default + MaterialInstance: + Material: 92077e04-5418-4a38-ba09-cafadb41578b:Props/Comet/textures/Comet +Skeleton: null +~SourceHashes: + 8bc3b76a8f78f271b032fdfd5a62d433~comet.FBX: 4489348340e6c6a548cb9fd19d57a7dd diff --git a/Starbreach/Assets/Shared/Props/Comet/textures/Comet.xkmat b/Starbreach/Assets/Shared/Props/Comet/textures/Comet.xkmat new file mode 100644 index 0000000..0354f9d --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Comet/textures/Comet.xkmat @@ -0,0 +1,74 @@ +!MaterialAsset +Id: 92077e04-5418-4a38-ba09-cafadb41578b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 531cdcfa-00b5-4334-8dfb-42a4a1e3cb28:Props/Comet/textures/comet_normal + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 655b3682-a010-49c5-80c4-60209f53473d:Props/Comet/textures/comet_gloss + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: ff97cbb5-5385-4f23-ac03-b97950350cf2:Props/Comet/textures/comet_albedo + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialSpecularMapFeature + SpecularMap: !ComputeTextureColor + Texture: 34fd8296-5a42-4d98-a7e3-7bf242fffb11:Props/Comet/textures/comet_nmetalness + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 1.0 + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilityImplicit {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionBlinnPhong {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 82025a7c-4a6e-4d7d-bd39-9ff68f5bee63:Props/Comet/textures/comet_occlusion + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 1.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: fd9d0ad0-d80d-4300-8cf1-fb61d3f70a4f:Props/Comet/textures/comet_emissive + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 8.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/Props/Comet/textures/comet_albedo.tga b/Starbreach/Assets/Shared/Props/Comet/textures/comet_albedo.tga new file mode 100644 index 0000000..ff0e4a8 --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Comet/textures/comet_albedo.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14a79bfb1a58f641babc8f2ad1766b75b84370cb88507a4ee016387057fef70f +size 12582956 diff --git a/Starbreach/Assets/Shared/Props/Comet/textures/comet_albedo.xktex b/Starbreach/Assets/Shared/Props/Comet/textures/comet_albedo.xktex new file mode 100644 index 0000000..5fd5ccf --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Comet/textures/comet_albedo.xktex @@ -0,0 +1,7 @@ +!Texture +Id: ff97cbb5-5385-4f23-ac03-b97950350cf2 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: comet_albedo.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Props/Comet/textures/comet_emissive.tga b/Starbreach/Assets/Shared/Props/Comet/textures/comet_emissive.tga new file mode 100644 index 0000000..2954b03 --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Comet/textures/comet_emissive.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43ea2aef9659e644d14b3b5dc80f7424ef788391610d794a9d52f38af0cc3758 +size 12582956 diff --git a/Starbreach/Assets/Shared/Props/Comet/textures/comet_emissive.xktex b/Starbreach/Assets/Shared/Props/Comet/textures/comet_emissive.xktex new file mode 100644 index 0000000..3ff9d38 --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Comet/textures/comet_emissive.xktex @@ -0,0 +1,7 @@ +!Texture +Id: fd9d0ad0-d80d-4300-8cf1-fb61d3f70a4f +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: comet_emissive.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Props/Comet/textures/comet_gloss.tga b/Starbreach/Assets/Shared/Props/Comet/textures/comet_gloss.tga new file mode 100644 index 0000000..2a33514 --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Comet/textures/comet_gloss.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:939fe6e86e9af607ef8c64794e2d479190a0f11203684edcc110b78fd097ec55 +size 4194348 diff --git a/Starbreach/Assets/Shared/Props/Comet/textures/comet_gloss.xktex b/Starbreach/Assets/Shared/Props/Comet/textures/comet_gloss.xktex new file mode 100644 index 0000000..6065bb6 --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Comet/textures/comet_gloss.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 655b3682-a010-49c5-80c4-60209f53473d +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: comet_gloss.tga +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Props/Comet/textures/comet_nmetalness.tga b/Starbreach/Assets/Shared/Props/Comet/textures/comet_nmetalness.tga new file mode 100644 index 0000000..0bd63f2 --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Comet/textures/comet_nmetalness.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:638482b301e0d6c59051879b621f1d661421b614e1ecc3950957301d29ba462f +size 4194348 diff --git a/Starbreach/Assets/Shared/Props/Comet/textures/comet_nmetalness.xktex b/Starbreach/Assets/Shared/Props/Comet/textures/comet_nmetalness.xktex new file mode 100644 index 0000000..f59b15a --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Comet/textures/comet_nmetalness.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 34fd8296-5a42-4d98-a7e3-7bf242fffb11 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: comet_nmetalness.tga +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/Props/Comet/textures/comet_normal.tga b/Starbreach/Assets/Shared/Props/Comet/textures/comet_normal.tga new file mode 100644 index 0000000..b78a0f2 --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Comet/textures/comet_normal.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f18feeeaaa34fa02330d21492f5a1725cb76be053ebaaa56f9f9d870c310894 +size 12582956 diff --git a/Starbreach/Assets/Shared/Props/Comet/textures/comet_normal.xktex b/Starbreach/Assets/Shared/Props/Comet/textures/comet_normal.xktex new file mode 100644 index 0000000..3de2c6e --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Comet/textures/comet_normal.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 531cdcfa-00b5-4334-8dfb-42a4a1e3cb28 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: comet_normal.tga +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/Props/Comet/textures/comet_occlusion.tga b/Starbreach/Assets/Shared/Props/Comet/textures/comet_occlusion.tga new file mode 100644 index 0000000..8cc5d24 --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Comet/textures/comet_occlusion.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97c52c5c18c0494a78687be60c3c03278b235456703063c6e4fbcbc9c78f8f70 +size 12582956 diff --git a/Starbreach/Assets/Shared/Props/Comet/textures/comet_occlusion.xktex b/Starbreach/Assets/Shared/Props/Comet/textures/comet_occlusion.xktex new file mode 100644 index 0000000..7691f02 --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Comet/textures/comet_occlusion.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 82025a7c-4a6e-4d7d-bd39-9ff68f5bee63 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: comet_occlusion.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/Props/Wall/Meshes/P_wall_cap.FBX b/Starbreach/Assets/Shared/Props/Wall/Meshes/P_wall_cap.FBX new file mode 100644 index 0000000..338fdcb --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Wall/Meshes/P_wall_cap.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8e15f55756eecf733c96423c255a2e4ffce470a490405b0958662714767ae5b +size 29008 diff --git a/Starbreach/Assets/Shared/Props/Wall/Meshes/P_wall_tube_I.FBX b/Starbreach/Assets/Shared/Props/Wall/Meshes/P_wall_tube_I.FBX new file mode 100644 index 0000000..e3c4266 --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Wall/Meshes/P_wall_tube_I.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b0b29fdd4397dfd05cb6f7a36c010c672de2709543520e49885130abffeb6e3 +size 24208 diff --git a/Starbreach/Assets/Shared/Props/Wall/Meshes/P_wall_tube_U.FBX b/Starbreach/Assets/Shared/Props/Wall/Meshes/P_wall_tube_U.FBX new file mode 100644 index 0000000..2ba764a --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Wall/Meshes/P_wall_tube_U.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78e264be747ce9eb9f3a3a932f0df55e1b4f407010077c19349d1c52d75d4fdc +size 34432 diff --git a/Starbreach/Assets/Shared/Props/Wall/Meshes/P_wall_tube_Z.FBX b/Starbreach/Assets/Shared/Props/Wall/Meshes/P_wall_tube_Z.FBX new file mode 100644 index 0000000..eba66e4 --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Wall/Meshes/P_wall_tube_Z.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6fbd43c8681fab13f49dea36072140be85b0177aa5df3174aa323679296c9cd +size 41504 diff --git a/Starbreach/Assets/Shared/Props/Wall/Meshes/P_wall_tube_Z2.FBX b/Starbreach/Assets/Shared/Props/Wall/Meshes/P_wall_tube_Z2.FBX new file mode 100644 index 0000000..7a6ae97 --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Wall/Meshes/P_wall_tube_Z2.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f45cda58689e56788845632fcae9280f876b75afa2a85e3a6b51267ef554697e +size 41488 diff --git a/Starbreach/Assets/Shared/Props/Wall/Meshes/P_wall_tube_conector.FBX b/Starbreach/Assets/Shared/Props/Wall/Meshes/P_wall_tube_conector.FBX new file mode 100644 index 0000000..2b8b96f --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Wall/Meshes/P_wall_tube_conector.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90ea0f8821a3406173652cb7487642c26df7a60c585b32b48467227a8e78e2fe +size 42992 diff --git a/Starbreach/Assets/Shared/Props/Wall/Meshes/P_wall_tube_conector_L.FBX b/Starbreach/Assets/Shared/Props/Wall/Meshes/P_wall_tube_conector_L.FBX new file mode 100644 index 0000000..cb412d3 --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Wall/Meshes/P_wall_tube_conector_L.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f8e37aaf3a3aaa00d31f1f2b1a861f683111bbdbb9bd21378684993da498582 +size 40656 diff --git a/Starbreach/Assets/Shared/Props/Wall/Textures/P_wall_N.tga b/Starbreach/Assets/Shared/Props/Wall/Textures/P_wall_N.tga new file mode 100644 index 0000000..7563bef --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Wall/Textures/P_wall_N.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e696c2eb10ac80998e9cbdce79ab3586e7bc71a0db4b4249dac8a6a99e82db7 +size 50331692 diff --git a/Starbreach/Assets/Shared/Props/Wall/Textures/border2_normal.tga b/Starbreach/Assets/Shared/Props/Wall/Textures/border2_normal.tga new file mode 100644 index 0000000..0604fd2 --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Wall/Textures/border2_normal.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f17ff9508a02cd81ad86cd1b8a8b375a082cf79d2f1de69e99e7d3c065f5df26 +size 16777260 diff --git a/Starbreach/Assets/Shared/Props/Wall2/Meshes/P_wall2.FBX b/Starbreach/Assets/Shared/Props/Wall2/Meshes/P_wall2.FBX new file mode 100644 index 0000000..b8fc13c --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Wall2/Meshes/P_wall2.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bf58d4cd5ecee1e8491c444bedae724c871cf71e54f20289f6fcbaef92c986f +size 31792 diff --git a/Starbreach/Assets/Shared/Props/Wall2/Meshes/P_wall2_x2.FBX b/Starbreach/Assets/Shared/Props/Wall2/Meshes/P_wall2_x2.FBX new file mode 100644 index 0000000..146a9f2 --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Wall2/Meshes/P_wall2_x2.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:152f8fcadf257d10b099f0cd0c6fd51cb50af52c417c7fbdad4c78bebae87b0b +size 35728 diff --git a/Starbreach/Assets/Shared/Props/Wall2/Meshes/P_wall2_x3.FBX b/Starbreach/Assets/Shared/Props/Wall2/Meshes/P_wall2_x3.FBX new file mode 100644 index 0000000..ea7afe5 --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Wall2/Meshes/P_wall2_x3.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:591ae0ebc2e0b419a793fec3b780e957c3499517adcd7a2004af5e5414b61a1e +size 37520 diff --git a/Starbreach/Assets/Shared/Props/Wall2/Meshes/P_wall2_x4.FBX b/Starbreach/Assets/Shared/Props/Wall2/Meshes/P_wall2_x4.FBX new file mode 100644 index 0000000..1c43702 --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Wall2/Meshes/P_wall2_x4.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c43c2692450cfa2e6ef5c5ff6a5f4565546df558a7a0687b4852332b43ac91d9 +size 40224 diff --git a/Starbreach/Assets/Shared/Props/Wall2/Textures/P_wall2_A.tga b/Starbreach/Assets/Shared/Props/Wall2/Textures/P_wall2_A.tga new file mode 100644 index 0000000..c92a488 --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Wall2/Textures/P_wall2_A.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85d7b559f78d68f1bd2cdceca04412ce2621fe7fe558a318036fc504929b5d75 +size 50331692 diff --git a/Starbreach/Assets/Shared/Props/Wall2/Textures/P_wall2_A2.tga b/Starbreach/Assets/Shared/Props/Wall2/Textures/P_wall2_A2.tga new file mode 100644 index 0000000..aae2ed0 --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Wall2/Textures/P_wall2_A2.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df6fca66cbdeb7dc61b7b435d6863f498144403fa7701c8c8801178c6198d287 +size 50331692 diff --git a/Starbreach/Assets/Shared/Props/Wall2/Textures/P_wall2_G.tga b/Starbreach/Assets/Shared/Props/Wall2/Textures/P_wall2_G.tga new file mode 100644 index 0000000..37ef464 --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Wall2/Textures/P_wall2_G.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfdc72e018e1fff8234ce89fa0de787e2123a2bb38237aa8ebd4829db8367849 +size 16777260 diff --git a/Starbreach/Assets/Shared/Props/Wall2/Textures/P_wall2_G2.tga b/Starbreach/Assets/Shared/Props/Wall2/Textures/P_wall2_G2.tga new file mode 100644 index 0000000..3777ebc --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Wall2/Textures/P_wall2_G2.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8973bf0444475692b1f20a6c3558f07cf6d6c413555d0e6301afba26cf557db +size 16777260 diff --git a/Starbreach/Assets/Shared/Props/Wall2/Textures/P_wall2_M.tga b/Starbreach/Assets/Shared/Props/Wall2/Textures/P_wall2_M.tga new file mode 100644 index 0000000..2107933 --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Wall2/Textures/P_wall2_M.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0518a3a43d626f1f5a4fc62f4737150a10821271cd6cfe6b96412ad95eec46aa +size 16777260 diff --git a/Starbreach/Assets/Shared/Props/Wall2/Textures/P_wall2_M2.tga b/Starbreach/Assets/Shared/Props/Wall2/Textures/P_wall2_M2.tga new file mode 100644 index 0000000..cef8313 --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Wall2/Textures/P_wall2_M2.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e666b1fa427b2c51352cc5addddbc03cde1fde21cd3dee820b5f620cad672891 +size 16777260 diff --git a/Starbreach/Assets/Shared/Props/Wall2/Textures/P_wall2_N.tga b/Starbreach/Assets/Shared/Props/Wall2/Textures/P_wall2_N.tga new file mode 100644 index 0000000..a4b94b1 --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Wall2/Textures/P_wall2_N.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e8a029dc3b91b504c9c71467323281ab353a597bcf8a0cf2037dfd0d2cba433 +size 50331692 diff --git a/Starbreach/Assets/Shared/Props/Wall2/Textures/P_wall2_O.tga b/Starbreach/Assets/Shared/Props/Wall2/Textures/P_wall2_O.tga new file mode 100644 index 0000000..2f23dc6 --- /dev/null +++ b/Starbreach/Assets/Shared/Props/Wall2/Textures/P_wall2_O.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093a68ec42a7d3457bd0dab324f242e7cb21b4d2b8abe5e5d77b4a1fa058807f +size 67108908 diff --git a/Starbreach/Assets/Shared/PropsOld/LargePillar/LargePillar.xkm3d b/Starbreach/Assets/Shared/PropsOld/LargePillar/LargePillar.xkm3d new file mode 100644 index 0000000..3da442a --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/LargePillar/LargePillar.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: b1d8613f-6207-46af-98e5-19cdf52b4259 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Props/LargePillar/LargePillar.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + fe0f722b28c564ae044289ea044289ea: + Name: Material + MaterialInstance: + Material: 2b020026-1ae7-4ac6-8841-6c11e930589a:PropsOld/LargePillar/textures/LargePillar +Skeleton: null +~SourceHashes: + 83229a451282d1cf3e38bd7b00f551fa~../../Props/LargePillar/LargePillar.FBX: 00000000000000000000000000000000 diff --git a/Starbreach/Assets/Shared/PropsOld/LargePillar/textures/LargePillar.xkmat b/Starbreach/Assets/Shared/PropsOld/LargePillar/textures/LargePillar.xkmat new file mode 100644 index 0000000..c1be91a --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/LargePillar/textures/LargePillar.xkmat @@ -0,0 +1,71 @@ +!MaterialAsset +Id: 2b020026-1ae7-4ac6-8841-6c11e930589a +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: ce4ec3e1-9acd-4332-9cb4-23d9ed7ceb5a:PropsOld/LargePillar/textures/LargePillar_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: e8785ce3-8bdd-4950-866f-ccf12b4e2fa4:PropsOld/LargePillar/textures/LargePillar_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 16bdb2d8-df0e-4e8e-ad49-9ec6e65becf0:PropsOld/LargePillar/textures/LargePillar_A + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 70c0a6fa-1a6e-468e-934f-381fe9f10fdb:PropsOld/LargePillar/textures/LargePillar_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: f462e9db-de23-41f2-a5d6-18b975ad7756:PropsOld/LargePillar/textures/LargePillar_O + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: fae9dfae-bd16-47ae-9530-719fc5da5c6f:PropsOld/LargePillar/textures/LargePillar_E + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 15.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/PropsOld/LargePillar/textures/LargePillar_A.xktex b/Starbreach/Assets/Shared/PropsOld/LargePillar/textures/LargePillar_A.xktex new file mode 100644 index 0000000..2770c53 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/LargePillar/textures/LargePillar_A.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 16bdb2d8-df0e-4e8e-ad49-9ec6e65becf0 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/LargePillar/textures/LargePillar_A.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PropsOld/LargePillar/textures/LargePillar_E.xktex b/Starbreach/Assets/Shared/PropsOld/LargePillar/textures/LargePillar_E.xktex new file mode 100644 index 0000000..d9bcd30 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/LargePillar/textures/LargePillar_E.xktex @@ -0,0 +1,7 @@ +!Texture +Id: fae9dfae-bd16-47ae-9530-719fc5da5c6f +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/LargePillar/textures/LargePillar_E.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PropsOld/LargePillar/textures/LargePillar_G.xktex b/Starbreach/Assets/Shared/PropsOld/LargePillar/textures/LargePillar_G.xktex new file mode 100644 index 0000000..c75a676 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/LargePillar/textures/LargePillar_G.xktex @@ -0,0 +1,6 @@ +!Texture +Id: e8785ce3-8bdd-4950-866f-ccf12b4e2fa4 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/LargePillar/textures/LargePillar_G.tga +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/PropsOld/LargePillar/textures/LargePillar_M.xktex b/Starbreach/Assets/Shared/PropsOld/LargePillar/textures/LargePillar_M.xktex new file mode 100644 index 0000000..1c6fed9 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/LargePillar/textures/LargePillar_M.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 70c0a6fa-1a6e-468e-934f-381fe9f10fdb +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/LargePillar/textures/LargePillar_M.tga +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/PropsOld/LargePillar/textures/LargePillar_N.xktex b/Starbreach/Assets/Shared/PropsOld/LargePillar/textures/LargePillar_N.xktex new file mode 100644 index 0000000..18fadf4 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/LargePillar/textures/LargePillar_N.xktex @@ -0,0 +1,6 @@ +!Texture +Id: ce4ec3e1-9acd-4332-9cb4-23d9ed7ceb5a +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/LargePillar/textures/LargePillar_N.tga +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/PropsOld/LargePillar/textures/LargePillar_O.xktex b/Starbreach/Assets/Shared/PropsOld/LargePillar/textures/LargePillar_O.xktex new file mode 100644 index 0000000..ce24472 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/LargePillar/textures/LargePillar_O.xktex @@ -0,0 +1,7 @@ +!Texture +Id: f462e9db-de23-41f2-a5d6-18b975ad7756 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/LargePillar/textures/LargePillar_O.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Corner.xkprefab b/Starbreach/Assets/Shared/PropsOld/Wall/Corner.xkprefab new file mode 100644 index 0000000..0ce795f --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Corner.xkprefab @@ -0,0 +1,304 @@ +!PrefabAsset +Id: 5ef5e5c9-8812-467a-818b-e12983e4da40 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 1213c9f3-2cd0-40b1-a910-f9f108b48f16 + Parts: + - Entity: + Id: 1213c9f3-2cd0-40b1-a910-f9f108b48f16 + Name: P_wall_X_rust + Components: + 022248d333a5454a9cbfe389f03f8f7e: !TransformComponent + Id: d3482202-a533-4a45-9cbf-e389f03f8f7e + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + eea5232e3a31fa4c9aeee0b64d77e9b0: ref!! 2e23a5ee-313a-4cfa-9aee-e0b64d77e9b0 + a2819c2824adfdf4aed36298abde2bbf: ref!! 14978659-3e94-414a-8e17-05f1c204be71 + 12cfd59b4cfec3438c267ae5269cd7f7: ref!! 9bd5cf12-fe4c-43c3-8c26-7ae5269cd7f7 + d45b54eaaf1ec4a127508d0d73c30741: ref!! 7543706c-04b4-4839-bdd8-05260105c7c9 + fd583d079f37af4594c005b921b8f5b1: ref!! 073d58fd-379f-45af-94c0-05b921b8f5b1 + a4e332b0078f6c4b8f8a715884c2bde0: ref!! b032e3a4-8f07-4b6c-8f8a-715884c2bde0 + 97b15e9f8c78c457020eff9d6d6cf8dc: ref!! 40675fe6-dfe2-4401-9820-a489493ad51e + e212ae7b05de0a4394585da10b83701b: ref!! 7bae12e2-de05-430a-9458-5da10b83701b + d6b0e407c0b0b5e7f54378c7bf481860: ref!! 7e5ba028-5749-4159-a47a-521d14c8b974 + 9e259408748570c46d28419c1ae536b7: ref!! ad4acbb1-e8e1-464f-8723-c3f4d16e494f + 0c29118a98c42311203d0297a92563f4: ref!! 02b4c209-f7e7-492a-b853-c712158de651 + 19c9d64be05457408b1622a76ad0fd5d: ref!! 4bd6c919-54e0-4057-8b16-22a76ad0fd5d + b32c6b681545ef5fb64f5b1b312cfd06: ref!! cf982104-7e1e-4f24-a096-ebb52f30597b + 4d77e2f7b5c771ea7b9e5505837f1d5b: ref!! c59eb6f8-f401-4b2b-a0ac-50ab04c228b4 + 9fdcae65e8233e72116cf26f075b6725: ref!! fc7e85ef-eab5-410c-8483-0844e845fb04 + - Entity: + Id: 1c453881-20fe-4f46-98c8-37db0a8875a2 + Name: P_wall_tube_conector_L (3) + Components: + fd583d079f37af4594c005b921b8f5b1: !TransformComponent + Id: 073d58fd-379f-45af-94c0-05b921b8f5b1 + Position: {X: -1.78813934E-07, Y: 1.55, Z: 1.0} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e5de8274fdcc444cb52600d7c047b9bb: !ModelComponent + Id: 7482dee5-ccfd-4c44-b526-00d7c047b9bb + Model: 9d6c7a9b-c609-45e8-aabe-23f98e30fb70:PropsOld/Wall/Meshes/P_wall_tube_conector_L + Materials: + 31e238b8d8a76a43ae0d06492a9913b5~0: 0d9c0fb7-4927-4400-b598-3d44026fdbbc:PropsOld/Wall/Textures/wall_rust + Base: + BasePartAsset: 3bac8993-d282-4c81-8305-d2f2a55bcdbc:PropsOld/Wall/P_wall_X_rust + BasePartId: 787518a6-ec10-4742-8aa0-ec923b7ce864 + InstanceId: 8d8f2aea-85ef-406d-927e-48da80d992d3 + - Entity: + Id: 1e1d810a-14e7-47a5-b6f5-50cc85edc793 + Name: P_wall_seg (2) + Components: + a4e332b0078f6c4b8f8a715884c2bde0: !TransformComponent + Id: 40675fe6-dfe2-4401-9820-a489493ad51e + Position: {X: 0.5, Y: 0.0, Z: 2.0} + Rotation: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 4678bb4dde1249489c0444cfa9a54bb8: !ModelComponent + Id: 4dbb7846-12de-4849-9c04-44cfa9a54bb8 + Model: 1258a62c-c6b5-4b44-84fc-adfe6ecdf910:PropsOld/Wall/Meshes/P_wall_seg + Materials: + 31e238b8d8a76a43ae0d06492a9913b5~0: 0d9c0fb7-4927-4400-b598-3d44026fdbbc:PropsOld/Wall/Textures/wall_rust + Base: + BasePartAsset: 3bac8993-d282-4c81-8305-d2f2a55bcdbc:PropsOld/Wall/P_wall_X_rust + BasePartId: 7182f336-78d7-4454-aa3f-7eb311f75a48 + InstanceId: 8d8f2aea-85ef-406d-927e-48da80d992d3 + - Entity: + Id: 307360ac-1bc6-484e-a757-9b163df2b590 + Name: P_wall_tube_conector_L + Components: + 0b05302b9afdeecd623f38a1e8b9bf2f: !TransformComponent + Id: c59eb6f8-f401-4b2b-a0ac-50ab04c228b4 + Position: {X: 1.0, Y: 1.55, Z: 0.0} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: -0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 10652ded82f96896d7e92f08b8f7b0ef: !ModelComponent + Id: 1a19dc3f-04c4-4c1b-8830-fcd84448aa85 + Model: 9d6c7a9b-c609-45e8-aabe-23f98e30fb70:PropsOld/Wall/Meshes/P_wall_tube_conector_L + Materials: {} + - Entity: + Id: 34ced92c-d6ea-4510-a802-c0dc8e4d3c68 + Name: P_wall_tube_U + Components: + 12cfd59b4cfec3438c267ae5269cd7f7: !TransformComponent + Id: 9bd5cf12-fe4c-43c3-8c26-7ae5269cd7f7 + Position: {X: 2.38418579E-07, Y: 1.55, Z: 0.9999999} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3d93903657654f4196ec3b63e6ceef70: !ModelComponent + Id: 3690933d-6557-414f-96ec-3b63e6ceef70 + Model: 4dc8839a-9ea2-4727-9564-6708fd7cc727:PropsOld/Wall/Meshes/P_wall_tube_U + Materials: + 31e238b8d8a76a43ae0d06492a9913b5~0: 0d9c0fb7-4927-4400-b598-3d44026fdbbc:PropsOld/Wall/Textures/wall_rust + Base: + BasePartAsset: 3bac8993-d282-4c81-8305-d2f2a55bcdbc:PropsOld/Wall/P_wall_X_rust + BasePartId: 82a4fd78-e776-4ffd-b687-b5f21bb4dcd4 + InstanceId: 8d8f2aea-85ef-406d-927e-48da80d992d3 + - Entity: + Id: 39b55f64-8c0b-4455-8d9a-b9226bc0eca0 + Name: P_wall_cap (7) + Components: + e212ae7b05de0a4394585da10b83701b: !TransformComponent + Id: 02b4c209-f7e7-492a-b853-c712158de651 + Position: {X: -0.6840113, Y: 2.17, Z: 0.294247359} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c02ffd559c106145bd5594cac66c73a6: !ModelComponent + Id: 55fd2fc0-109c-4561-bd55-94cac66c73a6 + Model: 7912af33-2365-4cc0-be49-4f175c901fb5:PropsOld/Wall/Meshes/P_wall_cap + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + Base: + BasePartAsset: 3bac8993-d282-4c81-8305-d2f2a55bcdbc:PropsOld/Wall/P_wall_X_rust + BasePartId: 577a6bef-5d23-4760-94e2-e318b6ab08fa + InstanceId: 8d8f2aea-85ef-406d-927e-48da80d992d3 + - Entity: + Id: 600aecd4-40ad-4d32-bf00-929cb97e711c + Name: P_wall_L + Components: + 19c9d64be05457408b1622a76ad0fd5d: !TransformComponent + Id: 4bd6c919-54e0-4057-8b16-22a76ad0fd5d + Position: {X: 1.0, Y: 0.0, Z: 1.0} + Rotation: {X: 0.0, Y: -1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + b4d0e9b68050d2438355f4b94bd0cc8e: !ModelComponent + Id: b6e9d0b4-5080-43d2-8355-f4b94bd0cc8e + Model: c032cac6-3f84-4312-bae8-5db3e585b989:PropsOld/Wall/Meshes/P_wall_L + Materials: + 54e5bc0411cb4a429cb44f0ddb5d4655~0: 0d9c0fb7-4927-4400-b598-3d44026fdbbc:PropsOld/Wall/Textures/wall_rust + - Entity: + Id: 88ca69f0-d56e-4af4-bca1-6f133b9488b4 + Name: P_wall_cap (6) + Components: + e212ae7b05de0a4394585da10b83701b: !TransformComponent + Id: ad4acbb1-e8e1-464f-8723-c3f4d16e494f + Position: {X: -0.6840113, Y: 2.17, Z: 0.6793509} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c02ffd559c106145bd5594cac66c73a6: !ModelComponent + Id: f2521f91-1ed2-4868-9e0f-6e42d58ab30b + Model: 7912af33-2365-4cc0-be49-4f175c901fb5:PropsOld/Wall/Meshes/P_wall_cap + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + Base: + BasePartAsset: 3bac8993-d282-4c81-8305-d2f2a55bcdbc:PropsOld/Wall/P_wall_X_rust + BasePartId: ad49bb83-c61d-48f4-991d-b06000c95a98 + InstanceId: 8d8f2aea-85ef-406d-927e-48da80d992d3 + - Entity: + Id: 8cb45688-d52c-4a75-8ef1-48e80edc0fad + Name: P_wall_cap (4) + Components: + e212ae7b05de0a4394585da10b83701b: !TransformComponent + Id: 7e5ba028-5749-4159-a47a-521d14c8b974 + Position: {X: 0.3007442, Y: 2.17, Z: 1.66093063} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c02ffd559c106145bd5594cac66c73a6: !ModelComponent + Id: 06d0925f-2cfd-4e27-8291-c58a8c0a718b + Model: 7912af33-2365-4cc0-be49-4f175c901fb5:PropsOld/Wall/Meshes/P_wall_cap + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + Base: + BasePartAsset: 3bac8993-d282-4c81-8305-d2f2a55bcdbc:PropsOld/Wall/P_wall_X_rust + BasePartId: 963754ca-2d94-4914-87cb-30964dd2c72a + InstanceId: 8d8f2aea-85ef-406d-927e-48da80d992d3 + - Entity: + Id: 9e284401-f65d-44d3-96e1-25c3ebb3fb13 + Name: P_wall_end (3) + Components: + eea5232e3a31fa4c9aeee0b64d77e9b0: !TransformComponent + Id: 14978659-3e94-414a-8e17-05f1c204be71 + Position: {X: 0.0, Y: 0.0, Z: 1.0} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + fe83c02c163e3041820e4e943213f620: !ModelComponent + Id: 2cc083fe-3e16-4130-820e-4e943213f620 + Model: e99c64c1-a606-4c30-a535-17d2cde88dfd:PropsOld/Wall/Meshes/P_wall_end + Materials: + 31e238b8d8a76a43ae0d06492a9913b5~0: 0d9c0fb7-4927-4400-b598-3d44026fdbbc:PropsOld/Wall/Textures/wall_rust + Base: + BasePartAsset: 3bac8993-d282-4c81-8305-d2f2a55bcdbc:PropsOld/Wall/P_wall_X_rust + BasePartId: 2c4f6ef1-9a33-4b25-8268-9539825572b3 + InstanceId: 8d8f2aea-85ef-406d-927e-48da80d992d3 + - Entity: + Id: b9d68f2b-d7a1-4b5b-abc8-6086a53a420c + Name: P_wall_seg + Components: + a4e332b0078f6c4b8f8a715884c2bde0: !TransformComponent + Id: b032e3a4-8f07-4b6c-8f8a-715884c2bde0 + Position: {X: -1.0, Y: 0.0, Z: 0.50000006} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 4678bb4dde1249489c0444cfa9a54bb8: !ModelComponent + Id: 5e865780-548a-457b-9681-5e265e8d0a94 + Model: 1258a62c-c6b5-4b44-84fc-adfe6ecdf910:PropsOld/Wall/Meshes/P_wall_seg + Materials: + 31e238b8d8a76a43ae0d06492a9913b5~0: 0d9c0fb7-4927-4400-b598-3d44026fdbbc:PropsOld/Wall/Textures/wall_rust + Base: + BasePartAsset: 3bac8993-d282-4c81-8305-d2f2a55bcdbc:PropsOld/Wall/P_wall_X_rust + BasePartId: cfdcc402-f53d-4623-9343-49f48bfe4329 + InstanceId: 8d8f2aea-85ef-406d-927e-48da80d992d3 + - Entity: + Id: c65ebba6-5002-4670-8948-d57c25031d95 + Name: P_wall_tube_I + Components: + 4fcaae55df1c0f627cf022a23aefc25e: !TransformComponent + Id: fc7e85ef-eab5-410c-8483-0844e845fb04 + Position: {X: 0.0, Y: 1.55, Z: 0.0166564528} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 457fc3d906b4ceaf22cad44e41b8b931: !ModelComponent + Id: 1448aeb4-6e38-4c47-b7bb-7693d7568d91 + Model: c6a447f9-775a-4726-a733-e69897aeb090:PropsOld/Wall/Meshes/P_wall_tube_I + Materials: {} + - Entity: + Id: e56a80f2-b9bd-43de-a670-983a4e67f4b5 + Name: P_wall_cap (3) + Components: + e212ae7b05de0a4394585da10b83701b: !TransformComponent + Id: 7bae12e2-de05-430a-9458-5da10b83701b + Position: {X: 0.710801542, Y: 2.17, Z: 1.66093063} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c02ffd559c106145bd5594cac66c73a6: !ModelComponent + Id: c8398036-ab19-4874-9d43-93413891bb52 + Model: 7912af33-2365-4cc0-be49-4f175c901fb5:PropsOld/Wall/Meshes/P_wall_cap + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + Base: + BasePartAsset: 3bac8993-d282-4c81-8305-d2f2a55bcdbc:PropsOld/Wall/P_wall_X_rust + BasePartId: a927e6e2-dc89-431f-920c-5f707661deda + InstanceId: 8d8f2aea-85ef-406d-927e-48da80d992d3 + - Entity: + Id: ecb9a62e-d69a-4df4-9174-8135da988ea2 + Name: P_wall_tube_U (2) + Components: + 12cfd59b4cfec3438c267ae5269cd7f7: !TransformComponent + Id: 7543706c-04b4-4839-bdd8-05260105c7c9 + Position: {X: 1.00000024, Y: 1.55, Z: 0.9999999} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3d93903657654f4196ec3b63e6ceef70: !ModelComponent + Id: 553c9f2f-ecfa-4d34-982d-f2d16fd13e6a + Model: 4dc8839a-9ea2-4727-9564-6708fd7cc727:PropsOld/Wall/Meshes/P_wall_tube_U + Materials: + 31e238b8d8a76a43ae0d06492a9913b5~0: 0d9c0fb7-4927-4400-b598-3d44026fdbbc:PropsOld/Wall/Textures/wall_rust + Base: + BasePartAsset: 3bac8993-d282-4c81-8305-d2f2a55bcdbc:PropsOld/Wall/P_wall_X_rust + BasePartId: 8ad59f64-9faa-4059-8d1f-26fd54959118 + InstanceId: 8d8f2aea-85ef-406d-927e-48da80d992d3 + - Entity: + Id: fe15990b-72d4-4cdf-823d-81ae82387dd3 + Name: P_wall_tube_U + Components: + 12cfd59b4cfec3438c267ae5269cd7f7: !TransformComponent + Id: cf982104-7e1e-4f24-a096-ebb52f30597b + Position: {X: 2.38418579E-07, Y: 1.55, Z: 0.9999999} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3d93903657654f4196ec3b63e6ceef70: !ModelComponent + Id: 5c3daf26-d1de-4aee-9001-90f44480e608 + Model: 4dc8839a-9ea2-4727-9564-6708fd7cc727:PropsOld/Wall/Meshes/P_wall_tube_U + Materials: + 31e238b8d8a76a43ae0d06492a9913b5~0: 0d9c0fb7-4927-4400-b598-3d44026fdbbc:PropsOld/Wall/Textures/wall_rust + Base: + BasePartAsset: 3bac8993-d282-4c81-8305-d2f2a55bcdbc:PropsOld/Wall/P_wall_X_rust + BasePartId: 82a4fd78-e776-4ffd-b687-b5f21bb4dcd4 + InstanceId: 9368b4be-3641-4b6b-bff2-6c54641b97d5 + - Entity: + Id: ff876453-dc8f-43d9-b731-08538d220185 + Name: P_wall_end + Components: + eea5232e3a31fa4c9aeee0b64d77e9b0: !TransformComponent + Id: 2e23a5ee-313a-4cfa-9aee-e0b64d77e9b0 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + fe83c02c163e3041820e4e943213f620: !ModelComponent + Id: 2b8673f9-c525-433e-a443-562e6d3915c3 + Model: e99c64c1-a606-4c30-a535-17d2cde88dfd:PropsOld/Wall/Meshes/P_wall_end + Materials: + 31e238b8d8a76a43ae0d06492a9913b5~0: 0d9c0fb7-4927-4400-b598-3d44026fdbbc:PropsOld/Wall/Textures/wall_rust + Base: + BasePartAsset: 3bac8993-d282-4c81-8305-d2f2a55bcdbc:PropsOld/Wall/P_wall_X_rust + BasePartId: 8b246af5-aa84-4232-a57e-b248bd6fb106 + InstanceId: 8d8f2aea-85ef-406d-927e-48da80d992d3 diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Cornerc.xkprefab b/Starbreach/Assets/Shared/PropsOld/Wall/Cornerc.xkprefab new file mode 100644 index 0000000..8085210 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Cornerc.xkprefab @@ -0,0 +1,42 @@ +!PrefabAsset +Id: f92124e0-d8a8-421d-8be6-e61a4c34a73f +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! b16abaaa-0296-4f38-b795-1c910f791138 + Parts: + - Entity: + Id: b16abaaa-0296-4f38-b795-1c910f791138 + Name: Corner + Components: + 2276e4075092da4c9fad7d2fbb07d0d2: !TransformComponent + Id: 07e47622-9250-4cda-9fad-7d2fbb07d0d2 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 9340f8bff4eec5438ea02c9294ed1594: !ModelComponent + Id: bff84093-eef4-43c5-8ea0-2c9294ed1594 + Model: null + Materials: {} + a23a0118a17f024c9695ce3d10e8df81: !StaticColliderComponent + Id: 18013aa2-7fa1-4c02-9695-ce3d10e8df81 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + b3d81ad805ada44ca541ce41ed523d04: !BoxColliderShapeDesc + Is2D: false + Size: {X: 2.0, Y: 2.5, Z: 1.0} + LocalOffset: {X: 0.0, Y: 1.0, Z: 0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + df459e492a9b0844ad522a53a3bc43e3: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 2.5, Z: 1.0} + LocalOffset: {X: 0.5, Y: 1.0, Z: 1.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall2.xkm3d b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall2.xkm3d new file mode 100644 index 0000000..8a5d820 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall2.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 26bddf64-02aa-4892-b21b-2962c5974ad1 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall2/Meshes/P_wall2.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + fe0f722b28c564ae044289ea044289ea: + Name: Material + MaterialInstance: + Material: 03755e4d-7d6b-4378-8e48-6518d5eb06e9:PropsOld/Wall/Textures/P_wall2_clean +Skeleton: null +~SourceHashes: + a331f195b48e88ea5cbe1c3dd5d6012c~../../../Props/Wall2/Meshes/P_wall2.FBX: 4fd562e77765b41840722d6a816d315e diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall2_x2.xkm3d b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall2_x2.xkm3d new file mode 100644 index 0000000..b606c3c --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall2_x2.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 9b52787d-e483-4f51-97e8-c9652de1e58d +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall2/Meshes/P_wall2_x2.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + fe0f722b28c564ae044289ea044289ea: + Name: Material + MaterialInstance: + Material: null +Skeleton: null +~SourceHashes: + d39e88faac6219f600d42bde66fb3c60~../../../Props/Wall2/Meshes/P_wall2_x2.FBX: 10260d24de5993e848d31f3858fcbd93 diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall2_x3.xkm3d b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall2_x3.xkm3d new file mode 100644 index 0000000..e76d6a6 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall2_x3.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 8ee6d39b-001b-41d1-a37d-3f6b0f5f3c48 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall2/Meshes/P_wall2_x3.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + fe0f722b28c564ae044289ea044289ea: + Name: Material + MaterialInstance: + Material: null +Skeleton: null +~SourceHashes: + 35ae8f5dd285098c4cfab2a0c5193948~../../../Props/Wall2/Meshes/P_wall2_x3.FBX: f61643f574cb1ed51c201cb34784c127 diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall2_x4.xkm3d b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall2_x4.xkm3d new file mode 100644 index 0000000..6dedbe2 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall2_x4.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 046aba91-078a-40a6-bbe7-aad174b02de0 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall2/Meshes/P_wall2_x4.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + fe0f722b28c564ae044289ea044289ea: + Name: Material + MaterialInstance: + Material: null +Skeleton: null +~SourceHashes: + b948fb50640f4737ef0e9c2b44aaa9ab~../../../Props/Wall2/Meshes/P_wall2_x4.FBX: 1d6e9207f933be84f7137427c8da0e97 diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_I.xkm3d b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_I.xkm3d new file mode 100644 index 0000000..c84d31e --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_I.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 6f08e78b-ba69-43ac-bcd4-8ff3abe8760a +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall/Meshes/P_wall_I.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + fe0f722b28c564ae044289ea044289ea: + Name: Material + MaterialInstance: + Material: null +Skeleton: null +~SourceHashes: + 41238c44b9db1c2a3d74b029faf5cb79~../../../Props/Wall/Meshes/P_wall_I.FBX: 00000000000000000000000000000000 diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_L.xkm3d b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_L.xkm3d new file mode 100644 index 0000000..59c04f2 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_L.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: c032cac6-3f84-4312-bae8-5db3e585b989 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall/Meshes/P_wall_L.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + fe0f722b28c564ae044289ea044289ea: + Name: Material + MaterialInstance: + Material: null +Skeleton: null +~SourceHashes: + 0b5386a6f72d39be2d5e9f0bdb6e7b2c~../../../Props/Wall/Meshes/P_wall_L.FBX: 00000000000000000000000000000000 diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_T.xkm3d b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_T.xkm3d new file mode 100644 index 0000000..ff9c462 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_T.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 0bf5846f-8ea2-4b17-bf4f-e46396bf392f +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall/Meshes/P_wall_T.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + fe0f722b28c564ae044289ea044289ea: + Name: Material + MaterialInstance: + Material: null +Skeleton: null +~SourceHashes: + b2718600ed1813bb8dbac25d6cdfd973~../../../Props/Wall/Meshes/P_wall_T.FBX: 00000000000000000000000000000000 diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_X.xkm3d b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_X.xkm3d new file mode 100644 index 0000000..44c026c --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_X.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 6b35d8d5-eb8f-478a-8fdb-31c4c20e9ecc +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall/Meshes/P_wall_X.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + fe0f722b28c564ae044289ea044289ea: + Name: Material + MaterialInstance: + Material: null +Skeleton: null +~SourceHashes: + 70f24585576ad67d5492bb3f709df373~../../../Props/Wall/Meshes/P_wall_X.FBX: 00000000000000000000000000000000 diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_cap.xkm3d b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_cap.xkm3d new file mode 100644 index 0000000..15f472f --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_cap.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 7912af33-2365-4cc0-be49-4f175c901fb5 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall/Meshes/P_wall_cap.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + fe0f722b28c564ae044289ea044289ea: + Name: Material + MaterialInstance: + Material: null +Skeleton: null +~SourceHashes: + f2c79238fdb876b20343c85951faa7c2~../../../Props/Wall/Meshes/P_wall_cap.FBX: dec004c903709dcc63132dc1cb5da61b diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_end.xkm3d b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_end.xkm3d new file mode 100644 index 0000000..25d5620 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_end.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: e99c64c1-a606-4c30-a535-17d2cde88dfd +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall/Meshes/P_wall_end.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + fe0f722b28c564ae044289ea044289ea: + Name: Material + MaterialInstance: + Material: null +Skeleton: null +~SourceHashes: + f13127a33c10054b4656cdfe4c9b909b~../../../Props/Wall/Meshes/P_wall_end.FBX: 00000000000000000000000000000000 diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_end2.xkm3d b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_end2.xkm3d new file mode 100644 index 0000000..7e9d892 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_end2.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 245456dd-969c-4a93-bb5e-5b23755376cb +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall/Meshes/P_wall_end2.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + fe0f722b28c564ae044289ea044289ea: + Name: Material + MaterialInstance: + Material: null +Skeleton: null +~SourceHashes: + a4e8d3d3ab776de5eb5eb7654dadcfd0~../../../Props/Wall/Meshes/P_wall_end2.FBX: 00000000000000000000000000000000 diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_seg.xkm3d b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_seg.xkm3d new file mode 100644 index 0000000..d3bcf9f --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_seg.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 1258a62c-c6b5-4b44-84fc-adfe6ecdf910 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall/Meshes/P_wall_seg.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + fe0f722b28c564ae044289ea044289ea: + Name: Material + MaterialInstance: + Material: null +Skeleton: null +~SourceHashes: + 031b0e27bdbd07de85d60c306fdd9452~../../../Props/Wall/Meshes/P_wall_seg.FBX: 00000000000000000000000000000000 diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_tube_I.xkm3d b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_tube_I.xkm3d new file mode 100644 index 0000000..cc94bf6 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_tube_I.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: c6a447f9-775a-4726-a733-e69897aeb090 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall/Meshes/P_wall_tube_I.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + fe0f722b28c564ae044289ea044289ea: + Name: Material + MaterialInstance: + Material: null +Skeleton: null +~SourceHashes: + 4ca5be4c1d4a0b92edf1cc6ce817703d~../../../Props/Wall/Meshes/P_wall_tube_I.FBX: 687218bd9d1ab1ad5c517a702022ac38 diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_tube_U.xkm3d b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_tube_U.xkm3d new file mode 100644 index 0000000..aed9fa5 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_tube_U.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 4dc8839a-9ea2-4727-9564-6708fd7cc727 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall/Meshes/P_wall_tube_U.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + fe0f722b28c564ae044289ea044289ea: + Name: Material + MaterialInstance: + Material: null +Skeleton: null +~SourceHashes: + 0048de7985396d13868ce2f45c68ade1~../../../Props/Wall/Meshes/P_wall_tube_U.FBX: 01e5425163f8f18515a6d8bc60bbf43f diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_tube_Z.xkm3d b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_tube_Z.xkm3d new file mode 100644 index 0000000..2dc199b --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_tube_Z.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 26f9b146-ddff-4aae-a321-42f7e86a7541 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall/Meshes/P_wall_tube_Z.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + fe0f722b28c564ae044289ea044289ea: + Name: Material + MaterialInstance: + Material: null +Skeleton: null +~SourceHashes: + d2edcf0dad69480d7bec30e35d50f6c8~../../../Props/Wall/Meshes/P_wall_tube_Z.FBX: 176697ff5693babbf7939fb1be43907e diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_tube_Z2.xkm3d b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_tube_Z2.xkm3d new file mode 100644 index 0000000..fab569e --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_tube_Z2.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 9871a7b6-e77b-43cc-bee2-5140a380adfc +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall/Meshes/P_wall_tube_Z2.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + fe0f722b28c564ae044289ea044289ea: + Name: Material + MaterialInstance: + Material: null +Skeleton: null +~SourceHashes: + 9bd21791b6f57a2c4034862048e57e76~../../../Props/Wall/Meshes/P_wall_tube_Z2.FBX: 51edd453a929f0c263f5d0e598eb1cff diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_tube_conector.xkm3d b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_tube_conector.xkm3d new file mode 100644 index 0000000..149d962 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_tube_conector.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 7d1af772-77f7-4269-b42a-f18cade29935 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall/Meshes/P_wall_tube_conector.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + fe0f722b28c564ae044289ea044289ea: + Name: Material + MaterialInstance: + Material: null +Skeleton: null +~SourceHashes: + 2899bdf4e8c81cbf9597f88d8ba5a33b~../../../Props/Wall/Meshes/P_wall_tube_conector.FBX: ca32e94e4b8e14ae4b865e4f1b0fe5f4 diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_tube_conector_L.xkm3d b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_tube_conector_L.xkm3d new file mode 100644 index 0000000..19941f4 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Meshes/P_wall_tube_conector_L.xkm3d @@ -0,0 +1,14 @@ +!Model +Id: 9d6c7a9b-c609-45e8-aabe-23f98e30fb70 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall/Meshes/P_wall_tube_conector_L.FBX +PivotPosition: {X: 0.0, Y: 0.0, Z: 0.0} +Materials: + fe0f722b28c564ae044289ea044289ea: + Name: Material + MaterialInstance: + Material: null +Skeleton: null +~SourceHashes: + 92dec62082647218e98df94b32790120~../../../Props/Wall/Meshes/P_wall_tube_conector_L.FBX: bd67e8fcacd8d985c32e40cb2ec6a002 diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/P_wall2_1.xkprefab b/Starbreach/Assets/Shared/PropsOld/Wall/P_wall2_1.xkprefab new file mode 100644 index 0000000..b92de65 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/P_wall2_1.xkprefab @@ -0,0 +1,103 @@ +!PrefabAsset +Id: 3c42181b-1809-4f12-b415-298548e152ba +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 80a32a91-c05b-4b55-bf4a-bf44b8c10e1c + - ref!! 6657fcbd-8788-469f-81dc-819173fd02a9 + - ref!! 747f824d-0e8d-4a3c-924e-2ef79402c1c2 + - ref!! d75d35ca-5a16-4275-be8e-1c448303b3e7 + - ref!! cdf2e88a-b591-46ba-bb54-62f8b5bbd3a5 + - ref!! 4ac8edf8-ea9b-4df7-b64f-24b7514971ee + Parts: + - Entity: + Id: 4ac8edf8-ea9b-4df7-b64f-24b7514971ee + Name: P_wall_tube_conector (2) + Components: + c63c3b005dbacc458668ad5093f71ad8: !TransformComponent + Id: 003b3cc6-ba5d-45cc-8668-ad5093f71ad8 + Position: {X: 0.0, Y: 1.58477676, Z: 0.4885785} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 42d011ef47fab94ca8502148cac94096: !ModelComponent + Id: ef11d042-fa47-4cb9-a850-2148cac94096 + Model: 7d1af772-77f7-4269-b42a-f18cade29935:PropsOld/Wall/Meshes/P_wall_tube_conector + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: 6657fcbd-8788-469f-81dc-819173fd02a9 + Name: P_wall_tube_Z + Components: + 17dbd2f633e45a4fb59cf47e55d2cb51: !TransformComponent + Id: f6d2db17-e433-4f5a-b59c-f47e55d2cb51 + Position: {X: 0.0, Y: 1.07, Z: -0.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 838412cf669209428d8dca2386b68cf8: !ModelComponent + Id: cf128483-9266-4209-8d8d-ca2386b68cf8 + Model: 26f9b146-ddff-4aae-a321-42f7e86a7541:PropsOld/Wall/Meshes/P_wall_tube_Z + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: 747f824d-0e8d-4a3c-924e-2ef79402c1c2 + Name: P_wall_tube_Z (2) + Components: + 17dbd2f633e45a4fb59cf47e55d2cb51: !TransformComponent + Id: 602aa004-1ea1-4929-b01d-7527a8cf2005 + Position: {X: 0.0, Y: 1.07, Z: -0.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 838412cf669209428d8dca2386b68cf8: !ModelComponent + Id: 3cf6de01-cc63-4286-bd93-7db8fe80cba8 + Model: 26f9b146-ddff-4aae-a321-42f7e86a7541:PropsOld/Wall/Meshes/P_wall_tube_Z + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: 80a32a91-c05b-4b55-bf4a-bf44b8c10e1c + Name: P_wall2 + Components: + 75647a4cad268a4e915c16577c76a543: !TransformComponent + Id: 4c7a6475-26ad-4e8a-915c-16577c76a543 + Position: {X: 0.0, Y: -2.38418579E-07, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + cd84ff3a4e7e00438d00d10da3e90b48: !ModelComponent + Id: 3aff84cd-7e4e-4300-8d00-d10da3e90b48 + Model: 26bddf64-02aa-4892-b21b-2962c5974ad1:PropsOld/Wall/Meshes/P_wall2 + Materials: + ca06317b74c0da4585e1d0dec73f8ee3~0: 03755e4d-7d6b-4378-8e48-6518d5eb06e9:PropsOld/Wall/Textures/P_wall2_clean + - Entity: + Id: cdf2e88a-b591-46ba-bb54-62f8b5bbd3a5 + Name: P_wall_tube_Z2 + Components: + d45eb719a804b547b9a42f1046c9a111: !TransformComponent + Id: 19b75ed4-04a8-47b5-b9a4-2f1046c9a111 + Position: {X: 0.0, Y: 1.07, Z: -0.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 1d6546067414334bb405b158b7fca749: !ModelComponent + Id: 0646651d-1474-4b33-b405-b158b7fca749 + Model: 9871a7b6-e77b-43cc-bee2-5140a380adfc:PropsOld/Wall/Meshes/P_wall_tube_Z2 + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: d75d35ca-5a16-4275-be8e-1c448303b3e7 + Name: P_wall_tube_conector + Components: + c63c3b005dbacc458668ad5093f71ad8: !TransformComponent + Id: f7c3026e-fe20-4687-b627-fa2277d79e08 + Position: {X: 0.0, Y: 1.0689373, Z: -0.5018324} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 42d011ef47fab94ca8502148cac94096: !ModelComponent + Id: c23b8864-766c-4169-bbaf-9e4c1cec3ae8 + Model: 7d1af772-77f7-4269-b42a-f18cade29935:PropsOld/Wall/Meshes/P_wall_tube_conector + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/P_wall2_3_damaged.xkprefab b/Starbreach/Assets/Shared/PropsOld/Wall/P_wall2_3_damaged.xkprefab new file mode 100644 index 0000000..296d7e6 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/P_wall2_3_damaged.xkprefab @@ -0,0 +1,151 @@ +!PrefabAsset +Id: 58be8d5a-3b1d-49e5-95ce-ce74887de36e +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 747f824d-0e8d-4a3c-924e-2ef79402c1c2 + - ref!! d75d35ca-5a16-4275-be8e-1c448303b3e7 + - ref!! cdf2e88a-b591-46ba-bb54-62f8b5bbd3a5 + - ref!! 4ac8edf8-ea9b-4df7-b64f-24b7514971ee + - ref!! be8102d7-d0f6-435e-9f9d-ec584580b73f + - ref!! 199190d6-2eab-4167-95e8-b64aa27b501f + - ref!! b17b1dfd-0101-46cd-b284-d5e225d02cbf + - ref!! a3c3216f-b569-40a7-85dc-10aa1c40eb56 + - ref!! 6e79e486-0a8d-40d1-ab95-25e43fcbc748 + Parts: + - Entity: + Id: 199190d6-2eab-4167-95e8-b64aa27b501f + Name: P_wall_tube_I + Components: + ec7929a78bda434aa5baa788cc2179cf: !TransformComponent + Id: a72979ec-da8b-4a43-a5ba-a788cc2179cf + Position: {X: -0.499999881, Y: 1.07, Z: -0.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 5070d7658e624e49938c5791e717585d: !ModelComponent + Id: 65d77050-628e-494e-938c-5791e717585d + Model: c6a447f9-775a-4726-a733-e69897aeb090:PropsOld/Wall/Meshes/P_wall_tube_I + Materials: + a9e010837e21594b83c180d4250f9daa~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: 4ac8edf8-ea9b-4df7-b64f-24b7514971ee + Name: P_wall_tube_conector (2) + Components: + c63c3b005dbacc458668ad5093f71ad8: !TransformComponent + Id: 003b3cc6-ba5d-45cc-8668-ad5093f71ad8 + Position: {X: 0.5, Y: 1.58477676, Z: 0.4885785} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 42d011ef47fab94ca8502148cac94096: !ModelComponent + Id: ef11d042-fa47-4cb9-a850-2148cac94096 + Model: 7d1af772-77f7-4269-b42a-f18cade29935:PropsOld/Wall/Meshes/P_wall_tube_conector + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: 6e79e486-0a8d-40d1-ab95-25e43fcbc748 + Name: P_wall_tube_conector (4) + Components: + c63c3b005dbacc458668ad5093f71ad8: !TransformComponent + Id: 4596ab62-eedf-49df-b6da-e767afcf42e9 + Position: {X: -0.5, Y: 1.58477676, Z: 0.4885785} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 42d011ef47fab94ca8502148cac94096: !ModelComponent + Id: 2c5cfb66-a3ef-49ac-9611-61a976df2c89 + Model: 7d1af772-77f7-4269-b42a-f18cade29935:PropsOld/Wall/Meshes/P_wall_tube_conector + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: 747f824d-0e8d-4a3c-924e-2ef79402c1c2 + Name: P_wall_tube_Z (2) + Components: + 17dbd2f633e45a4fb59cf47e55d2cb51: !TransformComponent + Id: f6d2db17-e433-4f5a-b59c-f47e55d2cb51 + Position: {X: 0.5, Y: 1.07, Z: -0.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 838412cf669209428d8dca2386b68cf8: !ModelComponent + Id: cf128483-9266-4209-8d8d-ca2386b68cf8 + Model: 26f9b146-ddff-4aae-a321-42f7e86a7541:PropsOld/Wall/Meshes/P_wall_tube_Z + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: a3c3216f-b569-40a7-85dc-10aa1c40eb56 + Name: P_wall_tube_I (2) + Components: + ec7929a78bda434aa5baa788cc2179cf: !TransformComponent + Id: 037a4d3a-72f5-4dc2-b0e5-66ef199924a7 + Position: {X: -0.499999881, Y: 1.58431089, Z: 0.482759923} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 5070d7658e624e49938c5791e717585d: !ModelComponent + Id: e9d1e3cc-8f5e-4ac9-8ce0-b9125498dbef + Model: c6a447f9-775a-4726-a733-e69897aeb090:PropsOld/Wall/Meshes/P_wall_tube_I + Materials: + a9e010837e21594b83c180d4250f9daa~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: b17b1dfd-0101-46cd-b284-d5e225d02cbf + Name: P_wall_tube_conector (3) + Components: + c63c3b005dbacc458668ad5093f71ad8: !TransformComponent + Id: f4135b1f-1378-4dc9-95ea-48c368b3a1c6 + Position: {X: -0.49999994, Y: 1.0689373, Z: -0.5018324} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 42d011ef47fab94ca8502148cac94096: !ModelComponent + Id: b217cb3f-4eff-4c4f-881a-a74cc177b11f + Model: 7d1af772-77f7-4269-b42a-f18cade29935:PropsOld/Wall/Meshes/P_wall_tube_conector + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: be8102d7-d0f6-435e-9f9d-ec584580b73f + Name: P_wall2_x3 + Components: + ac1395906fc04d4b86b7ed9b10415f26: !TransformComponent + Id: 909513ac-c06f-4b4d-86b7-ed9b10415f26 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + acaf328f38ca224fa4ddfd953e29a4e3: !ModelComponent + Id: 8f32afac-ca38-4f22-a4dd-fd953e29a4e3 + Model: 8ee6d39b-001b-41d1-a37d-3f6b0f5f3c48:PropsOld/Wall/Meshes/P_wall2_x3 + Materials: + 13ccfb340777ac4ea2dc2ee68f8e1807~0: 9cbf1d49-f897-4cc4-96a5-54c03a14e6ff:PropsOld/Wall/Textures/P_wall2_damaged + - Entity: + Id: cdf2e88a-b591-46ba-bb54-62f8b5bbd3a5 + Name: P_wall_tube_Z2 + Components: + d45eb719a804b547b9a42f1046c9a111: !TransformComponent + Id: 19b75ed4-04a8-47b5-b9a4-2f1046c9a111 + Position: {X: -0.5, Y: 1.07, Z: -0.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 1d6546067414334bb405b158b7fca749: !ModelComponent + Id: 0646651d-1474-4b33-b405-b158b7fca749 + Model: 9871a7b6-e77b-43cc-bee2-5140a380adfc:PropsOld/Wall/Meshes/P_wall_tube_Z2 + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: d75d35ca-5a16-4275-be8e-1c448303b3e7 + Name: P_wall_tube_conector + Components: + c63c3b005dbacc458668ad5093f71ad8: !TransformComponent + Id: 556268fa-3084-470c-8aae-d5fa89c0bc7b + Position: {X: 0.5, Y: 1.0689373, Z: -0.5018324} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 42d011ef47fab94ca8502148cac94096: !ModelComponent + Id: 9423c686-1e69-4fbe-9550-1389573ec8ab + Model: 7d1af772-77f7-4269-b42a-f18cade29935:PropsOld/Wall/Meshes/P_wall_tube_conector + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/P_wall2_damaged.xkprefab b/Starbreach/Assets/Shared/PropsOld/Wall/P_wall2_damaged.xkprefab new file mode 100644 index 0000000..96cd69c --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/P_wall2_damaged.xkprefab @@ -0,0 +1,87 @@ +!PrefabAsset +Id: f64d544d-ed23-4670-84e7-0093c0d3a185 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 80a32a91-c05b-4b55-bf4a-bf44b8c10e1c + - ref!! 6657fcbd-8788-469f-81dc-819173fd02a9 + - ref!! d75d35ca-5a16-4275-be8e-1c448303b3e7 + - ref!! cdf2e88a-b591-46ba-bb54-62f8b5bbd3a5 + - ref!! 4ac8edf8-ea9b-4df7-b64f-24b7514971ee + Parts: + - Entity: + Id: 4ac8edf8-ea9b-4df7-b64f-24b7514971ee + Name: P_wall_tube_conector (2) + Components: + c63c3b005dbacc458668ad5093f71ad8: !TransformComponent + Id: 003b3cc6-ba5d-45cc-8668-ad5093f71ad8 + Position: {X: 0.0, Y: 1.58477676, Z: 0.4885785} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 42d011ef47fab94ca8502148cac94096: !ModelComponent + Id: ef11d042-fa47-4cb9-a850-2148cac94096 + Model: 7d1af772-77f7-4269-b42a-f18cade29935:PropsOld/Wall/Meshes/P_wall_tube_conector + Materials: + a9e8ac55c94d9b46868d709260696c91~0: 0d9c0fb7-4927-4400-b598-3d44026fdbbc:PropsOld/Wall/Textures/wall_rust + - Entity: + Id: 6657fcbd-8788-469f-81dc-819173fd02a9 + Name: P_wall_tube_Z + Components: + 17dbd2f633e45a4fb59cf47e55d2cb51: !TransformComponent + Id: f6d2db17-e433-4f5a-b59c-f47e55d2cb51 + Position: {X: 0.0, Y: 1.07, Z: -0.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 838412cf669209428d8dca2386b68cf8: !ModelComponent + Id: cf128483-9266-4209-8d8d-ca2386b68cf8 + Model: 26f9b146-ddff-4aae-a321-42f7e86a7541:PropsOld/Wall/Meshes/P_wall_tube_Z + Materials: + a9e8ac55c94d9b46868d709260696c91~0: 0d9c0fb7-4927-4400-b598-3d44026fdbbc:PropsOld/Wall/Textures/wall_rust + - Entity: + Id: 80a32a91-c05b-4b55-bf4a-bf44b8c10e1c + Name: P_wall2 + Components: + 75647a4cad268a4e915c16577c76a543: !TransformComponent + Id: 4c7a6475-26ad-4e8a-915c-16577c76a543 + Position: {X: 0.0, Y: -2.38418579E-07, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + cd84ff3a4e7e00438d00d10da3e90b48: !ModelComponent + Id: 3aff84cd-7e4e-4300-8d00-d10da3e90b48 + Model: 26bddf64-02aa-4892-b21b-2962c5974ad1:PropsOld/Wall/Meshes/P_wall2 + Materials: + 13ccfb340777ac4ea2dc2ee68f8e1807~0: 9cbf1d49-f897-4cc4-96a5-54c03a14e6ff:PropsOld/Wall/Textures/P_wall2_damaged + - Entity: + Id: cdf2e88a-b591-46ba-bb54-62f8b5bbd3a5 + Name: P_wall_tube_Z2 + Components: + d45eb719a804b547b9a42f1046c9a111: !TransformComponent + Id: 19b75ed4-04a8-47b5-b9a4-2f1046c9a111 + Position: {X: 0.0, Y: 1.07, Z: -0.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 1d6546067414334bb405b158b7fca749: !ModelComponent + Id: 0646651d-1474-4b33-b405-b158b7fca749 + Model: 9871a7b6-e77b-43cc-bee2-5140a380adfc:PropsOld/Wall/Meshes/P_wall_tube_Z2 + Materials: + a9e8ac55c94d9b46868d709260696c91~0: 0d9c0fb7-4927-4400-b598-3d44026fdbbc:PropsOld/Wall/Textures/wall_rust + - Entity: + Id: d75d35ca-5a16-4275-be8e-1c448303b3e7 + Name: P_wall_tube_conector + Components: + c63c3b005dbacc458668ad5093f71ad8: !TransformComponent + Id: f2b4bcc7-0632-4d8c-901f-c9d1306c6c14 + Position: {X: 0.0, Y: 1.0689373, Z: -0.5018324} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 42d011ef47fab94ca8502148cac94096: !ModelComponent + Id: 032be5ad-df64-4121-bb5a-492deda756bf + Model: 7d1af772-77f7-4269-b42a-f18cade29935:PropsOld/Wall/Meshes/P_wall_tube_conector + Materials: + a9e8ac55c94d9b46868d709260696c91~0: 0d9c0fb7-4927-4400-b598-3d44026fdbbc:PropsOld/Wall/Textures/wall_rust diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/P_wall_X (2).xkprefab b/Starbreach/Assets/Shared/PropsOld/Wall/P_wall_X (2).xkprefab new file mode 100644 index 0000000..36a0350 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/P_wall_X (2).xkprefab @@ -0,0 +1,23 @@ +!PrefabAsset +Id: af5f9df1-3fdc-462e-a3cc-10f7747cdb87 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 2487726a-0be7-4b5b-b89b-cc73627ac945 + Parts: + - Entity: + Id: 2487726a-0be7-4b5b-b89b-cc73627ac945 + Name: P_wall_X + Components: + b64542714471bd4ea5e2b0e95406eaf4: !TransformComponent + Id: 714245b6-7144-4ebd-a5e2-b0e95406eaf4 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d7aad544634b6e47a5ce0f576aeefaf8: !ModelComponent + Id: 44d5aad7-4b63-476e-a5ce-0f576aeefaf8 + Model: 6b35d8d5-eb8f-478a-8fdb-31c4c20e9ecc:PropsOld/Wall/Meshes/P_wall_X + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/P_wall_X.xkprefab b/Starbreach/Assets/Shared/PropsOld/Wall/P_wall_X.xkprefab new file mode 100644 index 0000000..2d4bad5 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/P_wall_X.xkprefab @@ -0,0 +1,407 @@ +!PrefabAsset +Id: 73016cba-533a-4ab9-92ce-4726e6988e7c +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 2487726a-0be7-4b5b-b89b-cc73627ac945 + - ref!! 8b246af5-aa84-4232-a57e-b248bd6fb106 + - ref!! ff2a0d19-a546-4402-8476-8f738ccf447e + - ref!! 2c4f6ef1-9a33-4b25-8268-9539825572b3 + - ref!! 616c11e1-488a-45d1-a238-b13f18017425 + - ref!! eb9745d1-69a1-47f8-b532-389481c7beda + - ref!! 82a4fd78-e776-4ffd-b687-b5f21bb4dcd4 + - ref!! 8ad59f64-9faa-4059-8d1f-26fd54959118 + - ref!! 2b53d6ba-2712-4315-abb9-5c03039f5cf1 + - ref!! 73b5711b-5feb-44b9-8af8-e9894d874b3b + - ref!! 02af72cb-81c5-4ad6-a3bd-da1dbe30edad + - ref!! 787518a6-ec10-4742-8aa0-ec923b7ce864 + - ref!! d994b83d-767e-4d32-ba32-feba99300b71 + - ref!! 4198c8c8-94c5-45bf-a5ec-ce911ba9ecf2 + - ref!! cfdcc402-f53d-4623-9343-49f48bfe4329 + - ref!! 7182f336-78d7-4454-aa3f-7eb311f75a48 + - ref!! 125bdbd1-d611-4fe9-b2af-3e8023eff6a6 + - ref!! 6e470c34-3a75-4f9e-835e-08269233db7d + - ref!! 81f38663-eb90-4cf2-98ae-c39de7b6647d + - ref!! a927e6e2-dc89-431f-920c-5f707661deda + - ref!! 963754ca-2d94-4914-87cb-30964dd2c72a + - ref!! ad49bb83-c61d-48f4-991d-b06000c95a98 + - ref!! 577a6bef-5d23-4760-94e2-e318b6ab08fa + - ref!! 404c0b27-8c9d-4224-ab9b-97de20f9b334 + - ref!! e15a2abb-5ab8-4fa1-b771-3f3a0ee3752f + Parts: + - Entity: + Id: 02af72cb-81c5-4ad6-a3bd-da1dbe30edad + Name: P_wall_tube_conector_L (2) + Components: + fd583d079f37af4594c005b921b8f5b1: !TransformComponent + Id: 073d58fd-379f-45af-94c0-05b921b8f5b1 + Position: {X: 1.0, Y: 1.55, Z: 1.0} + Rotation: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e5de8274fdcc444cb52600d7c047b9bb: !ModelComponent + Id: 7482dee5-ccfd-4c44-b526-00d7c047b9bb + Model: 9d6c7a9b-c609-45e8-aabe-23f98e30fb70:PropsOld/Wall/Meshes/P_wall_tube_conector_L + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: 125bdbd1-d611-4fe9-b2af-3e8023eff6a6 + Name: P_wall_cap (2) + Components: + e212ae7b05de0a4394585da10b83701b: !TransformComponent + Id: 7bae12e2-de05-430a-9458-5da10b83701b + Position: {X: 0.3007442, Y: 2.17, Z: -0.6745397} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c02ffd559c106145bd5594cac66c73a6: !ModelComponent + Id: 55fd2fc0-109c-4561-bd55-94cac66c73a6 + Model: 7912af33-2365-4cc0-be49-4f175c901fb5:PropsOld/Wall/Meshes/P_wall_cap + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: 2487726a-0be7-4b5b-b89b-cc73627ac945 + Name: P_wall_X + Components: + b64542714471bd4ea5e2b0e95406eaf4: !TransformComponent + Id: 714245b6-7144-4ebd-a5e2-b0e95406eaf4 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d7aad544634b6e47a5ce0f576aeefaf8: !ModelComponent + Id: 44d5aad7-4b63-476e-a5ce-0f576aeefaf8 + Model: 6b35d8d5-eb8f-478a-8fdb-31c4c20e9ecc:PropsOld/Wall/Meshes/P_wall_X + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: 2b53d6ba-2712-4315-abb9-5c03039f5cf1 + Name: P_wall_tube_U (3) + Components: + 12cfd59b4cfec3438c267ae5269cd7f7: !TransformComponent + Id: 9bd5cf12-fe4c-43c3-8c26-7ae5269cd7f7 + Position: {X: 1.00000024, Y: 1.55, Z: -5.96046448E-08} + Rotation: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3d93903657654f4196ec3b63e6ceef70: !ModelComponent + Id: 3690933d-6557-414f-96ec-3b63e6ceef70 + Model: 4dc8839a-9ea2-4727-9564-6708fd7cc727:PropsOld/Wall/Meshes/P_wall_tube_U + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: 2c4f6ef1-9a33-4b25-8268-9539825572b3 + Name: P_wall_end (3) + Components: + eea5232e3a31fa4c9aeee0b64d77e9b0: !TransformComponent + Id: 2e23a5ee-313a-4cfa-9aee-e0b64d77e9b0 + Position: {X: 0.0, Y: 0.0, Z: 1.0} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + fe83c02c163e3041820e4e943213f620: !ModelComponent + Id: 2cc083fe-3e16-4130-820e-4e943213f620 + Model: e99c64c1-a606-4c30-a535-17d2cde88dfd:PropsOld/Wall/Meshes/P_wall_end + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: 404c0b27-8c9d-4224-ab9b-97de20f9b334 + Name: P_wall_cap (8) + Components: + e212ae7b05de0a4394585da10b83701b: !TransformComponent + Id: 7a738577-7a71-4a60-9afe-67a7021c54db + Position: {X: 1.7145443, Y: 2.17, Z: 0.294247359} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c02ffd559c106145bd5594cac66c73a6: !ModelComponent + Id: 752f6df2-3f46-4b4f-8647-cf471f5cb34c + Model: 7912af33-2365-4cc0-be49-4f175c901fb5:PropsOld/Wall/Meshes/P_wall_cap + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: 4198c8c8-94c5-45bf-a5ec-ce911ba9ecf2 + Name: P_wall_cap + Components: + e212ae7b05de0a4394585da10b83701b: !TransformComponent + Id: bf1e02fb-1973-400a-b935-a9b9ffb83fd0 + Position: {X: 0.710801542, Y: 2.17, Z: -0.6745397} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c02ffd559c106145bd5594cac66c73a6: !ModelComponent + Id: 2af76b74-2a23-4f66-bddc-2a9b84ef811e + Model: 7912af33-2365-4cc0-be49-4f175c901fb5:PropsOld/Wall/Meshes/P_wall_cap + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: 577a6bef-5d23-4760-94e2-e318b6ab08fa + Name: P_wall_cap (7) + Components: + e212ae7b05de0a4394585da10b83701b: !TransformComponent + Id: a7c7c139-c21f-4325-98e4-b93f8479fa55 + Position: {X: -0.6840113, Y: 2.17, Z: 0.294247359} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c02ffd559c106145bd5594cac66c73a6: !ModelComponent + Id: 3820d1b1-6758-4c82-8c8d-9e775a62a2ab + Model: 7912af33-2365-4cc0-be49-4f175c901fb5:PropsOld/Wall/Meshes/P_wall_cap + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: 616c11e1-488a-45d1-a238-b13f18017425 + Name: P_wall_end (4) + Components: + eea5232e3a31fa4c9aeee0b64d77e9b0: !TransformComponent + Id: 8eb5cb13-501b-4dc9-afe1-a964f4dbcdad + Position: {X: 1.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + fe83c02c163e3041820e4e943213f620: !ModelComponent + Id: 67aff771-d51c-44f5-a13c-c1ea9807b0cb + Model: e99c64c1-a606-4c30-a535-17d2cde88dfd:PropsOld/Wall/Meshes/P_wall_end + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: 6e470c34-3a75-4f9e-835e-08269233db7d + Name: P_wall_seg (3) + Components: + a4e332b0078f6c4b8f8a715884c2bde0: !TransformComponent + Id: b032e3a4-8f07-4b6c-8f8a-715884c2bde0 + Position: {X: 0.5000001, Y: 0.0, Z: -0.99999994} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 4678bb4dde1249489c0444cfa9a54bb8: !ModelComponent + Id: 4dbb7846-12de-4849-9c04-44cfa9a54bb8 + Model: 1258a62c-c6b5-4b44-84fc-adfe6ecdf910:PropsOld/Wall/Meshes/P_wall_seg + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: 7182f336-78d7-4454-aa3f-7eb311f75a48 + Name: P_wall_seg (2) + Components: + a4e332b0078f6c4b8f8a715884c2bde0: !TransformComponent + Id: 5e55aba0-a4fe-49ec-b4d8-eb72a1b53925 + Position: {X: 0.5, Y: 0.0, Z: 2.0} + Rotation: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 4678bb4dde1249489c0444cfa9a54bb8: !ModelComponent + Id: 00ff5f71-b057-42de-a034-09ac8287918d + Model: 1258a62c-c6b5-4b44-84fc-adfe6ecdf910:PropsOld/Wall/Meshes/P_wall_seg + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: 73b5711b-5feb-44b9-8af8-e9894d874b3b + Name: P_wall_tube_U (4) + Components: + 12cfd59b4cfec3438c267ae5269cd7f7: !TransformComponent + Id: 457eb87e-8330-41db-ac55-7b117cbe8c9e + Position: {X: 2.98023224E-07, Y: 1.55, Z: -5.96046448E-08} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3d93903657654f4196ec3b63e6ceef70: !ModelComponent + Id: 7984f77e-c781-4430-b6e1-f94b3d7ce061 + Model: 4dc8839a-9ea2-4727-9564-6708fd7cc727:PropsOld/Wall/Meshes/P_wall_tube_U + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: 787518a6-ec10-4742-8aa0-ec923b7ce864 + Name: P_wall_tube_conector_L (3) + Components: + fd583d079f37af4594c005b921b8f5b1: !TransformComponent + Id: cfe8a92b-401f-4329-996c-bc68e1467d95 + Position: {X: -1.78813934E-07, Y: 1.55, Z: 1.0} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e5de8274fdcc444cb52600d7c047b9bb: !ModelComponent + Id: a604ae41-a760-4b86-a9de-8f776c9b78ee + Model: 9d6c7a9b-c609-45e8-aabe-23f98e30fb70:PropsOld/Wall/Meshes/P_wall_tube_conector_L + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: 81f38663-eb90-4cf2-98ae-c39de7b6647d + Name: P_wall_seg (4) + Components: + a4e332b0078f6c4b8f8a715884c2bde0: !TransformComponent + Id: 0437733e-a6c6-49f5-b70f-2dd0cd6b4d58 + Position: {X: 2.0, Y: 0.0, Z: 0.49999994} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 4678bb4dde1249489c0444cfa9a54bb8: !ModelComponent + Id: a714ff64-02ab-422d-ad8e-2be318caa79d + Model: 1258a62c-c6b5-4b44-84fc-adfe6ecdf910:PropsOld/Wall/Meshes/P_wall_seg + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: 82a4fd78-e776-4ffd-b687-b5f21bb4dcd4 + Name: P_wall_tube_U + Components: + 12cfd59b4cfec3438c267ae5269cd7f7: !TransformComponent + Id: b5ae4c9f-1d17-49ab-9d11-7211ee5c6fe1 + Position: {X: 2.38418579E-07, Y: 1.55, Z: 0.9999999} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3d93903657654f4196ec3b63e6ceef70: !ModelComponent + Id: ea57feee-7cfb-44a6-b022-417a3f0dd3a3 + Model: 4dc8839a-9ea2-4727-9564-6708fd7cc727:PropsOld/Wall/Meshes/P_wall_tube_U + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: 8ad59f64-9faa-4059-8d1f-26fd54959118 + Name: P_wall_tube_U (2) + Components: + 12cfd59b4cfec3438c267ae5269cd7f7: !TransformComponent + Id: a16e1fd9-f54d-4128-9160-5235a1221771 + Position: {X: 1.00000024, Y: 1.55, Z: 0.9999999} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3d93903657654f4196ec3b63e6ceef70: !ModelComponent + Id: 60531d19-e1a9-4655-9939-2230a6e28ea6 + Model: 4dc8839a-9ea2-4727-9564-6708fd7cc727:PropsOld/Wall/Meshes/P_wall_tube_U + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: 8b246af5-aa84-4232-a57e-b248bd6fb106 + Name: P_wall_end + Components: + eea5232e3a31fa4c9aeee0b64d77e9b0: !TransformComponent + Id: ee45d2ce-bae8-45fa-83d7-5d4d8c82f1ac + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + fe83c02c163e3041820e4e943213f620: !ModelComponent + Id: 8d76e092-ff41-4220-98df-4c6ebda6ae9a + Model: e99c64c1-a606-4c30-a535-17d2cde88dfd:PropsOld/Wall/Meshes/P_wall_end + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: 963754ca-2d94-4914-87cb-30964dd2c72a + Name: P_wall_cap (4) + Components: + e212ae7b05de0a4394585da10b83701b: !TransformComponent + Id: 2d96e390-2044-46d6-9684-b2b7f71d4cdc + Position: {X: 0.3007442, Y: 2.17, Z: 1.66093063} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c02ffd559c106145bd5594cac66c73a6: !ModelComponent + Id: 674166ff-ab57-4f57-b67a-d17779e874bc + Model: 7912af33-2365-4cc0-be49-4f175c901fb5:PropsOld/Wall/Meshes/P_wall_cap + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: a927e6e2-dc89-431f-920c-5f707661deda + Name: P_wall_cap (3) + Components: + e212ae7b05de0a4394585da10b83701b: !TransformComponent + Id: 2d303e2c-6c2f-4065-bfdf-9ef12c0e74ba + Position: {X: 0.710801542, Y: 2.17, Z: 1.66093063} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c02ffd559c106145bd5594cac66c73a6: !ModelComponent + Id: 593544a6-c639-4952-8fce-1e77cbb56aa8 + Model: 7912af33-2365-4cc0-be49-4f175c901fb5:PropsOld/Wall/Meshes/P_wall_cap + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: ad49bb83-c61d-48f4-991d-b06000c95a98 + Name: P_wall_cap (6) + Components: + e212ae7b05de0a4394585da10b83701b: !TransformComponent + Id: 45273e3c-4a40-44ad-a392-3341484187d3 + Position: {X: -0.6840113, Y: 2.17, Z: 0.6793509} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c02ffd559c106145bd5594cac66c73a6: !ModelComponent + Id: 7f74b8f4-31a6-4837-966c-bada7e248e8e + Model: 7912af33-2365-4cc0-be49-4f175c901fb5:PropsOld/Wall/Meshes/P_wall_cap + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: cfdcc402-f53d-4623-9343-49f48bfe4329 + Name: P_wall_seg + Components: + a4e332b0078f6c4b8f8a715884c2bde0: !TransformComponent + Id: 41e5386d-0bc6-4db8-a4f4-5dab7193b46b + Position: {X: -1.0, Y: 0.0, Z: 0.50000006} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 4678bb4dde1249489c0444cfa9a54bb8: !ModelComponent + Id: c38c22a2-7d52-4da9-817b-5b974977d2ff + Model: 1258a62c-c6b5-4b44-84fc-adfe6ecdf910:PropsOld/Wall/Meshes/P_wall_seg + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: d994b83d-767e-4d32-ba32-feba99300b71 + Name: P_wall_tube_conector_L (4) + Components: + fd583d079f37af4594c005b921b8f5b1: !TransformComponent + Id: 7b36a14f-bca2-48c9-ae4e-e6136e49f919 + Position: {X: -1.78813934E-07, Y: 1.55, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e5de8274fdcc444cb52600d7c047b9bb: !ModelComponent + Id: 58b84c9b-0b98-4a17-82b9-03aba5502aa8 + Model: 9d6c7a9b-c609-45e8-aabe-23f98e30fb70:PropsOld/Wall/Meshes/P_wall_tube_conector_L + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: e15a2abb-5ab8-4fa1-b771-3f3a0ee3752f + Name: P_wall_cap (9) + Components: + e212ae7b05de0a4394585da10b83701b: !TransformComponent + Id: d791615f-d182-4bd7-bf3e-dbc4f2a0df35 + Position: {X: 1.7145443, Y: 2.17, Z: 0.6793509} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c02ffd559c106145bd5594cac66c73a6: !ModelComponent + Id: b8e665c4-eae6-49f0-acc7-ccc946bd8a40 + Model: 7912af33-2365-4cc0-be49-4f175c901fb5:PropsOld/Wall/Meshes/P_wall_cap + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: eb9745d1-69a1-47f8-b532-389481c7beda + Name: P_wall_tube_conector_L + Components: + fd583d079f37af4594c005b921b8f5b1: !TransformComponent + Id: 8cfe99a2-1438-4e8a-ba09-f8ca4b47c7b7 + Position: {X: 1.0, Y: 1.55, Z: 0.0} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e5de8274fdcc444cb52600d7c047b9bb: !ModelComponent + Id: 56351221-bce2-403f-b39b-307ad2d9f154 + Model: 9d6c7a9b-c609-45e8-aabe-23f98e30fb70:PropsOld/Wall/Meshes/P_wall_tube_conector_L + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: ff2a0d19-a546-4402-8476-8f738ccf447e + Name: P_wall_end (2) + Components: + eea5232e3a31fa4c9aeee0b64d77e9b0: !TransformComponent + Id: f881f1d4-d2ac-4934-84e7-d37460500fea + Position: {X: 1.0, Y: 0.0, Z: 1.0} + Rotation: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + fe83c02c163e3041820e4e943213f620: !ModelComponent + Id: f3274c92-0d2c-455b-88b2-03438a16597b + Model: e99c64c1-a606-4c30-a535-17d2cde88dfd:PropsOld/Wall/Meshes/P_wall_end + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/P_wall_X_rust.xkprefab b/Starbreach/Assets/Shared/PropsOld/Wall/P_wall_X_rust.xkprefab new file mode 100644 index 0000000..cfcb1f8 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/P_wall_X_rust.xkprefab @@ -0,0 +1,407 @@ +!PrefabAsset +Id: 3bac8993-d282-4c81-8305-d2f2a55bcdbc +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 2487726a-0be7-4b5b-b89b-cc73627ac945 + - ref!! 8b246af5-aa84-4232-a57e-b248bd6fb106 + - ref!! ff2a0d19-a546-4402-8476-8f738ccf447e + - ref!! 2c4f6ef1-9a33-4b25-8268-9539825572b3 + - ref!! 616c11e1-488a-45d1-a238-b13f18017425 + - ref!! eb9745d1-69a1-47f8-b532-389481c7beda + - ref!! 82a4fd78-e776-4ffd-b687-b5f21bb4dcd4 + - ref!! 8ad59f64-9faa-4059-8d1f-26fd54959118 + - ref!! 2b53d6ba-2712-4315-abb9-5c03039f5cf1 + - ref!! 73b5711b-5feb-44b9-8af8-e9894d874b3b + - ref!! 02af72cb-81c5-4ad6-a3bd-da1dbe30edad + - ref!! 787518a6-ec10-4742-8aa0-ec923b7ce864 + - ref!! d994b83d-767e-4d32-ba32-feba99300b71 + - ref!! 4198c8c8-94c5-45bf-a5ec-ce911ba9ecf2 + - ref!! cfdcc402-f53d-4623-9343-49f48bfe4329 + - ref!! 7182f336-78d7-4454-aa3f-7eb311f75a48 + - ref!! 125bdbd1-d611-4fe9-b2af-3e8023eff6a6 + - ref!! 6e470c34-3a75-4f9e-835e-08269233db7d + - ref!! 81f38663-eb90-4cf2-98ae-c39de7b6647d + - ref!! a927e6e2-dc89-431f-920c-5f707661deda + - ref!! 963754ca-2d94-4914-87cb-30964dd2c72a + - ref!! ad49bb83-c61d-48f4-991d-b06000c95a98 + - ref!! 577a6bef-5d23-4760-94e2-e318b6ab08fa + - ref!! 404c0b27-8c9d-4224-ab9b-97de20f9b334 + - ref!! e15a2abb-5ab8-4fa1-b771-3f3a0ee3752f + Parts: + - Entity: + Id: 02af72cb-81c5-4ad6-a3bd-da1dbe30edad + Name: P_wall_tube_conector_L (2) + Components: + fd583d079f37af4594c005b921b8f5b1: !TransformComponent + Id: 073d58fd-379f-45af-94c0-05b921b8f5b1 + Position: {X: 1.0, Y: 1.55, Z: 1.0} + Rotation: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e5de8274fdcc444cb52600d7c047b9bb: !ModelComponent + Id: 7482dee5-ccfd-4c44-b526-00d7c047b9bb + Model: 9d6c7a9b-c609-45e8-aabe-23f98e30fb70:PropsOld/Wall/Meshes/P_wall_tube_conector_L + Materials: + 31e238b8d8a76a43ae0d06492a9913b5~0: 0d9c0fb7-4927-4400-b598-3d44026fdbbc:PropsOld/Wall/Textures/wall_rust + - Entity: + Id: 125bdbd1-d611-4fe9-b2af-3e8023eff6a6 + Name: P_wall_cap (2) + Components: + e212ae7b05de0a4394585da10b83701b: !TransformComponent + Id: 7bae12e2-de05-430a-9458-5da10b83701b + Position: {X: 0.3007442, Y: 2.17, Z: -0.6745397} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c02ffd559c106145bd5594cac66c73a6: !ModelComponent + Id: 55fd2fc0-109c-4561-bd55-94cac66c73a6 + Model: 7912af33-2365-4cc0-be49-4f175c901fb5:PropsOld/Wall/Meshes/P_wall_cap + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: 2487726a-0be7-4b5b-b89b-cc73627ac945 + Name: P_wall_X + Components: + b64542714471bd4ea5e2b0e95406eaf4: !TransformComponent + Id: 714245b6-7144-4ebd-a5e2-b0e95406eaf4 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d7aad544634b6e47a5ce0f576aeefaf8: !ModelComponent + Id: 44d5aad7-4b63-476e-a5ce-0f576aeefaf8 + Model: 6b35d8d5-eb8f-478a-8fdb-31c4c20e9ecc:PropsOld/Wall/Meshes/P_wall_X + Materials: + 31e238b8d8a76a43ae0d06492a9913b5~0: 0d9c0fb7-4927-4400-b598-3d44026fdbbc:PropsOld/Wall/Textures/wall_rust + - Entity: + Id: 2b53d6ba-2712-4315-abb9-5c03039f5cf1 + Name: P_wall_tube_U (3) + Components: + 12cfd59b4cfec3438c267ae5269cd7f7: !TransformComponent + Id: 9bd5cf12-fe4c-43c3-8c26-7ae5269cd7f7 + Position: {X: 1.00000024, Y: 1.55, Z: -5.96046448E-08} + Rotation: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3d93903657654f4196ec3b63e6ceef70: !ModelComponent + Id: 3690933d-6557-414f-96ec-3b63e6ceef70 + Model: 4dc8839a-9ea2-4727-9564-6708fd7cc727:PropsOld/Wall/Meshes/P_wall_tube_U + Materials: + 31e238b8d8a76a43ae0d06492a9913b5~0: 0d9c0fb7-4927-4400-b598-3d44026fdbbc:PropsOld/Wall/Textures/wall_rust + - Entity: + Id: 2c4f6ef1-9a33-4b25-8268-9539825572b3 + Name: P_wall_end (3) + Components: + eea5232e3a31fa4c9aeee0b64d77e9b0: !TransformComponent + Id: 2e23a5ee-313a-4cfa-9aee-e0b64d77e9b0 + Position: {X: 0.0, Y: 0.0, Z: 1.0} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + fe83c02c163e3041820e4e943213f620: !ModelComponent + Id: 2cc083fe-3e16-4130-820e-4e943213f620 + Model: e99c64c1-a606-4c30-a535-17d2cde88dfd:PropsOld/Wall/Meshes/P_wall_end + Materials: + 31e238b8d8a76a43ae0d06492a9913b5~0: 0d9c0fb7-4927-4400-b598-3d44026fdbbc:PropsOld/Wall/Textures/wall_rust + - Entity: + Id: 404c0b27-8c9d-4224-ab9b-97de20f9b334 + Name: P_wall_cap (8) + Components: + e212ae7b05de0a4394585da10b83701b: !TransformComponent + Id: 79c5e626-3461-4a70-8471-ce46cc7161e6 + Position: {X: 1.7145443, Y: 2.17, Z: 0.294247359} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c02ffd559c106145bd5594cac66c73a6: !ModelComponent + Id: 48a696e8-5287-43f1-971f-7f65dd3bffb4 + Model: 7912af33-2365-4cc0-be49-4f175c901fb5:PropsOld/Wall/Meshes/P_wall_cap + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: 4198c8c8-94c5-45bf-a5ec-ce911ba9ecf2 + Name: P_wall_cap + Components: + e212ae7b05de0a4394585da10b83701b: !TransformComponent + Id: c2c44bf2-e283-4db3-ad0e-42dfc23b888e + Position: {X: 0.710801542, Y: 2.17, Z: -0.6745397} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c02ffd559c106145bd5594cac66c73a6: !ModelComponent + Id: 7547b8e7-e6c2-42c5-b447-c80f349045ec + Model: 7912af33-2365-4cc0-be49-4f175c901fb5:PropsOld/Wall/Meshes/P_wall_cap + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: 577a6bef-5d23-4760-94e2-e318b6ab08fa + Name: P_wall_cap (7) + Components: + e212ae7b05de0a4394585da10b83701b: !TransformComponent + Id: 30b216a9-77a5-449b-95f0-7bcd3d52d2bc + Position: {X: -0.6840113, Y: 2.17, Z: 0.294247359} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c02ffd559c106145bd5594cac66c73a6: !ModelComponent + Id: 73bc5c62-7c6f-4ff2-bbc9-3b481aff56d0 + Model: 7912af33-2365-4cc0-be49-4f175c901fb5:PropsOld/Wall/Meshes/P_wall_cap + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: 616c11e1-488a-45d1-a238-b13f18017425 + Name: P_wall_end (4) + Components: + eea5232e3a31fa4c9aeee0b64d77e9b0: !TransformComponent + Id: 0dd2d233-9617-4e4a-8846-a3363475890e + Position: {X: 1.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + fe83c02c163e3041820e4e943213f620: !ModelComponent + Id: 11af1f80-5755-4c48-bdde-08d0127c2467 + Model: e99c64c1-a606-4c30-a535-17d2cde88dfd:PropsOld/Wall/Meshes/P_wall_end + Materials: + 31e238b8d8a76a43ae0d06492a9913b5~0: 0d9c0fb7-4927-4400-b598-3d44026fdbbc:PropsOld/Wall/Textures/wall_rust + - Entity: + Id: 6e470c34-3a75-4f9e-835e-08269233db7d + Name: P_wall_seg (3) + Components: + a4e332b0078f6c4b8f8a715884c2bde0: !TransformComponent + Id: b032e3a4-8f07-4b6c-8f8a-715884c2bde0 + Position: {X: 0.5000001, Y: 0.0, Z: -0.99999994} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 4678bb4dde1249489c0444cfa9a54bb8: !ModelComponent + Id: 4dbb7846-12de-4849-9c04-44cfa9a54bb8 + Model: 1258a62c-c6b5-4b44-84fc-adfe6ecdf910:PropsOld/Wall/Meshes/P_wall_seg + Materials: + 31e238b8d8a76a43ae0d06492a9913b5~0: 0d9c0fb7-4927-4400-b598-3d44026fdbbc:PropsOld/Wall/Textures/wall_rust + - Entity: + Id: 7182f336-78d7-4454-aa3f-7eb311f75a48 + Name: P_wall_seg (2) + Components: + a4e332b0078f6c4b8f8a715884c2bde0: !TransformComponent + Id: 15f54994-9fe0-4155-b7f3-5801be78a336 + Position: {X: 0.5, Y: 0.0, Z: 2.0} + Rotation: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 4678bb4dde1249489c0444cfa9a54bb8: !ModelComponent + Id: 7aef2ae5-7bb5-4d33-84de-62c93e3c9c61 + Model: 1258a62c-c6b5-4b44-84fc-adfe6ecdf910:PropsOld/Wall/Meshes/P_wall_seg + Materials: + 31e238b8d8a76a43ae0d06492a9913b5~0: 0d9c0fb7-4927-4400-b598-3d44026fdbbc:PropsOld/Wall/Textures/wall_rust + - Entity: + Id: 73b5711b-5feb-44b9-8af8-e9894d874b3b + Name: P_wall_tube_U (4) + Components: + 12cfd59b4cfec3438c267ae5269cd7f7: !TransformComponent + Id: e39e08d3-0e08-4bfe-96b7-10d8b1c6a363 + Position: {X: 2.98023224E-07, Y: 1.55, Z: -5.96046448E-08} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3d93903657654f4196ec3b63e6ceef70: !ModelComponent + Id: 7471d86c-5bb7-48c5-be44-10f1515dcb5c + Model: 4dc8839a-9ea2-4727-9564-6708fd7cc727:PropsOld/Wall/Meshes/P_wall_tube_U + Materials: + 31e238b8d8a76a43ae0d06492a9913b5~0: 0d9c0fb7-4927-4400-b598-3d44026fdbbc:PropsOld/Wall/Textures/wall_rust + - Entity: + Id: 787518a6-ec10-4742-8aa0-ec923b7ce864 + Name: P_wall_tube_conector_L (3) + Components: + fd583d079f37af4594c005b921b8f5b1: !TransformComponent + Id: 2b6bd354-29d4-4e52-bc50-84470d5d6ffb + Position: {X: -1.78813934E-07, Y: 1.55, Z: 1.0} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e5de8274fdcc444cb52600d7c047b9bb: !ModelComponent + Id: 3098af42-9cce-42cd-9425-ab7604f72065 + Model: 9d6c7a9b-c609-45e8-aabe-23f98e30fb70:PropsOld/Wall/Meshes/P_wall_tube_conector_L + Materials: + 31e238b8d8a76a43ae0d06492a9913b5~0: 0d9c0fb7-4927-4400-b598-3d44026fdbbc:PropsOld/Wall/Textures/wall_rust + - Entity: + Id: 81f38663-eb90-4cf2-98ae-c39de7b6647d + Name: P_wall_seg (4) + Components: + a4e332b0078f6c4b8f8a715884c2bde0: !TransformComponent + Id: 297f7168-3244-4920-a69d-0a2dae4072fe + Position: {X: 2.0, Y: 0.0, Z: 0.49999994} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 4678bb4dde1249489c0444cfa9a54bb8: !ModelComponent + Id: 4bf8cb49-ec1b-46b5-b7a7-549e906f4f26 + Model: 1258a62c-c6b5-4b44-84fc-adfe6ecdf910:PropsOld/Wall/Meshes/P_wall_seg + Materials: + 31e238b8d8a76a43ae0d06492a9913b5~0: 0d9c0fb7-4927-4400-b598-3d44026fdbbc:PropsOld/Wall/Textures/wall_rust + - Entity: + Id: 82a4fd78-e776-4ffd-b687-b5f21bb4dcd4 + Name: P_wall_tube_U + Components: + 12cfd59b4cfec3438c267ae5269cd7f7: !TransformComponent + Id: 3543522a-115d-4662-b30c-c539e76bfc34 + Position: {X: 2.38418579E-07, Y: 1.55, Z: 0.9999999} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3d93903657654f4196ec3b63e6ceef70: !ModelComponent + Id: fcf5adab-13ec-49de-aabf-60b4f0bbf548 + Model: 4dc8839a-9ea2-4727-9564-6708fd7cc727:PropsOld/Wall/Meshes/P_wall_tube_U + Materials: + 31e238b8d8a76a43ae0d06492a9913b5~0: 0d9c0fb7-4927-4400-b598-3d44026fdbbc:PropsOld/Wall/Textures/wall_rust + - Entity: + Id: 8ad59f64-9faa-4059-8d1f-26fd54959118 + Name: P_wall_tube_U (2) + Components: + 12cfd59b4cfec3438c267ae5269cd7f7: !TransformComponent + Id: fd010077-35a7-4e18-944e-936a9705956f + Position: {X: 1.00000024, Y: 1.55, Z: 0.9999999} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3d93903657654f4196ec3b63e6ceef70: !ModelComponent + Id: e3339b34-b326-4703-be0c-5d6fcb90967a + Model: 4dc8839a-9ea2-4727-9564-6708fd7cc727:PropsOld/Wall/Meshes/P_wall_tube_U + Materials: + 31e238b8d8a76a43ae0d06492a9913b5~0: 0d9c0fb7-4927-4400-b598-3d44026fdbbc:PropsOld/Wall/Textures/wall_rust + - Entity: + Id: 8b246af5-aa84-4232-a57e-b248bd6fb106 + Name: P_wall_end + Components: + eea5232e3a31fa4c9aeee0b64d77e9b0: !TransformComponent + Id: a7148479-7045-415b-befc-094b899fada4 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + fe83c02c163e3041820e4e943213f620: !ModelComponent + Id: 44396270-7647-445f-89b3-ed57a6c50f78 + Model: e99c64c1-a606-4c30-a535-17d2cde88dfd:PropsOld/Wall/Meshes/P_wall_end + Materials: + 31e238b8d8a76a43ae0d06492a9913b5~0: 0d9c0fb7-4927-4400-b598-3d44026fdbbc:PropsOld/Wall/Textures/wall_rust + - Entity: + Id: 963754ca-2d94-4914-87cb-30964dd2c72a + Name: P_wall_cap (4) + Components: + e212ae7b05de0a4394585da10b83701b: !TransformComponent + Id: b7e605c1-6497-4543-9634-3c7c3340307c + Position: {X: 0.3007442, Y: 2.17, Z: 1.66093063} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c02ffd559c106145bd5594cac66c73a6: !ModelComponent + Id: 31ac53e5-6005-4279-a89b-92fe23c52b44 + Model: 7912af33-2365-4cc0-be49-4f175c901fb5:PropsOld/Wall/Meshes/P_wall_cap + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: a927e6e2-dc89-431f-920c-5f707661deda + Name: P_wall_cap (3) + Components: + e212ae7b05de0a4394585da10b83701b: !TransformComponent + Id: a544a078-558c-4a63-be65-79fc76e3075b + Position: {X: 0.710801542, Y: 2.17, Z: 1.66093063} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c02ffd559c106145bd5594cac66c73a6: !ModelComponent + Id: 140344a4-ff9b-40e8-a4a3-0b2139d7049c + Model: 7912af33-2365-4cc0-be49-4f175c901fb5:PropsOld/Wall/Meshes/P_wall_cap + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: ad49bb83-c61d-48f4-991d-b06000c95a98 + Name: P_wall_cap (6) + Components: + e212ae7b05de0a4394585da10b83701b: !TransformComponent + Id: 3f3be6fe-b2d9-4acb-ba71-b7937c9eeedf + Position: {X: -0.6840113, Y: 2.17, Z: 0.6793509} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c02ffd559c106145bd5594cac66c73a6: !ModelComponent + Id: ab5a293d-dd46-406a-861e-8ff377193be8 + Model: 7912af33-2365-4cc0-be49-4f175c901fb5:PropsOld/Wall/Meshes/P_wall_cap + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: cfdcc402-f53d-4623-9343-49f48bfe4329 + Name: P_wall_seg + Components: + a4e332b0078f6c4b8f8a715884c2bde0: !TransformComponent + Id: 0eafad33-c075-45fc-8856-098a8922d2cc + Position: {X: -1.0, Y: 0.0, Z: 0.50000006} + Rotation: {X: 0.0, Y: 0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 4678bb4dde1249489c0444cfa9a54bb8: !ModelComponent + Id: 52b99db0-c903-4f35-a7bd-d24fbdc6f382 + Model: 1258a62c-c6b5-4b44-84fc-adfe6ecdf910:PropsOld/Wall/Meshes/P_wall_seg + Materials: + 31e238b8d8a76a43ae0d06492a9913b5~0: 0d9c0fb7-4927-4400-b598-3d44026fdbbc:PropsOld/Wall/Textures/wall_rust + - Entity: + Id: d994b83d-767e-4d32-ba32-feba99300b71 + Name: P_wall_tube_conector_L (4) + Components: + fd583d079f37af4594c005b921b8f5b1: !TransformComponent + Id: 1f655717-a26b-4253-882e-dc09a4b70018 + Position: {X: -1.78813934E-07, Y: 1.55, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e5de8274fdcc444cb52600d7c047b9bb: !ModelComponent + Id: 4bac1a05-9797-4394-a78e-cd0303e76484 + Model: 9d6c7a9b-c609-45e8-aabe-23f98e30fb70:PropsOld/Wall/Meshes/P_wall_tube_conector_L + Materials: + 31e238b8d8a76a43ae0d06492a9913b5~0: 0d9c0fb7-4927-4400-b598-3d44026fdbbc:PropsOld/Wall/Textures/wall_rust + - Entity: + Id: e15a2abb-5ab8-4fa1-b771-3f3a0ee3752f + Name: P_wall_cap (9) + Components: + e212ae7b05de0a4394585da10b83701b: !TransformComponent + Id: b22f4940-c037-4a22-9a57-b51c16a5f5e3 + Position: {X: 1.7145443, Y: 2.17, Z: 0.6793509} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + c02ffd559c106145bd5594cac66c73a6: !ModelComponent + Id: 3dc846b1-7e50-468d-9ec4-fad62a867565 + Model: 7912af33-2365-4cc0-be49-4f175c901fb5:PropsOld/Wall/Meshes/P_wall_cap + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + - Entity: + Id: eb9745d1-69a1-47f8-b532-389481c7beda + Name: P_wall_tube_conector_L + Components: + fd583d079f37af4594c005b921b8f5b1: !TransformComponent + Id: 18158e7a-7957-459d-9d2e-5e63a9c8fe75 + Position: {X: 1.0, Y: 1.55, Z: 0.0} + Rotation: {X: 0.0, Y: -0.707106769, Z: 0.0, W: 0.707106769} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e5de8274fdcc444cb52600d7c047b9bb: !ModelComponent + Id: 574c44f9-221e-4e10-aa8f-54cc42d2ba6e + Model: 9d6c7a9b-c609-45e8-aabe-23f98e30fb70:PropsOld/Wall/Meshes/P_wall_tube_conector_L + Materials: + 31e238b8d8a76a43ae0d06492a9913b5~0: 0d9c0fb7-4927-4400-b598-3d44026fdbbc:PropsOld/Wall/Textures/wall_rust + - Entity: + Id: ff2a0d19-a546-4402-8476-8f738ccf447e + Name: P_wall_end (2) + Components: + eea5232e3a31fa4c9aeee0b64d77e9b0: !TransformComponent + Id: ed055e5e-2e71-4867-9ec0-cfe6fba1635d + Position: {X: 1.0, Y: 0.0, Z: 1.0} + Rotation: {X: 0.0, Y: 1.0, Z: 0.0, W: -4.371139E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + fe83c02c163e3041820e4e943213f620: !ModelComponent + Id: f7802281-7d03-434e-aca8-1bd2c3ff46d0 + Model: e99c64c1-a606-4c30-a535-17d2cde88dfd:PropsOld/Wall/Meshes/P_wall_end + Materials: + 31e238b8d8a76a43ae0d06492a9913b5~0: 0d9c0fb7-4927-4400-b598-3d44026fdbbc:PropsOld/Wall/Textures/wall_rust diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/PrefabModel.xkprefabmodel b/Starbreach/Assets/Shared/PropsOld/Wall/PrefabModel.xkprefabmodel new file mode 100644 index 0000000..800ab33 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/PrefabModel.xkprefabmodel @@ -0,0 +1,6 @@ +!PrefabModelAsset +Id: 72d25205-788c-4bc4-8dc0-52f8f4c59735 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Materials: {} +Prefab: null diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall.xkmat b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall.xkmat new file mode 100644 index 0000000..da9900c --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall.xkmat @@ -0,0 +1,61 @@ +!MaterialAsset +Id: 31837407-6612-4579-9fa1-da386ac2f461 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 30d79764-cafb-4123-957d-8c21513e0e42:PropsOld/Wall/Textures/P_wall_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 59f45f71-5d12-43bf-b387-10a1de21b59a:PropsOld/Wall/Textures/P_wall_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: fc785893-e3c7-49fb-bf25-d28ccf235fef:PropsOld/Wall/Textures/P_wall_A + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 9b5db1f7-670c-4954-a30f-f95716d39ecd:PropsOld/Wall/Textures/P_wall_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 8295b404-1dda-4dc0-883d-40a73b38c830:PropsOld/Wall/Textures/P_wall_O + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall2_A.xktex b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall2_A.xktex new file mode 100644 index 0000000..dfe1041 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall2_A.xktex @@ -0,0 +1,7 @@ +!Texture +Id: eea54838-db7e-47b0-af99-4eebb9bf8b92 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall2/Textures/P_wall2_A.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall2_A2.xktex b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall2_A2.xktex new file mode 100644 index 0000000..2544404 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall2_A2.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 29d3f490-ec61-46b0-a328-f763d4982e51 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall2/Textures/P_wall2_A2.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall2_G.xktex b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall2_G.xktex new file mode 100644 index 0000000..9b3a90a --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall2_G.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 79234020-36b4-4f60-bc63-49ab76062ca4 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall2/Textures/P_wall2_G.tga +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall2_G2.xktex b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall2_G2.xktex new file mode 100644 index 0000000..df24f30 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall2_G2.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 55301656-72a1-41ad-b325-688d65fcfcd1 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall2/Textures/P_wall2_G2.tga +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall2_M.xktex b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall2_M.xktex new file mode 100644 index 0000000..e2d485a --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall2_M.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 85ab8488-bcee-4831-a28b-10af4bc00f72 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall2/Textures/P_wall2_M.tga +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall2_M2.xktex b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall2_M2.xktex new file mode 100644 index 0000000..adc0b55 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall2_M2.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 4d9207e0-9407-4be5-8ec1-a5b1e09d6f5e +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall2/Textures/P_wall2_M2.tga +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall2_N.xktex b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall2_N.xktex new file mode 100644 index 0000000..f4a0b7f --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall2_N.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 6dacfa60-8400-4029-ae9b-6d22e1bb550d +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall2/Textures/P_wall2_N.tga +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall2_O.xktex b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall2_O.xktex new file mode 100644 index 0000000..341d57c --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall2_O.xktex @@ -0,0 +1,7 @@ +!Texture +Id: aa4154ba-77b3-488b-814b-cd4ee6b3e10a +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall2/Textures/P_wall2_O.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall2_clean.xkmat b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall2_clean.xkmat new file mode 100644 index 0000000..7896fa5 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall2_clean.xkmat @@ -0,0 +1,61 @@ +!MaterialAsset +Id: 03755e4d-7d6b-4378-8e48-6518d5eb06e9 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 6dacfa60-8400-4029-ae9b-6d22e1bb550d:PropsOld/Wall/Textures/P_wall2_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 79234020-36b4-4f60-bc63-49ab76062ca4:PropsOld/Wall/Textures/P_wall2_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: eea54838-db7e-47b0-af99-4eebb9bf8b92:PropsOld/Wall/Textures/P_wall2_A + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 6dacfa60-8400-4029-ae9b-6d22e1bb550d:PropsOld/Wall/Textures/P_wall2_N + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 6dacfa60-8400-4029-ae9b-6d22e1bb550d:PropsOld/Wall/Textures/P_wall2_N + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall2_damaged.xkmat b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall2_damaged.xkmat new file mode 100644 index 0000000..6145248 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall2_damaged.xkmat @@ -0,0 +1,61 @@ +!MaterialAsset +Id: 9cbf1d49-f897-4cc4-96a5-54c03a14e6ff +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 6dacfa60-8400-4029-ae9b-6d22e1bb550d:PropsOld/Wall/Textures/P_wall2_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 55301656-72a1-41ad-b325-688d65fcfcd1:PropsOld/Wall/Textures/P_wall2_G2 + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 29d3f490-ec61-46b0-a328-f763d4982e51:PropsOld/Wall/Textures/P_wall2_A2 + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: 85ab8488-bcee-4831-a28b-10af4bc00f72:PropsOld/Wall/Textures/P_wall2_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: aa4154ba-77b3-488b-814b-cd4ee6b3e10a:PropsOld/Wall/Textures/P_wall2_O + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 1.0 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall_A.xktex b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall_A.xktex new file mode 100644 index 0000000..eedc88d --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall_A.xktex @@ -0,0 +1,7 @@ +!Texture +Id: fc785893-e3c7-49fb-bf25-d28ccf235fef +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall/Textures/P_wall_A.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall_G.xktex b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall_G.xktex new file mode 100644 index 0000000..2052b43 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall_G.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 59f45f71-5d12-43bf-b387-10a1de21b59a +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall/Textures/P_wall_G.tga +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall_M.xktex b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall_M.xktex new file mode 100644 index 0000000..1431c7c --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall_M.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 9b5db1f7-670c-4954-a30f-f95716d39ecd +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall/Textures/P_wall_M.tga +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall_N.xktex b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall_N.xktex new file mode 100644 index 0000000..b59a7b0 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall_N.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 30d79764-cafb-4123-957d-8c21513e0e42 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall/Textures/P_wall_N.tga +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall_O.xktex b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall_O.xktex new file mode 100644 index 0000000..93250ad --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/P_wall_O.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 8295b404-1dda-4dc0-883d-40a73b38c830 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall/Textures/P_wall_O.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Textures/WallR_A.xktex b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/WallR_A.xktex new file mode 100644 index 0000000..4fb49fc --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/WallR_A.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 96e56340-d5fc-4e37-8907-f1e1feff4f5a +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall/Textures/rusted/WallR_A.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Textures/WallR_G.xktex b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/WallR_G.xktex new file mode 100644 index 0000000..82c2d7f --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/WallR_G.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 31368813-dcd4-404b-a619-3c79f85e93f2 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall/Textures/rusted/WallR_G.tga +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Textures/WallR_M.xktex b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/WallR_M.xktex new file mode 100644 index 0000000..1fbd1f1 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/WallR_M.xktex @@ -0,0 +1,6 @@ +!Texture +Id: b14faeed-117c-4ee7-82ad-2d004389651b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall/Textures/rusted/WallR_M.tga +Type: !GrayscaleTextureType {} diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Textures/WallR_N.xktex b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/WallR_N.xktex new file mode 100644 index 0000000..01900e1 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/WallR_N.xktex @@ -0,0 +1,6 @@ +!Texture +Id: 4c94c28a-6a12-4508-9259-9cf471ceb267 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Props/Wall/Textures/rusted/WallR_N.tga +Type: !NormalMapTextureType {} diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Textures/wall_rust.xkmat b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/wall_rust.xkmat new file mode 100644 index 0000000..30f5874 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Textures/wall_rust.xkmat @@ -0,0 +1,61 @@ +!MaterialAsset +Id: 0d9c0fb7-4927-4400-b598-3d44026fdbbc +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Surface: !MaterialNormalMapFeature + NormalMap: !ComputeTextureColor + Texture: 4c94c28a-6a12-4508-9259-9cf471ceb267:PropsOld/Wall/Textures/WallR_N + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeTextureScalar + Texture: 31368813-dcd4-404b-a619-3c79f85e93f2:PropsOld/Wall/Textures/WallR_G + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 96e56340-d5fc-4e37-8907-f1e1feff4f5a:PropsOld/Wall/Textures/WallR_A + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeTextureScalar + Texture: b14faeed-117c-4ee7-82ad-2d004389651b:PropsOld/Wall/Textures/WallR_M + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Occlusion: !MaterialOcclusionMapFeature + AmbientOcclusionMap: !ComputeTextureScalar + Texture: 8295b404-1dda-4dc0-883d-40a73b38c830:PropsOld/Wall/Textures/P_wall_O + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DirectLightingFactor: !ComputeFloat + Value: 0.874372 + CavityMap: !ComputeTextureScalar + FallbackValue: + Value: 1.0 + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + DiffuseCavity: !ComputeFloat + Value: 1.0 + SpecularCavity: !ComputeFloat + Value: 1.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Wall2_3_PM.xkprefabmodel b/Starbreach/Assets/Shared/PropsOld/Wall/Wall2_3_PM.xkprefabmodel new file mode 100644 index 0000000..f412308 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Wall2_3_PM.xkprefabmodel @@ -0,0 +1,6 @@ +!PrefabModelAsset +Id: 20f5d442-235b-458d-80c0-a96818a09f63 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Materials: {} +Prefab: 58be8d5a-3b1d-49e5-95ce-ce74887de36e:PropsOld/Wall/P_wall2_3_damaged diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Wall2_PM.xkprefabmodel b/Starbreach/Assets/Shared/PropsOld/Wall/Wall2_PM.xkprefabmodel new file mode 100644 index 0000000..fffcac9 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Wall2_PM.xkprefabmodel @@ -0,0 +1,6 @@ +!PrefabModelAsset +Id: 66b65bd3-34c7-467e-8795-1f0d91ccf3e9 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Materials: {} +Prefab: f64d544d-ed23-4670-84e7-0093c0d3a185:PropsOld/Wall/P_wall2_damaged diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/WallPrefabModel.xkprefabmodel b/Starbreach/Assets/Shared/PropsOld/Wall/WallPrefabModel.xkprefabmodel new file mode 100644 index 0000000..a54cdf2 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/WallPrefabModel.xkprefabmodel @@ -0,0 +1,6 @@ +!PrefabModelAsset +Id: 929f63af-6b21-4587-820c-2a19458b6d73 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Materials: {} +Prefab: 3bac8993-d282-4c81-8305-d2f2a55bcdbc:PropsOld/Wall/P_wall_X_rust diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Wall_3.xkprefab b/Starbreach/Assets/Shared/PropsOld/Wall/Wall_3.xkprefab new file mode 100644 index 0000000..33735e7 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Wall_3.xkprefab @@ -0,0 +1,540 @@ +!PrefabAsset +Id: 96aa6846-2919-422c-9881-e6a168bb4982 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 40383a68-0fbb-4651-bc67-ac67c6b64667 + - ref!! 638e8c16-80b2-442d-a029-918e10103438 + - ref!! 806c6499-6c62-4037-b105-e8e9aa66c2f1 + Parts: + - Entity: + Id: 0645d3bf-20f1-4fbc-8fcd-e97067fb47cd + Name: P_wall_tube_I + Components: + ec7929a78bda434aa5baa788cc2179cf: !TransformComponent + Id: a72979ec-da8b-4a43-a5ba-a788cc2179cf + Position: {X: -0.499999881, Y: 1.07, Z: -0.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 5070d7658e624e49938c5791e717585d: !ModelComponent + Id: 65d77050-628e-494e-938c-5791e717585d + Model: c6a447f9-775a-4726-a733-e69897aeb090:PropsOld/Wall/Meshes/P_wall_tube_I + Materials: + a9e010837e21594b83c180d4250f9daa~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + Base: + BasePartAsset: 58be8d5a-3b1d-49e5-95ce-ce74887de36e:PropsOld/Wall/P_wall2_3_damaged + BasePartId: 199190d6-2eab-4167-95e8-b64aa27b501f + InstanceId: 3b1d56cf-b787-4c33-ae16-c1279e1ffa88 + - Entity: + Id: 08bed696-d359-4790-8488-769de2337657 + Name: P_wall_tube_I (2) + Components: + ec7929a78bda434aa5baa788cc2179cf: !TransformComponent + Id: e38138c8-fad8-4ba6-8f9c-de86f4092b63 + Position: {X: -0.499999881, Y: 1.58431089, Z: 0.482759923} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 5070d7658e624e49938c5791e717585d: !ModelComponent + Id: 3bcfafbb-d979-41e0-a567-13085d2a8b1c + Model: c6a447f9-775a-4726-a733-e69897aeb090:PropsOld/Wall/Meshes/P_wall_tube_I + Materials: + a9e010837e21594b83c180d4250f9daa~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + Base: + BasePartAsset: 58be8d5a-3b1d-49e5-95ce-ce74887de36e:PropsOld/Wall/P_wall2_3_damaged + BasePartId: a3c3216f-b569-40a7-85dc-10aa1c40eb56 + InstanceId: 0a7d4300-7102-4b43-a31a-3145fb468aed + - Entity: + Id: 10a02f88-a500-4fdf-832c-b691d430d275 + Name: P_wall_tube_conector (3) + Components: + c63c3b005dbacc458668ad5093f71ad8: !TransformComponent + Id: 003b3cc6-ba5d-45cc-8668-ad5093f71ad8 + Position: {X: -0.49999994, Y: 1.0689373, Z: -0.5018324} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 42d011ef47fab94ca8502148cac94096: !ModelComponent + Id: ef11d042-fa47-4cb9-a850-2148cac94096 + Model: 7d1af772-77f7-4269-b42a-f18cade29935:PropsOld/Wall/Meshes/P_wall_tube_conector + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + Base: + BasePartAsset: 58be8d5a-3b1d-49e5-95ce-ce74887de36e:PropsOld/Wall/P_wall2_3_damaged + BasePartId: b17b1dfd-0101-46cd-b284-d5e225d02cbf + InstanceId: c78b9299-a1fc-4587-a7f3-cc01c803e6fc + - Entity: + Id: 1a218ed1-d344-4ec9-a7c6-72063be65d02 + Name: P_wall_tube_Z2 + Components: + d45eb719a804b547b9a42f1046c9a111: !TransformComponent + Id: 19b75ed4-04a8-47b5-b9a4-2f1046c9a111 + Position: {X: -0.5, Y: 1.07, Z: -0.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 1d6546067414334bb405b158b7fca749: !ModelComponent + Id: 0646651d-1474-4b33-b405-b158b7fca749 + Model: 9871a7b6-e77b-43cc-bee2-5140a380adfc:PropsOld/Wall/Meshes/P_wall_tube_Z2 + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + Base: + BasePartAsset: 58be8d5a-3b1d-49e5-95ce-ce74887de36e:PropsOld/Wall/P_wall2_3_damaged + BasePartId: cdf2e88a-b591-46ba-bb54-62f8b5bbd3a5 + InstanceId: 0a7d4300-7102-4b43-a31a-3145fb468aed + - Entity: + Id: 1a3310ed-b14d-457f-8bc1-0331c63329fe + Name: P_wall_tube_conector (4) + Components: + c63c3b005dbacc458668ad5093f71ad8: !TransformComponent + Id: d6cacddc-63e0-4719-851b-fd3523e03843 + Position: {X: -0.5, Y: 1.58477676, Z: 0.4885785} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 42d011ef47fab94ca8502148cac94096: !ModelComponent + Id: cede69ed-9708-41da-8081-d5f46aaea616 + Model: 7d1af772-77f7-4269-b42a-f18cade29935:PropsOld/Wall/Meshes/P_wall_tube_conector + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + Base: + BasePartAsset: 58be8d5a-3b1d-49e5-95ce-ce74887de36e:PropsOld/Wall/P_wall2_3_damaged + BasePartId: 6e79e486-0a8d-40d1-ab95-25e43fcbc748 + InstanceId: 3b1d56cf-b787-4c33-ae16-c1279e1ffa88 + - Entity: + Id: 33e0e9bf-fce1-4d8d-ad46-fa5058c57fc2 + Name: P_wall_tube_Z (2) + Components: + 17dbd2f633e45a4fb59cf47e55d2cb51: !TransformComponent + Id: f6d2db17-e433-4f5a-b59c-f47e55d2cb51 + Position: {X: 0.5, Y: 1.07, Z: -0.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 838412cf669209428d8dca2386b68cf8: !ModelComponent + Id: cf128483-9266-4209-8d8d-ca2386b68cf8 + Model: 26f9b146-ddff-4aae-a321-42f7e86a7541:PropsOld/Wall/Meshes/P_wall_tube_Z + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + Base: + BasePartAsset: 58be8d5a-3b1d-49e5-95ce-ce74887de36e:PropsOld/Wall/P_wall2_3_damaged + BasePartId: 747f824d-0e8d-4a3c-924e-2ef79402c1c2 + InstanceId: 0a7d4300-7102-4b43-a31a-3145fb468aed + - Entity: + Id: 37ca4a96-b599-4fd2-ac24-f8c66cd83c48 + Name: P_wall_tube_conector + Components: + c63c3b005dbacc458668ad5093f71ad8: !TransformComponent + Id: 88f1c180-f2cc-4b46-816e-e12746ab70d5 + Position: {X: 0.5, Y: 1.0689373, Z: -0.5018324} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 42d011ef47fab94ca8502148cac94096: !ModelComponent + Id: ce784ece-864b-4804-847e-8a9d36c2a286 + Model: 7d1af772-77f7-4269-b42a-f18cade29935:PropsOld/Wall/Meshes/P_wall_tube_conector + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + Base: + BasePartAsset: 58be8d5a-3b1d-49e5-95ce-ce74887de36e:PropsOld/Wall/P_wall2_3_damaged + BasePartId: d75d35ca-5a16-4275-be8e-1c448303b3e7 + InstanceId: 0a7d4300-7102-4b43-a31a-3145fb468aed + - Entity: + Id: 40383a68-0fbb-4651-bc67-ac67c6b64667 + Name: P_wall2_3_damaged + Components: + cd7fdadac786f248a0873b7ca49a349a: !TransformComponent + Id: dada7fcd-86c7-48f2-a087-3b7ca49a349a + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 17dbd2f633e45a4fb59cf47e55d2cb51: ref!! e28b08ba-d1c2-4cf9-9995-a78d3b95d3ab + c63c3b005dbacc458668ad5093f71ad8: ref!! 0b3cf122-a7f6-4b28-bf68-660bdcb107b6 + d45eb719a804b547b9a42f1046c9a111: ref!! e9343320-18bf-4f57-b6a8-6004cf4f1f8f + 708c836f1b2a2e03e55b07cdda384131: ref!! 58e0e465-a392-4dbe-91a9-a25fffc3df9a + ac1395906fc04d4b86b7ed9b10415f26: ref!! 909513ac-c06f-4b4d-86b7-ed9b10415f26 + ec7929a78bda434aa5baa788cc2179cf: ref!! a72979ec-da8b-4a43-a5ba-a788cc2179cf + f00b18f4777fe29aba811b6b2d69b05b: ref!! 04c83cb3-9148-49ee-89fa-17f62918e195 + 6abc7ac20d6fb321182f4fa1ba74349a: ref!! 16a5bb46-ad5d-41d3-8f66-8bbc91cd816f + 358ad4ed2029564570829dcbb975801b: ref!! d6cacddc-63e0-4719-851b-fd3523e03843 + - Entity: + Id: 4d4d7752-4fa3-40af-b6d9-91b6ab7e999c + Name: P_wall_tube_Z (2) + Components: + 17dbd2f633e45a4fb59cf47e55d2cb51: !TransformComponent + Id: e28b08ba-d1c2-4cf9-9995-a78d3b95d3ab + Position: {X: 0.5, Y: 1.07, Z: -0.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 838412cf669209428d8dca2386b68cf8: !ModelComponent + Id: 74322be2-48ed-41a2-a9c8-3b780fbf11ab + Model: 26f9b146-ddff-4aae-a321-42f7e86a7541:PropsOld/Wall/Meshes/P_wall_tube_Z + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + Base: + BasePartAsset: 58be8d5a-3b1d-49e5-95ce-ce74887de36e:PropsOld/Wall/P_wall2_3_damaged + BasePartId: 747f824d-0e8d-4a3c-924e-2ef79402c1c2 + InstanceId: 3b1d56cf-b787-4c33-ae16-c1279e1ffa88 + - Entity: + Id: 5474dee1-408f-44b9-9638-a360a8d4caa9 + Name: P_wall_tube_I + Components: + ec7929a78bda434aa5baa788cc2179cf: !TransformComponent + Id: 71f0bb2c-e58d-41b2-afca-b242b748ecbd + Position: {X: -0.499999881, Y: 1.07, Z: -0.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 5070d7658e624e49938c5791e717585d: !ModelComponent + Id: 654dc457-9c3f-4006-822a-4aae4ff864cd + Model: c6a447f9-775a-4726-a733-e69897aeb090:PropsOld/Wall/Meshes/P_wall_tube_I + Materials: + a9e010837e21594b83c180d4250f9daa~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + Base: + BasePartAsset: 58be8d5a-3b1d-49e5-95ce-ce74887de36e:PropsOld/Wall/P_wall2_3_damaged + BasePartId: 199190d6-2eab-4167-95e8-b64aa27b501f + InstanceId: 0a7d4300-7102-4b43-a31a-3145fb468aed + - Entity: + Id: 5564ac53-95a4-434f-b771-ab9e5c9f834d + Name: P_wall_tube_conector + Components: + c63c3b005dbacc458668ad5093f71ad8: !TransformComponent + Id: 10c1aaa6-c6cc-49dc-aa78-9141c3bee696 + Position: {X: 0.5, Y: 1.0689373, Z: -0.5018324} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 42d011ef47fab94ca8502148cac94096: !ModelComponent + Id: 97d48fd1-f7ff-4b42-8798-e3d43d882c3b + Model: 7d1af772-77f7-4269-b42a-f18cade29935:PropsOld/Wall/Meshes/P_wall_tube_conector + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + Base: + BasePartAsset: 58be8d5a-3b1d-49e5-95ce-ce74887de36e:PropsOld/Wall/P_wall2_3_damaged + BasePartId: d75d35ca-5a16-4275-be8e-1c448303b3e7 + InstanceId: c78b9299-a1fc-4587-a7f3-cc01c803e6fc + - Entity: + Id: 638e8c16-80b2-442d-a029-918e10103438 + Name: P_wall2_3_damaged (2) + Components: + cd7fdadac786f248a0873b7ca49a349a: !TransformComponent + Id: de066b99-8388-4dda-a7eb-d8a40a1786c2 + Position: {X: -3.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + c63c3b005dbacc458668ad5093f71ad8: ref!! 10c1aaa6-c6cc-49dc-aa78-9141c3bee696 + 952ab3625906fa6ab4771672dc91ad9e: ref!! c8496b23-a7b7-40bb-b02a-c293ec61a96a + ac1395906fc04d4b86b7ed9b10415f26: ref!! 2eeaf1e7-fb65-4962-a42a-1029de94f668 + ec7929a78bda434aa5baa788cc2179cf: ref!! 93743999-f497-4022-af5b-a947a8cef641 + cc06eb97825d368e4aadf245c7a9bc23: ref!! 003b3cc6-ba5d-45cc-8668-ad5093f71ad8 + 1f1ae7be548c2444a64c490fd2e7e94a: ref!! 64c470de-28ec-4f64-99df-94cf640f99d3 + e608c91049f50d6238f7ea64bda7f761: ref!! 5b72ff4f-effa-44ab-9282-7d175e609455 + - Entity: + Id: 76f4bc40-3f15-41c0-8422-74292a524d09 + Name: P_wall_tube_conector + Components: + c63c3b005dbacc458668ad5093f71ad8: !TransformComponent + Id: 0b3cf122-a7f6-4b28-bf68-660bdcb107b6 + Position: {X: 0.5, Y: 1.0689373, Z: -0.5018324} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 42d011ef47fab94ca8502148cac94096: !ModelComponent + Id: 4c79e705-ae55-46dc-84f2-2e1330e911ad + Model: 7d1af772-77f7-4269-b42a-f18cade29935:PropsOld/Wall/Meshes/P_wall_tube_conector + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + Base: + BasePartAsset: 58be8d5a-3b1d-49e5-95ce-ce74887de36e:PropsOld/Wall/P_wall2_3_damaged + BasePartId: d75d35ca-5a16-4275-be8e-1c448303b3e7 + InstanceId: 3b1d56cf-b787-4c33-ae16-c1279e1ffa88 + - Entity: + Id: 806c6499-6c62-4037-b105-e8e9aa66c2f1 + Name: P_wall2_3_damaged (3) + Components: + cd7fdadac786f248a0873b7ca49a349a: !TransformComponent + Id: 43185151-e0bf-45c2-83c7-d7dfa2894223 + Position: {X: -6.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 17dbd2f633e45a4fb59cf47e55d2cb51: ref!! f6d2db17-e433-4f5a-b59c-f47e55d2cb51 + c63c3b005dbacc458668ad5093f71ad8: ref!! 88f1c180-f2cc-4b46-816e-e12746ab70d5 + d45eb719a804b547b9a42f1046c9a111: ref!! 19b75ed4-04a8-47b5-b9a4-2f1046c9a111 + 004dd2dc6565359fc87ec5da9ddc457b: ref!! 4bb8c60d-0d9a-4a18-9f7b-6fe00826cb75 + ac1395906fc04d4b86b7ed9b10415f26: ref!! be2d3811-d01a-488a-925c-5d7874bca045 + ec7929a78bda434aa5baa788cc2179cf: ref!! 71f0bb2c-e58d-41b2-afca-b242b748ecbd + 3ee0b3b6273d610b09be6d8d21c1ab4f: ref!! dcf6c0f0-17cc-4414-bb9c-d5f1d6d0f50f + 58047a3c6d9d632ac7f2f588500f068a: ref!! e38138c8-fad8-4ba6-8f9c-de86f4092b63 + e06d9de124433bb92fc9333304dfdc54: ref!! 49249749-f6c5-4980-8fe1-4f067b35a312 + - Entity: + Id: 80ff7c3a-77d0-44d0-8647-4b679b0ec060 + Name: P_wall_tube_Z2 + Components: + d45eb719a804b547b9a42f1046c9a111: !TransformComponent + Id: e9343320-18bf-4f57-b6a8-6004cf4f1f8f + Position: {X: -0.5, Y: 1.07, Z: -0.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 1d6546067414334bb405b158b7fca749: !ModelComponent + Id: 9876664b-d7a6-4906-9db0-7666da1422e7 + Model: 9871a7b6-e77b-43cc-bee2-5140a380adfc:PropsOld/Wall/Meshes/P_wall_tube_Z2 + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + Base: + BasePartAsset: 58be8d5a-3b1d-49e5-95ce-ce74887de36e:PropsOld/Wall/P_wall2_3_damaged + BasePartId: cdf2e88a-b591-46ba-bb54-62f8b5bbd3a5 + InstanceId: 3b1d56cf-b787-4c33-ae16-c1279e1ffa88 + - Entity: + Id: 9a84eef4-20bb-48db-a53f-f41d126a6f33 + Name: P_wall_tube_I (2) + Components: + ec7929a78bda434aa5baa788cc2179cf: !TransformComponent + Id: 64c470de-28ec-4f64-99df-94cf640f99d3 + Position: {X: -0.499999881, Y: 1.58431089, Z: 0.482759923} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 5070d7658e624e49938c5791e717585d: !ModelComponent + Id: ffef17d6-28df-441f-b688-3dadd312bb32 + Model: c6a447f9-775a-4726-a733-e69897aeb090:PropsOld/Wall/Meshes/P_wall_tube_I + Materials: + a9e010837e21594b83c180d4250f9daa~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + Base: + BasePartAsset: 58be8d5a-3b1d-49e5-95ce-ce74887de36e:PropsOld/Wall/P_wall2_3_damaged + BasePartId: a3c3216f-b569-40a7-85dc-10aa1c40eb56 + InstanceId: c78b9299-a1fc-4587-a7f3-cc01c803e6fc + - Entity: + Id: aa60a477-7467-427a-8765-2cecd43ad6bd + Name: P_wall_tube_conector (2) + Components: + c63c3b005dbacc458668ad5093f71ad8: !TransformComponent + Id: 4bb8c60d-0d9a-4a18-9f7b-6fe00826cb75 + Position: {X: 0.5, Y: 1.58477676, Z: 0.4885785} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 42d011ef47fab94ca8502148cac94096: !ModelComponent + Id: 091abbc6-f81e-475d-9e05-8d430257591b + Model: 7d1af772-77f7-4269-b42a-f18cade29935:PropsOld/Wall/Meshes/P_wall_tube_conector + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + Base: + BasePartAsset: 58be8d5a-3b1d-49e5-95ce-ce74887de36e:PropsOld/Wall/P_wall2_3_damaged + BasePartId: 4ac8edf8-ea9b-4df7-b64f-24b7514971ee + InstanceId: 0a7d4300-7102-4b43-a31a-3145fb468aed + - Entity: + Id: ad8c1814-7f16-4d35-941c-4756722c36b2 + Name: P_wall2_x3 + Components: + ac1395906fc04d4b86b7ed9b10415f26: !TransformComponent + Id: 2eeaf1e7-fb65-4962-a42a-1029de94f668 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + acaf328f38ca224fa4ddfd953e29a4e3: !ModelComponent + Id: 8f32afac-ca38-4f22-a4dd-fd953e29a4e3 + Model: 8ee6d39b-001b-41d1-a37d-3f6b0f5f3c48:PropsOld/Wall/Meshes/P_wall2_x3 + Materials: + 13ccfb340777ac4ea2dc2ee68f8e1807~0: 9cbf1d49-f897-4cc4-96a5-54c03a14e6ff:PropsOld/Wall/Textures/P_wall2_damaged + Base: + BasePartAsset: 58be8d5a-3b1d-49e5-95ce-ce74887de36e:PropsOld/Wall/P_wall2_3_damaged + BasePartId: be8102d7-d0f6-435e-9f9d-ec584580b73f + InstanceId: c78b9299-a1fc-4587-a7f3-cc01c803e6fc + - Entity: + Id: b358a0cd-40af-46fb-b132-9777065a1641 + Name: P_wall_tube_conector (3) + Components: + c63c3b005dbacc458668ad5093f71ad8: !TransformComponent + Id: 04c83cb3-9148-49ee-89fa-17f62918e195 + Position: {X: -0.49999994, Y: 1.0689373, Z: -0.5018324} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 42d011ef47fab94ca8502148cac94096: !ModelComponent + Id: b9f60de5-d0c4-42e9-b352-2b87bb7ed6ce + Model: 7d1af772-77f7-4269-b42a-f18cade29935:PropsOld/Wall/Meshes/P_wall_tube_conector + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + Base: + BasePartAsset: 58be8d5a-3b1d-49e5-95ce-ce74887de36e:PropsOld/Wall/P_wall2_3_damaged + BasePartId: b17b1dfd-0101-46cd-b284-d5e225d02cbf + InstanceId: 3b1d56cf-b787-4c33-ae16-c1279e1ffa88 + - Entity: + Id: bce27559-3a56-4036-8d70-6479a375925e + Name: P_wall_tube_I + Components: + ec7929a78bda434aa5baa788cc2179cf: !TransformComponent + Id: 93743999-f497-4022-af5b-a947a8cef641 + Position: {X: -0.499999881, Y: 1.07, Z: -0.5} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 5070d7658e624e49938c5791e717585d: !ModelComponent + Id: 826a237a-3a0a-4a9d-8d53-0912e67dd5d9 + Model: c6a447f9-775a-4726-a733-e69897aeb090:PropsOld/Wall/Meshes/P_wall_tube_I + Materials: + a9e010837e21594b83c180d4250f9daa~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + Base: + BasePartAsset: 58be8d5a-3b1d-49e5-95ce-ce74887de36e:PropsOld/Wall/P_wall2_3_damaged + BasePartId: 199190d6-2eab-4167-95e8-b64aa27b501f + InstanceId: c78b9299-a1fc-4587-a7f3-cc01c803e6fc + - Entity: + Id: c6b6d8f8-0b76-4c08-bde0-e9cd10fb777f + Name: P_wall_tube_conector (2) + Components: + c63c3b005dbacc458668ad5093f71ad8: !TransformComponent + Id: c8496b23-a7b7-40bb-b02a-c293ec61a96a + Position: {X: 0.5, Y: 1.58477676, Z: 0.4885785} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 42d011ef47fab94ca8502148cac94096: !ModelComponent + Id: 0e768d8a-9247-41b3-b7b5-b3fa9da6b9c1 + Model: 7d1af772-77f7-4269-b42a-f18cade29935:PropsOld/Wall/Meshes/P_wall_tube_conector + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + Base: + BasePartAsset: 58be8d5a-3b1d-49e5-95ce-ce74887de36e:PropsOld/Wall/P_wall2_3_damaged + BasePartId: 4ac8edf8-ea9b-4df7-b64f-24b7514971ee + InstanceId: c78b9299-a1fc-4587-a7f3-cc01c803e6fc + - Entity: + Id: cc3fc3d3-7b12-4615-b439-b408af7ba977 + Name: P_wall_tube_I (2) + Components: + ec7929a78bda434aa5baa788cc2179cf: !TransformComponent + Id: 16a5bb46-ad5d-41d3-8f66-8bbc91cd816f + Position: {X: -0.499999881, Y: 1.58431089, Z: 0.482759923} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 5070d7658e624e49938c5791e717585d: !ModelComponent + Id: bc853a3d-ebe2-4ce7-b03b-5582bba1bddc + Model: c6a447f9-775a-4726-a733-e69897aeb090:PropsOld/Wall/Meshes/P_wall_tube_I + Materials: + a9e010837e21594b83c180d4250f9daa~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + Base: + BasePartAsset: 58be8d5a-3b1d-49e5-95ce-ce74887de36e:PropsOld/Wall/P_wall2_3_damaged + BasePartId: a3c3216f-b569-40a7-85dc-10aa1c40eb56 + InstanceId: 3b1d56cf-b787-4c33-ae16-c1279e1ffa88 + - Entity: + Id: d83fa288-9725-4919-a354-39eef2263771 + Name: P_wall2_x3 + Components: + ac1395906fc04d4b86b7ed9b10415f26: !TransformComponent + Id: 909513ac-c06f-4b4d-86b7-ed9b10415f26 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + acaf328f38ca224fa4ddfd953e29a4e3: !ModelComponent + Id: 05c84fe7-b4bf-4040-b1c9-a071878efff3 + Model: 8ee6d39b-001b-41d1-a37d-3f6b0f5f3c48:PropsOld/Wall/Meshes/P_wall2_x3 + Materials: + 13ccfb340777ac4ea2dc2ee68f8e1807~0: 9cbf1d49-f897-4cc4-96a5-54c03a14e6ff:PropsOld/Wall/Textures/P_wall2_damaged + Base: + BasePartAsset: 58be8d5a-3b1d-49e5-95ce-ce74887de36e:PropsOld/Wall/P_wall2_3_damaged + BasePartId: be8102d7-d0f6-435e-9f9d-ec584580b73f + InstanceId: 3b1d56cf-b787-4c33-ae16-c1279e1ffa88 + - Entity: + Id: e47e9df8-99f5-4db6-9c9f-c08aac4d1d0c + Name: P_wall_tube_conector (3) + Components: + c63c3b005dbacc458668ad5093f71ad8: !TransformComponent + Id: dcf6c0f0-17cc-4414-bb9c-d5f1d6d0f50f + Position: {X: -0.49999994, Y: 1.0689373, Z: -0.5018324} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 42d011ef47fab94ca8502148cac94096: !ModelComponent + Id: ffb4b51a-d743-4c9a-bb21-97e12acd9e30 + Model: 7d1af772-77f7-4269-b42a-f18cade29935:PropsOld/Wall/Meshes/P_wall_tube_conector + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + Base: + BasePartAsset: 58be8d5a-3b1d-49e5-95ce-ce74887de36e:PropsOld/Wall/P_wall2_3_damaged + BasePartId: b17b1dfd-0101-46cd-b284-d5e225d02cbf + InstanceId: 0a7d4300-7102-4b43-a31a-3145fb468aed + - Entity: + Id: e499a346-af5a-4d86-a9c5-52705a1089c8 + Name: P_wall_tube_conector (4) + Components: + c63c3b005dbacc458668ad5093f71ad8: !TransformComponent + Id: 5b72ff4f-effa-44ab-9282-7d175e609455 + Position: {X: -0.5, Y: 1.58477676, Z: 0.4885785} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 42d011ef47fab94ca8502148cac94096: !ModelComponent + Id: 4060a3c4-8998-495e-80e3-4c896c48eb32 + Model: 7d1af772-77f7-4269-b42a-f18cade29935:PropsOld/Wall/Meshes/P_wall_tube_conector + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + Base: + BasePartAsset: 58be8d5a-3b1d-49e5-95ce-ce74887de36e:PropsOld/Wall/P_wall2_3_damaged + BasePartId: 6e79e486-0a8d-40d1-ab95-25e43fcbc748 + InstanceId: c78b9299-a1fc-4587-a7f3-cc01c803e6fc + - Entity: + Id: e6cf4018-75ac-4632-be98-dc2f1e63a938 + Name: P_wall2_x3 + Components: + ac1395906fc04d4b86b7ed9b10415f26: !TransformComponent + Id: be2d3811-d01a-488a-925c-5d7874bca045 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + acaf328f38ca224fa4ddfd953e29a4e3: !ModelComponent + Id: 3a47a20e-baaf-47c0-8563-5f0de814296c + Model: 8ee6d39b-001b-41d1-a37d-3f6b0f5f3c48:PropsOld/Wall/Meshes/P_wall2_x3 + Materials: + 13ccfb340777ac4ea2dc2ee68f8e1807~0: 9cbf1d49-f897-4cc4-96a5-54c03a14e6ff:PropsOld/Wall/Textures/P_wall2_damaged + Base: + BasePartAsset: 58be8d5a-3b1d-49e5-95ce-ce74887de36e:PropsOld/Wall/P_wall2_3_damaged + BasePartId: be8102d7-d0f6-435e-9f9d-ec584580b73f + InstanceId: 0a7d4300-7102-4b43-a31a-3145fb468aed + - Entity: + Id: f2da15ec-71c3-4f4c-85f0-7a6e17622998 + Name: P_wall_tube_conector (4) + Components: + c63c3b005dbacc458668ad5093f71ad8: !TransformComponent + Id: 49249749-f6c5-4980-8fe1-4f067b35a312 + Position: {X: -0.5, Y: 1.58477676, Z: 0.4885785} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 42d011ef47fab94ca8502148cac94096: !ModelComponent + Id: 58467af8-3878-448b-9612-013a525305ca + Model: 7d1af772-77f7-4269-b42a-f18cade29935:PropsOld/Wall/Meshes/P_wall_tube_conector + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + Base: + BasePartAsset: 58be8d5a-3b1d-49e5-95ce-ce74887de36e:PropsOld/Wall/P_wall2_3_damaged + BasePartId: 6e79e486-0a8d-40d1-ab95-25e43fcbc748 + InstanceId: 0a7d4300-7102-4b43-a31a-3145fb468aed + - Entity: + Id: f91ccb28-94fa-4f82-92de-2b4ba878904c + Name: P_wall_tube_conector (2) + Components: + c63c3b005dbacc458668ad5093f71ad8: !TransformComponent + Id: 58e0e465-a392-4dbe-91a9-a25fffc3df9a + Position: {X: 0.5, Y: 1.58477676, Z: 0.4885785} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 42d011ef47fab94ca8502148cac94096: !ModelComponent + Id: 74b565b4-20bf-4707-bffe-afb22e094f9c + Model: 7d1af772-77f7-4269-b42a-f18cade29935:PropsOld/Wall/Meshes/P_wall_tube_conector + Materials: + d013d98447633c4bad49f34e9b07c9bc~0: 31837407-6612-4579-9fa1-da386ac2f461:PropsOld/Wall/Textures/P_wall + Base: + BasePartAsset: 58be8d5a-3b1d-49e5-95ce-ce74887de36e:PropsOld/Wall/P_wall2_3_damaged + BasePartId: 4ac8edf8-ea9b-4df7-b64f-24b7514971ee + InstanceId: 3b1d56cf-b787-4c33-ae16-c1279e1ffa88 diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Wall_3c.xkprefab b/Starbreach/Assets/Shared/PropsOld/Wall/Wall_3c.xkprefab new file mode 100644 index 0000000..930bb93 --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Wall_3c.xkprefab @@ -0,0 +1,37 @@ +!PrefabAsset +Id: e8e530f1-2c26-4155-b41e-a302db6b4a83 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! d9095823-691f-4917-a125-d0e9cce77afb + Parts: + - Entity: + Id: d9095823-691f-4917-a125-d0e9cce77afb + Name: Wall_3 + Components: + 84ccbe71ab5e2b4bab804b3733c71f89: !TransformComponent + Id: 71becc84-5eab-4b2b-ab80-4b3733c71f89 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 9acc88eff98e2748a005763e19440347: !ModelComponent + Id: ef88cc9a-8ef9-4827-a005-763e19440347 + Model: null + Materials: {} + 32de86f2bfc2ae479831512cfb69ed13: !StaticColliderComponent + Id: f286de32-c2bf-47ae-9831-512cfb69ed13 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 06fc4a5eb33e0d47b9d0b9bab1d3c422: !BoxColliderShapeDesc + Is2D: false + Size: {X: 9.0, Y: 2.5, Z: 1.0} + LocalOffset: {X: -3.0, Y: 1.25, Z: 0.0} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} diff --git a/Starbreach/Assets/Shared/PropsOld/Wall/Wall_Crossc.xkprefab b/Starbreach/Assets/Shared/PropsOld/Wall/Wall_Crossc.xkprefab new file mode 100644 index 0000000..ecb034f --- /dev/null +++ b/Starbreach/Assets/Shared/PropsOld/Wall/Wall_Crossc.xkprefab @@ -0,0 +1,42 @@ +!PrefabAsset +Id: c5c4b2ec-f645-4d53-bad5-6cc2bb9ab313 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 20b4c9b8-547f-43a1-9019-a3f6549dfe87 + Parts: + - Entity: + Id: 20b4c9b8-547f-43a1-9019-a3f6549dfe87 + Name: WallPrefabModel + Components: + 387a61d5cca71445a40a45bd0008accf: !TransformComponent + Id: d5617a38-a7cc-4514-a40a-45bd0008accf + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 5f57e576864ec240b0d8750970dd3db3: !ModelComponent + Id: 76e5575f-4e86-40c2-b0d8-750970dd3db3 + Model: 929f63af-6b21-4587-820c-2a19458b6d73:PropsOld/Wall/WallPrefabModel + Materials: {} + dabd33d4b8aef8449061dd042a5283a1: !StaticColliderComponent + Id: d433bdda-aeb8-44f8-9061-dd042a5283a1 + CanSleep: false + Restitution: 0.0 + Friction: 0.5 + RollingFriction: 0.0 + CcdMotionThreshold: 0.0 + CcdSweptSphereRadius: 0.0 + IsTrigger: false + ColliderShapes: + 2d592265bb2dd94ea7bcef761d82eb87: !BoxColliderShapeDesc + Is2D: false + Size: {X: 3.0, Y: 2.0, Z: 1.0} + LocalOffset: {X: 0.5, Y: 1.0, Z: 0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + 8d3cb03bca7a2d45a33a8448cd4a249e: !BoxColliderShapeDesc + Is2D: false + Size: {X: 1.0, Y: 2.0, Z: 3.0} + LocalOffset: {X: 0.5, Y: 1.0, Z: 0.5} + LocalRotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} diff --git a/Starbreach/Assets/Shared/RenderFrame.xkframe b/Starbreach/Assets/Shared/RenderFrame.xkframe new file mode 100644 index 0000000..b69dd53 --- /dev/null +++ b/Starbreach/Assets/Shared/RenderFrame.xkframe @@ -0,0 +1,6 @@ +!RenderFrame +Id: 2ac8a30e-d5ee-4323-abba-9b38409a323f +Tags: [] +Descriptor: + Format: HDR + DepthFormat: DepthAndStencil diff --git a/Starbreach/Assets/Shared/Sounds/Soldier/bullet_fire_one_shot1.xksnd b/Starbreach/Assets/Shared/Sounds/Soldier/bullet_fire_one_shot1.xksnd new file mode 100644 index 0000000..4a1752f --- /dev/null +++ b/Starbreach/Assets/Shared/Sounds/Soldier/bullet_fire_one_shot1.xksnd @@ -0,0 +1,8 @@ +!Sound +Id: 59256dc3-bb1f-441e-81e7-acb8f86c9530 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/AudioToSort/TGS Sounds/player soldier/bullet_fire_one_shot1.wav +CompressionRatio: 15 +StreamFromDisk: false +Spatialized: true diff --git a/Starbreach/Assets/Shared/Sounds/Soldier/bullet_fire_one_shot2.xksnd b/Starbreach/Assets/Shared/Sounds/Soldier/bullet_fire_one_shot2.xksnd new file mode 100644 index 0000000..a4f6ba9 --- /dev/null +++ b/Starbreach/Assets/Shared/Sounds/Soldier/bullet_fire_one_shot2.xksnd @@ -0,0 +1,8 @@ +!Sound +Id: e41eb073-4e7f-4aee-b365-6273e5afb42d +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/AudioToSort/TGS Sounds/player soldier/bullet_fire_one_shot2.wav +CompressionRatio: 15 +StreamFromDisk: false +Spatialized: true diff --git a/Starbreach/Assets/Shared/Sounds/Soldier/bullet_fire_one_shot3.xksnd b/Starbreach/Assets/Shared/Sounds/Soldier/bullet_fire_one_shot3.xksnd new file mode 100644 index 0000000..dff356a --- /dev/null +++ b/Starbreach/Assets/Shared/Sounds/Soldier/bullet_fire_one_shot3.xksnd @@ -0,0 +1,8 @@ +!Sound +Id: 6fe0476d-204f-4181-8484-f91741b605ce +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/AudioToSort/TGS Sounds/player soldier/bullet_fire_one_shot3.wav +CompressionRatio: 15 +StreamFromDisk: false +Spatialized: true diff --git a/Starbreach/Assets/Shared/Sounds/Soldier/bullet_fire_one_shot4.xksnd b/Starbreach/Assets/Shared/Sounds/Soldier/bullet_fire_one_shot4.xksnd new file mode 100644 index 0000000..0283dfc --- /dev/null +++ b/Starbreach/Assets/Shared/Sounds/Soldier/bullet_fire_one_shot4.xksnd @@ -0,0 +1,8 @@ +!Sound +Id: 4239f814-6ec9-4417-bab9-5829a2f393ab +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/AudioToSort/TGS Sounds/player soldier/bullet_fire_one_shot4.wav +CompressionRatio: 15 +StreamFromDisk: false +Spatialized: true diff --git a/Starbreach/Assets/Shared/Sounds/Soldier/bullet_impact_1.xksnd b/Starbreach/Assets/Shared/Sounds/Soldier/bullet_impact_1.xksnd new file mode 100644 index 0000000..f247793 --- /dev/null +++ b/Starbreach/Assets/Shared/Sounds/Soldier/bullet_impact_1.xksnd @@ -0,0 +1,8 @@ +!Sound +Id: 7cdb4abf-b948-4f3a-8978-d69473b49a41 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/AudioToSort/TGS Sounds/player soldier/bullet_impact_1.wav +CompressionRatio: 15 +StreamFromDisk: false +Spatialized: true diff --git a/Starbreach/Assets/Shared/Sounds/Soldier/bullet_impact_2.xksnd b/Starbreach/Assets/Shared/Sounds/Soldier/bullet_impact_2.xksnd new file mode 100644 index 0000000..a05c584 --- /dev/null +++ b/Starbreach/Assets/Shared/Sounds/Soldier/bullet_impact_2.xksnd @@ -0,0 +1,8 @@ +!Sound +Id: 29858800-765e-4589-b3a3-4ded9910549f +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/AudioToSort/TGS Sounds/player soldier/bullet_impact_2.wav +CompressionRatio: 15 +StreamFromDisk: false +Spatialized: true diff --git a/Starbreach/Assets/Shared/Sounds/Soldier/bullet_impact_3.xksnd b/Starbreach/Assets/Shared/Sounds/Soldier/bullet_impact_3.xksnd new file mode 100644 index 0000000..9d00274 --- /dev/null +++ b/Starbreach/Assets/Shared/Sounds/Soldier/bullet_impact_3.xksnd @@ -0,0 +1,8 @@ +!Sound +Id: 3612ceb7-4a10-4d18-8b25-f9c216cff945 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/AudioToSort/TGS Sounds/player soldier/bullet_impact_3.wav +CompressionRatio: 15 +StreamFromDisk: false +Spatialized: true diff --git a/Starbreach/Assets/Shared/Sounds/Soldier/bullet_impact_4.xksnd b/Starbreach/Assets/Shared/Sounds/Soldier/bullet_impact_4.xksnd new file mode 100644 index 0000000..f45cbe8 --- /dev/null +++ b/Starbreach/Assets/Shared/Sounds/Soldier/bullet_impact_4.xksnd @@ -0,0 +1,8 @@ +!Sound +Id: 626af2c1-b8d2-44d0-bc4b-d30497b4a23f +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/AudioToSort/TGS Sounds/player soldier/bullet_impact_4.wav +CompressionRatio: 15 +StreamFromDisk: false +Spatialized: true diff --git a/Starbreach/Assets/Shared/Sounds/Soldier/death.xksnd b/Starbreach/Assets/Shared/Sounds/Soldier/death.xksnd new file mode 100644 index 0000000..937bb90 --- /dev/null +++ b/Starbreach/Assets/Shared/Sounds/Soldier/death.xksnd @@ -0,0 +1,8 @@ +!Sound +Id: 7f5bdb0e-74d0-4789-b2b5-8bbc918ee2e2 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/AudioToSort/TGS Sounds/player soldier/death.wav +CompressionRatio: 15 +StreamFromDisk: false +Spatialized: true diff --git a/Starbreach/Assets/Shared/Sounds/Soldier/reload.xksnd b/Starbreach/Assets/Shared/Sounds/Soldier/reload.xksnd new file mode 100644 index 0000000..070a457 --- /dev/null +++ b/Starbreach/Assets/Shared/Sounds/Soldier/reload.xksnd @@ -0,0 +1,8 @@ +!Sound +Id: d9f83c4b-b23e-4673-b6b1-109f0c8f4656 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/AudioToSort/TGS Sounds/player soldier/reload.wav +CompressionRatio: 15 +StreamFromDisk: false +Spatialized: true diff --git a/Starbreach/Assets/Shared/Sounds/Soldier/take_damage1.xksnd b/Starbreach/Assets/Shared/Sounds/Soldier/take_damage1.xksnd new file mode 100644 index 0000000..b452413 --- /dev/null +++ b/Starbreach/Assets/Shared/Sounds/Soldier/take_damage1.xksnd @@ -0,0 +1,8 @@ +!Sound +Id: b2f2e90c-4bc1-44fb-91ad-eaf2ace40cb6 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/AudioToSort/TGS Sounds/player soldier/take_damage1.wav +CompressionRatio: 15 +StreamFromDisk: false +Spatialized: true diff --git a/Starbreach/Assets/Shared/Sounds/Soldier/take_damage2.xksnd b/Starbreach/Assets/Shared/Sounds/Soldier/take_damage2.xksnd new file mode 100644 index 0000000..ba3c9bc --- /dev/null +++ b/Starbreach/Assets/Shared/Sounds/Soldier/take_damage2.xksnd @@ -0,0 +1,8 @@ +!Sound +Id: 96a6a59f-dec9-465d-9f01-e426b0eab295 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/AudioToSort/TGS Sounds/player soldier/take_damage2.wav +CompressionRatio: 15 +StreamFromDisk: false +Spatialized: true diff --git a/Starbreach/Assets/Shared/Sounds/Soldier/take_damage3.xksnd b/Starbreach/Assets/Shared/Sounds/Soldier/take_damage3.xksnd new file mode 100644 index 0000000..cb3d7ff --- /dev/null +++ b/Starbreach/Assets/Shared/Sounds/Soldier/take_damage3.xksnd @@ -0,0 +1,8 @@ +!Sound +Id: a9cf4143-d093-440d-98d6-b537d84a4b0b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../../Resources/AudioToSort/TGS Sounds/player soldier/take_damage3.wav +CompressionRatio: 15 +StreamFromDisk: false +Spatialized: true diff --git a/Starbreach/Assets/Shared/Sounds/VRDroneLaser.xksnd b/Starbreach/Assets/Shared/Sounds/VRDroneLaser.xksnd new file mode 100644 index 0000000..f8d5e10 --- /dev/null +++ b/Starbreach/Assets/Shared/Sounds/VRDroneLaser.xksnd @@ -0,0 +1,8 @@ +!Sound +Id: 4f4fcf44-dd48-4fe1-b23e-f8a40f1048c0 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/AudioToSort/TGS Sounds/Corner Effects section1 125bpm Em.wav +CompressionRatio: 20 +StreamFromDisk: false +Spatialized: true diff --git a/Starbreach/Assets/Shared/Sounds/combat_music_xenko.xksnd b/Starbreach/Assets/Shared/Sounds/combat_music_xenko.xksnd new file mode 100644 index 0000000..a827849 --- /dev/null +++ b/Starbreach/Assets/Shared/Sounds/combat_music_xenko.xksnd @@ -0,0 +1,8 @@ +!Sound +Id: 4468824f-6749-4a15-9efd-b49da99895d7 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/AudioToSort/TGS Sounds/Misc/combat_music_xenko.wav +CompressionRatio: 15 +StreamFromDisk: true +Spatialized: false diff --git a/Starbreach/Assets/Shared/Sounds/fan.xksnd b/Starbreach/Assets/Shared/Sounds/fan.xksnd new file mode 100644 index 0000000..b03c4b9 --- /dev/null +++ b/Starbreach/Assets/Shared/Sounds/fan.xksnd @@ -0,0 +1,8 @@ +!Sound +Id: 6b7bb29f-c9ae-4ba3-8818-ec168d229873 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/AudioToSort/TGS Sounds/Misc/fan.wav +CompressionRatio: 15 +StreamFromDisk: false +Spatialized: true diff --git a/Starbreach/Assets/Shared/UI/Controls.xkuipage b/Starbreach/Assets/Shared/UI/Controls.xkuipage new file mode 100644 index 0000000..43b4e66 --- /dev/null +++ b/Starbreach/Assets/Shared/UI/Controls.xkuipage @@ -0,0 +1,98 @@ +!UIPageAsset +Id: 0126b6f2-b31b-4a1c-b097-a1427f01b5af +SerializedVersion: {Xenko: 2.1.0.1} +Tags: [] +Design: + Resolution: {X: 1920.0, Y: 1080.0, Z: 1000.0} +Hierarchy: + RootParts: + - !Grid ref!! ad8ba599-7734-42a1-8656-9376479925c0 + Parts: + - UIElement: !TextBlock + Id: 0d20472e-da61-48f7-a72f-d8a72fc1f1f5 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Margin: {} + Text: Hold Right Trigger to shoot + Font: 860ebd43-0dfb-47ff-b2ed-5c3f5b78956f:UI/SpriteFont (2) + TextSize: 30.0 + TextColor: {R: 255, G: 255, B: 255, A: 255} + - UIElement: !TextBlock + Id: 4b4a518c-5b20-44c7-871b-0c2871b45c93 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Margin: {Top: 50.0} + Text: Press Start to start playing! + Font: 860ebd43-0dfb-47ff-b2ed-5c3f5b78956f:UI/SpriteFont (2) + TextSize: 30.0 + TextColor: {R: 255, G: 0, B: 0, A: 255} + - UIElement: !TextBlock + Id: 5b163213-2534-4ed9-b092-ef93ac1403cc + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Margin: {Top: 50.0} + Text: Defend the base by killing the approaching drones! + Font: 860ebd43-0dfb-47ff-b2ed-5c3f5b78956f:UI/SpriteFont (2) + TextSize: 30.0 + TextColor: {R: 255, G: 255, B: 50, A: 255} + - UIElement: !TextBlock + Id: 8ddafcf0-19da-4d9f-bcf1-9153720f0f72 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Margin: {} + Text: Hold Left Trigger to aim + Font: 860ebd43-0dfb-47ff-b2ed-5c3f5b78956f:UI/SpriteFont (2) + TextSize: 30.0 + TextColor: {R: 255, G: 255, B: 255, A: 255} + - UIElement: !TextBlock + Id: 98dfc57c-0645-4297-a6c9-dc607eba847e + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Margin: {} + Text: Press Y to reload + Font: 860ebd43-0dfb-47ff-b2ed-5c3f5b78956f:UI/SpriteFont (2) + TextSize: 30.0 + TextColor: {R: 255, G: 255, B: 255, A: 255} + - UIElement: !Grid + Id: ad8ba599-7734-42a1-8656-9376479925c0 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Margin: {} + Children: + a58b0cbc0a625e4dac7660c2dd222f7d: !Grid ref!! bc0c8ba5-620a-4d5e-ac76-60c2dd222f7d + RowDefinitions: {} + ColumnDefinitions: {} + LayerDefinitions: {} + - UIElement: !Grid + Id: bc0c8ba5-620a-4d5e-ac76-60c2dd222f7d + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 180} + Margin: {Left: 450.0, Top: 300.0, Right: 450.0, Bottom: 300.0} + Children: + 34c594d600331c4291a1eb964738a695: !StackPanel ref!! d694c534-3300-421c-91a1-eb964738a695 + RowDefinitions: {} + ColumnDefinitions: {} + LayerDefinitions: {} + - UIElement: !TextBlock + Id: d405dde5-f86b-48af-948e-96768b4f2415 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Margin: {} + Text: Move with the sticks + Font: 860ebd43-0dfb-47ff-b2ed-5c3f5b78956f:UI/SpriteFont (2) + TextSize: 30.0 + TextColor: {R: 255, G: 255, B: 255, A: 255} + - UIElement: !StackPanel + Id: d694c534-3300-421c-91a1-eb964738a695 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + HorizontalAlignment: Center + VerticalAlignment: Center + Margin: {Left: 20.0, Top: 20.0, Right: 20.0, Bottom: 20.0} + Children: + 2e47200d61daf748a72fd8a72fc1f1f5: !TextBlock ref!! 0d20472e-da61-48f7-a72f-d8a72fc1f1f5 + f0fcda8dda199f4dbcf19153720f0f72: !TextBlock ref!! 8ddafcf0-19da-4d9f-bcf1-9153720f0f72 + 7cc5df9845069742a6c9dc607eba847e: !TextBlock ref!! 98dfc57c-0645-4297-a6c9-dc607eba847e + e5dd05d46bf8af48948e96768b4f2415: !TextBlock ref!! d405dde5-f86b-48af-948e-96768b4f2415 + 1332165b3425d94eb092ef93ac1403cc: !TextBlock ref!! 5b163213-2534-4ed9-b092-ef93ac1403cc + 8c514a4b205bc744871b0c2871b45c93: !TextBlock ref!! 4b4a518c-5b20-44c7-871b-0c2871b45c93 diff --git a/Starbreach/Assets/Shared/UI/ControlsVR.xkuipage b/Starbreach/Assets/Shared/UI/ControlsVR.xkuipage new file mode 100644 index 0000000..afcd2d2 --- /dev/null +++ b/Starbreach/Assets/Shared/UI/ControlsVR.xkuipage @@ -0,0 +1,88 @@ +!UIPageAsset +Id: eec4a797-8783-450f-88d3-cc355c8b620c +SerializedVersion: {Xenko: 2.1.0.1} +Tags: [] +Design: + Resolution: {X: 1024.0, Y: 512.0, Z: 1000.0} +Hierarchy: + RootParts: + - !Grid ref!! 018dd458-7711-4882-a082-d41106dedd67 + Parts: + - UIElement: !Grid + Id: 018dd458-7711-4882-a082-d41106dedd67 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 180} + Margin: {} + Children: + 970717d76cce9b41873ab73995c8176c: !StackPanel ref!! d7170797-ce6c-419b-873a-b73995c8176c + RowDefinitions: {} + ColumnDefinitions: {} + LayerDefinitions: {} + - UIElement: !TextBlock + Id: 926586bc-4628-4230-9f7a-5dd2ea25652d + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Margin: {Left: 5.0, Top: 24.0, Right: -5.0, Bottom: 26.0} + Text: Defend the base by killing + Font: 7efbd51e-ee62-49ee-9ee1-c73901fb17a5:UI/SpriteFont + TextSize: 30.0 + TextColor: {R: 255, G: 255, B: 50, A: 255} + - UIElement: !TextBlock + Id: 97cc383b-a009-48a5-9402-fdb896891310 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Margin: {} + Text: Move with the sticks + Font: 7efbd51e-ee62-49ee-9ee1-c73901fb17a5:UI/SpriteFont + TextSize: 30.0 + TextColor: {R: 240, G: 240, B: 240, A: 255} + - UIElement: !TextBlock + Id: b1baaa75-95bd-4c0b-9330-44d056bbba61 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Margin: {Left: 3.0, Top: -147.0, Right: -3.0, Bottom: 197.0} + Text: the approaching drones! + Font: 7efbd51e-ee62-49ee-9ee1-c73901fb17a5:UI/SpriteFont + TextSize: 30.0 + TextColor: {R: 255, G: 255, B: 50, A: 255} + - UIElement: !TextBlock + Id: c36e3e28-4773-40ac-aaba-04f62f7cb0ff + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Margin: {} + Text: Press A to reset VR view + Font: 7efbd51e-ee62-49ee-9ee1-c73901fb17a5:UI/SpriteFont + TextSize: 30.0 + TextColor: {R: 240, G: 240, B: 240, A: 255} + - UIElement: !StackPanel + Id: d7170797-ce6c-419b-873a-b73995c8176c + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + HorizontalAlignment: Center + VerticalAlignment: Center + Margin: {Left: 20.0, Top: 20.0, Right: 20.0, Bottom: 20.0} + Children: + ce3903d823b8ee48a4c21806b16741ca: !TextBlock ref!! d80339ce-b823-48ee-a4c2-1806b16741ca + 283e6ec37347ac40aaba04f62f7cb0ff: !TextBlock ref!! c36e3e28-4773-40ac-aaba-04f62f7cb0ff + 3b38cc9709a0a5489402fdb896891310: !TextBlock ref!! 97cc383b-a009-48a5-9402-fdb896891310 + bc866592284630429f7a5dd2ea25652d: !TextBlock ref!! 926586bc-4628-4230-9f7a-5dd2ea25652d + ae110ff7b93dce48afc8fd431910ad3d: !TextBlock ref!! f70f11ae-3db9-48ce-afc8-fd431910ad3d + 75aabab1bd950b4c933044d056bbba61: !TextBlock ref!! b1baaa75-95bd-4c0b-9330-44d056bbba61 + - UIElement: !TextBlock + Id: d80339ce-b823-48ee-a4c2-1806b16741ca + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Margin: {} + Text: Hold RT for disintegration beam + Font: 7efbd51e-ee62-49ee-9ee1-c73901fb17a5:UI/SpriteFont + TextSize: 30.0 + TextColor: {R: 240, G: 240, B: 240, A: 255} + - UIElement: !TextBlock + Id: f70f11ae-3db9-48ce-afc8-fd431910ad3d + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Margin: {Top: 50.0} + Text: Press Start to start playing! + Font: 7efbd51e-ee62-49ee-9ee1-c73901fb17a5:UI/SpriteFont + TextSize: 30.0 + TextColor: {R: 255, G: 0, B: 0, A: 255} diff --git a/Starbreach/Assets/Shared/UI/CountDown.xkuipage b/Starbreach/Assets/Shared/UI/CountDown.xkuipage new file mode 100644 index 0000000..85dddcb --- /dev/null +++ b/Starbreach/Assets/Shared/UI/CountDown.xkuipage @@ -0,0 +1,49 @@ +!UIPageAsset +Id: 2fcc0b07-b1cf-4324-91f6-ac617abe3dce +SerializedVersion: {Xenko: 2.1.0.1} +Tags: [] +Design: + Resolution: {X: 1920.0, Y: 1080.0, Z: 1000.0} +Hierarchy: + RootParts: + - !Grid ref!! 018dd458-7711-4882-a082-d41106dedd67 + Parts: + - UIElement: !Grid + Id: 018dd458-7711-4882-a082-d41106dedd67 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Margin: {} + Children: + fb9e4e5f001c4147b417c0005f38228f: !StackPanel ref!! 5f4e9efb-1c00-4741-b417-c0005f38228f + RowDefinitions: {} + ColumnDefinitions: {} + LayerDefinitions: {} + - UIElement: !StackPanel + Id: 5f4e9efb-1c00-4741-b417-c0005f38228f + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 180} + HorizontalAlignment: Center + VerticalAlignment: Center + Margin: {} + Children: + 3b38cc9709a0a5489402fdb896891310: !TextBlock ref!! 97cc383b-a009-48a5-9402-fdb896891310 + d9de336bb0f35b4695b1302fe6290f64: !TextBlock ref!! 6b33ded9-f3b0-465b-95b1-302fe6290f64 + - UIElement: !TextBlock + Id: 6b33ded9-f3b0-465b-95b1-302fe6290f64 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + HorizontalAlignment: Center + Margin: {Top: 50.0, Bottom: 50.0} + Name: CountDown + Text: 10 + Font: 7efbd51e-ee62-49ee-9ee1-c73901fb17a5:UI/SpriteFont + TextColor: {R: 240, G: 240, B: 240, A: 255} + - UIElement: !TextBlock + Id: 97cc383b-a009-48a5-9402-fdb896891310 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + HorizontalAlignment: Center + Margin: {Left: 50.0, Top: 50.0, Right: 50.0} + Text: Respawning... + Font: 7efbd51e-ee62-49ee-9ee1-c73901fb17a5:UI/SpriteFont + TextColor: {R: 240, G: 240, B: 240, A: 255} diff --git a/Starbreach/Assets/Shared/UI/CountDownVR.xkuipage b/Starbreach/Assets/Shared/UI/CountDownVR.xkuipage new file mode 100644 index 0000000..850ed27 --- /dev/null +++ b/Starbreach/Assets/Shared/UI/CountDownVR.xkuipage @@ -0,0 +1,49 @@ +!UIPageAsset +Id: 52177230-a906-45aa-8d74-41356acc1e19 +SerializedVersion: {Xenko: 2.1.0.1} +Tags: [] +Design: + Resolution: {X: 1024.0, Y: 512.0, Z: 1000.0} +Hierarchy: + RootParts: + - !Grid ref!! 018dd458-7711-4882-a082-d41106dedd67 + Parts: + - UIElement: !Grid + Id: 018dd458-7711-4882-a082-d41106dedd67 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Margin: {} + Children: + fb9e4e5f001c4147b417c0005f38228f: !StackPanel ref!! 5f4e9efb-1c00-4741-b417-c0005f38228f + RowDefinitions: {} + ColumnDefinitions: {} + LayerDefinitions: {} + - UIElement: !StackPanel + Id: 5f4e9efb-1c00-4741-b417-c0005f38228f + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 180} + HorizontalAlignment: Center + VerticalAlignment: Center + Margin: {} + Children: + 3b38cc9709a0a5489402fdb896891310: !TextBlock ref!! 97cc383b-a009-48a5-9402-fdb896891310 + d9de336bb0f35b4695b1302fe6290f64: !TextBlock ref!! 6b33ded9-f3b0-465b-95b1-302fe6290f64 + - UIElement: !TextBlock + Id: 6b33ded9-f3b0-465b-95b1-302fe6290f64 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + HorizontalAlignment: Center + Margin: {Top: 50.0, Bottom: 50.0} + Name: CountDown + Text: 10 + Font: 7efbd51e-ee62-49ee-9ee1-c73901fb17a5:UI/SpriteFont + TextColor: {R: 240, G: 240, B: 240, A: 255} + - UIElement: !TextBlock + Id: 97cc383b-a009-48a5-9402-fdb896891310 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + HorizontalAlignment: Center + Margin: {Left: 50.0, Top: 50.0, Right: 50.0} + Text: Respawning... + Font: 7efbd51e-ee62-49ee-9ee1-c73901fb17a5:UI/SpriteFont + TextColor: {R: 240, G: 240, B: 240, A: 255} diff --git a/Starbreach/Assets/Shared/UI/MirrorTexture.xktex b/Starbreach/Assets/Shared/UI/MirrorTexture.xktex new file mode 100644 index 0000000..71114d3 --- /dev/null +++ b/Starbreach/Assets/Shared/UI/MirrorTexture.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 89005614-7e19-473e-b59f-fac93084dae2 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/CheckerTexture.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/UI/Page.xkuipage b/Starbreach/Assets/Shared/UI/Page.xkuipage new file mode 100644 index 0000000..df0ad37 --- /dev/null +++ b/Starbreach/Assets/Shared/UI/Page.xkuipage @@ -0,0 +1,950 @@ +!UIPageAsset +Id: 3639cb92-9f86-4918-8715-6b56efdcaa9c +SerializedVersion: {Xenko: 2.1.0.1} +Tags: [] +Design: + Resolution: {X: 1024.0, Y: 512.0, Z: 1000.0} +Hierarchy: + RootParts: + - !Grid ref!! 018dd458-7711-4882-a082-d41106dedd67 + Parts: + - UIElement: !Grid + Id: 018dd458-7711-4882-a082-d41106dedd67 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Margin: {} + Children: + bb7c62fe6f4ad14181d4aa64f6897968: !ImageElement ref!! fe627cbb-4a6f-41d1-81d4-aa64f6897968 + 96e950371b454f44878768c81c2e191f: !Grid ref!! 3750e996-451b-444f-8787-68c81c2e191f + RowDefinitions: {} + ColumnDefinitions: {} + LayerDefinitions: {} + - UIElement: !ImageElement + Id: 02a67fc2-94d2-429f-83ea-32dae8c95163 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Width*: 25.0 + Margin: {} + Name: ammoFill + Source: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 1 + Color: {R: 255, G: 255, B: 255, A: 255} + StretchType: Fill + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 422f66e7-49c2-4b34-8610-3c157afdf692 + InstanceId: 83c07e90-ab86-477f-bb0f-e354d5cbcc7a + - UIElement: !Grid + Id: 0de9fccd-18ae-4994-a2cc-6faf157d26dc + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DepthAlignment: Stretch + Margin: {} + Name*: lifebarGrid + Children: + d82c9c843a16d34fb9e5675d1797fcc0: !ImageElement ref!! 849c2cd8-163a-4fd3-b9e5-675d1797fcc0 + RowDefinitions: {} + ColumnDefinitions: + 9483c3d1e1fd1748a33883a1d10c139b: + SizeValue*: 100.0 + ba3a67a7cac7f549885f9d57aaee6668: + SizeValue*: 0.0 + LayerDefinitions: {} + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 789d1aae-6a58-41a2-8bf1-f8ec0994ee16 + InstanceId: 9843a3d6-ac39-4c4d-b776-203c49593a63 + - UIElement: !ContentDecorator + Id: 0e4c6ee6-af27-47b5-9037-8aa9c2356438 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + Width*: 25.0 + Margin*: {Left: -2.0, Right: -2.0} + Name: ammo + Padding: {} + Content: !ImageElement ref!! b2b2c82a-8c55-422d-99f8-dc6581c3239c + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 3f54626b-54a1-4ff5-944c-c1fb6348c0f9 + InstanceId: 9d1bf057-e85a-4b0c-bb3f-a15dae49aa21 + - UIElement: !ImageElement + Id: 0eed9ef8-f979-44b7-9f77-f0719be30b85 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Width*: 25.0 + Margin: {} + Name: ammoFill + Source: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 1 + Color: {R: 255, G: 255, B: 255, A: 255} + StretchType: Fill + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 422f66e7-49c2-4b34-8610-3c157afdf692 + InstanceId: 291550b4-d5d6-4263-a783-17148b85b32a + - UIElement: !ImageElement + Id: 10428e32-a201-485d-bdc0-56d8860c4a6c + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Width*: 25.0 + Margin: {} + Name: ammoFill + Source: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 1 + Color: {R: 255, G: 255, B: 255, A: 255} + StretchType: Fill + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 422f66e7-49c2-4b34-8610-3c157afdf692 + InstanceId: 0e4686d2-0e03-4488-a2b0-64377a2bdf44 + - UIElement: !ContentDecorator + Id: 16e7df43-2140-4426-a701-ffb946a52ad5 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + Width*: 25.0 + Margin*: {Left: -2.0, Right: -2.0} + Name: ammo + Padding: {} + Content: !ImageElement ref!! 1b8fe5e0-0382-40e0-bcfa-dc1c6eadfcda + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 3f54626b-54a1-4ff5-944c-c1fb6348c0f9 + InstanceId: 6bf1f5f1-b736-4257-8ed3-ac342056e2d0 + - UIElement: !ContentDecorator + Id: 16f6065d-cb84-4b34-b1c7-7a919e430624 + DependencyProperties: + 1979464bbe484462149955fa9f1c939d*~GridBase.RowPropertyKey: 1 + 337678f3fa024d787963655aaf956eca*~GridBase.ColumnPropertyKey: 0 + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + HorizontalAlignment*: Right + VerticalAlignment: Center + Margin*: {} + Name: hero + Padding: {} + Content: !ImageElement ref!! f2736ec4-50ad-4ce1-abb6-f41b0875cd6c + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 8 + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: e093ca40-112d-4315-897b-c9e11e9c3296 + InstanceId: 8fc94818-d537-447d-bd07-6dda82863e85 + - UIElement: !ImageElement + Id: 173ecb2e-00a3-45b0-9cc1-883c5733653d + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Width*: 25.0 + Margin: {} + Name: ammoFill + Source: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 1 + Color: {R: 255, G: 255, B: 255, A: 255} + StretchType: Fill + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 422f66e7-49c2-4b34-8610-3c157afdf692 + InstanceId: b88246c8-729f-4922-9ca3-42f899066b5d + - UIElement: !ContentDecorator + Id: 1b849bda-73bb-4fb4-bf5a-875001e34c5a + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + Width*: 25.0 + Margin*: {Left: -2.0, Right: -2.0} + Name: ammo + Padding: {} + Content: !ImageElement ref!! f17ad3bd-d4e2-4fa9-ad77-13ad13cfb7a8 + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 3f54626b-54a1-4ff5-944c-c1fb6348c0f9 + InstanceId: 6bdf5ad2-ed6f-4339-9067-5b81e76d74f9 + - UIElement: !ImageElement + Id: 1b8fe5e0-0382-40e0-bcfa-dc1c6eadfcda + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Width*: 25.0 + Margin: {} + Name: ammoFill + Source: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 1 + Color: {R: 255, G: 255, B: 255, A: 255} + StretchType: Fill + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 422f66e7-49c2-4b34-8610-3c157afdf692 + InstanceId: 6bf1f5f1-b736-4257-8ed3-ac342056e2d0 + - UIElement: !StackPanel + Id: 22a93633-f907-42c8-9e7f-72278ae3066b + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Margin: {} + Name: ammobarGrid + Children: + da9b841bbb73b44fbf5a875001e34c5a: !ContentDecorator ref!! 1b849bda-73bb-4fb4-bf5a-875001e34c5a + 264bcc782af0ae4f981d03cf98fefe48: !ContentDecorator ref!! 78cc4b26-f02a-4fae-981d-03cf98fefe48 + 7ace6e516346294d94c70902e900efe1: !ContentDecorator ref!! 516ece7a-4663-4d29-94c7-0902e900efe1 + 203657f73237694aa3d9c8107aedf1be: !ContentDecorator ref!! f7573620-3732-4a69-a3d9-c8107aedf1be + c589bcf9f433124a8688eb211a0729bc: !ContentDecorator ref!! f9bc89c5-33f4-4a12-8688-eb211a0729bc + 8b93807d51b67741ada365697abceb9a: !ContentDecorator ref!! 7d80938b-b651-4177-ada3-65697abceb9a + a43ae2fd3a37124dae34767694593ae8: !ContentDecorator ref!! fde23aa4-373a-4d12-ae34-767694593ae8 + b756f170e1e1c746bda10e0a46119296: !ContentDecorator ref!! 70f156b7-e1e1-46c7-bda1-0e0a46119296 + c3a4e8340ba2354c96ffcfcf2e7a044d: !ContentDecorator ref!! 34e8a4c3-a20b-4c35-96ff-cfcf2e7a044d + 43dfe71640212644a701ffb946a52ad5: !ContentDecorator ref!! 16e7df43-2140-4426-a701-ffb946a52ad5 + f258eaf94fab224e98b12d31cd5ac96b: !ContentDecorator ref!! f9ea58f2-ab4f-4e22-98b1-2d31cd5ac96b + e66e4c0e27afb54790378aa9c2356438: !ContentDecorator ref!! 0e4c6ee6-af27-47b5-9037-8aa9c2356438 + 2960b7810249b546b6c7b48107df4b44: !ContentDecorator ref!! 81b76029-4902-46b5-b6c7-b48107df4b44 + 5e8c00bbae1d344c9b2df08de3377ce1: !ContentDecorator ref!! bb008c5e-1dae-4c34-9b2d-f08de3377ce1 + 5a53a3b92546f245a460b305820c1422: !ContentDecorator ref!! b9a3535a-4625-45f2-a460-b305820c1422 + 3a02b13d25329a45ab29b9c47fe7be1a: !ContentDecorator ref!! 3db1023a-3225-459a-ab29-b9c47fe7be1a + e22394d758ac4d4ba169b02d05ab0acc: !ContentDecorator ref!! d79423e2-ac58-4b4d-a169-b02d05ab0acc + 0df04756526af342827665da1ec8e2dc: !ContentDecorator ref!! 5647f00d-6a52-42f3-8276-65da1ec8e2dc + eb9db7a64376a642bee4023a6760ddcf: !ContentDecorator ref!! a6b79deb-7643-42a6-bee4-023a6760ddcf + 58dd1cc4ff95dc4b85cc13644fa665d5: !ContentDecorator ref!! c41cdd58-95ff-4bdc-85cc-13644fa665d5 + Orientation: Horizontal + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: a867e7d0-2845-4ae2-8751-bec4e36b5685 + InstanceId: d9df338b-1e65-4330-913e-f3e43f2da214 + - UIElement: !ImageElement + Id: 2e885c09-b8fb-42b6-be87-503924541ad2 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Width*: 25.0 + Margin: {} + Name: ammoFill + Source: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 1 + Color: {R: 255, G: 255, B: 255, A: 255} + StretchType: Fill + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 422f66e7-49c2-4b34-8610-3c157afdf692 + InstanceId: fc42efb8-9673-4bcb-ab97-2ff1b1e39cc1 + - UIElement: !ContentDecorator + Id: 34e8a4c3-a20b-4c35-96ff-cfcf2e7a044d + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + Width*: 25.0 + Margin*: {Left: -2.0, Right: -2.0} + Name: ammo + Padding: {} + Content: !ImageElement ref!! be2cc9ad-834b-4215-8f59-61120094cb1c + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 3f54626b-54a1-4ff5-944c-c1fb6348c0f9 + InstanceId: 6bbc59d6-fe13-4df7-b9b1-6befd0fef9e1 + - UIElement: !ImageElement + Id: 36f79080-d1fa-4cbc-a40b-c1b1779e8cd3 + DependencyProperties: + 5ed55b1d4f6b92bcbdd4713f9337ef43~GridBase.ColumnPropertyKey: 0 + 2668c17a346c04c5588bcbb223256d1a~GridBase.RowPropertyKey: 3 + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + HorizontalAlignment: Right + Margin: {Right: 48.0} + Name: ammoIcon + Source: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 3 + Color: {R: 255, G: 255, B: 255, A: 255} + StretchType: None + - UIElement: !Grid + Id: 3750e996-451b-444f-8787-68c81c2e191f + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Margin: {} + Name: rootGrid + Children: + 5d06f61684cb344bb1c77a919e430624: !ContentDecorator ref!! 16f6065d-cb84-4b34-b1c7-7a919e430624 + cfd509ae7e29b04eb50431f66a1b4342: !ContentDecorator ref!! ae09d5cf-297e-4eb0-b504-31f66a1b4342 + 8090f736fad1bc4ca40bc1b1779e8cd3: !ImageElement ref!! 36f79080-d1fa-4cbc-a40b-c1b1779e8cd3 + 2281b5e1b7728340a52eb97f0499950f: !ContentDecorator ref!! e1b58122-72b7-4083-a52e-b97f0499950f + 139f8dbd43f0974d97c351ae6617313b: !ContentDecorator ref!! bd8d9f13-f043-4d97-97c3-51ae6617313b + RowDefinitions: + c2e245a462edb5489d9f20af835a842d: + Type: Fixed + SizeValue: 60.0 + 419a7eeadc449344b6a11c5ed9f2a712: {} + 9f2219eb25c3ec4791c7b7a41fa73a80: + Type: Fixed + SizeValue: 60.0 + efaeb0c94c099de7459b6531c0eba575: {} + b84fd95b11fbddb4bf639d64aeac1980: + Type: Fixed + SizeValue: 60.0 + ColumnDefinitions: + 1335c2af6d9cc7478654432dba456d14: {} + 662cdee71b926945a0dc5c6d00224e60: + SizeValue: 3.0 + LayerDefinitions: {} + - UIElement: !ContentDecorator + Id: 3db1023a-3225-459a-ab29-b9c47fe7be1a + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + Width*: 25.0 + Margin*: {Left: -2.0, Right: -2.0} + Name: ammo + Padding: {} + Content: !ImageElement ref!! e20746f4-afba-47da-b2d9-a6cf9b8be986 + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 3f54626b-54a1-4ff5-944c-c1fb6348c0f9 + InstanceId: 45b876fd-9dfe-460b-b42a-112350aa5e91 + - UIElement: !ContentDecorator + Id: 47c4788f-a56f-45fb-b522-60327c6278b8 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + DepthAlignment: Stretch + Margin: {} + Name*: lifebarBackground + Padding: {} + Content: !Grid ref!! 0de9fccd-18ae-4994-a2cc-6faf157d26dc + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 4 + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 07ede8d9-715d-458c-9d2b-d03f6e538b8b + InstanceId: 9843a3d6-ac39-4c4d-b776-203c49593a63 + - UIElement: !Grid + Id: 4dac6bf4-8782-48b7-b3cb-7396de6d92e4 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DepthAlignment: Stretch + Margin: {} + Name*: lifebar1Grid + Children: + afa033583dd1b841b297a7d77bdb6868: !ImageElement ref!! 5833a0af-d13d-41b8-b297-a7d77bdb6868 + RowDefinitions: {} + ColumnDefinitions: + 9483c3d1e1fd1748a33883a1d10c139b: + SizeValue*: 100.0 + ba3a67a7cac7f549885f9d57aaee6668: + SizeValue*: 0.0 + LayerDefinitions: {} + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 789d1aae-6a58-41a2-8bf1-f8ec0994ee16 + InstanceId: 39648c72-bd5c-44f8-92ef-54f693ae91ff + - UIElement: !ContentDecorator + Id: 516ece7a-4663-4d29-94c7-0902e900efe1 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + Width*: 25.0 + Margin: {Left: -2.0, Right: -2.0} + Name: ammo + Padding: {} + Content: !ImageElement ref!! 0eed9ef8-f979-44b7-9f77-f0719be30b85 + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 3f54626b-54a1-4ff5-944c-c1fb6348c0f9 + InstanceId: 291550b4-d5d6-4263-a783-17148b85b32a + - UIElement: !ContentDecorator + Id: 5647f00d-6a52-42f3-8276-65da1ec8e2dc + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + Width*: 25.0 + Margin*: {Left: -2.0, Right: -2.0} + Name: ammo + Padding: {} + Content: !ImageElement ref!! b330b3ef-b810-47b8-acf1-013507f1dd13 + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 3f54626b-54a1-4ff5-944c-c1fb6348c0f9 + InstanceId: b1a5325b-01a8-446c-a874-db2860ee2567 + - UIElement: !ImageElement + Id: 5833a0af-d13d-41b8-b297-a7d77bdb6868 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DepthAlignment: Stretch + Margin: {} + Name: lifeFill + Source: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame*: 10 + Color*: {R: 255, G: 153, B: 0, A: 255} + StretchType: Fill + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 10b3873b-8a29-465d-9d9a-7c72125ba2ad + InstanceId: 39648c72-bd5c-44f8-92ef-54f693ae91ff + - UIElement: !ImageElement + Id: 64e78e9b-b614-4c53-93f6-313ccd29af64 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Width*: 25.0 + Margin: {} + Name: ammoFill + Source: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 1 + Color: {R: 255, G: 255, B: 255, A: 255} + StretchType: Fill + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 422f66e7-49c2-4b34-8610-3c157afdf692 + InstanceId: da93cd34-880f-41cf-a235-9b3828db209e + - UIElement: !ContentDecorator + Id: 70f156b7-e1e1-46c7-bda1-0e0a46119296 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + Width*: 25.0 + Margin*: {Left: -2.0, Right: -2.0} + Name: ammo + Padding: {} + Content: !ImageElement ref!! 02a67fc2-94d2-429f-83ea-32dae8c95163 + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 3f54626b-54a1-4ff5-944c-c1fb6348c0f9 + InstanceId: 83c07e90-ab86-477f-bb0f-e354d5cbcc7a + - UIElement: !ContentDecorator + Id: 78cc4b26-f02a-4fae-981d-03cf98fefe48 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + Width*: 25.0 + Margin: {Left: -2.0, Right: -2.0} + Name: ammo + Padding: {} + Content: !ImageElement ref!! b86a5295-62b2-4bc9-bd72-e7d1bbdba595 + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 3f54626b-54a1-4ff5-944c-c1fb6348c0f9 + InstanceId: a510a15f-641b-4514-916a-c397f21b0c0b + - UIElement: !ImageElement + Id: 7a3d75df-4634-4233-86ad-6c5c8e045cc0 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Width*: 25.0 + Margin: {} + Name: ammoFill + Source: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 1 + Color: {R: 255, G: 255, B: 255, A: 255} + StretchType: Fill + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 422f66e7-49c2-4b34-8610-3c157afdf692 + InstanceId: b4739cf7-acb8-41eb-96d9-4a58ed9a67dc + - UIElement: !ContentDecorator + Id: 7d80938b-b651-4177-ada3-65697abceb9a + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + Width*: 25.0 + Margin*: {Left: -2.0, Right: -2.0} + Name: ammo + Padding: {} + Content: !ImageElement ref!! fa8a580d-19b9-4564-a9d8-8f0737fb3aa1 + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 3f54626b-54a1-4ff5-944c-c1fb6348c0f9 + InstanceId: b6ea5241-75ea-44a5-982b-873357c46519 + - UIElement: !ImageElement + Id: 7f16faa7-f315-43a1-b0be-802265de39bb + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Width*: 25.0 + Margin: {} + Name: ammoFill + Source: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 1 + Color: {R: 255, G: 255, B: 255, A: 255} + StretchType: Fill + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 422f66e7-49c2-4b34-8610-3c157afdf692 + InstanceId: 4c3f7bff-d83e-429a-8c39-cd12e861be95 + - UIElement: !ImageElement + Id: 7f71bf31-1806-4373-9297-a4098c9c22c8 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Width*: 25.0 + Margin: {} + Name: ammoFill + Source: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 1 + Color: {R: 255, G: 255, B: 255, A: 255} + StretchType: Fill + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 422f66e7-49c2-4b34-8610-3c157afdf692 + InstanceId: bf88d35e-817f-461f-9655-4379ca8fbe2c + - UIElement: !ImageElement + Id: 8092a487-23d5-4962-b034-bc50e7090b37 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Width*: 25.0 + Margin: {} + Name: ammoFill + Source: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 1 + Color: {R: 255, G: 255, B: 255, A: 255} + StretchType: Fill + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 422f66e7-49c2-4b34-8610-3c157afdf692 + InstanceId: 86da93e8-7392-45dc-8a6e-e653cbc7e953 + - UIElement: !ContentDecorator + Id: 81b76029-4902-46b5-b6c7-b48107df4b44 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + Width*: 25.0 + Margin*: {Left: -2.0, Right: -2.0} + Name: ammo + Padding: {} + Content: !ImageElement ref!! 7a3d75df-4634-4233-86ad-6c5c8e045cc0 + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 3f54626b-54a1-4ff5-944c-c1fb6348c0f9 + InstanceId: b4739cf7-acb8-41eb-96d9-4a58ed9a67dc + - UIElement: !ImageElement + Id: 849c2cd8-163a-4fd3-b9e5-675d1797fcc0 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DepthAlignment: Stretch + Margin: {} + Name: lifeFill + Source: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 5 + Color: {R: 255, G: 255, B: 255, A: 255} + StretchType: Fill + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 10b3873b-8a29-465d-9d9a-7c72125ba2ad + InstanceId: 9843a3d6-ac39-4c4d-b776-203c49593a63 + - UIElement: !ContentDecorator + Id: a07f09df-4d9e-4b6a-ad9b-9048a03e531f + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + DepthAlignment: Stretch + Margin: {} + Name*: lifebarBackground + Padding: {} + Content: !Grid ref!! 4dac6bf4-8782-48b7-b3cb-7396de6d92e4 + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame*: 2 + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 07ede8d9-715d-458c-9d2b-d03f6e538b8b + InstanceId: 39648c72-bd5c-44f8-92ef-54f693ae91ff + - UIElement: !ContentDecorator + Id: a6b79deb-7643-42a6-bee4-023a6760ddcf + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + Width*: 25.0 + Margin*: {Left: -2.0, Right: -2.0} + Name: ammo + Padding: {} + Content: !ImageElement ref!! afbde780-0869-4bc8-a2e8-b7ac1ced45e7 + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 3f54626b-54a1-4ff5-944c-c1fb6348c0f9 + InstanceId: 01f3cca0-1d8b-4cd8-b1f0-472c93c2910b + - UIElement: !ContentDecorator + Id: ae09d5cf-297e-4eb0-b504-31f66a1b4342 + DependencyProperties: + d411c4c27b10da3b0f65e129da9427ce*~GridBase.RowPropertyKey: 1 + aa1fd689704dc33ff8c27f3db8483395*~GridBase.ColumnPropertyKey: 1 + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + Width*: 434.0 + Height*: 50.0 + HorizontalAlignment*: Left + DepthAlignment: Stretch + Margin*: {} + Name: lifebar + Padding: {Top: -5.0, Right: 5.0, Bottom: 5.0} + Content: !ContentDecorator ref!! a07f09df-4d9e-4b6a-ad9b-9048a03e531f + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 6 + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: cc1c547b-59fc-4fae-90ad-58005f3c4d78 + InstanceId: 39648c72-bd5c-44f8-92ef-54f693ae91ff + - UIElement: !ImageElement + Id: afbde780-0869-4bc8-a2e8-b7ac1ced45e7 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Width*: 25.0 + Margin: {} + Name: ammoFill + Source: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 1 + Color: {R: 255, G: 255, B: 255, A: 255} + StretchType: Fill + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 422f66e7-49c2-4b34-8610-3c157afdf692 + InstanceId: 01f3cca0-1d8b-4cd8-b1f0-472c93c2910b + - UIElement: !ImageElement + Id: b2b2c82a-8c55-422d-99f8-dc6581c3239c + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Width*: 25.0 + Margin: {} + Name: ammoFill + Source: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 1 + Color: {R: 255, G: 255, B: 255, A: 255} + StretchType: Fill + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 422f66e7-49c2-4b34-8610-3c157afdf692 + InstanceId: 9d1bf057-e85a-4b0c-bb3f-a15dae49aa21 + - UIElement: !ImageElement + Id: b330b3ef-b810-47b8-acf1-013507f1dd13 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Width*: 25.0 + Margin: {} + Name: ammoFill + Source: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 1 + Color: {R: 255, G: 255, B: 255, A: 255} + StretchType: Fill + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 422f66e7-49c2-4b34-8610-3c157afdf692 + InstanceId: b1a5325b-01a8-446c-a874-db2860ee2567 + - UIElement: !ImageElement + Id: b86a5295-62b2-4bc9-bd72-e7d1bbdba595 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Width*: 25.0 + Margin: {} + Name: ammoFill + Source: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 1 + Color: {R: 255, G: 255, B: 255, A: 255} + StretchType: Fill + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 422f66e7-49c2-4b34-8610-3c157afdf692 + InstanceId: a510a15f-641b-4514-916a-c397f21b0c0b + - UIElement: !ContentDecorator + Id: b9a3535a-4625-45f2-a460-b305820c1422 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + Width*: 25.0 + Margin*: {Left: -2.0, Right: -2.0} + Name: ammo + Padding: {} + Content: !ImageElement ref!! 173ecb2e-00a3-45b0-9cc1-883c5733653d + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 3f54626b-54a1-4ff5-944c-c1fb6348c0f9 + InstanceId: b88246c8-729f-4922-9ca3-42f899066b5d + - UIElement: !ContentDecorator + Id: bb008c5e-1dae-4c34-9b2d-f08de3377ce1 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + Width*: 25.0 + Margin*: {Left: -2.0, Right: -2.0} + Name: ammo + Padding: {} + Content: !ImageElement ref!! d3bd5933-bb23-4a2b-bc31-8c4b5d9501b0 + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 3f54626b-54a1-4ff5-944c-c1fb6348c0f9 + InstanceId: 0c604c8e-bd24-4f56-a88c-9ad08c3238b1 + - UIElement: !ContentDecorator + Id: bd8d9f13-f043-4d97-97c3-51ae6617313b + DependencyProperties: + f4e3e4f6902889e0292c03abc7951269*~GridBase.RowPropertyKey: 1 + 6fa0a54053c6cd568ab1e65fe3fc5672*~GridBase.ColumnPropertyKey: 1 + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + Width*: 434.0 + Height*: 50.0 + HorizontalAlignment*: Left + DepthAlignment: Stretch + Margin*: {} + Name: lifebar + Padding: {Top: -5.0, Right: 5.0, Bottom: 5.0} + Content: !ContentDecorator ref!! 47c4788f-a56f-45fb-b522-60327c6278b8 + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 6 + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: cc1c547b-59fc-4fae-90ad-58005f3c4d78 + InstanceId: 9843a3d6-ac39-4c4d-b776-203c49593a63 + - UIElement: !ImageElement + Id: be2cc9ad-834b-4215-8f59-61120094cb1c + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Width*: 25.0 + Margin: {} + Name: ammoFill + Source: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 1 + Color: {R: 255, G: 255, B: 255, A: 255} + StretchType: Fill + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 422f66e7-49c2-4b34-8610-3c157afdf692 + InstanceId: 6bbc59d6-fe13-4df7-b9b1-6befd0fef9e1 + - UIElement: !ContentDecorator + Id: c41cdd58-95ff-4bdc-85cc-13644fa665d5 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + Width*: 25.0 + Margin*: {Left: -2.0, Right: -2.0} + Name: ammo + Padding: {} + Content: !ImageElement ref!! 7f16faa7-f315-43a1-b0be-802265de39bb + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 3f54626b-54a1-4ff5-944c-c1fb6348c0f9 + InstanceId: 4c3f7bff-d83e-429a-8c39-cd12e861be95 + - UIElement: !ImageElement + Id: d3bd5933-bb23-4a2b-bc31-8c4b5d9501b0 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Width*: 25.0 + Margin: {} + Name: ammoFill + Source: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 1 + Color: {R: 255, G: 255, B: 255, A: 255} + StretchType: Fill + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 422f66e7-49c2-4b34-8610-3c157afdf692 + InstanceId: 0c604c8e-bd24-4f56-a88c-9ad08c3238b1 + - UIElement: !ContentDecorator + Id: d79423e2-ac58-4b4d-a169-b02d05ab0acc + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + Width*: 25.0 + Margin*: {Left: -2.0, Right: -2.0} + Name: ammo + Padding: {} + Content: !ImageElement ref!! 10428e32-a201-485d-bdc0-56d8860c4a6c + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 3f54626b-54a1-4ff5-944c-c1fb6348c0f9 + InstanceId: 0e4686d2-0e03-4488-a2b0-64377a2bdf44 + - UIElement: !ContentDecorator + Id: e1b58122-72b7-4083-a52e-b97f0499950f + DependencyProperties: + ef7c175b39cddd8f1c9b3ca51d153c19*~GridBase.RowPropertyKey: 3 + 7e1c53b93834af3226d4a6908b809d9d*~GridBase.ColumnPropertyKey: 1 + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + Height*: 50.0 + HorizontalAlignment*: Left + Margin*: {} + Name: ammobar + Padding*: {Top: -5.0, Right: 5.0, Bottom: 5.0} + Content: !StackPanel ref!! 22a93633-f907-42c8-9e7f-72278ae3066b + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 3b5e18e7-da8c-4172-aec3-0bb2f389c7b9 + InstanceId: d9df338b-1e65-4330-913e-f3e43f2da214 + - UIElement: !ImageElement + Id: e20746f4-afba-47da-b2d9-a6cf9b8be986 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Width*: 25.0 + Margin: {} + Name: ammoFill + Source: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 1 + Color: {R: 255, G: 255, B: 255, A: 255} + StretchType: Fill + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 422f66e7-49c2-4b34-8610-3c157afdf692 + InstanceId: 45b876fd-9dfe-460b-b42a-112350aa5e91 + - UIElement: !ImageElement + Id: f17ad3bd-d4e2-4fa9-ad77-13ad13cfb7a8 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Width*: 25.0 + Margin: {} + Name: ammoFill + Source: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 1 + Color: {R: 255, G: 255, B: 255, A: 255} + StretchType: Fill + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 422f66e7-49c2-4b34-8610-3c157afdf692 + InstanceId: 6bdf5ad2-ed6f-4339-9067-5b81e76d74f9 + - UIElement: !ImageElement + Id: f2736ec4-50ad-4ce1-abb6-f41b0875cd6c + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Margin: {} + Name: heroAvatar + Source: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 7 + Color: {R: 255, G: 255, B: 255, A: 255} + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 45fe50db-2a35-4800-89a5-e84422c8d2d8 + InstanceId: 8fc94818-d537-447d-bd07-6dda82863e85 + - UIElement: !ContentDecorator + Id: f7573620-3732-4a69-a3d9-c8107aedf1be + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + Width*: 25.0 + Margin: {Left: -2.0, Right: -2.0} + Name: ammo + Padding: {} + Content: !ImageElement ref!! 7f71bf31-1806-4373-9297-a4098c9c22c8 + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 3f54626b-54a1-4ff5-944c-c1fb6348c0f9 + InstanceId: bf88d35e-817f-461f-9655-4379ca8fbe2c + - UIElement: !ContentDecorator + Id: f9bc89c5-33f4-4a12-8688-eb211a0729bc + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + Width*: 25.0 + Margin: {Left: -2.0, Right: -2.0} + Name: ammo + Padding: {} + Content: !ImageElement ref!! 2e885c09-b8fb-42b6-be87-503924541ad2 + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 3f54626b-54a1-4ff5-944c-c1fb6348c0f9 + InstanceId: fc42efb8-9673-4bcb-ab97-2ff1b1e39cc1 + - UIElement: !ContentDecorator + Id: f9ea58f2-ab4f-4e22-98b1-2d31cd5ac96b + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + Width*: 25.0 + Margin*: {Left: -2.0, Right: -2.0} + Name: ammo + Padding: {} + Content: !ImageElement ref!! 8092a487-23d5-4962-b034-bc50e7090b37 + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 3f54626b-54a1-4ff5-944c-c1fb6348c0f9 + InstanceId: 86da93e8-7392-45dc-8a6e-e653cbc7e953 + - UIElement: !ImageElement + Id: fa8a580d-19b9-4564-a9d8-8f0737fb3aa1 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Width*: 25.0 + Margin: {} + Name: ammoFill + Source: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 1 + Color: {R: 255, G: 255, B: 255, A: 255} + StretchType: Fill + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 422f66e7-49c2-4b34-8610-3c157afdf692 + InstanceId: b6ea5241-75ea-44a5-982b-873357c46519 + - UIElement: !ContentDecorator + Id: fde23aa4-373a-4d12-ae34-767694593ae8 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + Width*: 25.0 + Margin*: {Left: -2.0, Right: -2.0} + Name: ammo + Padding: {} + Content: !ImageElement ref!! 64e78e9b-b614-4c53-93f6-313ccd29af64 + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 3f54626b-54a1-4ff5-944c-c1fb6348c0f9 + InstanceId: da93cd34-880f-41cf-a235-9b3828db209e + - UIElement: !ImageElement + Id: fe627cbb-4a6f-41d1-81d4-aa64f6897968 + DependencyProperties: + 212e48b2e3f6166b711e69872d53d42c~Panel.ZIndexPropertyKey: 0 + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Margin: {} + Source: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 9 + Color: {R: 255, G: 255, B: 255, A: 255} + StretchType: Fill diff --git a/Starbreach/Assets/Shared/UI/PageBot.xkuipage b/Starbreach/Assets/Shared/UI/PageBot.xkuipage new file mode 100644 index 0000000..8da48b8 --- /dev/null +++ b/Starbreach/Assets/Shared/UI/PageBot.xkuipage @@ -0,0 +1,210 @@ +!UIPageAsset +Id: 3d62a6cf-e329-4096-8dfb-7feafc65f772 +SerializedVersion: {Xenko: 2.1.0.1} +Tags: [] +Design: + Resolution: {X: 1024.0, Y: 512.0, Z: 1000.0} +Hierarchy: + RootParts: + - !Grid ref!! 018dd458-7711-4882-a082-d41106dedd67 + Parts: + - UIElement: !Grid + Id: 018dd458-7711-4882-a082-d41106dedd67 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Margin: {} + Children: + 96e950371b454f44878768c81c2e191f: !Grid ref!! 3750e996-451b-444f-8787-68c81c2e191f + RowDefinitions: {} + ColumnDefinitions: {} + LayerDefinitions: {} + - UIElement: !ContentDecorator + Id: 16f6065d-cb84-4b34-b1c7-7a919e430624 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + HorizontalAlignment*: Left + VerticalAlignment: Center + Margin: {} + Name: hero + Padding: {} + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 8 + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: e093ca40-112d-4315-897b-c9e11e9c3296 + InstanceId: 0da376d7-867a-414c-b38f-42cb74fdc290 + - UIElement: !Grid + Id: 3750e996-451b-444f-8787-68c81c2e191f + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Margin: {} + Children: + 5d06f61684cb344bb1c77a919e430624: !ContentDecorator ref!! 16f6065d-cb84-4b34-b1c7-7a919e430624 + cfd509ae7e29b04eb50431f66a1b4342: !ContentDecorator ref!! ae09d5cf-297e-4eb0-b504-31f66a1b4342 + 3ea6e57dd3da624494796a48ae7f4aed: !ContentDecorator ref!! 7de5a63e-dad3-4462-9479-6a48ae7f4aed + RowDefinitions: + 03ae62e01e2c1b429c29f930fbb4b32b: {} + c2e245a462edb5489d9f20af835a842d: + Type: Auto + 419a7eeadc449344b6a11c5ed9f2a712: + Type: Fixed + SizeValue: 60.0 + 9f2219eb25c3ec4791c7b7a41fa73a80: + Type: Auto + e2965fd791161a4bb2750cefa182f42f: {} + ColumnDefinitions: + 1335c2af6d9cc7478654432dba456d14: + Type: Auto + 662cdee71b926945a0dc5c6d00224e60: + Type: Auto + 7812a0c41be41149b6ece94e56cdcaa4: + Type: Auto + LayerDefinitions: {} + - UIElement: !Grid + Id: 4dac6bf4-8782-48b7-b3cb-7396de6d92e4 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DepthAlignment: Stretch + Margin: {} + Name: lifebarGrid + Children: + afa033583dd1b841b297a7d77bdb6868: !ImageElement ref!! 5833a0af-d13d-41b8-b297-a7d77bdb6868 + RowDefinitions: {} + ColumnDefinitions: + 9483c3d1e1fd1748a33883a1d10c139b: + SizeValue*: 100.0 + ba3a67a7cac7f549885f9d57aaee6668: + SizeValue*: 0.0 + LayerDefinitions: {} + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 789d1aae-6a58-41a2-8bf1-f8ec0994ee16 + InstanceId: c583b1ff-9eb4-4138-852c-463493f0a362 + - UIElement: !ImageElement + Id: 5833a0af-d13d-41b8-b297-a7d77bdb6868 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DepthAlignment: Stretch + Margin: {} + Name: lifeFill + Source: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 5 + Color: {R: 255, G: 255, B: 255, A: 255} + StretchType: Fill + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 10b3873b-8a29-465d-9d9a-7c72125ba2ad + InstanceId: 91990d59-11de-47ee-a967-1086433da4a4 + - UIElement: !ContentDecorator + Id: 7de5a63e-dad3-4462-9479-6a48ae7f4aed + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + Width*: 434.0 + Height*: 50.0 + HorizontalAlignment*: Left + DepthAlignment: Stretch + Margin*: {} + Name*: chargebar + Padding: {Top: -5.0, Right: 5.0, Bottom: 5.0} + Content: !ContentDecorator ref!! b7311df4-5680-4d1b-bde8-f6689b3f6762 + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 6 + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: cc1c547b-59fc-4fae-90ad-58005f3c4d78 + InstanceId: 265620e1-a397-425e-b2d6-fe4d1390115f + - UIElement: !ContentDecorator + Id: a07f09df-4d9e-4b6a-ad9b-9048a03e531f + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + DepthAlignment: Stretch + Margin: {} + Name: lifebarBackground + Padding: {} + Content: !Grid ref!! 4dac6bf4-8782-48b7-b3cb-7396de6d92e4 + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 4 + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 07ede8d9-715d-458c-9d2b-d03f6e538b8b + InstanceId: 3f06c8a6-2e9e-4ce2-9ed1-5f327bae9d1c + - UIElement: !ImageElement + Id: a5cdb619-8360-4c58-a1a8-e594f97070bc + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DepthAlignment: Stretch + Margin: {} + Name*: chargeFill + Source: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame*: 1 + Color*: {R: 255, G: 255, B: 255, A: 255} + StretchType: Fill + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 10b3873b-8a29-465d-9d9a-7c72125ba2ad + InstanceId: 3857e569-80ff-479b-b229-f772419415ee + - UIElement: !ContentDecorator + Id: ae09d5cf-297e-4eb0-b504-31f66a1b4342 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + Width*: 434.0 + Height*: 50.0 + HorizontalAlignment*: Left + DepthAlignment: Stretch + Margin*: {} + Name: lifebar + Padding: {Top: -5.0, Right: 5.0, Bottom: 5.0} + Content: !ContentDecorator ref!! a07f09df-4d9e-4b6a-ad9b-9048a03e531f + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 6 + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: cc1c547b-59fc-4fae-90ad-58005f3c4d78 + InstanceId: 938bdf4e-ee0b-447c-b6e9-0b0ba4b68e26 + - UIElement: !ContentDecorator + Id: b7311df4-5680-4d1b-bde8-f6689b3f6762 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber*: 2 + DepthAlignment: Stretch + Margin: {} + Name*: chargebarBackground + Padding: {} + Content: !Grid ref!! e0c3467c-399b-4d9a-81cf-8cbdaab16788 + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 4 + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 07ede8d9-715d-458c-9d2b-d03f6e538b8b + InstanceId: b3da55a9-4c9e-4905-b76c-f3052ad3876e + - UIElement: !Grid + Id: e0c3467c-399b-4d9a-81cf-8cbdaab16788 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DepthAlignment: Stretch + Margin*: {} + Name*: chargebarGrid + Children: + 19b6cda56083584ca1a8e594f97070bc: !ImageElement ref!! a5cdb619-8360-4c58-a1a8-e594f97070bc + RowDefinitions: {} + ColumnDefinitions: + 9483c3d1e1fd1748a33883a1d10c139b: + SizeValue*: 100.0 + ba3a67a7cac7f549885f9d57aaee6668: + SizeValue*: 0.0 + LayerDefinitions: {} + Base: + BasePartAsset: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9:UI/UILibrary + BasePartId: 789d1aae-6a58-41a2-8bf1-f8ec0994ee16 + InstanceId: f3de812d-f0e4-4dd9-8480-d4972f0d7dc5 diff --git a/Starbreach/Assets/Shared/UI/ProgressBar/PB_1.xktex b/Starbreach/Assets/Shared/UI/ProgressBar/PB_1.xktex new file mode 100644 index 0000000..ca4d040 --- /dev/null +++ b/Starbreach/Assets/Shared/UI/ProgressBar/PB_1.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 99489e36-d825-4ed5-9d17-f274d7a28cdf +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Drones/VRdrone/ProgressBar/PB_1.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/UI/ProgressBar/PB_10.xktex b/Starbreach/Assets/Shared/UI/ProgressBar/PB_10.xktex new file mode 100644 index 0000000..d2f9771 --- /dev/null +++ b/Starbreach/Assets/Shared/UI/ProgressBar/PB_10.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 1e9a139a-b073-4dce-97a8-c7f69eb8e164 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Drones/VRdrone/ProgressBar/PB_10.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/UI/ProgressBar/PB_2.xktex b/Starbreach/Assets/Shared/UI/ProgressBar/PB_2.xktex new file mode 100644 index 0000000..314fb60 --- /dev/null +++ b/Starbreach/Assets/Shared/UI/ProgressBar/PB_2.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 85688064-6faf-4e7c-bb14-fa3dd79af476 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Drones/VRdrone/ProgressBar/PB_2.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/UI/ProgressBar/PB_3.xktex b/Starbreach/Assets/Shared/UI/ProgressBar/PB_3.xktex new file mode 100644 index 0000000..22ea51e --- /dev/null +++ b/Starbreach/Assets/Shared/UI/ProgressBar/PB_3.xktex @@ -0,0 +1,7 @@ +!Texture +Id: d68f6db7-bb66-47a8-ad3f-8b6c3b4bacee +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Drones/VRdrone/ProgressBar/PB_3.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/UI/ProgressBar/PB_4.xktex b/Starbreach/Assets/Shared/UI/ProgressBar/PB_4.xktex new file mode 100644 index 0000000..8b3fa3d --- /dev/null +++ b/Starbreach/Assets/Shared/UI/ProgressBar/PB_4.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 32c1b0ff-6086-46ae-8261-9e873ffeba1d +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Drones/VRdrone/ProgressBar/PB_4.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/UI/ProgressBar/PB_5.xktex b/Starbreach/Assets/Shared/UI/ProgressBar/PB_5.xktex new file mode 100644 index 0000000..bc985f7 --- /dev/null +++ b/Starbreach/Assets/Shared/UI/ProgressBar/PB_5.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 13558967-fcaf-4200-9737-982c3a2545f9 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Drones/VRdrone/ProgressBar/PB_5.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/UI/ProgressBar/PB_6.xktex b/Starbreach/Assets/Shared/UI/ProgressBar/PB_6.xktex new file mode 100644 index 0000000..25ddb11 --- /dev/null +++ b/Starbreach/Assets/Shared/UI/ProgressBar/PB_6.xktex @@ -0,0 +1,7 @@ +!Texture +Id: c891d48a-c325-40c0-b0f2-fbef4b0f9035 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Drones/VRdrone/ProgressBar/PB_6.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/UI/ProgressBar/PB_7.xktex b/Starbreach/Assets/Shared/UI/ProgressBar/PB_7.xktex new file mode 100644 index 0000000..38b5d0b --- /dev/null +++ b/Starbreach/Assets/Shared/UI/ProgressBar/PB_7.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 79fc34c5-127f-4153-9670-5d6ea8146e8b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Drones/VRdrone/ProgressBar/PB_7.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/UI/ProgressBar/PB_8.xktex b/Starbreach/Assets/Shared/UI/ProgressBar/PB_8.xktex new file mode 100644 index 0000000..eac20f0 --- /dev/null +++ b/Starbreach/Assets/Shared/UI/ProgressBar/PB_8.xktex @@ -0,0 +1,7 @@ +!Texture +Id: bd992668-b509-4232-9121-98163357570d +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Drones/VRdrone/ProgressBar/PB_8.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/UI/ProgressBar/PB_9.xktex b/Starbreach/Assets/Shared/UI/ProgressBar/PB_9.xktex new file mode 100644 index 0000000..94f7e70 --- /dev/null +++ b/Starbreach/Assets/Shared/UI/ProgressBar/PB_9.xktex @@ -0,0 +1,7 @@ +!Texture +Id: afc8fdc8-0a40-4396-bfaf-75b6ccfa0e6b +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../Drones/VRdrone/ProgressBar/PB_9.tga +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/UI/ProgressBar/Pbar.xkmat b/Starbreach/Assets/Shared/UI/ProgressBar/Pbar.xkmat new file mode 100644 index 0000000..5250c26 --- /dev/null +++ b/Starbreach/Assets/Shared/UI/ProgressBar/Pbar.xkmat @@ -0,0 +1,37 @@ +!MaterialAsset +Id: 1012153b-6cc5-48c8-9a5b-5554f773a89c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + MicroSurface: !MaterialGlossinessMapFeature + GlossinessMap: !ComputeFloat + Value: 0.6 + Diffuse: !MaterialDiffuseMapFeature + DiffuseMap: !ComputeTextureColor + Texture: 32c1b0ff-6086-46ae-8261-9e873ffeba1d:UI/ProgressBar/PB_4 + FallbackValue: + Value: {R: 1.0, G: 0.8856508, B: 0.6091625, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + DiffuseModel: !MaterialDiffuseLambertModelFeature {} + Specular: !MaterialMetalnessMapFeature + MetalnessMap: !ComputeFloat + Value: 1.0 + SpecularModel: !MaterialSpecularMicrofacetModelFeature + Fresnel: !MaterialSpecularMicrofacetFresnelSchlick {} + Visibility: !MaterialSpecularMicrofacetVisibilitySmithSchlickGGX {} + NormalDistribution: !MaterialSpecularMicrofacetNormalDistributionGGX {} + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeTextureColor + Texture: 32c1b0ff-6086-46ae-8261-9e873ffeba1d:UI/ProgressBar/PB_4 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + Intensity: !ComputeFloat + Value: 10.0 + Overrides: + UVScale: {X: 1.0, Y: 1.0} +Layers: {} diff --git a/Starbreach/Assets/Shared/UI/Splash.xksheet b/Starbreach/Assets/Shared/UI/Splash.xksheet new file mode 100644 index 0000000..3823d7a --- /dev/null +++ b/Starbreach/Assets/Shared/UI/Splash.xksheet @@ -0,0 +1,16 @@ +!SpriteSheet +Id: f8c35f76-4066-400a-8a08-dfc9eafb9172 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Type: UI +ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} +IsCompressed: false +Packing: {} +Sprites: + bedec889cc2a84828df1b1f538734eb4: + Source: ../../../Resources/UI/Logo.png + Name: Logo + TextureRegion: {X: 0, Y: 0, Width: 1920, Height: 1080} + Center: {X: 0.0, Y: 0.0} + Borders: {X: 0.0, Y: 0.0, Z: 0.0, W: 0.0} + BorderColor: {R: 0, G: 0, B: 0, A: 0} diff --git a/Starbreach/Assets/Shared/UI/Splashscreen.xkuipage b/Starbreach/Assets/Shared/UI/Splashscreen.xkuipage new file mode 100644 index 0000000..d01de71 --- /dev/null +++ b/Starbreach/Assets/Shared/UI/Splashscreen.xkuipage @@ -0,0 +1,29 @@ +!UIPageAsset +Id: ab479ce2-b1df-4829-920c-c190e1accefa +SerializedVersion: {Xenko: 2.1.0.1} +Tags: [] +Design: + Resolution: {X: 1920.0, Y: 1080.0, Z: 1000.0} +Hierarchy: + RootParts: + - !Grid ref!! 1a659217-e6e6-47d8-8eb6-cc3fe0b9b108 + Parts: + - UIElement: !Grid + Id: 1a659217-e6e6-47d8-8eb6-cc3fe0b9b108 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Margin: {} + Children: + 3be5b5406e038c47f8c0f4e6f575b45f: !ImageElement ref!! d3bfa5d8-9964-4b59-ae2e-58eea41aac73 + RowDefinitions: {} + ColumnDefinitions: {} + LayerDefinitions: {} + - UIElement: !ImageElement + Id: d3bfa5d8-9964-4b59-ae2e-58eea41aac73 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Margin: {} + Name: Spl + Source: !SpriteFromSheet + Sheet: f8c35f76-4066-400a-8a08-dfc9eafb9172:UI/Splash + Color: {R: 255, G: 255, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/UI/SpriteFont (2).xkfnt b/Starbreach/Assets/Shared/UI/SpriteFont (2).xkfnt new file mode 100644 index 0000000..2fa1e36 --- /dev/null +++ b/Starbreach/Assets/Shared/UI/SpriteFont (2).xkfnt @@ -0,0 +1,14 @@ +!SpriteFont +Id: 860ebd43-0dfb-47ff-b2ed-5c3f5b78956f +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +FontSource: !SystemFontProvider + FontName: Arial + Style: Regular +FontType: !OfflineRasterizedSpriteFontType + Size: 30.0 + CharacterSet: + CharacterRegions: + c17a5a125330a946b531b09197a9a634: + Start: ' ' + End: "\x7F" diff --git a/Starbreach/Assets/Shared/UI/SpriteFont.xkfnt b/Starbreach/Assets/Shared/UI/SpriteFont.xkfnt new file mode 100644 index 0000000..0ba83d1 --- /dev/null +++ b/Starbreach/Assets/Shared/UI/SpriteFont.xkfnt @@ -0,0 +1,14 @@ +!SpriteFont +Id: 7efbd51e-ee62-49ee-9ee1-c73901fb17a5 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +FontSource: !SystemFontProvider + FontName: Arial + Style: Regular +FontType: !OfflineRasterizedSpriteFontType + Size: 60.0 + CharacterSet: + CharacterRegions: + c17a5a125330a946b531b09197a9a634: + Start: ' ' + End: "\x7F" diff --git a/Starbreach/Assets/Shared/UI/UIDesigns.xksheet b/Starbreach/Assets/Shared/UI/UIDesigns.xksheet new file mode 100644 index 0000000..72d0d44 --- /dev/null +++ b/Starbreach/Assets/Shared/UI/UIDesigns.xksheet @@ -0,0 +1,86 @@ +!SpriteSheet +Id: 1807b3df-712d-4671-8f58-0f378e2aa83a +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Type: UI +ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} +GenerateMipmaps: true +Packing: {} +Sprites: + 7d5f39b5d2b23f47bf52a7fff7fda51c: + Source: ../../../Resources/UI/HUD/ammo_BG.png + Name: ammo_background + TextureRegion: {X: 0, Y: 0, Width: 32, Height: 34} + Center: {X: 0.0, Y: 0.0} + Borders: {X: 10.0, Y: 0.0, Z: 10.0, W: 0.0} + BorderColor: {R: 0, G: 0, B: 0, A: 0} + 34d38b257f327b41803b7fc874f9e55b: + Source: ../../../Resources/UI/HUD/Ammo_fill.png + Name: ammo_fill + TextureRegion: {X: 0, Y: 0, Width: 32, Height: 34} + Center: {X: 0.0, Y: 0.0} + Borders: {X: 10.0, Y: 0.0, Z: 10.0, W: 0.0} + BorderColor: {R: 0, G: 0, B: 0, A: 0} + 5d34a7c740a89a46ad7eac4a9578aae4: + Source: ../../../Resources/UI/HUD/Ammo_shadow.png + Name: ammo_shadow + TextureRegion: {X: 0, Y: 0, Width: 32, Height: 34} + Center: {X: 0.0, Y: 0.0} + Borders: {X: 10.0, Y: 0.0, Z: 10.0, W: 0.0} + BorderColor: {R: 0, G: 0, B: 0, A: 0} + 186fbd806ac82249985fb4d791d437e2: + Source: ../../../Resources/UI/HUD/ammo_icon.png + Name: ammo_icon + TextureRegion: {X: 0, Y: 0, Width: 61, Height: 62} + Center: {X: 0.0, Y: 0.0} + Borders: {X: 0.0, Y: 0.0, Z: 0.0, W: 0.0} + BorderColor: {R: 0, G: 0, B: 0, A: 0} + b9419b1ab8434d4f98a7ca199aac00e4: + Source: ../../../Resources/UI/HUD/Life_BG.png + Name: life_background + TextureRegion: {X: 0, Y: 0, Width: 32, Height: 34} + Center: {X: 0.0, Y: 0.0} + Borders: {X: 10.0, Y: 0.0, Z: 10.0, W: 0.0} + BorderColor: {R: 0, G: 0, B: 0, A: 0} + e3a83abcd5cc9d4d9521c2de104cb4cd: + Source: ../../../Resources/UI/HUD/Life_fill.png + Name: life_fill + TextureRegion: {X: 0, Y: 0, Width: 32, Height: 34} + Center: {X: 0.0, Y: 0.0} + Borders: {X: 10.0, Y: 0.0, Z: 10.0, W: 0.0} + BorderColor: {R: 0, G: 0, B: 0, A: 0} + bd1601804bc06a49859c964e7d977dbb: + Source: ../../../Resources/UI/HUD/Life_shadow.png + Name: life_shadow + TextureRegion: {X: 0, Y: 0, Width: 32, Height: 34} + Center: {X: 0.0, Y: 0.0} + Borders: {X: 10.0, Y: 0.0, Z: 10.0, W: 0.0} + BorderColor: {R: 0, G: 0, B: 0, A: 0} + 96b9d7a2e370af4b93391f49270cdd40: + Source: ../../../Resources/UI/HUD/Hero_avatar.png + Name: hero + TextureRegion: {X: 0, Y: 0, Width: 236, Height: 277} + Center: {X: 0.0, Y: 0.0} + Borders: {X: 0.0, Y: 0.0, Z: 0.0, W: 0.0} + BorderColor: {R: 0, G: 0, B: 0, A: 0} + 8e9b921a919c314192ab4d0fda14c613: + Source: ../../../Resources/UI/HUD/Hero_avatar_shadow.png + Name: hero_shadow + TextureRegion: {X: 0, Y: 0, Width: 235, Height: 273} + Center: {X: 0.0, Y: 0.0} + Borders: {X: 0.0, Y: 0.0, Z: 0.0, W: 0.0} + BorderColor: {R: 0, G: 0, B: 0, A: 0} + 60c223cfab3f244eaf0831a2e91f9705: + Source: ../../../Resources/UI/HUD/Panel_BG.png + Name: panel_background + TextureRegion: {X: 0, Y: 0, Width: 85, Height: 168} + Center: {X: 0.0, Y: 0.0} + Borders: {X: 0.0, Y: 0.0, Z: 0.0, W: 0.0} + BorderColor: {R: 0, G: 0, B: 0, A: 0} + f5bc9b9e8a0f272da0ae08ac0dd20223: + Source: ../../../Resources/UI/HUD/General_fill.png + Name: general_fill + TextureRegion: {X: 0, Y: 0, Width: 32, Height: 34} + Center: {X: 0.0, Y: 0.0} + Borders: {X: 10.0, Y: 0.0, Z: 10.0, W: 0.0} + BorderColor: {R: 0, G: 0, B: 0, A: 0} diff --git a/Starbreach/Assets/Shared/UI/UILibrary.xkuilib b/Starbreach/Assets/Shared/UI/UILibrary.xkuilib new file mode 100644 index 0000000..d7d29fa --- /dev/null +++ b/Starbreach/Assets/Shared/UI/UILibrary.xkuilib @@ -0,0 +1,138 @@ +!UILibraryAsset +Id: 9975ce40-0a38-41bd-aa0b-f455b8e6fed9 +SerializedVersion: {Xenko: 2.1.0.1} +Tags: [] +Design: + Resolution: {X: 1024.0, Y: 512.0, Z: 1000.0} +PublicUIElements: + 3b5e18e7-da8c-4172-aec3-0bb2f389c7b9: ammobar + 3f54626b-54a1-4ff5-944c-c1fb6348c0f9: ammo + cc1c547b-59fc-4fae-90ad-58005f3c4d78: lifebar + e093ca40-112d-4315-897b-c9e11e9c3296: hero +Hierarchy: + RootParts: + - !ContentDecorator ref!! 3f54626b-54a1-4ff5-944c-c1fb6348c0f9 + - !ContentDecorator ref!! cc1c547b-59fc-4fae-90ad-58005f3c4d78 + - !ContentDecorator ref!! 3b5e18e7-da8c-4172-aec3-0bb2f389c7b9 + - !ContentDecorator ref!! e093ca40-112d-4315-897b-c9e11e9c3296 + Parts: + - UIElement: !ContentDecorator + Id: 07ede8d9-715d-458c-9d2b-d03f6e538b8b + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + DepthAlignment: Stretch + Margin: {} + Name: lifebarBackground + Padding: {} + Content: !Grid ref!! 789d1aae-6a58-41a2-8bf1-f8ec0994ee16 + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 4 + - UIElement: !ImageElement + Id: 10b3873b-8a29-465d-9d9a-7c72125ba2ad + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DepthAlignment: Stretch + Margin: {} + Name: lifeFill + Source: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 5 + Color: {R: 255, G: 255, B: 255, A: 255} + StretchType: Fill + - UIElement: !ContentDecorator + Id: 3b5e18e7-da8c-4172-aec3-0bb2f389c7b9 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + Height: 34.0 + Margin: {} + Name: ammobar + Padding: {Top: -5.0, Right: 5.0, Bottom: 5.0} + Content: !StackPanel ref!! a867e7d0-2845-4ae2-8751-bec4e36b5685 + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + - UIElement: !ContentDecorator + Id: 3f54626b-54a1-4ff5-944c-c1fb6348c0f9 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + Margin: {Left: -2.0, Right: -2.0} + Name: ammo + Padding: {} + Content: !ImageElement ref!! 422f66e7-49c2-4b34-8610-3c157afdf692 + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + - UIElement: !ImageElement + Id: 422f66e7-49c2-4b34-8610-3c157afdf692 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Margin: {} + Name: ammoFill + Source: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 1 + Color: {R: 255, G: 255, B: 255, A: 255} + StretchType: Fill + - UIElement: !ImageElement + Id: 45fe50db-2a35-4800-89a5-e84422c8d2d8 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Margin: {} + Name: heroAvatar + Source: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 7 + Color: {R: 255, G: 255, B: 255, A: 255} + - UIElement: !Grid + Id: 789d1aae-6a58-41a2-8bf1-f8ec0994ee16 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DepthAlignment: Stretch + Margin: {} + Name: lifebarGrid + Children: + 3b87b310298a5d469d9a7c72125ba2ad: !ImageElement ref!! 10b3873b-8a29-465d-9d9a-7c72125ba2ad + RowDefinitions: {} + ColumnDefinitions: + 9483c3d1e1fd1748a33883a1d10c139b: + SizeValue: 50.0 + ba3a67a7cac7f549885f9d57aaee6668: + SizeValue: 50.0 + LayerDefinitions: {} + - UIElement: !StackPanel + Id: a867e7d0-2845-4ae2-8751-bec4e36b5685 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + Margin: {} + Name: ammobarGrid + Children: {} + Orientation: Horizontal + - UIElement: !ContentDecorator + Id: cc1c547b-59fc-4fae-90ad-58005f3c4d78 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + DepthAlignment: Stretch + Margin: {} + Name: lifebar + Padding: {Top: -5.0, Right: 5.0, Bottom: 5.0} + Content: !ContentDecorator ref!! 07ede8d9-715d-458c-9d2b-d03f6e538b8b + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 6 + - UIElement: !ContentDecorator + Id: e093ca40-112d-4315-897b-c9e11e9c3296 + DependencyProperties: {} + BackgroundColor: {R: 0, G: 0, B: 0, A: 0} + DrawLayerNumber: 2 + HorizontalAlignment: Center + VerticalAlignment: Center + Margin: {} + Name: hero + Padding: {} + Content: !ImageElement ref!! 45fe50db-2a35-4800-89a5-e84422c8d2d8 + BackgroundImage: !SpriteFromSheet + Sheet: 1807b3df-712d-4671-8f58-0f378e2aa83a:UI/UIDesigns + CurrentFrame: 8 diff --git a/Starbreach/Assets/Shared/UI/UIScene.xkscene b/Starbreach/Assets/Shared/UI/UIScene.xkscene new file mode 100644 index 0000000..40e1ad6 --- /dev/null +++ b/Starbreach/Assets/Shared/UI/UIScene.xkscene @@ -0,0 +1,38 @@ +!SceneAsset +Id: 6fe8ba5a-74a2-41ee-9f3a-f607c0cfcab8 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +ChildrenIds: [] +Offset: {X: 0.0, Y: 0.0, Z: 0.0} +Hierarchy: + RootParts: + - ref!! 4917590d-53d5-4448-b06a-439ac05c1ae9 + Parts: + - Entity: + Id: 4917590d-53d5-4448-b06a-439ac05c1ae9 + Name: UI + Components: + 0229d8d8352fa3458dd78cd3c084444a: !TransformComponent + Id: d8d82902-2f35-45a3-8dd7-8cd3c084444a + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + c271aa56e7650441b4e04bce07894092: ref!! 56aa71c2-65e7-4104-b4e0-4bce07894092 + - Entity: + Id: 815a97f9-904c-421e-973a-72f2c2dbf313 + Name: StatusBar + Components: + c271aa56e7650441b4e04bce07894092: !TransformComponent + Id: 56aa71c2-65e7-4104-b4e0-4bce07894092 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + fa65b1e2069ba741ad2980e430c484f2: !UIComponent + Id: e2b165fa-9b06-41a7-ad29-80e430c484f2 + Page: 3d62a6cf-e329-4096-8dfb-7feafc65f772:UI/PageBot + Resolution: {X: 1024.0, Y: 512.0, Z: 1000.0} + Size: {X: 1.0, Y: 1.0, Z: 1.0} + IsBillboard: false + RenderGroup: Group31 diff --git a/Starbreach/Assets/Shared/UI/UISceneSoldier.xkscene b/Starbreach/Assets/Shared/UI/UISceneSoldier.xkscene new file mode 100644 index 0000000..8552a8f --- /dev/null +++ b/Starbreach/Assets/Shared/UI/UISceneSoldier.xkscene @@ -0,0 +1,76 @@ +!SceneAsset +Id: 636abdbb-b92c-4472-9abe-27564541611e +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +ChildrenIds: [] +Offset: {X: 0.0, Y: 0.0, Z: 0.0} +Hierarchy: + RootParts: + - ref!! 25726e3a-0513-4ea1-9a2e-3980bc273934 + Parts: + - Entity: + Id: 25726e3a-0513-4ea1-9a2e-3980bc273934 + Name: UI + Components: + 6a80201b6ccd2342bb0ea25d4fc1865f: !TransformComponent + Id: 1b20806a-cd6c-4223-bb0e-a25d4fc1865f + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 1b61102c2186604b942e887f926c8622: ref!! 2c10611b-8621-4b60-942e-887f926c8622 + 4485eaece6d43c47921b3971bff2a53b: ref!! ecea8544-d4e6-473c-921b-3971bff2a53b + c05b75c397158594e4998985ac0f167d: ref!! 56aa71c2-65e7-4104-b4e0-4bce07894092 + - Entity: + Id: 25d9bebf-6786-4cb6-bcd1-8882dd751f48 + Name: RespawnUI + Components: + c271aa56e7650441b4e04bce07894092: !TransformComponent + Id: 56aa71c2-65e7-4104-b4e0-4bce07894092 + Position: {X: 0.0, Y: 0.0, Z: -10.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + fa65b1e2069ba741ad2980e430c484f2: !UIComponent + Id: e2b165fa-9b06-41a7-ad29-80e430c484f2 + Enabled: false + Page: 2fcc0b07-b1cf-4324-91f6-ac617abe3dce:UI/CountDown + Resolution: {X: 1920.0, Y: 1080.0, Z: 1000.0} + Size: {X: 1.0, Y: 1.0, Z: 1.0} + IsBillboard: false + SnapText: false + - Entity: + Id: 4409dfed-f06f-4839-9940-25e6d3879d66 + Name: Camera + Components: + 4485eaece6d43c47921b3971bff2a53b: !TransformComponent + Id: ecea8544-d4e6-473c-921b-3971bff2a53b + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 2ec7911f3eb7384ab1c7cd90ece96146: !CameraComponent + Id: 1f91c72e-b73e-4a38-b1c7-cd90ece96146 + Name: null + Projection: Orthographic + VerticalFieldOfView: 46.0 + OrthographicSize: 6.0 + Slot: 361499d7-0cf6-407b-8f59-034e1b80f4b4 + - Entity: + Id: e8c04ff2-97ae-4143-aa01-400b31ccc422 + Name: Crosshair + Components: + 1b61102c2186604b942e887f926c8622: !TransformComponent + Id: 2c10611b-8621-4b60-942e-887f926c8622 + Position: {X: 0.0, Y: 0.0, Z: -10.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 0.2, Y: 0.2, Z: 0.2} + Children: {} + b8073a4de001024bb43d9e0fb02bfc74: !SpriteComponent + Id: 4d3a07b8-01e0-4b02-b43d-9e0fb02bfc74 + Enabled: false + SpriteProvider: !SpriteFromTexture + Texture: eae93d0c-346b-4399-adf7-ab193c2688d9:Character/CrosshairSprite + Center: {X: 0.0, Y: 0.0} + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + IgnoreDepth: true diff --git a/Starbreach/Assets/Shared/UI/VRMirrorScene.xkscene b/Starbreach/Assets/Shared/UI/VRMirrorScene.xkscene new file mode 100644 index 0000000..7c091e5 --- /dev/null +++ b/Starbreach/Assets/Shared/UI/VRMirrorScene.xkscene @@ -0,0 +1,24 @@ +!SceneAsset +Id: d77f799f-75e2-4168-bf2b-d5b98b615d95 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +ChildrenIds: [] +Offset: {X: 0.0, Y: 0.0, Z: 0.0} +Hierarchy: + RootParts: + - ref!! c14d9887-f0ea-4ec9-ad60-a3cd589aa26f + Parts: + - Entity: + Id: c14d9887-f0ea-4ec9-ad60-a3cd589aa26f + Name: Quad + Components: + d3bace8db73a884b8450287411e308ca: !TransformComponent + Id: 8dcebad3-3ab7-4b88-8450-287411e308ca + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8856a2f10c40494bad0c97fd4a3ee65a: !BackgroundComponent + Id: f1a25688-400c-4b49-ad0c-97fd4a3ee65a + Texture: 89005614-7e19-473e-b59f-fac93084dae2:UI/MirrorTexture + Is2D: true diff --git a/Starbreach/Assets/Shared/UI/VR_MiddlePanel.xkscene b/Starbreach/Assets/Shared/UI/VR_MiddlePanel.xkscene new file mode 100644 index 0000000..e1f9d3a --- /dev/null +++ b/Starbreach/Assets/Shared/UI/VR_MiddlePanel.xkscene @@ -0,0 +1,38 @@ +!SceneAsset +Id: 0e041445-76b6-4cb6-aca7-6716c51880de +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +ChildrenIds: [] +Offset: {X: 0.0, Y: 0.0, Z: 0.0} +Hierarchy: + RootParts: + - ref!! 4917590d-53d5-4448-b06a-439ac05c1ae9 + Parts: + - Entity: + Id: 4917590d-53d5-4448-b06a-439ac05c1ae9 + Name: UI + Components: + 0229d8d8352fa3458dd78cd3c084444a: !TransformComponent + Id: d8d82902-2f35-45a3-8dd7-8cd3c084444a + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + c271aa56e7650441b4e04bce07894092: ref!! 56aa71c2-65e7-4104-b4e0-4bce07894092 + - Entity: + Id: 815a97f9-904c-421e-973a-72f2c2dbf313 + Name: Page + Components: + c271aa56e7650441b4e04bce07894092: !TransformComponent + Id: 56aa71c2-65e7-4104-b4e0-4bce07894092 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + fa65b1e2069ba741ad2980e430c484f2: !UIComponent + Id: e2b165fa-9b06-41a7-ad29-80e430c484f2 + Page: eec4a797-8783-450f-88d3-cc355c8b620c:UI/ControlsVR + Resolution: {X: 1024.0, Y: 512.0, Z: 1000.0} + Size: {X: 1.0, Y: 1.0, Z: 1.0} + IsBillboard: false + RenderGroup: Group31 diff --git a/Starbreach/Assets/Shared/VFX/BlueLockdown.xkmat b/Starbreach/Assets/Shared/VFX/BlueLockdown.xkmat new file mode 100644 index 0000000..85f7d97 --- /dev/null +++ b/Starbreach/Assets/Shared/VFX/BlueLockdown.xkmat @@ -0,0 +1,39 @@ +!MaterialAsset +Id: c7c78c11-a78f-491c-a82d-30adbe324f9f +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeShaderClassColor + MixinReference: ComputeColorTextureScrollV + Generics: + 2c0bb69bbe2aff4caee9c7d589a34adb~UvSpeed: !ComputeColorParameterFloat + Value: -0.9 + 4aad9128b16fa74dbd140e49132dc1c2~colorIntensity: !ComputeColorParameterFloat + Value: 1.0 + CompositionNodes: {} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8c385e12-6e49-4211-a176-8066fcf29fef:VFX/TiledPattern04 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeFloat4 + Value: {X: 25.0, Y: 10.0, Z: 25.0, W: 1.0} + Intensity: !ComputeFloat + Value: 1.0 + UseAlpha: true + Transparency: !MaterialTransparencyAdditiveFeature + Alpha: !ComputeFloat + Value: 0.5 + Tint: !ComputeColor + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Overrides: + UVScale: {X: 1.0, Y: 1.0} + CullMode: None +Layers: {} diff --git a/Starbreach/Assets/Shared/VFX/LockdownPrefab.xkprefab b/Starbreach/Assets/Shared/VFX/LockdownPrefab.xkprefab new file mode 100644 index 0000000..66fb735 --- /dev/null +++ b/Starbreach/Assets/Shared/VFX/LockdownPrefab.xkprefab @@ -0,0 +1,95 @@ +!PrefabAsset +Id: c78e414a-0740-4f26-8a7b-1b7ea4235843 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 9e3487f1-b71f-4f3f-9ecc-b1b16d6d4135 + Parts: + - Entity: + Id: 577dd0d8-ee7f-4fe5-9db0-21d943cc3aac + Name: Ring3 + Components: + bdb03020f079d1489ae87b09ad4da8ca: !TransformComponent + Id: 2030b0bd-79f0-48d1-9ae8-7b09ad4da8ca + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: -0.294254571, Y: -0.170604631, Z: -0.22685805, W: 0.9126027} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3ce59dca5042544d91f30d00606938f1: !ModelComponent + Id: ca9de53c-4250-4d54-91f3-0d00606938f1 + Model: c80bd961-fb4b-4e59-b148-cf54564eb1ff:VFX/Torus + Materials: {} + - Entity: + Id: 9d2860f7-d419-4bd8-b492-3fce533f11b0 + Name: DownSphere + Components: + 891733b681beeb479afffd919157bea6: !TransformComponent + Id: b6331789-be81-47eb-9aff-fd919157bea6 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.25, Y: 1.25, Z: 1.25} + Children: {} + 6726b6b013b640469bf96a85fac39eb7: !ModelComponent + Id: b0b62667-b613-4640-9bf9-6a85fac39eb7 + Model: 2f4e806b-c1eb-4e53-8c68-0e1f551d324d:VFX/Sphere + Materials: {} + - Entity: + Id: 9e3487f1-b71f-4f3f-9ecc-b1b16d6d4135 + Name: Entity + Components: + 680ffad030e77f429ee674cf88959292: !TransformComponent + Id: d0fa0f68-e730-427f-9ee6-74cf88959292 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + bdb03020f079d1489ae87b09ad4da8ca: ref!! 402f9e71-5967-4dcf-bff1-bdaab8cf4bf6 + fa36dfde0b4fd75c73f36466957c80e9: ref!! 3278a90d-ce7c-4515-8287-d05f8cb53e88 + aee6e13c6a394ed21f0fae85bc4e6422: ref!! 2030b0bd-79f0-48d1-9ae8-7b09ad4da8ca + 891733b681beeb479afffd919157bea6: ref!! 73072f84-60b9-4ac6-bc24-cecbe99343ae + 4ba57a4f29766c1db40112f2b5e9d9ba: ref!! b6331789-be81-47eb-9aff-fd919157bea6 + f1cf868418badb458bb873925d413859: !Starbreach.VFX.RotateAxisY,Starbreach + Id: 8486cff1-ba18-45db-8bb8-73925d413859 + - Entity: + Id: a0111fa3-9a04-4e42-81f5-6c6545a35277 + Name: Ring2 + Components: + bdb03020f079d1489ae87b09ad4da8ca: !TransformComponent + Id: 3278a90d-ce7c-4515-8287-d05f8cb53e88 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: -0.591636837, Y: 0.19917877, Z: 0.153857738, W: 0.7659122} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3ce59dca5042544d91f30d00606938f1: !ModelComponent + Id: 7558c3ca-4e46-4450-b68e-fd9ceed0489c + Model: c80bd961-fb4b-4e59-b148-cf54564eb1ff:VFX/Torus + Materials: {} + - Entity: + Id: c876a11e-9409-40b1-b867-ed7f29dd4e38 + Name: Ring1 + Components: + bdb03020f079d1489ae87b09ad4da8ca: !TransformComponent + Id: 402f9e71-5967-4dcf-bff1-bdaab8cf4bf6 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.4194184, Y: 0.0, Z: 0.0, W: 0.907793045} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3ce59dca5042544d91f30d00606938f1: !ModelComponent + Id: 2ba92e44-21ca-49c7-986c-911b8ed64bc7 + Model: c80bd961-fb4b-4e59-b148-cf54564eb1ff:VFX/Torus + Materials: {} + - Entity: + Id: d569cdda-d54a-411e-b6f8-2e5b61c1ae10 + Name: UpSphere + Components: + 891733b681beeb479afffd919157bea6: !TransformComponent + Id: 73072f84-60b9-4ac6-bc24-cecbe99343ae + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.887182236, Y: 2.01692743E-08, Z: -0.4614192, W: -3.87799659E-08} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6726b6b013b640469bf96a85fac39eb7: !ModelComponent + Id: 4b8b6557-a28c-4261-95ef-c505492b3313 + Model: 2f4e806b-c1eb-4e53-8c68-0e1f551d324d:VFX/Sphere + Materials: {} diff --git a/Starbreach/Assets/Shared/VFX/RedLockdown.xkmat b/Starbreach/Assets/Shared/VFX/RedLockdown.xkmat new file mode 100644 index 0000000..8a43c47 --- /dev/null +++ b/Starbreach/Assets/Shared/VFX/RedLockdown.xkmat @@ -0,0 +1,39 @@ +!MaterialAsset +Id: 39448d5c-0915-4f9b-8395-da05f9ca63bf +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Attributes: + Emissive: !MaterialEmissiveMapFeature + EmissiveMap: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeShaderClassColor + MixinReference: ComputeColorTextureScrollH + Generics: + 2c0bb69bbe2aff4caee9c7d589a34adb~UvSpeed: !ComputeColorParameterFloat + Value: 2.5 + 4aad9128b16fa74dbd140e49132dc1c2~colorIntensity: !ComputeColorParameterFloat + Value: 1.0 + CompositionNodes: {} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8c385e12-6e49-4211-a176-8066fcf29fef:VFX/TiledPattern04 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeFloat4 + Value: {X: 20.0, Y: 4.0, Z: 10.0, W: 1.0} + Intensity: !ComputeFloat + Value: 1.0 + UseAlpha: true + Transparency: !MaterialTransparencyAdditiveFeature + Alpha: !ComputeFloat + Value: 0.5 + Tint: !ComputeColor + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Overrides: + UVScale: {X: 1.0, Y: 1.0} + CullMode: None +Layers: {} diff --git a/Starbreach/Assets/Shared/VFX/Sphere.xkpromodel b/Starbreach/Assets/Shared/VFX/Sphere.xkpromodel new file mode 100644 index 0000000..c5f714f --- /dev/null +++ b/Starbreach/Assets/Shared/VFX/Sphere.xkpromodel @@ -0,0 +1,10 @@ +!ProceduralModelAsset +Id: 2f4e806b-c1eb-4e53-8c68-0e1f551d324d +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Type: !SphereProceduralModel + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + UvScale: {X: 1.0, Y: 1.0} + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + MaterialInstance: + Material: c7c78c11-a78f-491c-a82d-30adbe324f9f:VFX/BlueLockdown diff --git a/Starbreach/Assets/Shared/VFX/TiledPattern01.xktex b/Starbreach/Assets/Shared/VFX/TiledPattern01.xktex new file mode 100644 index 0000000..b805a80 --- /dev/null +++ b/Starbreach/Assets/Shared/VFX/TiledPattern01.xktex @@ -0,0 +1,7 @@ +!Texture +Id: bf6b0285-d1d4-4b69-a8ec-c92630ee500d +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/VisualEffects/TiledPattern01.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/VFX/TiledPattern02.xktex b/Starbreach/Assets/Shared/VFX/TiledPattern02.xktex new file mode 100644 index 0000000..1fc28e8 --- /dev/null +++ b/Starbreach/Assets/Shared/VFX/TiledPattern02.xktex @@ -0,0 +1,7 @@ +!Texture +Id: b16b253a-2a6d-4ae5-9926-2c956a866045 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/VisualEffects/TiledPattern02.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/VFX/TiledPattern03.xktex b/Starbreach/Assets/Shared/VFX/TiledPattern03.xktex new file mode 100644 index 0000000..be05f78 --- /dev/null +++ b/Starbreach/Assets/Shared/VFX/TiledPattern03.xktex @@ -0,0 +1,7 @@ +!Texture +Id: e2db9578-8487-4f66-a40b-e8ddd839c409 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/VisualEffects/TiledPattern03.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/VFX/TiledPattern04.xktex b/Starbreach/Assets/Shared/VFX/TiledPattern04.xktex new file mode 100644 index 0000000..c96b7ba --- /dev/null +++ b/Starbreach/Assets/Shared/VFX/TiledPattern04.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 8c385e12-6e49-4211-a176-8066fcf29fef +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/VisualEffects/TiledPattern04.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Assets/Shared/VFX/Torus.xkpromodel b/Starbreach/Assets/Shared/VFX/Torus.xkpromodel new file mode 100644 index 0000000..07510a0 --- /dev/null +++ b/Starbreach/Assets/Shared/VFX/Torus.xkpromodel @@ -0,0 +1,12 @@ +!ProceduralModelAsset +Id: c80bd961-fb4b-4e59-b148-cf54564eb1ff +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Type: !TorusProceduralModel + Radius: 0.625 + Thickness: 0.0375 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + UvScale: {X: 1.0, Y: 1.0} + LocalOffset: {X: 0.0, Y: 0.0, Z: 0.0} + MaterialInstance: + Material: 39448d5c-0915-4f9b-8395-da05f9ca63bf:VFX/RedLockdown diff --git a/Starbreach/Assets/Shared/VFX/circle1.xktex b/Starbreach/Assets/Shared/VFX/circle1.xktex new file mode 100644 index 0000000..b2e8d22 --- /dev/null +++ b/Starbreach/Assets/Shared/VFX/circle1.xktex @@ -0,0 +1,7 @@ +!Texture +Id: e1a40892-f48e-4757-bf1f-18ee30a230d4 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/VisualEffects/circle1.tif +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/Starbreach/Camera/CameraController.cs b/Starbreach/Camera/CameraController.cs new file mode 100644 index 0000000..bddb946 --- /dev/null +++ b/Starbreach/Camera/CameraController.cs @@ -0,0 +1,146 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using System.Collections.Generic; +using System.Diagnostics; +using Starbreach.Core; +using Starbreach.Soldier; +using Xenko.Core.Extensions; +using Xenko.Core.Mathematics; +using Xenko.Engine; +using Xenko.Engine.Events; + +namespace Starbreach.Camera +{ + /// + /// This script controls the camera parameters and switches between Run and Aim stances. + /// + public class CameraController : SyncScript + { + /// + /// Gets or sets a reference to the camera. + /// + public CameraComponent Camera { get; set; } + + /// + /// Gets or sets a reference to the pivot entity containing the camera. + /// + public Entity Pivot { get; set; } + + /// + /// Gets or sets a reference to the model of the character targeted by the camera. + /// + public ModelComponent Model { get; set; } + + /// + /// Gets or sets the duration of the switch between the two stances. + /// + public float SwitchDuration { get; set; } = 0.2f; + + /// + /// Gets the parameter controlling the distance of the camera to its target. + /// + public CameraParameterFloat Distance { get; } = new CameraParameterFloat(10.0f, 10.0f); + + /// + /// Gets the parameter controlling the field of view of the camera. + /// + public CameraParameterFloat Fov { get; } = new CameraParameterFloat(45.0f, 45.0f); + + /// + /// Gets the parameter controlling the panof the camera. + /// + public CameraParameterVector2 Pan { get; } = new CameraParameterVector2(); + + /// + /// Gets or sets the pitch of the camera. + /// + public float Pitch { get; set; } = 20.0f; + + /// + /// Gets or sets the yaw of the camera. + /// + public float Yaw { get; set; } = 45.0f; + + /// + /// Gets or sets the speed at which the yaw is controlled by the player, in degrees per second. + /// + public float PitchSpeed { get; set; } = 60.0f; + + /// + /// Gets or sets the speed at which the yaw is controlled by the player, in degrees per second. + /// + public float YawSpeed { get; set; } = 90.0f; + + /// + /// Gets or sets the range of pitch the player can rotate in. + /// + public Vector2 PitchRange { get; set; } = new Vector2(10.0f, 80.0f); + + /// + /// Gets whether the camera is currenly in the aiming stance. + /// + public bool IsAiming => input.AimState || input.FireState; + + private SoldierPlayerInput input; + + private IEnumerable Parameters + { + get + { + yield return Distance; + yield return Fov; + yield return Pan; + } + } + + public override void Start() + { + input = SoldierPlayerInput.FromEntity(Entity); + if (input == null) throw new ArgumentException("Input is not set"); + if (Camera == null) throw new ArgumentException("Camera is not set"); + if (Model == null) throw new ArgumentException("Model is not set"); + if (Pivot == null) throw new ArgumentException("Pivot is not set"); + } + + public override void Update() + { + ProcessInputs(); + UpdateParameters(); + ApplyParameters(); + } + + private void ProcessInputs() + { + Vector2 aimDir = input.AimDirection; + if (!IsAiming) + { + var dt = (float)Game.UpdateTime.Elapsed.TotalSeconds; + Pitch = MathUtil.Clamp(Pitch - aimDir.Y * PitchSpeed * dt, PitchRange.X, PitchRange.Y); + Yaw += -aimDir.X * YawSpeed * dt; + } + } + + private void UpdateParameters() + { + var dt = (float)Game.UpdateTime.Elapsed.TotalSeconds; + + foreach (var parameter in Parameters) + { + parameter.Update(dt, SwitchDuration); + } + } + + private void ApplyParameters() + { + // Update pitch + Pivot.Transform.Rotation = Quaternion.RotationYawPitchRoll(MathUtil.DegreesToRadians(Yaw), MathUtil.DegreesToRadians(Pitch), 0); + // Update distance + Camera.Entity.Transform.Position.Z = -Distance.CurrentValue; + // Update FOV + Camera.VerticalFieldOfView = Fov.CurrentValue; + // Update pan + Pivot.Transform.Position = Vector3.Transform(new Vector3(Pan.CurrentValue.X, Pan.CurrentValue.Y, 0), Model.Entity.Transform.Rotation); + } + } +} \ No newline at end of file diff --git a/Starbreach/Camera/CameraManualControl.cs b/Starbreach/Camera/CameraManualControl.cs new file mode 100644 index 0000000..a0f897d --- /dev/null +++ b/Starbreach/Camera/CameraManualControl.cs @@ -0,0 +1,124 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using Starbreach.Core; +using Xenko.Core.Mathematics; +using Xenko.Engine; +using Xenko.Input; + +namespace Starbreach.Camera +{ + /// + /// This script allows to customize camera parameters to fine-tune them. + /// + public class CameraManualControl : SyncScript + { + public CameraController CameraController { get; set; } + + public bool IsEnabled { get; set; } = true; + + /// + /// Gets oe sets the speed at which the pitch can be modified. + /// + public float DebugPitchSpeed { get; set; } = 45.0f; + + /// + /// Gets oe sets the speed at which the distance can be modified. + /// + public float DebugDistanceSpeed { get; set; } = 5f; + + /// + /// Gets oe sets the speed at which the FOV can be modified. + /// + public float DebugFovSpeed { get; set; } = 5.0f; + + /// + /// Gets oe sets the speed at which the pan can be modified. + /// + public float DebugPanSpeed { get; set; } = 0.5f; + + public override void Start() + { + if (CameraController == null) throw new ArgumentException("Camera not set"); + } + + public override void Update() + { + if (!IsEnabled) + return; + + var distOffset = 0.0f; + var fovOffset = 0.0f; + var panOffset = Vector2.Zero; + bool changed = false; + var dt = (float)Game.UpdateTime.Elapsed.TotalSeconds; + if (Input.IsGamePadButtonDown(0, GamePadButton.PadUp) || Input.IsKeyDown(Keys.PageUp)) + { + distOffset += DebugDistanceSpeed * dt; + changed = true; + } + if (Input.IsGamePadButtonDown(0, GamePadButton.PadDown) || Input.IsKeyDown(Keys.PageDown)) + { + distOffset -= DebugDistanceSpeed * dt; + changed = true; + } + if (Input.IsGamePadButtonDown(0, GamePadButton.PadLeft) || Input.IsKeyDown(Keys.I)) + { + changed = true; + } + if (Input.IsGamePadButtonDown(0, GamePadButton.PadRight) || Input.IsKeyDown(Keys.K)) + { + changed = true; + } + if (Input.IsGamePadButtonDown(0, GamePadButton.LeftShoulder) || Input.IsKeyDown(Keys.End)) + { + fovOffset += DebugFovSpeed * dt; + changed = true; + } + if (Input.IsGamePadButtonDown(0, GamePadButton.RightShoulder) || Input.IsKeyDown(Keys.Home)) + { + fovOffset -= DebugFovSpeed * dt; + changed = true; + } + if (Input.IsGamePadButtonDown(0, GamePadButton.X) || Input.IsKeyDown(Keys.G)) + { + panOffset.X += DebugPanSpeed * dt; + changed = true; + } + if (Input.IsGamePadButtonDown(0, GamePadButton.B) || Input.IsKeyDown(Keys.J)) + { + panOffset.X -= DebugPanSpeed * dt; + changed = true; + } + if (Input.IsGamePadButtonDown(0, GamePadButton.Y) || Input.IsKeyDown(Keys.Y)) + { + panOffset.Y += DebugPanSpeed * dt; + changed = true; + } + if (Input.IsGamePadButtonDown(0, GamePadButton.A) || Input.IsKeyDown(Keys.H)) + { + panOffset.Y -= DebugPanSpeed * dt; + changed = true; + } + + if (changed) + { + if (CameraController.IsAiming) + { + CameraController.Distance.ValueAtAim += distOffset; + CameraController.Fov.ValueAtAim += fovOffset; + CameraController.Pan.ValueAtAim += panOffset; + } + else + { + CameraController.Distance.ValueAtRun += distOffset; + CameraController.Fov.ValueAtRun += fovOffset; + CameraController.Pan.ValueAtRun += panOffset; + } + } + Game.DebugPrint($"Dist={CameraController.Distance.CurrentValue}"); + Game.DebugPrint($"FOV={CameraController.Fov.CurrentValue}"); + Game.DebugPrint($"Pan={CameraController.Pan.CurrentValue}"); + } + } +} \ No newline at end of file diff --git a/Starbreach/Camera/CameraParameterBase.cs b/Starbreach/Camera/CameraParameterBase.cs new file mode 100644 index 0000000..4b7daf7 --- /dev/null +++ b/Starbreach/Camera/CameraParameterBase.cs @@ -0,0 +1,95 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using Xenko.Core; + +namespace Starbreach.Camera +{ + /// + /// Base class for implementations of hte interface. + /// + /// The type of the camera parameter. + [DataContract(Inherited = true)] + public abstract class CameraParameterBase : ICameraParameter + { + /// + /// Indicates if the camera is in Aim stance. + /// + private bool isAiming; + + private T valueAtRun; + private T valueAtAim; + + /// + /// Initializes a new instance of the with values for each stance. + /// + /// The value for the Run stance. + /// The value for the Aim stance. + protected CameraParameterBase(T valueAtRun, T valueAtAim) + { + ValueAtRun = valueAtRun; + ValueAtAim = valueAtAim; + CurrentValue = valueAtRun; + } + + /// + /// Initializes a new instance of the . + /// + protected CameraParameterBase() + : this(default(T), default(T)) + { + } + + /// + /// Gets or sets the value of this parameter in the Run stance. + /// + public T ValueAtRun { get { return valueAtRun; } set { valueAtRun = value; if (!isAiming) CurrentValue = value; } } + + /// + /// Gets or sets the value of this parameter in the Aim stance. + /// + public T ValueAtAim { get { return valueAtAim; } set { valueAtAim = value; if (isAiming) CurrentValue = value; } } + + /// + /// Gets the current value of this parameter. + /// + [DataMemberIgnore] + public T CurrentValue { get; protected set; } + + /// + /// Gets the target value of this parameter, corresponding either to or to . + /// + protected T TargetValue => isAiming ? ValueAtAim : ValueAtRun; + + /// + public void SwitchToAim() + { + isAiming = true; + } + + /// + public void SwitchToRun() + { + isAiming = false; + } + + /// + public abstract void Update(float dt, float transitionDuration); + + /// + /// Interpolates the value of a float parameter between two boundaries according to a delta-time and a duration of transition. + /// + /// The delta-time for the interpolation. + /// The duration of the transition between the two boundaries. + /// The first boundary. Order relative to the other boundary does not matter. + /// The second boundary. Order relative to the other boundary does not matter. + /// The current value, resulting of the interpolation at the previous frame. + /// The target value, which should be either or . + /// The new interpolated value for the float parameter. + protected static float InterpolateParameter(float dt, float transitionDuration, float boundary1, float boundary2, float currentValue, float targetValue) + { + var step = Math.Abs(boundary1 - boundary2) * dt / transitionDuration; + return currentValue + Math.Min(step, Math.Abs(targetValue - currentValue)) * Math.Sign(targetValue - currentValue); + } + } +} \ No newline at end of file diff --git a/Starbreach/Camera/CameraParameterFloat.cs b/Starbreach/Camera/CameraParameterFloat.cs new file mode 100644 index 0000000..08aed32 --- /dev/null +++ b/Starbreach/Camera/CameraParameterFloat.cs @@ -0,0 +1,35 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +namespace Starbreach.Camera +{ + /// + /// Implementation of for a float parameter. + /// + public class CameraParameterFloat : CameraParameterBase + { + /// + /// Initializes a new instance of the with values for each stance. + /// + /// The value for the Run stance. + /// The value for the Aim stance. + public CameraParameterFloat(float valueAtRun, float valueAtAim) + : base(valueAtRun, valueAtAim) + { + ValueAtRun = valueAtRun; + ValueAtAim = valueAtAim; + } + + /// + /// Initializes a new instance of the . + /// + public CameraParameterFloat() + { + } + + /// + public override void Update(float dt, float transitionDuration) + { + CurrentValue = InterpolateParameter(dt, transitionDuration, ValueAtRun, ValueAtAim, CurrentValue, TargetValue); + } + } +} \ No newline at end of file diff --git a/Starbreach/Camera/CameraParameterVector2.cs b/Starbreach/Camera/CameraParameterVector2.cs new file mode 100644 index 0000000..17ed9b0 --- /dev/null +++ b/Starbreach/Camera/CameraParameterVector2.cs @@ -0,0 +1,40 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using Xenko.Core.Mathematics; + +namespace Starbreach.Camera +{ + /// + /// Implementation of for a Vector2 parameter. + /// + public class CameraParameterVector2 : CameraParameterBase + { + /// + /// Initializes a new instance of the with values for each stance. + /// + /// The value for the Run stance. + /// The value for the Aim stance. + public CameraParameterVector2(Vector2 valueAtRun, Vector2 valueAtAim) + : base(valueAtRun, valueAtAim) + { + ValueAtRun = valueAtRun; + ValueAtAim = valueAtAim; + } + + /// + /// Initializes a new instance of the . + /// + public CameraParameterVector2() + { + } + + /// + public override void Update(float dt, float transitionDuration) + { + Vector2 currentValue; + currentValue.X = InterpolateParameter(dt, transitionDuration, ValueAtRun.X, ValueAtAim.X, CurrentValue.X, TargetValue.X); + currentValue.Y = InterpolateParameter(dt, transitionDuration, ValueAtRun.Y, ValueAtAim.Y, CurrentValue.Y, TargetValue.Y); + CurrentValue = currentValue; + } + } +} \ No newline at end of file diff --git a/Starbreach/Camera/ICameraParameter.cs b/Starbreach/Camera/ICameraParameter.cs new file mode 100644 index 0000000..80fec20 --- /dev/null +++ b/Starbreach/Camera/ICameraParameter.cs @@ -0,0 +1,27 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +namespace Starbreach.Camera +{ + /// + /// An interface representing a parameter of the camera that changes between the Run and the Aim stances. + /// + public interface ICameraParameter + { + /// + /// Notifies this parameter to switch to the Aim stance. + /// + void SwitchToAim(); + + /// + /// Notifies this parameter to switch to the Run stance. + /// + void SwitchToRun(); + + /// + /// Updates this parameter. This method should be called every frame. + /// + /// The delta-time for the current frame. + /// The duration of the transition of this parameter between the two stances. + void Update(float dt, float transitionDuration); + } +} \ No newline at end of file diff --git a/Starbreach/Core/FiniteStateMachine.cs b/Starbreach/Core/FiniteStateMachine.cs new file mode 100644 index 0000000..a3bc63e --- /dev/null +++ b/Starbreach/Core/FiniteStateMachine.cs @@ -0,0 +1,93 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System.Collections.Generic; +using System.Diagnostics; +using System.Threading.Tasks; +using Xenko.Engine.Processors; + +namespace Starbreach.Core +{ + public class FiniteStateMachine + { + private readonly Dictionary states = new Dictionary(); + + private State currentState; + private State nextState; + private bool exited; + private ScriptSystem scriptSystem; + + public double TimeInCurrentState { get; private set; } = 0.0f; + + public FiniteStateMachine(string name) + { + Name = name; + } + + public string Name { get; } + + public string CurrentStateName => currentState?.Name; + + public State GetCurrentState() + { + return currentState; + } + public T GetCurrentState() where T : State + { + return (T)currentState; + } + + public void RegisterState(State state) + { + states.Add(state.Name, state); + } + + public void SwitchTo(string stateName) + { + if (stateName != CurrentStateName) + { + var state = states[stateName]; + if (state != nextState) + { + nextState = state; + TimeInCurrentState = 0; + //Debug.WriteLine($"FSM: Machine [{Name}] switching from [{CurrentState}] to [{stateName}]"); + } + } + } + + public void Start(ScriptSystem script, string initialStateName) + { + exited = false; + scriptSystem = script; + scriptSystem.AddTask(Run); + nextState = states[initialStateName]; + } + + public void Exit() + { + exited = true; + } + + public async Task Run() + { + while (!exited) + { + if (nextState != null) + { + if (currentState != null) + { + await currentState.Exit(nextState); + } + var previousState = currentState; + currentState = nextState; + + await currentState.Enter(previousState); + } + nextState = null; + currentState?.Update(); + TimeInCurrentState += scriptSystem.Game.UpdateTime.Elapsed.TotalSeconds ; + await scriptSystem.NextFrame(); + } + } + } +} diff --git a/Starbreach/Core/IDestructible.cs b/Starbreach/Core/IDestructible.cs new file mode 100644 index 0000000..e4f1a3a --- /dev/null +++ b/Starbreach/Core/IDestructible.cs @@ -0,0 +1,26 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; + +namespace Starbreach.Core +{ + public interface IStunnable + { + void Stun(); + + void CancelStun(); + + bool Stunned { get; } + + bool CanBeStunned { get; } + } + + public interface IDestructible + { + void Damage(int damage); + + int HealthPoints { get; } + + bool IsDead { get; } + } +} \ No newline at end of file diff --git a/Starbreach/Core/IPlayer.cs b/Starbreach/Core/IPlayer.cs new file mode 100644 index 0000000..f126299 --- /dev/null +++ b/Starbreach/Core/IPlayer.cs @@ -0,0 +1,11 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +namespace Starbreach.Core +{ + public interface IPlayer + { + bool IsAlive { get; } + + void Init(IPlayerInput input); + } +} \ No newline at end of file diff --git a/Starbreach/Core/IPlayerInput.cs b/Starbreach/Core/IPlayerInput.cs new file mode 100644 index 0000000..79accb4 --- /dev/null +++ b/Starbreach/Core/IPlayerInput.cs @@ -0,0 +1,15 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Starbreach.Core +{ + public interface IPlayerInput + { + int ControllerIndex { get; } + } +} diff --git a/Starbreach/Core/IUsable.cs b/Starbreach/Core/IUsable.cs new file mode 100644 index 0000000..8df3ac0 --- /dev/null +++ b/Starbreach/Core/IUsable.cs @@ -0,0 +1,20 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Starbreach.Core +{ + public interface IUsable + { + bool CanBeUsed { get; } + + string Name { get; } + + void Use(); + + } +} diff --git a/Starbreach/Core/InputManagerExtensions.cs b/Starbreach/Core/InputManagerExtensions.cs new file mode 100644 index 0000000..8eb87d6 --- /dev/null +++ b/Starbreach/Core/InputManagerExtensions.cs @@ -0,0 +1,50 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using Xenko.Core.Mathematics; +using Xenko.Input; + +namespace Starbreach.Core +{ + public static class InputManagerExtensions + { + public static bool IsGamePadButtonDown(this InputManager input, int index, GamePadButton button) + { + return input.GamePadCount > index && input.GetGamePadByIndex(index).IsButtonDown(button); + } + + public static bool IsGamePadButtonPressed(this InputManager input, int index, GamePadButton button) + { + return input.GamePadCount > index && input.GetGamePadByIndex(index).IsButtonPressed(button); + } + public static bool IsGamePadButtonReleased(this InputManager input, int index, GamePadButton button) + { + return input.GamePadCount > index && input.GetGamePadByIndex(index).IsButtonReleased(button); + } + + public static Vector2 GetLeftThumb(this InputManager input, int index) + { + return input.GamePadCount > index ? input.GetGamePadByIndex(index).State.LeftThumb : Vector2.Zero; + } + + public static Vector2 GetRightThumb(this InputManager input, int index) + { + return input.GamePadCount > index ? input.GetGamePadByIndex(index).State.RightThumb : Vector2.Zero; + } + + public static float GetLeftTrigger(this InputManager input, int index) + { + return input.GamePadCount > index ? input.GetGamePadByIndex(index).State.LeftTrigger : 0.0f; + } + + public static float GetRightTrigger(this InputManager input, int index) + { + return input.GamePadCount > index ? input.GetGamePadByIndex(index).State.RightTrigger : 0.0f; + } + + public static void SetVibration(this InputManager input, int index, float largeMotors, float smallMotors) + { + if (input.GamePadCount > index) + input.GetGamePadByIndex(index).SetVibration(largeMotors, smallMotors); + } + } +} \ No newline at end of file diff --git a/Starbreach/Core/Path.cs b/Starbreach/Core/Path.cs new file mode 100644 index 0000000..d55cfc5 --- /dev/null +++ b/Starbreach/Core/Path.cs @@ -0,0 +1,102 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Xenko.Core.Mathematics; + +namespace Starbreach.Core +{ + /// + /// A single point on a path, use Next to get the next point + /// + public class Waypoint + { + private Path path; + + public Vector3 Position { get; private set; } + + /// + /// The next point in the path, null if this is the last point + /// + public Waypoint Next + { + get + { + int nextIndex = path.Waypoints.IndexOf(this) + 1; + if (nextIndex >= path.Waypoints.Count) return null; + return path.Waypoints[nextIndex]; + } + } + + /// + /// The previous point, null if this is the first point + /// + public Waypoint Previous + { + get + { + int nextIndex = path.Waypoints.IndexOf(this) - 1; + if (nextIndex < 0) return null; + return path.Waypoints[nextIndex]; + } + } + + public Waypoint(Path path, Vector3 location) + { + this.path = path; + Position = location; + } + } + + public class Path + { + List waypoints = new List(); + public List Waypoints => waypoints; + + public Path(Vector3[] points) + { + foreach (Vector3 p in points) + { + waypoints.Add(new Waypoint(this, p)); + } + } + + /// + /// Selects the next point in the path for the current location + /// + /// Current location + /// true if traversing the reverse path + /// + public Waypoint SelectWaypoint(Vector3 position, bool reverse = false) + { + Waypoint candidate = null; + float distanceToPoint = float.MaxValue; + foreach (Waypoint waypoint in waypoints) + { + float dist = (waypoint.Position - position).LengthSquared(); + if (dist < distanceToPoint) + { + distanceToPoint = dist; + candidate = waypoint; + } + } + + // Skip ahead 1 waypoint if it lies ahead of the current point + if (candidate != null && ((!reverse && candidate.Next != null) || (reverse && candidate.Previous != null))) + { + Vector3 waypointDirection = reverse ? + candidate.Previous.Position - candidate.Position : + candidate.Next.Position - candidate.Position; + float projectedProgress = Vector3.Dot(position, waypointDirection); + float projectedStart = Vector3.Dot(candidate.Position, waypointDirection); + if (projectedProgress > projectedStart) + candidate = reverse ? candidate.Previous : candidate.Next; + } + + return candidate; + } + } +} diff --git a/Starbreach/Core/PlayerSpawner.cs b/Starbreach/Core/PlayerSpawner.cs new file mode 100644 index 0000000..a084f16 --- /dev/null +++ b/Starbreach/Core/PlayerSpawner.cs @@ -0,0 +1,88 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System.Collections.Generic; +using Xenko.Engine; +using Xenko.Engine.Events; + +namespace Starbreach.Core +{ + public class PlayerSpawner : SyncScript + { + protected IPlayer Player; + + protected EventReceiver StartGameEvent; + protected readonly List PlayerEntities = new List(); + + public Prefab PlayerPrefab { get; set; } + + public float RespawnDelay = 5.0f; + public float RespawnTimer = 0.0f; + + protected bool Playing => PlayerEntities.Count > 0; + + public override void Start() + { + } + + public override void Update() + { + if (!Playing) + { + if (RespawnTimer <= 0.0f) + { + SpawnPlayer(); + // Reset respawn time + RespawnTimer = RespawnDelay; + } + else + { + RespawnTimer -= (float)Game.UpdateTime.Elapsed.TotalSeconds; + UpdateRespawnTimer(RespawnTimer); + } + } + else if (Player != null && !Player.IsAlive) + { + KillPlayer(); + } + } + + protected virtual void UpdateRespawnTimer(float timeLeft) + { + } + + protected virtual void SpawnPlayer() + { + PlayerEntities.AddRange(PlayerPrefab.Instantiate()); + foreach (var entity in PlayerEntities) + { + entity.Transform.Position = Entity.Transform.Position; + // Allow user spawn handling before starting scripts + PreSpawnPlayer(entity); + // Add to scene + SceneSystem.SceneInstance.RootScene.Entities.Add(entity); + } + } + + protected virtual void KillPlayer() + { + foreach (var entity in PlayerEntities) + { + SceneSystem.SceneInstance.RootScene.Entities.Remove(entity); + } + + PlayerEntities.Clear(); + } + + protected virtual void PreSpawnPlayer(Entity playerEntity) + { + } + + /// + /// Use to force despawning of spawned players + /// + public void DespawnPlayerIfSpawned() + { + KillPlayer(); + } + } +} \ No newline at end of file diff --git a/Starbreach/Core/RandomSoundSelector.cs b/Starbreach/Core/RandomSoundSelector.cs new file mode 100644 index 0000000..2716596 --- /dev/null +++ b/Starbreach/Core/RandomSoundSelector.cs @@ -0,0 +1,51 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using System.Linq; +using Xenko.Audio; +using Xenko.Engine; + +namespace Starbreach.Core +{ + public class RandomSoundSelector + { + private AudioEmitterComponent emitter; + private Random random = new Random(); + + public AudioEmitterSoundController[] Sounds { get; private set; } + + /// + /// Takes all sounds starting with + /// + public RandomSoundSelector(AudioEmitterComponent emitter, string baseName) + { + this.emitter = emitter; + Sounds = emitter.Sounds.Where(x => x.Key.StartsWith(baseName)).Select(x => emitter[x.Key]).ToArray(); + } + + /// + /// Plays a random sound + /// + public AudioEmitterSoundController PlayAndForget() + { + if (Sounds.Length == 0) + return null; + + int soundToPlay = random.Next(0, Sounds.Length - 1); + var soundController = Sounds[soundToPlay]; + soundController.PlayAndForget(); + return soundController; + } + + /// + /// Stop all sounds + /// + public void StopAll() + { + foreach (var sound in Sounds) + { + sound.Stop(); + } + } + } +} \ No newline at end of file diff --git a/Starbreach/Core/SplashScreen.cs b/Starbreach/Core/SplashScreen.cs new file mode 100644 index 0000000..a4b49a3 --- /dev/null +++ b/Starbreach/Core/SplashScreen.cs @@ -0,0 +1,81 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System.Threading.Tasks; +using Starbreach.Camera; +using Starbreach.Soldier; +using Xenko.Core.Mathematics; +using Xenko.Engine; +using Xenko.Particles.Components; +using Xenko.Physics; +using Xenko.Rendering.Compositing; +using Xenko.Rendering.Images; +using Xenko.UI; +using Xenko.UI.Controls; + +namespace Starbreach.Core +{ + public class SplashScreen : AsyncScript + { + public Gameplay.Activator Activator { get; set; } + + public SoldierController Soldier { get; set; } + + public ModelComponent SoldierModel { get; set; } + + public ParticleSystemComponent StartParticles { get; set; } + + public ParticleSystemComponent FinishParticles { get; set; } + + public override async Task Execute() + { + var initialPosition = Soldier.Entity.Transform.Position; + var initialYaw = 180; + var initialCamYaw = Soldier.Entity.Get().Yaw; + while (true) + { + // Game start, enable and initialize soldier + Soldier.IsEnabled = true; + SoldierModel.Enabled = true; + Soldier.Entity.Get().Teleport(initialPosition); + Soldier.Entity.Get().Yaw = initialCamYaw; + Soldier.Yaw = initialYaw; + + // Wait to reach the end + while (true) + { + await Script.NextFrame(); + if (Activator.CurrentState) + { + // Disable soldier + Soldier.IsEnabled = false; + Soldier.Entity.Get().SetVelocity(Vector3.Zero); + + await Task.Delay(100); + + // Particle effects and fade + SoldierModel.Enabled = false; + FinishParticles.Enabled = true; + Entity.Get().Enabled = true; + const float initialTime = 2.0f; + var time = initialTime; + var spl = (ImageElement)Entity.Get().Page.RootElement.FindName("Spl"); + spl.Visibility = Visibility.Visible; + while (time > 0) + { + spl.Opacity = 1.0f - time / initialTime; + time -= (float)Game.UpdateTime.Elapsed.TotalSeconds; + await Script.NextFrame(); + } + spl.Opacity = 1.0f; + + await Task.Delay(5000); + + spl.Opacity = 0.0f; + Entity.Get().Enabled = false; + break; + } + } + } + } + } +} \ No newline at end of file diff --git a/Starbreach/Core/State.cs b/Starbreach/Core/State.cs new file mode 100644 index 0000000..5a893a8 --- /dev/null +++ b/Starbreach/Core/State.cs @@ -0,0 +1,47 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using System.Threading.Tasks; + +namespace Starbreach.Core +{ + public class State + { + public State(string name) + { + Name = name; + } + + public string Name { get; } + + public Func EnterMethod { get; set; } + + public Action UpdateMethod { get; set; } + + public Func ExitMethod { get; set; } + + public void Update() + { + UpdateMethod?.Invoke(); + } + + public Task Enter(State from) + { + return EnterMethod?.Invoke(from) ?? Task.FromResult(0); + } + + public Task Exit(State to) + { + return ExitMethod?.Invoke(to) ?? Task.FromResult(0); + } + + public static Func ToTask(Action action) + { + return x => + { + action(x); + return Task.FromResult(0); + }; + } + } +} \ No newline at end of file diff --git a/Starbreach/Core/Streaming.cs b/Starbreach/Core/Streaming.cs new file mode 100644 index 0000000..e3656f2 --- /dev/null +++ b/Starbreach/Core/Streaming.cs @@ -0,0 +1,104 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Xenko.Core.Mathematics; +using Xenko.Engine; +using Xenko.Physics; + +namespace Starbreach.Core +{ + public class Streaming : AsyncScript + { + public StaticColliderComponent Triggers { get; set; } + + public PhysicsComponent Target { get; set; } + + public Vector3 Offset { get; set; } + + public string SceneUrl { get; set; } + + private Scene scene; + + public override async Task Execute() + { + while (true) + { + if (Triggers.Collisions.Any(CollisionMatch)) + { + await LoadScene(); + } + else + { + await UnloadScene(); + } + await Script.NextFrame(); + } + } + + private async Task LoadScene() + { + if (scene == null) + { + scene = await Content.LoadAsync(SceneUrl); + var allEntities = SelectDeep(scene.Entities, x => x.Transform.Children.Select(y => y.Entity)).ToList(); + + SceneSystem.SceneInstance.RootScene.Children.Add(scene); + + //await Task.Delay(200); + await Script.NextFrame(); + + foreach (var entity in allEntities) + { + var physics = entity.Get(); + if (physics?.ColliderShape != null) + { + entity.Transform.UpdateWorldMatrix(); + physics.UpdatePhysicsTransformation(); + } + } + } + } + + private async Task UnloadScene() + { + if (scene != null) + { + SceneSystem.SceneInstance.RootScene.Children.Remove(scene); + await Script.NextFrame(); + Content.Unload(scene); + scene = null; + } + } + + private bool CollisionMatch(Collision collision) + { + return collision.ColliderA == Target || collision.ColliderB == Target; + } + + private static IEnumerable SelectDeep(IEnumerable source, Func> childrenSelector) + { + if (childrenSelector == null) throw new ArgumentNullException(nameof(childrenSelector)); + + var stack = new Stack>(); + stack.Push(source); + while (stack.Count != 0) + { + var current = stack.Pop(); + if (current == null) + continue; + + foreach (var item in current) + { + yield return item; + stack.Push(childrenSelector(item)); + } + } + } + + + } +} diff --git a/Starbreach/Core/StreamingScript.cs b/Starbreach/Core/StreamingScript.cs new file mode 100644 index 0000000..e87fc2f --- /dev/null +++ b/Starbreach/Core/StreamingScript.cs @@ -0,0 +1,23 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System.Collections.Generic; +using System.Linq; +using Xenko.Engine; + +namespace Starbreach.Core +{ + public class StreamingScript : StartupScript + { + // TODO: this is just a placeholder script for streaming + public List Levels { get; set; } = new List(); + + public override void Start() + { + base.Start(); + foreach (var level in Levels) + { + SceneSystem.SceneInstance.RootScene.Entities.AddRange(level.Entities.Where(x => x.Name != "(discard)")); + } + } + } +} \ No newline at end of file diff --git a/Starbreach/Core/TaskExtension.cs b/Starbreach/Core/TaskExtension.cs new file mode 100644 index 0000000..6ce9230 --- /dev/null +++ b/Starbreach/Core/TaskExtension.cs @@ -0,0 +1,23 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using System.Threading.Tasks; + +namespace Starbreach.Core +{ + public static class TaskExtension + { + public static async Task InterruptedBy(this Task mainTask, Task interruptingTask, Action interruptionAction) + { + var firstCompleted = await Task.WhenAny(mainTask, interruptingTask); + if (firstCompleted != mainTask) + { + // Interrupted, run action + interruptionAction(firstCompleted); + // And return a task that will never complete + return await new TaskCompletionSource().Task; + } + return mainTask.Result; + } + } +} \ No newline at end of file diff --git a/Starbreach/Core/Utils.cs b/Starbreach/Core/Utils.cs new file mode 100644 index 0000000..5511b68 --- /dev/null +++ b/Starbreach/Core/Utils.cs @@ -0,0 +1,156 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using System.Linq; +using System.Threading.Tasks; +using Xenko.Core.Mathematics; +using Xenko.Engine; +using Xenko.Engine.Events; +using Xenko.Games; +using Xenko.UI; + +namespace Starbreach.Core +{ + public static class Utils + { + private static bool debugPrintRegistered; + private static int lineCount; + + public static Vector3 LogicDirectionToWorldDirection(Vector2 logicDirection, Entity cameraEntity) + { + var pivotRotation = cameraEntity.GetParent().Transform.Rotation; + var forward = Vector3.Transform(-cameraEntity.Transform.Position, pivotRotation); + forward.Y = 0; + forward.Normalize(); + var right = Vector3.Cross(forward, Vector3.UnitY); + var worldDirection = forward * logicDirection.Y + right * logicDirection.X; + worldDirection.Normalize(); + return worldDirection; + } + + public static float LerpYaw(float currentYaw, float targetYaw, float factor) + { + // TODO: this lerp is framerate dependent + // Compute target yaw from the movement direction + var deltaYaw = targetYaw - currentYaw; + // Avoid interpolation to be done on the wrong arc + if (Math.Abs(deltaYaw) > MathUtil.Pi) + currentYaw = currentYaw + Math.Sign(deltaYaw) * MathUtil.TwoPi; + + return MathUtil.Lerp(currentYaw, targetYaw, factor); + } + + public static float UpdateYaw(float currentYaw, float targetYaw, float degreesPerSecond, float dt) + { + // TODO: this update is not smoothing + // Compute target yaw from the movement direction + var deltaYaw = targetYaw - currentYaw; + // Avoid interpolation to be done on the wrong arc + if (Math.Abs(deltaYaw) > MathUtil.Pi) + currentYaw = currentYaw + Math.Sign(deltaYaw) * MathUtil.TwoPi; + + var newYaw = currentYaw + Math.Min(Math.Abs(deltaYaw), degreesPerSecond * dt) * Math.Sign(deltaYaw); + return newYaw; + } + + public static void DebugPrint(this IGame gameInterface, string message) + { + var game = (Game)gameInterface; + if (!debugPrintRegistered) + { + game.Script.AddTask(() => DebugPrintNextFrame(game), int.MinValue); + debugPrintRegistered = true; + } + ++lineCount; + var position = new Int2(16, 16 * lineCount); +#if DEBUG + game.DebugTextSystem.Print(message, position + Int2.One, Color4.Black); + game.DebugTextSystem.Print(message, position); +#endif + } + + public static void RetrieveWeaponState(EventReceiver toggleAimEvent, EventReceiver toggleFireEvent, out bool aiming) + { + bool firing; + RetrieveWeaponState(toggleAimEvent, toggleFireEvent, out aiming, out firing); + } + + public static void RetrieveWeaponState(EventReceiver toggleAimEvent, EventReceiver toggleFireEvent, out bool aiming, out bool firing) + { + toggleAimEvent.TryReceive(out aiming); + toggleFireEvent.TryReceive(out firing); + aiming = aiming || firing; + } + + private static async Task DebugPrintNextFrame(Game game) + { + while (game.IsRunning) + { + lineCount = 0; + await game.Script.NextFrame(); + } + } + + public static bool IsPlayerEntity(Entity entity) + { + return entity.Any(x => x is IPlayer); + } + + public static IDestructible GetDestructible(Entity entity) + { + return (IDestructible)entity.FirstOrDefault(x => x is IDestructible); + } + + public static IStunnable GetStunnable(Entity entity) + { + return (IStunnable)entity.FirstOrDefault(x => x is IStunnable); + } + + public static IUsable GetUsable(Entity entity) + { + return (IUsable)entity.FirstOrDefault(x => x is IUsable); + } + + public static async Task WaitTime(this IGame game, TimeSpan time) + { + var g = (Game) game; + var goal = game.UpdateTime.Total + time; + while(game.UpdateTime.Total < goal) + { + await g.Script.NextFrame(); + } + } + + public static void VibratorSmooth(this IGame game, int controllerIndex, Vector2 from, Vector2 to, TimeSpan time) + { + var g = (Game)game; + g.Script.AddTask(async () => + { + var length = time.TotalSeconds; + var now = 0.0f; + for (;;) + { + if (now > length) break; + var vib = Vector2.Lerp(from, to, (float)(now / length)); + g.Input.SetVibration(controllerIndex, vib.X, vib.Y); + await g.Script.NextFrame(); + now += (float)g.UpdateTime.Elapsed.TotalSeconds; + } + g.Input.SetVibration(controllerIndex, 0, 0); + }); + } + + public static UIElement FindNameRecursive(this UIElement element, string name) + { + foreach (UIElement elem in element.VisualChildren) + { + if (elem.Name == name) + return elem; + UIElement subResult = elem.FindNameRecursive(name); + if (subResult != null) + return subResult; + } + return null; + } + } +} \ No newline at end of file diff --git a/Starbreach/Drones/Drone.cs b/Starbreach/Drones/Drone.cs new file mode 100644 index 0000000..53bdd81 --- /dev/null +++ b/Starbreach/Drones/Drone.cs @@ -0,0 +1,495 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Linq; +using System.Threading.Tasks; +using Starbreach.Core; +using Starbreach.Soldier; +using Xenko.Core; +using Xenko.Core.Mathematics; +using Xenko.Animations; +using Xenko.Audio; +using Xenko.Engine; +using Xenko.Particles.Components; +using Xenko.Physics; +using Xenko.Rendering; + +namespace Starbreach.Drones +{ + public class DronePostTransformUpdater : TransformOperation + { + public Drone Drone; + + public override void Process(TransformComponent transformComponent) + { + Drone.PostTransform(); + } + } + + /// + /// The most basic behaviour and movment constraints of a drone + /// + public class Drone : SyncScript, IStunnable, IDestructible + { + public delegate void DroneNotificationHandler(Drone drone); + public delegate void AlertedChangedHandler(Drone drone, bool newState); + + public static readonly string HeadBoneName = "Bone_turret_ring"; + + private static readonly float YawThreshold = MathUtil.DegreesToRadians(1); + + /// + /// Original state of bones on the drone + /// + private readonly Dictionary bones = new Dictionary(); + + // Body hover + private float initialHeight; + private float initialShift = (float)new Random().NextDouble(); + + private bool stunned; + + // Sounds for when a drone gets hit + private AudioEmitterSoundController engineSound; + private AudioEmitterSoundController deathSound; + private RandomSoundSelector hitSounds; + + private bool alerted; + + public Drone() + { + Priority = 4000; + } + + /// + /// The weapon that this drone will shoot + /// + public DroneWeapon Weapon + { + get { return weapon; } + set { weapon = value; } + } + + public Vector3 CurrentVelocity { get; private set; } = Vector3.Zero; + + /// + /// Local rotation of this drone's head(turret) in radians + /// + public float HeadRotation { get; private set; } = 0.0f; + + public Vector3 HeadDirection => RotationToWorldDirection(HeadRotation + BodyRotation); + + /// + /// Local rotation of this drone's body in radians + /// + public float BodyRotation { get; private set; } + + public Vector3 BodyDirection => RotationToWorldDirection(BodyRotation); + + /// + /// The maxmium speed at which this drone moves + /// + public float MaximumSpeed { get; set; } = 5.0f; + + /// + /// The speed at which the bottom part of the drone rotates + /// + [DefaultValue(MathUtil.TwoPi)] + public float RotationSpeed { get; set; } = MathUtil.TwoPi; + + /// + /// The speed at which the upper part of the drone rotates + /// + [DefaultValue(MathUtil.TwoPi)] + public float HeadRotationSpeed { get; set; } = MathUtil.TwoPi; + + /// + /// The drone's model + /// + public ModelComponent Model { get; set; } + + public Material DefaultMaterial { get; set; } + + public Material AlertedMaterial { get; set; } + + /// + /// The CharacterComponent for the drone + /// + [DataMemberIgnore] + public CharacterComponent Character { get; private set; } + + /// + /// The CharacterComponent for the drone + /// + [DataMemberIgnore] + public DroneAnimation Animation { get; private set; } + + /// + /// Main drone audio emitter + /// + [DataMemberIgnore] + public AudioEmitterComponent AudioEmitter { get; private set; } + + /// + /// Engine particle for the drone + /// + public ParticleSystemComponent EngineParticle { get; set; } + + /// + /// Engine effect of the drone + /// + public AudioEmitterComponent EngineAudioEmitter { get; set; } + + /// + /// Prefab of explosion to spawn when this drone is destroyed + /// + public Prefab DroneExplosionPrefab { get; set; } + + /// + /// Current HP of the drone + /// + [DataMemberIgnore] + public int HealthPoints { get; private set; } = 100; + + [DataMemberIgnore] + public bool Alerted + { + get { return alerted; } + set + { + if (alerted != value) + { + alerted = value; + if (alerted) + { + if (AlertedMaterial != null) + Model.Materials[1] = AlertedMaterial; + } + else + { + if (DefaultMaterial != null) + Model.Materials[1] = DefaultMaterial; + } + AlertedChanged?.Invoke(this, value); + } + } + } + + public bool Stunned => stunned; + + public bool CanBeStunned => true; + + public bool IsDead => HealthPoints <= 0; + + /// + /// Called when drone is destroyed (removed from the scene) + /// + public event DroneNotificationHandler Destroyed; + + /// + /// Called when drone has died + /// + public event DroneNotificationHandler Died; + + /// + /// Called when the state of changed + /// + public event AlertedChangedHandler AlertedChanged; + + public static float WorldDirectionToRotation(Vector3 direction) + { + return (float)Math.Atan2(-direction.Z, direction.X) + MathUtil.PiOverTwo; + } + + public static Vector3 RotationToWorldDirection(float direction) + { + direction -= MathUtil.PiOverTwo; + return new Vector3( + (float)Math.Cos(direction), + 0.0f, + -(float)Math.Sin(direction)); + } + + public override void Start() + { + base.Start(); + + Character = Entity.Get(); + Animation = Entity.Get(); + if (Animation == null) + { + Animation = new DroneAnimation {Animation = Model.Entity.Get()}; + Entity.Add(Animation); + } + + // Store original bone data, so they can be modified later + for (int i = 0; i < Model.Skeleton.Nodes.Length; ++i) + { + var nodeRot = Model.Skeleton.NodeTransformations[i].Transform.Rotation; + var mat = Matrix.RotationQuaternion(nodeRot); + float yaw, pitch, roll; + mat.Decompose(out yaw, out pitch, out roll); + var node = Model.Model.Skeleton.Nodes[i]; + bones[node.Name] = new Bone + { + EulerAngles = new Vector3(yaw, pitch, roll) + }; + } + + Entity.Transform.PostOperations.Add(new DronePostTransformUpdater {Drone = this}); + + // Engine sound + engineSound = EngineAudioEmitter["Engine"]; + engineSound.IsLooping = true; + engineSound.Play(); + + // Load sounds + AudioEmitter = Entity.Get(); + deathSound = AudioEmitter["Death"]; + + // Load the variable amount of being hit sounds, "Hit0", "Hit1", etc. + hitSounds = new RandomSoundSelector(AudioEmitter, "Hit"); + + initialHeight = Model.Entity.Transform.Position.Y; + + weapon?.Init(this); + } + + public override void Cancel() + { + Destroyed?.Invoke(this); + } + + public override void Update() + { + if (IsDead) + return; + + if (CurrentVelocity.Length() > 1) + CurrentVelocity.Normalize(); + + // Update speed + Character.SetVelocity(CurrentVelocity*MaximumSpeed); + + ApplyHeadRotation(HeadRotation); + ApplyBodyRotation(BodyRotation); + + // Body hover + const float amp = 0.05f; + const float freq = 0.5f; + Model.Entity.Transform.Position.Y = initialHeight + + amp* + (float) + Math.Sin((initialShift + Game.UpdateTime.Total.TotalSeconds)*freq*2* + Math.PI); + } + + /// + /// Sets the current movement direction + /// + /// + public void SetMovement(Vector3 movementDirection) + { + CurrentVelocity = movementDirection; + } + + public bool UpdateBodyRotation(Vector3 direction) + { + var targetYaw = WorldDirectionToRotation(direction); + if (Math.Abs(targetYaw - BodyRotation) < YawThreshold) + return true; + + BodyRotation = Utils.UpdateYaw(BodyRotation, targetYaw, RotationSpeed, + (float)Game.UpdateTime.Elapsed.TotalSeconds); + return false; + } + + public bool UpdateHeadRotation(Vector3 direction) + { + var targetYaw = WorldDirectionToRotation(direction) - BodyRotation; + if (Math.Abs(targetYaw - HeadRotation) < YawThreshold) + return true; + + HeadRotation = Utils.UpdateYaw(HeadRotation, targetYaw, HeadRotationSpeed, + (float)Game.UpdateTime.Elapsed.TotalSeconds); + return false; + } + + public bool UpdateHeadRotation(float targetLocalRotation) + { + if (Math.Abs(targetLocalRotation - HeadRotation) < YawThreshold) + return true; + + HeadRotation = Utils.UpdateYaw(HeadRotation, targetLocalRotation, HeadRotationSpeed, + (float)Game.UpdateTime.Elapsed.TotalSeconds); + return false; + } + + /// + /// Checks if the drone is targeting the given direction + /// + /// True if facing this world direction, false otherwise + public bool IsTargeting(Vector3 direction) + { + float targetRotation = WorldDirectionToRotation(direction); + return IsTargeting(WorldToLocalHeadRotation(targetRotation)); + } + + /// + /// Checks if the drone is looking in the given local rotation + /// + /// True if looking this way, false otherwise + public bool IsTargeting(float targetLocalHeadRotation) + { + if (Math.Abs(targetLocalHeadRotation - HeadRotation) < YawThreshold) + return true; + return false; + } + + public float WorldToLocalHeadRotation(float angle) + { + return angle - BodyRotation; + } + + public void Stun() + { + stunned = true; + } + + public void CancelStun() + { + stunned = false; + } + + public void Damage(int damage) + { + if (IsDead) + return; + + bool wasAlive = HealthPoints > 0; + + HealthPoints -= damage; + + if (wasAlive && IsDead) + { + Died?.Invoke(this); + OnDie(); + } + + hitSounds.StopAll(); + hitSounds.PlayAndForget(); + } + + protected virtual void OnDie() + { + Script.AddTask(Death); + } + + /// + /// Default drone death sequence + /// + /// + protected async Task Death() + { + // Ensure health is 0 + HealthPoints = 0; + + // Stop moving + Character.SetVelocity(Vector3.Zero); + + deathSound.PlayAndForget(); + engineSound.Stop(); + EngineParticle.ParticleSystem.StopEmitters(); + + // Disable collider + Character.Enabled = false; + + await Task.Delay(250); + + Model.Enabled = false; + + // Spawn exploded drone + var explosionEntities = DroneExplosionPrefab.Instantiate(); + foreach (var entity in explosionEntities) + { + entity.Transform.Position += Entity.Transform.Position; + // Inherit yaw + entity.Transform.Rotation = Quaternion.RotationYawPitchRoll(BodyRotation, 0, 0); + + // Add to the + Entity.Scene.Entities.Add(entity); + + if (entity.Name.StartsWith("DroneFr")) + { + var comp = entity.Get(); + var dir = Entity.Transform.Position - SoldierController.Instance.Entity.Transform.Position; + dir.Normalize(); + // Angle up + dir += Vector3.UnitY / (float)Math.Tan(MathUtil.DegreesToRadians(10)); + dir.Normalize(); + comp.ApplyImpulse(dir * 3.0f); + Script.AddTask(async () => + { + await Task.Delay(4000); + if (!entity.IsDisposed) + comp.Enabled = false; + await Task.Delay(10000); + if (!entity.IsDisposed) + Entity.Scene.Entities.Remove(entity); + }); + } + } + + await Task.Delay(3000); + + // Despawn after death sequence + SceneSystem.SceneInstance.RootScene.Entities.Remove(Entity); + } + + private void ApplyBodyRotation(float bodyRotation) + { + Entity.Transform.RotationEulerXYZ = new Vector3(0.0f, bodyRotation, 0.0f); + } + + private float currentHeadRotation; + private DroneWeapon weapon; + + /// + /// Set local head rotation on the model + /// + /// The local rotation in radians from the starting position + private void ApplyHeadRotation(float angle) + { + currentHeadRotation = angle; + } + + internal void PostTransform() + { + for (int i = 0; i < Model.Skeleton.Nodes.Length; ++i) + { + var name = Model.Skeleton.Nodes[i].Name; + + if (name == HeadBoneName) + { + var originalBone = bones[name]; + var rotation = Quaternion.RotationYawPitchRoll( + currentHeadRotation - MathUtil.PiOverTwo, + // 1/4 revolution offset since the head is rotated by this amount (pointing to the right) + originalBone.EulerAngles.Y, + originalBone.EulerAngles.Z); + Model.Skeleton.NodeTransformations[i].Transform.Rotation = rotation; + } + } + } + + struct Bone + { + /// + /// Yaw, Pitch, Roll (X,Y,Z) + /// + public Vector3 EulerAngles; + } + } +} \ No newline at end of file diff --git a/Starbreach/Drones/DroneAnimation.cs b/Starbreach/Drones/DroneAnimation.cs new file mode 100644 index 0000000..da0ccd0 --- /dev/null +++ b/Starbreach/Drones/DroneAnimation.cs @@ -0,0 +1,85 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using System.Threading.Tasks; +using Starbreach.Core; +using Xenko.Core.Collections; +using Xenko.Core.Mathematics; +using Xenko.Animations; +using Xenko.Engine; + +namespace Starbreach.Drones +{ + public class DroneAnimation : SyncScript + { + public const string IdleState = "Idle"; + public const string MoveState = "Move"; + public const string FireState = "Fire"; + + private FiniteStateMachine stateMachine; + private PlayingAnimation shootingAnimation; + + public AnimationComponent Animation { get; set; } + + public Drone Drone { get; set; } + + public float IdleSpeedTreshold { get; set; } = 0.2f; + + public override void Start() + { + base.Start(); + + Drone = Entity.Get(); + + stateMachine = new FiniteStateMachine("DroneAnimation"); + stateMachine.RegisterState(new State(IdleState) {EnterMethod = StartIdle}); + stateMachine.RegisterState(new State(MoveState) {EnterMethod = StartMove}); + stateMachine.Start(Script, IdleState); + } + + public override void Cancel() + { + base.Cancel(); + stateMachine?.Exit(); + } + + public void Shoot() + { + if (shootingAnimation != null) + Animation.PlayingAnimations.Remove(shootingAnimation); + shootingAnimation = Animation.Blend(FireState, 1.0f, TimeSpan.Zero); + shootingAnimation.BlendOperation = AnimationBlendOperation.Add; + shootingAnimation.RepeatMode = AnimationRepeatMode.PlayOnce; + } + + private Task StartIdle(State arg) + { + Animation.Crossfade(IdleState, TimeSpan.FromSeconds(0.2f)); + return Task.FromResult(0); + } + + private Task StartMove(State arg) + { + Animation.Crossfade(MoveState, TimeSpan.FromSeconds(0.2f)); + return Task.FromResult(0); + } + + public override void Update() + { + if (Drone.CurrentVelocity.Length() < IdleSpeedTreshold) + { + if (stateMachine.CurrentStateName == MoveState) + { + stateMachine.SwitchTo(IdleState); + } + } + else + { + if (stateMachine.CurrentStateName == IdleState) + { + stateMachine.SwitchTo(MoveState); + } + } + } + } +} \ No newline at end of file diff --git a/Starbreach/Drones/DroneControllerBase.cs b/Starbreach/Drones/DroneControllerBase.cs new file mode 100644 index 0000000..7a9e8f1 --- /dev/null +++ b/Starbreach/Drones/DroneControllerBase.cs @@ -0,0 +1,94 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using System.Collections.Generic; +using System.Threading.Tasks; +using Starbreach.Core; +using Xenko.Core; +using Xenko.Core.Mathematics; +using Xenko.Audio; +using Xenko.Engine; +using Xenko.Navigation; +using Xenko.Particles.Components; +using Xenko.Physics; +using Xenko.Rendering; + +namespace Starbreach.Drones +{ + /// + /// A basic drone controller, that contains functionality for moving a drone using a navigation component with + /// + public class DroneControllerBase : SyncScript + { + [DataMemberIgnore] + public Drone Drone { get; private set; } + + private float MoveThreshold { get; set; } = 0.2f; + + public override void Start() + { + Drone = Entity.Get(); + } + + public override void Update() + { + } + + /// + /// Tries to move towards the target position using the attached NavigationComponent asynchronously + /// + /// + /// + protected IEnumerator Move(Vector3 targetPosition) + { + NavigationComponent navigationComponent = Entity.Get(); + + List pathPoints = new List(); + if (navigationComponent == null || navigationComponent.NavigationMesh == null) + { + pathPoints = new List {Entity.Transform.WorldMatrix.TranslationVector, targetPosition}; + } + else + { + if (!navigationComponent.TryFindPath(targetPosition, pathPoints)) + yield break; + } + + Path navigationPath = new Path(pathPoints.ToArray()); + Waypoint nextWaypoint = navigationPath.Waypoints[0]; + while (nextWaypoint != null) + { + Vector3 targetSpeed = Vector3.Zero; + if (!Drone.Stunned) + { + // Move towards target when having a waypoint + Vector3 dir = nextWaypoint.Position - Entity.Transform.WorldMatrix.TranslationVector; + dir.Y = 0; + var dist = dir.Length(); + + if (dist < MoveThreshold) + { + nextWaypoint = nextWaypoint.Next; + continue; + } + + dir.Normalize(); + Drone.UpdateBodyRotation(dir); + + targetSpeed = dir*Drone.MaximumSpeed; + float dt = (float)Game.UpdateTime.Elapsed.TotalSeconds; + var estimatedDist = targetSpeed.Length()*dt; + if (estimatedDist > dist) + { + targetSpeed = dir*(dist/dt); + } + } + Drone.SetMovement(targetSpeed); + yield return nextWaypoint.Position; + } + + // Stop when done moving + Drone.SetMovement(Vector3.Zero); + } + } +} \ No newline at end of file diff --git a/Starbreach/Drones/DronePath.cs b/Starbreach/Drones/DronePath.cs new file mode 100644 index 0000000..9f77cf1 --- /dev/null +++ b/Starbreach/Drones/DronePath.cs @@ -0,0 +1,38 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using Xenko.Core; +using Xenko.Core.Mathematics; +using Xenko.Engine; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Starbreach.Core; +using Xenko.Input; + +namespace Starbreach.Drones +{ + public class DronePath : StartupScript + { + List waypoints = new List(); + + [DataMemberIgnore] + public List Waypoints => waypoints; + + [DataMemberIgnore] + public Path Path { get; private set; } + + public override void Start() + { + List points = new List(); + foreach (TransformComponent waypoint in Entity.Transform.Children) + { + waypoint.UpdateWorldMatrix(); + points.Add(waypoint.WorldMatrix.TranslationVector); + } + Path = new Path(points.ToArray()); + Log.Info($"Added {waypoints.Count} waypoints to {Entity}"); + } + } +} diff --git a/Starbreach/Drones/DroneWeapon.cs b/Starbreach/Drones/DroneWeapon.cs new file mode 100644 index 0000000..a972542 --- /dev/null +++ b/Starbreach/Drones/DroneWeapon.cs @@ -0,0 +1,55 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using System.Threading.Tasks; +using Xenko.Core; +using Xenko.Core.Annotations; +using Xenko.Engine; + +namespace Starbreach.Drones +{ + [DataContract] + public abstract class DroneWeapon + { + public Entity ProjectileSpawnPoint; + + private TimeSpan lastShot; + + public double ReloadTime { get; set; } = 1.0f; + + [DataMemberIgnore] + public Drone Drone { get; internal set; } + + public virtual void Init(Drone drone) + { + Drone = drone; + } + + public bool TryShoot(Entity targetEntity) + { + if (!CanShoot(targetEntity)) + return false; + + Drone.Script.AddTask(() => Shoot(targetEntity)); + StartReloading(); + + return true; + } + + public virtual bool CanShoot(Entity targetEntity) + { + var currentTime = Drone.Game.UpdateTime.Total; + if ((currentTime - lastShot) < TimeSpan.FromSeconds(ReloadTime)) + return false; + + return true; + } + + protected void StartReloading() + { + lastShot = Drone.Game.UpdateTime.Total; + } + + protected abstract Task Shoot(Entity targetEntity); + } +} \ No newline at end of file diff --git a/Starbreach/Drones/LaserDroneWeapon.cs b/Starbreach/Drones/LaserDroneWeapon.cs new file mode 100644 index 0000000..d6b1f78 --- /dev/null +++ b/Starbreach/Drones/LaserDroneWeapon.cs @@ -0,0 +1,60 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using System.Linq; +using System.Threading.Tasks; +using Starbreach.Core; +using Xenko.Core; +using Xenko.Core.Mathematics; +using Xenko.Audio; +using Xenko.Engine; + +namespace Starbreach.Drones +{ + [DataContract] + public class LaserDroneWeapon : DroneWeapon + { + public Prefab ProjectilePrefab; + + /// + /// Delay after playing animation to wait before shooting actual projectile + /// + public double AnimationDelay = 0.5f; + + private RandomSoundSelector shootSoundSelector; + + public LaserDroneWeapon() + { + ReloadTime = 1.0f; + } + + public override void Init(Drone drone) + { + base.Init(drone); + + shootSoundSelector = new RandomSoundSelector(ProjectileSpawnPoint.Get(), "Fire"); + } + + protected override async Task Shoot(Entity targetEntity) + { + // Play shooting animation + Drone.Animation.Shoot(); + + // Wait a bit + await Task.Delay(TimeSpan.FromSeconds(AnimationDelay)); + + // Spawn projectile + var projectileEntity = ProjectilePrefab.Instantiate().Single(); + var projectile = projectileEntity.Get(); + projectile.Owner = Drone.Entity; + + projectileEntity.Transform.Position = ProjectileSpawnPoint.Transform.WorldMatrix.TranslationVector; + projectileEntity.Transform.Rotation = Quaternion.BetweenDirections(Vector3.UnitZ, Drone.HeadDirection); + + Drone.SceneSystem.SceneInstance.RootScene.Entities.Add(projectile.Entity); + projectile.SetDirection(Drone.HeadDirection); + + shootSoundSelector.PlayAndForget(); + } + } +} \ No newline at end of file diff --git a/Starbreach/Drones/LaserProjectile.cs b/Starbreach/Drones/LaserProjectile.cs new file mode 100644 index 0000000..fad8e12 --- /dev/null +++ b/Starbreach/Drones/LaserProjectile.cs @@ -0,0 +1,62 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System.Threading.Tasks; +using Starbreach.Core; +using Xenko.Engine; +using Xenko.Particles.Components; +using Xenko.Physics; + +namespace Starbreach.Drones +{ + public class LaserProjectile : Projectile + { + public ParticleSystemComponent ExplosionParticle; + + public ParticleSystemComponent TrailParticle; + + public int Damage { get; set; } = 30; + + private RandomSoundSelector explosionSoundSelector; + + public override void Cancel() + { + ExplosionParticle?.ParticleSystem?.Dispose(); + ExplosionParticle = null; + TrailParticle?.ParticleSystem?.Dispose(); + TrailParticle = null; + } + + public override async Task Execute() + { + explosionSoundSelector = new RandomSoundSelector(Entity.Get(), "Explode"); + + await base.Execute(); + } + + protected override async Task Explode() + { + var model = Entity.Get(); + model.Enabled = false; + + ExplosionParticle.Enabled = true; + + //stop spawning smoke particles + TrailParticle.ParticleSystem.StopEmitters(); + + // Damage all hit entities + foreach (var collision in Rigidbody.Collisions) + { + var target = collision.ColliderA; + if (target == Rigidbody) // Swap + target = collision.ColliderB; + var destructible = Utils.GetDestructible(target.Entity); + destructible?.Damage(Damage); + } + + explosionSoundSelector.PlayAndForget(); + + // Wait before Destroying the projectile + await Task.Delay(2000); + } + } +} \ No newline at end of file diff --git a/Starbreach/Drones/MissileDroneWeapon.cs b/Starbreach/Drones/MissileDroneWeapon.cs new file mode 100644 index 0000000..77127db --- /dev/null +++ b/Starbreach/Drones/MissileDroneWeapon.cs @@ -0,0 +1,139 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Xenko.Core; +using Xenko.Core.Mathematics; +using Xenko.Audio; +using Xenko.Engine; + +namespace Starbreach.Drones +{ + [DataContract] + public class MissileDroneWeapon : DroneWeapon + { + /// + /// Number of missiles to spread over the X/Y direction of the missile spawn area defined by + /// + public Int2 ArraySize = new Int2(4,4); + + /// + /// X/Y size in one direction (meaning half) of the rectangle to fire missiles from + /// + public Vector2 ArrayExtent = new Vector2(0.3f, 0.2f); + + public float MaximumRange; + + public Prefab ProjectilePrefab; + + /// + /// Delay after playing animation to wait before shooting actual projectile + /// + public double AnimationDelay = 0.12f; + + /// + /// The rotation that the rockets are randomly distibuted around when launching (around the tangent of the aiming direction) + /// + /// This is the half angle of a 2D cone this half cone is then randomly rotated [0;2pi] degrees around the aiming direction + public AngleSingle SpreadAngle = new AngleSingle(0.1f, AngleType.Radian); + + private Random random = new Random((int)DateTime.Now.Ticks); + private AudioEmitterSoundController shootSound; + + public MissileDroneWeapon() + { + ReloadTime = 2.0f; + } + + /// + /// Target position of missiles when they have no specific target + /// + public float ShootingRange { get; set; } = 15.0f; + + public override void Init(Drone drone) + { + base.Init(drone); + + shootSound = ProjectileSpawnPoint.Get()["Fire"]; + } + + /// + /// Spawns rockets in a grid + /// + protected override async Task Shoot(Entity targetEntity) + { + // Play shooting animation + Drone.Animation.Shoot(); + + // Wait a bit + await Task.Delay(TimeSpan.FromSeconds(AnimationDelay)); + + List projectiles = new List(); + + Vector2 stepOffset = new Vector2(1.0f/ArraySize.X, 1.0f/ArraySize.Y) * ArrayExtent; + + // Generate random spawn position + List spawnOffsets = new List(); + for (int y = 0; y < ArraySize.Y; y++) + { + float stepY = (ArraySize.Y == 0) ? 0.0f : (y/(float)(ArraySize.Y-1) * 2.0f - 1.0f); + for (int x = 0; x < ArraySize.X; x++) + { + float stepX = (ArraySize.X == 0) ? 0.0f : (x / (float)(ArraySize.X-1) * 2.0f - 1.0f); + Vector2 spawnOffset = new Vector2((stepOffset.X * stepX), (stepOffset.Y * stepY)); + spawnOffsets.Add(spawnOffset); + } + } + + // Spawn in random order + while(spawnOffsets.Count > 0) + { + // Recalculate directions and start position since drone might have moved + var position = ProjectileSpawnPoint.Transform.WorldMatrix.TranslationVector; + Vector3 up = Drone.Entity.Transform.WorldMatrix.Up; + Vector3 aimDirection = Drone.HeadDirection; + Vector3 right = Vector3.Normalize(Vector3.Cross(up, aimDirection)); + + // Retrieve spawn position for this missile based on the offsets + int targetPositionIndex = random.Next(0, spawnOffsets.Count-1); + Vector2 spawnOffset = spawnOffsets[targetPositionIndex]; + Vector3 spawnPosition = position + spawnOffset.X * right + spawnOffset.Y * up; + spawnPosition += aimDirection * ((float)random.NextDouble() - 0.5f) * 0.1f; + spawnOffsets.RemoveAt(targetPositionIndex); + + // Spawn rocket + var projectileEntity = ProjectilePrefab.Instantiate().Single(); + var projectile = projectileEntity.Get(); + projectile.Owner = Drone.Entity; + + projectiles.Add(projectile); + projectileEntity.Transform.Position = spawnPosition; + projectileEntity.Transform.Rotation = Quaternion.BetweenDirections(Vector3.UnitZ, Drone.HeadDirection); + + // Random Pitch/Roll (relative to shooting direction) + Vector2 randomDeviation = new Vector2((float)random.NextDouble(), (float)random.NextDouble()); + randomDeviation.X = randomDeviation.X * SpreadAngle.Radians; // Pitch + randomDeviation.Y *= MathUtil.TwoPi; // Roll + projectileEntity.Transform.Rotation = projectileEntity.Transform.Rotation * Quaternion.RotationAxis(right, randomDeviation.X) * Quaternion.RotationAxis(aimDirection, randomDeviation.Y); + + var rocket = (projectile as RocketProjectile); + if(targetEntity != null) + rocket?.SetTarget(targetEntity.Transform.WorldMatrix.TranslationVector); + else + rocket?.SetTarget(position + aimDirection * ShootingRange); + + Drone.SceneSystem.SceneInstance.RootScene.Entities.Add(projectile.Entity); + + // Set initial direction + Vector3 initialRocketDirection = Vector3.Transform(Vector3.UnitZ, projectileEntity.Transform.Rotation); + projectile.SetDirection(initialRocketDirection); + + shootSound.PlayAndForget(); + + await Task.Delay(2+random.Next(0,8)); + } + } + } +} \ No newline at end of file diff --git a/Starbreach/Drones/PatrollingDroneController.cs b/Starbreach/Drones/PatrollingDroneController.cs new file mode 100644 index 0000000..a689403 --- /dev/null +++ b/Starbreach/Drones/PatrollingDroneController.cs @@ -0,0 +1,365 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Starbreach.Core; +using Xenko.Core.Mathematics; +using Xenko.Audio; +using Xenko.Engine; +using Xenko.Physics; +using Xenko.Rendering; + +namespace Starbreach.Drones +{ + class PatrolState : State + { + public new const string Name = "Patrol"; + + public PatrolState() : base(Name) + { + } + + public Waypoint NextWaypoint; + public Entity ChaseTarget; + public PhysicsComponent ChaseColliderTarget; + public IEnumerator MoveOperation = null; + } + + class ChaseState : State + { + public new const string Name = "Chase"; + + public ChaseState() : base(Name) + { + } + + public Entity ChaseTarget; + public PhysicsComponent ChaseColliderTarget; + public IEnumerator MoveOperation = null; + public Vector3 CurrentChaseTargetPosition = new Vector3(); + } + + public class PatrollingDroneController : DroneControllerBase + { + public const string StartState = "Start"; + public const string DeathState = "Death"; + + public DronePath PathToFollow; + + private FiniteStateMachine stateMachine; + + private RigidbodyComponent alertZoneTrigger; + + private Vector3 spawnLocation; + + private Tuple spawnOrientation; + + public Entity AlertZoneTriggerEntity { get; set; } + + /// + /// Alert zone radius when chasing a player + /// + public float ChaseAlertZoneRadius = 20.0f; + + /// + /// Alert zone radius when not detecting a player + /// + public float IdleAlertZoneRadius = 10.0f; + + public override void Start() + { + base.Start(); + + if (Entity.Transform.Parent != null) throw new ArgumentException("DroneRocketController must be root"); + + alertZoneTrigger = AlertZoneTriggerEntity.Get(); + + stateMachine = new FiniteStateMachine("Drone"); + stateMachine.RegisterState(new State(StartState) + { + EnterMethod = StartEnter, + UpdateMethod = () => { stateMachine.SwitchTo(PatrolState.Name); } + }); + stateMachine.RegisterState(new PatrolState() + { + EnterMethod = PatrolEnter, + UpdateMethod = PatrolUpdate + }); + stateMachine.RegisterState(new ChaseState() + { + EnterMethod = ChaseStart, + UpdateMethod = ChaseUpdate + }); + stateMachine.Start(Script, StartState); + + // Exit state machine when drone died + Drone.Died += drone => stateMachine.Exit(); + Drone.AlertedChanged += DroneOnAlertedChanged; + UpdateAlertZoneRadius(); + + spawnLocation = Entity.Transform.WorldMatrix.TranslationVector; + spawnOrientation = new Tuple(Drone.BodyRotation, Drone.HeadRotation); + } + + public override void Cancel() + { + base.Cancel(); + stateMachine.Exit(); + } + + private async Task StartEnter(State last) + { + Drone.Model.Enabled = false; + + await Task.Delay(250); + + Drone.Model.Enabled = true; + + await Task.Delay(250); + } + + private Task PatrolEnter(State from) + { + PatrolState patrolState = stateMachine.GetCurrentState(); + if (patrolState == null) + throw new InvalidOperationException("PatrolEnter can only be used with PatrolState"); + + if (PathToFollow != null) + { + // Select a waypoint to patrol + patrolState.NextWaypoint = + PathToFollow.Path.SelectWaypoint(Entity.Transform.WorldMatrix.TranslationVector); + patrolState.MoveOperation = Move(patrolState.NextWaypoint.Position); + } + else + { + // Disable warnings for GDC + //Log.Warning($"Patrolling Drone {Entity} doesn't have a follow path assigned") + // Return to spawn + patrolState.MoveOperation = Move(spawnLocation); + } + + return Task.FromResult(0); + } + + private void PatrolUpdate() + { + PatrolState patrolState = stateMachine.GetCurrentState(); + if (patrolState == null) + throw new InvalidOperationException("PatrolUpdate can only be used with PatrolState"); + + // Move the drone on the current path, until the end of the move target is reached + if (patrolState.MoveOperation != null) + { + if (!patrolState.MoveOperation.MoveNext()) + { + // Continue on path (if assigned) + if (PathToFollow != null) + { + // Done moving + patrolState.NextWaypoint = patrolState.NextWaypoint.Next; + if (patrolState.NextWaypoint == null) + patrolState.NextWaypoint = PathToFollow.Path.Waypoints[0]; // Loop back to first waypoint + patrolState.MoveOperation = Move(patrolState.NextWaypoint.Position); + } + else + { + // No move moving, this was a single target move + patrolState.MoveOperation = null; + } + } + } + else + { + // Not moving and no path to follow, reset to spawn rotation + Drone.UpdateBodyRotation(Drone.RotationToWorldDirection(spawnOrientation.Item1)); + Drone.UpdateHeadRotation(spawnOrientation.Item2); + } + + // Look in moving direction + Vector3 dir = Drone.CurrentVelocity; + dir.Normalize(); + if (dir != Vector3.Zero) + { + Drone.UpdateHeadRotation(dir); + } + Drone.Alerted = false; + + // Check for enemies + foreach (var collision in alertZoneTrigger.Collisions) + { + var targetCollider = collision.ColliderA.Entity != alertZoneTrigger.Entity + ? collision.ColliderA + : collision.ColliderB; + + if (Drone.Stunned) + { + if (targetCollider.CollisionGroup != CollisionFilterGroups.CustomFilter3) + continue; + } + else + { + if (targetCollider.CollisionGroup != CollisionFilterGroups.CharacterFilter && + targetCollider.CollisionGroup != CollisionFilterGroups.CustomFilter1) + continue; + } + + var enemy = Utils.GetDestructible(targetCollider.Entity); + if (targetCollider.Entity == Entity || enemy == null || enemy.IsDead) + continue; + + // Visibility check + bool hasLineOfSight = CheckLineOfSight(Entity, targetCollider); + if (hasLineOfSight) + { + // Start chasing state + patrolState.ChaseTarget = targetCollider.Entity; + patrolState.ChaseColliderTarget = targetCollider; + stateMachine.SwitchTo(ChaseState.Name); + } + + break; + } + } + + private Task ChaseStart(State from) + { + PatrolState patrolState = (PatrolState)from; + if (patrolState == null) + throw new InvalidOperationException("ChaseState can only be entered from PatrolState"); + + ChaseState chaseState = stateMachine.GetCurrentState(); + if (chaseState == null) throw new InvalidOperationException("ChaseStart can only be used with ChaseState"); + + + chaseState.ChaseTarget = patrolState.ChaseTarget; + chaseState.ChaseColliderTarget = patrolState.ChaseColliderTarget; + + return Task.FromResult(0); + } + + private void ChaseUpdate() + { + Drone.Alerted = true; + + ChaseState chaseState = stateMachine.GetCurrentState(); + if (chaseState == null) throw new InvalidOperationException("ChaseUpdate can only be used with ChaseState"); + + if (chaseState.ChaseTarget == null) + { + // Stop chasing + stateMachine.SwitchTo(PatrolState.Name); + return; + } + + IDestructible destructible = Utils.GetDestructible(chaseState.ChaseTarget); + if (destructible == null) throw new InvalidOperationException("ChaseTarget can only target IDestructibles"); + if (destructible.IsDead) + { + // Stop chasing + stateMachine.SwitchTo(PatrolState.Name); + return; + } + + // Check if still overlapping + bool withinRange = false; + foreach (var collision in alertZoneTrigger.Collisions) + { + var targetCollider = collision.ColliderA.Entity != alertZoneTrigger.Entity + ? collision.ColliderA + : collision.ColliderB; + if (targetCollider == chaseState.ChaseColliderTarget) + { + withinRange = true; + break; + } + } + + if (!withinRange) + { + // Stop chasing + stateMachine.SwitchTo(PatrolState.Name); + return; + } + + // Recalculate path to player? + Vector3 actualTargetPos = chaseState.ChaseTarget.Transform.WorldMatrix.TranslationVector; + + var source = Entity.Transform.WorldMatrix.TranslationVector; + var target = actualTargetPos; + source.Y = 1.5f; + target.Y = 1.5f; + Vector3 aimDir = target - source; + float distToTarget = aimDir.Length(); + aimDir.Normalize(); + var playerTargeted = Drone.UpdateHeadRotation(aimDir); + + // Process move step + if (chaseState.MoveOperation != null) + { + if (!chaseState.MoveOperation.MoveNext()) + chaseState.MoveOperation = null; + } + + bool hasLineOfSight = CheckLineOfSight(Entity, chaseState.ChaseColliderTarget); + if (hasLineOfSight) + { + if (distToTarget < 6.0f) + { + // No longer need to move, player is in line of sight, and drone is pretty close + chaseState.MoveOperation = null; + Drone.SetMovement(Vector3.Zero); + } + + if (playerTargeted) + { + // Shoot the player + Drone.Weapon?.TryShoot(chaseState.ChaseTarget); + } + } + + // Update path towards player when either not moving or + // the current path would end up too far from the player + float targetDistance = (actualTargetPos - chaseState.CurrentChaseTargetPosition).Length(); + if (chaseState.MoveOperation == null || targetDistance > 1.0f) + { + chaseState.CurrentChaseTargetPosition = chaseState.ChaseTarget.Transform.WorldMatrix.TranslationVector; + chaseState.MoveOperation = Move(chaseState.CurrentChaseTargetPosition); + } + } + + private bool CheckLineOfSight(Entity viewerEntity, PhysicsComponent targetCollider) + { + var source = viewerEntity.Transform.WorldMatrix.TranslationVector; + var target = targetCollider.Entity.Transform.WorldMatrix.TranslationVector; + source.Y = 0.5f; + target.Y = 0.5f; + + var simulation = this.GetSimulation(); + var raycast = simulation.Raycast(source, target, CollisionFilterGroups.AllFilter, + (CollisionFilterGroupFlags)targetCollider.CollisionGroup | CollisionFilterGroupFlags.StaticFilter | CollisionFilterGroupFlags.DefaultFilter); + return raycast.Succeeded && raycast.Collider == targetCollider; + } + + private void DroneOnAlertedChanged(Drone drone, bool newState) + { + UpdateAlertZoneRadius(); + } + + private void UpdateAlertZoneRadius() + { + alertZoneTrigger.CanScaleShape = false; + + if (Drone.Alerted) // Alerted + { + alertZoneTrigger.ColliderShape.Scaling = new Vector3(ChaseAlertZoneRadius); + } + else + { + alertZoneTrigger.ColliderShape.Scaling = new Vector3(IdleAlertZoneRadius); + } + } + } +} \ No newline at end of file diff --git a/Starbreach/Drones/Projectile.cs b/Starbreach/Drones/Projectile.cs new file mode 100644 index 0000000..ee3ccc2 --- /dev/null +++ b/Starbreach/Drones/Projectile.cs @@ -0,0 +1,78 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Starbreach.Core; +using Xenko.Core; +using Xenko.Core.Mathematics; +using Xenko.Engine; +using Xenko.Physics; + +namespace Starbreach.Drones +{ + public abstract class Projectile : AsyncScript + { + public float Impulse { get; set; } = 25.0f; + + public float MaxLifeSpan { get; set; } = 5.0f; + + [DataMemberIgnore] + public bool Exploding { get; set; } + + public RigidbodyComponent Rigidbody { get; set; } + + private int LifeSpan => (int)(MaxLifeSpan*1000); + + [DataMemberIgnore] + public Entity Owner { get; set; } + + public void SetDirection(Vector3 direction) + { + Rigidbody = Entity.Get(); + Rigidbody.AngularFactor = Vector3.Zero; + Rigidbody.IsTrigger = true; + Rigidbody.ApplyImpulse(direction*Impulse); + } + + public override async Task Execute() + { + var delay = Game.WaitTime(TimeSpan.FromMilliseconds(LifeSpan)); + + // Wait until either the timer expired or a valid collision was found + while (true) + { + var newCollision = NewCollision(Rigidbody); + await Task.WhenAny(newCollision, delay); + + // Was interrupted by delay + if (delay.IsCompleted) + break; + + // Prevent explosion by hitting owner + if (newCollision.Result.ColliderA.Entity != Owner && newCollision.Result.ColliderB.Entity != Owner) + break; + + await Script.NextFrame(); + } + + Rigidbody.ClearForces(); + await Explode(); + Dispose(); + } + + protected abstract Task Explode(); + + private static async Task NewCollision(RigidbodyComponent component) + { + return await component.NewCollision(); + } + + private void Dispose() + { + ((Game)Game).SceneSystem.SceneInstance.RootScene.Entities.Remove(Entity); + } + } +} \ No newline at end of file diff --git a/Starbreach/Drones/ProjectileHoming.cs b/Starbreach/Drones/ProjectileHoming.cs new file mode 100644 index 0000000..ef89db4 --- /dev/null +++ b/Starbreach/Drones/ProjectileHoming.cs @@ -0,0 +1,40 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using Xenko.Core; +using Xenko.Core.Mathematics; +using Xenko.Engine; + +namespace Starbreach.Drones +{ + /// + /// Applies projectile homing behaviour to a projectile rigidbody + /// + public class ProjectileHoming : SyncScript + { + [DataMemberIgnore] + public Vector3 TargetPosition { get; set; } + + public float HomingSpeed { get; set; } = 2.0f; + + public override void Update() + { + Vector3 targetDir = TargetPosition - Entity.Transform.WorldMatrix.TranslationVector; + if (targetDir.LengthSquared() < 1.0f) + return; + targetDir.Normalize(); + + var projectile = Entity.Get(); + var currentDirection = Vector3.Normalize(projectile.Rigidbody.LinearVelocity); + + // Bend towards target direction + targetDir = currentDirection + Vector3.Normalize(targetDir)*HomingSpeed*(float)Game.UpdateTime.Elapsed.TotalSeconds; + targetDir.Normalize(); + + // Reset velocity based on adjusted direction + projectile.Rigidbody.LinearVelocity = Vector3.Zero; + projectile.SetDirection(targetDir); + + projectile.Entity.Transform.Rotation = Quaternion.BetweenDirections(Vector3.UnitZ, targetDir); + } + } +} \ No newline at end of file diff --git a/Starbreach/Drones/RocketProjectile.cs b/Starbreach/Drones/RocketProjectile.cs new file mode 100644 index 0000000..f8e0000 --- /dev/null +++ b/Starbreach/Drones/RocketProjectile.cs @@ -0,0 +1,93 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using System.Linq; +using System.Threading.Tasks; +using Starbreach.Core; +using Xenko.Core.Mathematics; +using Xenko.Audio; +using Xenko.Engine; +using Xenko.Engine.Events; +using Xenko.Particles.Components; +using Xenko.Physics; +using Xenko.Particles; +using Xenko.Particles.Spawners; + +namespace Starbreach.Drones +{ + /// + /// Controls drone rockets + /// + public class RocketProjectile : Projectile + { + public ParticleSystemComponent ExplosionParticle; + + public ParticleSystemComponent SmokeParticle; + + public float AoE { get; set; } = 2.0f; + + public float Damage { get; set; } = 30.0f; + + private AudioEmitterSoundController explodeSound; + private RigidbodyComponent sensor; + + public override void Cancel() + { + ExplosionParticle?.ParticleSystem?.Dispose(); + ExplosionParticle = null; + SmokeParticle?.ParticleSystem?.Dispose(); + SmokeParticle = null; + } + + public void SetTarget(Vector3 target) + { + var homing = Entity.Get(); + if (homing == null) + { + homing = new ProjectileHoming(); + Entity.Add(homing); + } + homing.TargetPosition = target; + } + + public override async Task Execute() + { + sensor = Entity.FindChild("AoESensor").Get(); + explodeSound = Entity.Get()["Explode"]; + + await base.Execute(); + } + + protected override async Task Explode() + { + var model = Entity.Get(); + model.Enabled = false; + + ExplosionParticle.Enabled = true; + + //stop spawning smoke particles + SmokeParticle.ParticleSystem.StopEmitters(); + + //find what we hit + foreach (var collision in sensor.Collisions) + { + var collider = collision.ColliderA == sensor ? collision.ColliderB : collision.ColliderA; + var damagedEntity = Utils.GetDestructible(collider.Entity); + if (damagedEntity == null || damagedEntity.IsDead) continue; + + // Don't damage other drones + if (damagedEntity is Drone) continue; + + var firstContact = collision.Contacts.First(); + + var damage = (int)((0.25f + 0.75f*Math.Abs(firstContact.Distance)/AoE)*Damage); + damagedEntity.Damage(damage); + } + + explodeSound.PlayAndForget(); + + // Wait before Destroying the rocket + await Task.Delay(2000); + } + } +} \ No newline at end of file diff --git a/Starbreach/Drones/TestDroneController.cs b/Starbreach/Drones/TestDroneController.cs new file mode 100644 index 0000000..35ae9c9 --- /dev/null +++ b/Starbreach/Drones/TestDroneController.cs @@ -0,0 +1,70 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using Xenko.Core.Mathematics; +using Xenko.Input; + +namespace Starbreach.Drones +{ + public class TestDroneController : DroneControllerBase + { + public override void Start() + { + base.Start(); + } + + public override void Update() + { + base.Update(); + + Vector2 logicalMovement = Vector2.Zero; + if (Input.IsKeyDown(Keys.A)) + logicalMovement.X = -1.0f; + if (Input.IsKeyDown(Keys.D)) + logicalMovement.X = 1.0f; + if (Input.IsKeyDown(Keys.W)) + logicalMovement.Y = 1.0f; + if (Input.IsKeyDown(Keys.S)) + logicalMovement.Y = -1.0f; + + Vector3 worldMovement = Vector3.UnitX*logicalMovement.X + Vector3.UnitZ*-logicalMovement.Y; + worldMovement.Normalize(); + + Drone.SetMovement(worldMovement); + + if (worldMovement != Vector3.Zero) + { + Drone.UpdateBodyRotation(worldMovement); + } + + if (Input.IsMousePositionLocked) + { + Size3 backbufferSize = Game.GraphicsDevice.Presenter.BackBuffer.Size; + Vector2 screenSize = new Vector2(backbufferSize.Width, backbufferSize.Height); + Vector2 logicalHeadMovement = Input.MouseDelta * screenSize; + logicalHeadMovement.Y = -logicalHeadMovement.Y; + + float headRotationDelta = -logicalHeadMovement.X*MathUtil.Pi/500.0f; + Drone.UpdateHeadRotation(Drone.HeadRotation + headRotationDelta); + + if (Input.IsKeyPressed(Keys.Space) || Input.IsMouseButtonPressed(MouseButton.Left)) + { + Drone.Weapon?.TryShoot(null); + } + + if (Input.IsKeyPressed(Keys.Escape)) + { + Input.UnlockMousePosition(); + } + } + else + { + if (Input.IsMouseButtonPressed(MouseButton.Left)) + { + Input.LockMousePosition(true); + } + } + + } + } +} \ No newline at end of file diff --git a/Starbreach/Environment/SpinModel.cs b/Starbreach/Environment/SpinModel.cs new file mode 100644 index 0000000..a191098 --- /dev/null +++ b/Starbreach/Environment/SpinModel.cs @@ -0,0 +1,24 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using System.Collections.Generic; +using System.Linq; +using Xenko.Core.Mathematics; +using Xenko.Engine; + +namespace Starbreach.Environment +{ + public class SpinModel : SyncScript + { + private float angle; + + public float TurnPerSecond { get; set; } = 1.0f; + public override void Update() + { + var radPerSecond = TurnPerSecond * MathUtil.TwoPi; + var radToAdd = radPerSecond * Game.UpdateTime.Elapsed.TotalSeconds; + angle = (float)(angle + radToAdd); + Entity.Transform.Rotation = Quaternion.RotationY(angle); + } + } +} diff --git a/Starbreach/GameProfiler.cs b/Starbreach/GameProfiler.cs new file mode 100644 index 0000000..7c8d91a --- /dev/null +++ b/Starbreach/GameProfiler.cs @@ -0,0 +1,140 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using System.Threading.Tasks; +using Xenko.Core.Mathematics; +using Xenko.Core.Diagnostics; +using Xenko.Input; +using Xenko.Engine; +using Xenko.Profiling; + +namespace Starbreach +{ + public class GameProfiler : AsyncScript + { + /// + /// Enables or disable the game profiling + /// + public bool Enabled; + + /// + /// The color of the text displayed during profiling + /// + public Color TextColor { get; set; } = Color.LightGreen; + + /// + /// The time between two refreshes of the profiling information in milliseconds. + /// + public double RefreshTime { get; set; } = 500; + + /// + /// Gets or set the sorting mode of the profiling entries + /// + public GameProfilingSorting SortingMode { get; set; } = GameProfilingSorting.ByTime; + + /// + /// Gets or sets the type of the profiling to display: CPU or GPU + /// + public GameProfilingResults FilteringMode { get; set; } = GameProfilingResults.Fps; + + /// + /// Gets or sets the current profiling result page to display. + /// + public uint ResultPage { get; set; } = 1; + + public override async Task Execute() + { + if (Enabled) + GameProfiler.EnableProfiling(); + + while (Game.IsRunning) + { + GameProfiler.TextColor = TextColor; + GameProfiler.RefreshTime = RefreshTime; + GameProfiler.SortingMode = SortingMode; + GameProfiler.FilteringMode = FilteringMode; + GameProfiler.CurrentResultPage = ResultPage; + ResultPage = GameProfiler.CurrentResultPage; + + if (Input.IsKeyDown(Keys.LeftShift) && Input.IsKeyDown(Keys.LeftCtrl) && Input.IsKeyReleased(Keys.P)) + { + if (Enabled) + { + GameProfiler.DisableProfiling(); + Enabled = false; + } + else + { + GameProfiler.EnableProfiling(); + Enabled = true; + } + } + + if (Enabled) + { + // update the filtering mode + if (Input.IsKeyPressed(Keys.F1)) + { + FilteringMode = GameProfilingResults.Fps; + } + else if (Input.IsKeyPressed(Keys.F2)) + { + FilteringMode = GameProfilingResults.CpuEvents; + } + else if (Input.IsKeyPressed(Keys.F3)) + { + FilteringMode = GameProfilingResults.GpuEvents; + } + + // update the sorting mode + if (Input.IsKeyPressed(Keys.F4)) + { + SortingMode = (GameProfilingSorting)(((int)SortingMode+1) % Enum.GetValues(typeof(GameProfilingSorting)).Length); + } + + // update the refreshing speed + if (Input.IsKeyPressed(Keys.Subtract) || Input.IsKeyPressed(Keys.OemMinus)) + { + RefreshTime = Math.Min(RefreshTime * 2, 10000); + } + else if (Input.IsKeyPressed(Keys.Add) || Input.IsKeyPressed(Keys.OemPlus)) + { + RefreshTime = Math.Max(RefreshTime / 2, 100); + } + + // update the result page + if (Input.IsKeyPressed(Keys.D1)) + { + ResultPage = 1; + } + else if (Input.IsKeyPressed(Keys.D2)) + { + ResultPage = 2; + } + else if (Input.IsKeyPressed(Keys.D3)) + { + ResultPage = 3; + } + else if (Input.IsKeyPressed(Keys.D4)) + { + ResultPage = 4; + } + else if (Input.IsKeyPressed(Keys.D5)) + { + ResultPage = 5; + } + if (Input.IsKeyPressed(Keys.F5)) + { + ResultPage = Math.Max(1, --ResultPage); + } + else if (Input.IsKeyPressed(Keys.F6)) + { + ++ResultPage; + } + } + + await Script.NextFrame(); + } + } + } +} \ No newline at end of file diff --git a/Starbreach/Gameplay/ActivationCombinationMode.cs b/Starbreach/Gameplay/ActivationCombinationMode.cs new file mode 100644 index 0000000..12dbc04 --- /dev/null +++ b/Starbreach/Gameplay/ActivationCombinationMode.cs @@ -0,0 +1,16 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +namespace Starbreach.Gameplay +{ + public enum ActivationCombinationMode + { + /// + /// AND + /// + Conjunction, + /// + /// OR + /// + Disjunction, + } +} \ No newline at end of file diff --git a/Starbreach/Gameplay/Activator.cs b/Starbreach/Gameplay/Activator.cs new file mode 100644 index 0000000..a59b1ee --- /dev/null +++ b/Starbreach/Gameplay/Activator.cs @@ -0,0 +1,47 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using System.Collections.Specialized; +using System.Linq; +using System.Threading.Tasks; +using Xenko.Core; +using Xenko.Core.Collections; +using Xenko.Engine; +using Xenko.Engine.Events; + +namespace Starbreach.Gameplay +{ + /// + /// An object like a pressure plate, button, etc. + /// + public abstract class Activator : AsyncScript + { + [DataMemberIgnore] + public abstract EventKey Changed { get; } + + public virtual bool CurrentState { get; protected set; } + } + + /// + /// Same as but acts as a instead while still inheriting from + /// + public abstract class SyncActivator : Activator + { + public override async Task Execute() + { + Start(); + while (Game.IsRunning) + { + Update(); + + await Script.NextFrame(); + } + } + + public virtual void Start() + { + } + + public abstract void Update(); + } +} \ No newline at end of file diff --git a/Starbreach/Gameplay/ActivatorCollection.cs b/Starbreach/Gameplay/ActivatorCollection.cs new file mode 100644 index 0000000..24a823c --- /dev/null +++ b/Starbreach/Gameplay/ActivatorCollection.cs @@ -0,0 +1,82 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System.Collections.Generic; +using Xenko.Core; + +namespace Starbreach.Gameplay +{ + /// + /// Receiver of one or multiple . Utility class to combine multiple activator events into a single state + /// + [DataContract] + public class ActivatorCollection + { + /// + /// Combination mode, either logic OR or AND + /// + public ActivationCombinationMode CombinationMode = ActivationCombinationMode.Disjunction; + + /// + /// Invert the values of Enabled/Disabled + /// + public bool Inverted { get; set; } = false; + + public List Activators { get; private set; } = new List(); + + /// + /// State that was last evaluated by + /// + [DataMemberIgnore] + public bool CurrentState { get; private set; } = false; + + public delegate void ChangedHandler(bool newState); + + /// + /// Called when changed + /// + public event ChangedHandler Changed; + + public void Update() + { + ReEvaluate(); + } + + private void ReEvaluate() + { + bool nextState = false; + if (CombinationMode == ActivationCombinationMode.Conjunction) + { + nextState = true; + foreach (var activator in Activators) + { + if (!activator.CurrentState) + { + nextState = false; + break; + } + } + } + else if (CombinationMode == ActivationCombinationMode.Disjunction) + { + foreach (var activator in Activators) + { + if (activator.CurrentState) + { + nextState = true; + break; + } + } + } + + // Invert + if(Inverted) + nextState = !nextState; + + if (nextState != CurrentState) + { + CurrentState = nextState; + Changed?.Invoke(CurrentState); + } + } + } +} \ No newline at end of file diff --git a/Starbreach/Gameplay/LaserFence.cs b/Starbreach/Gameplay/LaserFence.cs new file mode 100644 index 0000000..a6f1d98 --- /dev/null +++ b/Starbreach/Gameplay/LaserFence.cs @@ -0,0 +1,180 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Starbreach.Gameplay; +using Xenko.Core.Mathematics; +using Xenko.Engine; +using Xenko.Input; +using Xenko.Particles; +using Xenko.Particles.Components; +using Xenko.Particles.Initializers; +using Xenko.Physics; + +namespace Starbreach.Gameplay +{ + public class LaserFence : AsyncScript + { + /// + /// Particle emitters assigned to this fence + /// + public List ParticleSystemComponents = new List(); + + /// + /// Laser models assigned to this fence + /// + public List ModelComponents = new List(); + + public List LasetBlockade = new List(); + + public ActivatorCollection Triggers { get; } = new ActivatorCollection(); + + private Task task; + private bool enabled = true; + private IEnumerable emitters; + private InitialSizeSeed[] initialSizeSeeds; + private Vector2[] initialRandomSizes; + private IEnumerable radiationEmitters; + private IEnumerable beamEmitters; + + public bool Enabled + { + get { return enabled; } + set + { + if (value != enabled) + { + enabled = value; + if (value) + OnEnable(); + else + OnDisable(); + } + } + } + + private async Task AnimationLoop(float length, Action action) + { + var startTime = Game.UpdateTime.Total; + while (true) + { + var elapsedTime = Game.UpdateTime.Total - startTime; + + float t = (float)elapsedTime.TotalSeconds/length; + t = MathUtil.Clamp(t, 0.0f, 1.0f); + action.Invoke(t); + + if (t >= 1.0) + break; + + await Script.NextFrame(); + } + } + + private void OnEnable() + { + task = Enable(); + } + + private void OnDisable() + { + task = Disable(); + } + + private async Task Enable() + { + foreach (var emitter in emitters) + { + emitter.CanEmitParticles = true; + } + + foreach (var modelComponent in ModelComponents) + { + if (modelComponent != null) + modelComponent.Enabled = true; + } + + foreach (var staticColliderComponent in LasetBlockade) + { + if (staticColliderComponent != null) + staticColliderComponent.Enabled = true; + } + + await AnimationLoop(0.1f, (t) => + { + for (int i = 0; i < initialSizeSeeds.Length; i++) + { + initialSizeSeeds[i].RandomSize = initialRandomSizes[i]*(t); + } + }); + } + + private async Task Disable() + { + await AnimationLoop(0.15f, (t) => + { + for (int i = 0; i < initialSizeSeeds.Length; i++) + { + initialSizeSeeds[i].RandomSize = initialRandomSizes[i] * (1.0f + t * 1.5f); + } + }); + + foreach (var emitter in radiationEmitters) + { + emitter.CanEmitParticles = false; + } + + foreach (var modelComponent in ModelComponents) + { + if (modelComponent != null) + modelComponent.Enabled = false; + } + + foreach (var staticColliderComponent in LasetBlockade) + { + if (staticColliderComponent != null) + staticColliderComponent.Enabled = false; + } + + await AnimationLoop(0.08f, (t) => + { + for (int i = 0; i < initialSizeSeeds.Length; i++) + { + initialSizeSeeds[i].RandomSize = initialRandomSizes[i]*(1.0f-t); + } + }); + + foreach (var emitter in beamEmitters) + { + emitter.CanEmitParticles = false; + } + } + + public override async Task Execute() + { + emitters = ParticleSystemComponents.SelectMany(x => x.ParticleSystem.Emitters); + radiationEmitters = ParticleSystemComponents.Select(x => x.ParticleSystem.Emitters[0]); + beamEmitters = ParticleSystemComponents.Select(x => x.ParticleSystem.Emitters[1]); + initialSizeSeeds = beamEmitters.Select(x => x.Initializers.OfType().First()).ToArray(); + initialRandomSizes = initialSizeSeeds.Select(x => x.RandomSize).ToArray(); + + while (Game.IsRunning) + { + Triggers.Update(); + + if (Triggers.CurrentState != Enabled) + Enabled = Triggers.CurrentState; + + if (task != null) + { + await task; + task = null; + } + + await Script.NextFrame(); + } + } + } +} \ No newline at end of file diff --git a/Starbreach/Gameplay/PressurePlate.cs b/Starbreach/Gameplay/PressurePlate.cs new file mode 100644 index 0000000..728ec3e --- /dev/null +++ b/Starbreach/Gameplay/PressurePlate.cs @@ -0,0 +1,245 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using Xenko.Core; +using Xenko.Engine; +using Xenko.Engine.Events; +using Xenko.Rendering; +using MathUtil = Xenko.Core.Mathematics.MathUtil; + +namespace Starbreach.Gameplay +{ + /// + /// Handle presure plate smoothing and controlling action receivers + /// + public class PressurePlate : SyncActivator + { + /// + /// Pressed state of the plate (1.0f is down, 0.0f is all the way up/not pressed). + /// + /// State changes will trigger once all the way in one direction + private float currentValue = 0.0f; + + private bool nextState = false; + private EventReceiver triggerEventReceiver; + private bool enabled = true; + + private Material[] materials0 = new Material[4]; + private Material[] materials1 = new Material[4]; + private bool currentState = false; + private bool toggledState = false; + + /// + /// Is the plate going up or down (1.0f is down) + /// + private float currentDirection => nextState ? 1.0f : -1.0f; + + public ModelComponent Model { get; set; } + + [DataMember(1000)] + public Material Material0DisabledOff + { + get { return materials0[0]; } + set { materials0[0] = value; } + } + + [DataMember(1000)] + public Material Material0DisabledOn + { + get { return materials0[1]; } + set { materials0[1] = value; } + } + + [DataMember(1000)] + public Material Material0EnabledOff + { + get { return materials0[2]; } + set { materials0[2] = value; } + } + + [DataMember(1000)] + public Material Material0EnabledOn + { + get { return materials0[3]; } + set { materials0[3] = value; } + } + + [DataMember(1000)] + public Material Material1DisabledOff + { + get { return materials1[0]; } + set { materials1[0] = value; } + } + + [DataMember(1000)] + public Material Material1DisabledOn + { + get { return materials1[1]; } + set { materials1[1] = value; } + } + + [DataMember(1000)] + public Material Material1EnabledOff + { + get { return materials1[2]; } + set { materials1[2] = value; } + } + + [DataMember(1000)] + public Material Material1EnabledOn + { + get { return materials1[3]; } + set { materials1[3] = value; } + } + + public PressurePlateTrigger Trigger { get; set; } + + public AudioEmitterComponent AudioEmitter { get; set; } + + /// + /// Is this pressure plate responding to input, or locked + /// + public bool Enabled + { + get { return enabled; } + set + { + enabled = value; + UpdateVisuals(); + } + } + + /// + /// If true this trigger will toggle every time it goes from disabled to enabled + /// + public bool Toggle { get; set; } = false; + + /// + /// Stay enabled once activated + /// + public bool SingleActivation { get; set; } = false; + + /// + /// The current toggle state, so the initial value can be set + /// + public bool CurrentToggleState + { + get { return toggledState; } + set + { + toggledState = value; + UpdateVisuals(); + } + } + + public override bool CurrentState => Toggle ? toggledState : currentState; + + /// + /// The transition time of the pressure plate from enabled to disabled. + /// Used to simulate the button being gradually pressed down until it triggers + /// + public float TransitionTime { get; set; } = 0.15f; + + [DataMemberIgnore] + public override EventKey Changed { get; } = new EventKey("Pressure Plate", "State"); + + public override void Start() + { + base.Start(); + + if (Trigger == null) + throw new ArgumentException($"{nameof(Trigger)} is not set"); + + triggerEventReceiver = new EventReceiver(Trigger.Changed, EventReceiverOptions.Buffered); + + UpdateVisuals(); + } + + public override void Cancel() + { + base.Cancel(); + triggerEventReceiver.Dispose(); + } + + public override void Update() + { + // Await pressure plate state changes + bool newState; + if (triggerEventReceiver.TryReceive(out newState)) + { + if (Enabled) + { + if (newState != nextState) + { + nextState = newState; + } + } + } + + // Button smoothing + currentValue += currentDirection*(float)Game.UpdateTime.Elapsed.TotalSeconds; + currentValue = MathUtil.Clamp(currentValue, 0.0f, TransitionTime); + + // Trigger a new state or a toggle when fully pressed down or released + if (nextState != currentState) + { + currentValue += currentDirection*(float)Game.UpdateTime.Elapsed.TotalSeconds; + if (nextState) + { + if (currentValue >= TransitionTime) + { + // Disable after one press if single activation is on + if (SingleActivation) + Enabled = false; + + currentState = true; + currentValue = TransitionTime; + + toggledState = !toggledState; + + Changed.Broadcast(CurrentState); + PlayStateSound(); + UpdateVisuals(); + } + } + else + { + if (currentValue <= 0.0f) + { + currentState = false; + currentValue = 0.0f; + + // Toggle only changed when activated + if (!Toggle) + { + Changed.Broadcast(CurrentState); + PlayStateSound(); + } + + UpdateVisuals(); + } + } + } + } + + private void PlayStateSound() + { + if (CurrentState) + AudioEmitter?["Enable"].PlayAndForget(); + else + AudioEmitter?["Disable"].PlayAndForget(); + } + + private void UpdateVisuals() + { + if (Model == null) + return; + + int index = Enabled ? 2 : 0; + if (CurrentState) + ++index; + Model.Materials[0] = materials0[index]; + Model.Materials[1] = materials1[index]; + } + } +} \ No newline at end of file diff --git a/Starbreach/Gameplay/PressurePlateTrigger.cs b/Starbreach/Gameplay/PressurePlateTrigger.cs new file mode 100644 index 0000000..f601480 --- /dev/null +++ b/Starbreach/Gameplay/PressurePlateTrigger.cs @@ -0,0 +1,65 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System.Threading.Tasks; +using Xenko.Core; +using Xenko.Engine; +using Xenko.Engine.Events; +using Xenko.Physics; + +namespace Starbreach.Gameplay +{ + /// + /// Handles sending out trigger events when a valid collider enters or leaves the trigger area of the pressure plate + /// + public class PressurePlateTrigger : Activator + { + /// + /// The pressure plate trigger collider + /// + public RigidbodyComponent Trigger { get; set; } + + [DataMemberIgnore] + public override EventKey Changed { get; } = new EventKey("Pressure Plate", "Internal Trigger"); + + /// + /// The collision groups to filter triggering entities by + /// + public CollisionFilterGroupFlags CollisionFilterGroup; + + public override async Task Execute() + { + while (Game.IsRunning) + { + // Wait until the collision state changes + await Task.WhenAny(NewCollision(), EndCollision()); + + bool nextState = false; + foreach (var collision in Trigger.Collisions) + { + var otherCollider = (collision.ColliderA == Trigger) ? collision.ColliderB : collision.ColliderA; + + // Filter by group + if(((CollisionFilterGroupFlags)otherCollider.CollisionGroup & CollisionFilterGroup) != 0) + nextState = true; + } + + // Send out state change + if (nextState != CurrentState) + { + CurrentState = nextState; + Changed.Broadcast(nextState); + } + } + } + + private async Task NewCollision() + { + return await Trigger.NewCollision(); + } + + private async Task EndCollision() + { + return await Trigger.CollisionEnded(); + } + } +} \ No newline at end of file diff --git a/Starbreach/IStarbreachGame.cs b/Starbreach/IStarbreachGame.cs new file mode 100644 index 0000000..6b3d80f --- /dev/null +++ b/Starbreach/IStarbreachGame.cs @@ -0,0 +1,15 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using Xenko.Engine; +using Xenko.Graphics; + +namespace Starbreach +{ + public interface IStarbreach + { + Entity PlayerUiEntity { get; } + + void SaveTexture(Texture texture, String path, ImageFileType fileType); + } +} \ No newline at end of file diff --git a/Starbreach/Particles/CometSpawner.cs b/Starbreach/Particles/CometSpawner.cs new file mode 100644 index 0000000..c192ad8 --- /dev/null +++ b/Starbreach/Particles/CometSpawner.cs @@ -0,0 +1,58 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Starbreach.Core; +using Xenko.Core.Mathematics; +using Xenko.Input; +using Xenko.Engine; + +namespace Particles +{ + public class CometSpawner : SyncScript + { + private Entity comet; + private Vector3 rotations; + private Vector3 currentVelocity; + + // Declared public member fields and properties will show in the game studio + public Prefab CometPrefab { get; set; } + + public Vector3 Direction { get; set; } = -3 * Vector3.UnitX; + + public float Speed { get; set; } = 6; + + public override void Start() + { + // Initialization of the script. + } + + public override void Update() + { + if (Input.IsGamePadButtonDown(0, GamePadButton.Y)) + { + if (comet != null) + SceneSystem.SceneInstance.RootScene.Entities.Remove(comet); + + comet = CometPrefab.Instantiate()[0]; + comet.Transform.Position = Entity.Transform.Position; + Direction.Normalize(); + currentVelocity = Direction * Speed; + SceneSystem.SceneInstance.RootScene.Entities.Add(comet); + } + + if (comet != null) + { + currentVelocity.Y += -2.0f * (float)Game.UpdateTime.Elapsed.TotalSeconds; + comet.Transform.Position = comet.Transform.Position + currentVelocity * (float)Game.UpdateTime.Elapsed.TotalSeconds; + rotations.X += MathUtil.DegreesToRadians(30) * (float)Game.UpdateTime.Elapsed.TotalSeconds; + rotations.Y += MathUtil.DegreesToRadians(20) * (float)Game.UpdateTime.Elapsed.TotalSeconds; + rotations.Z += MathUtil.DegreesToRadians(15) * (float)Game.UpdateTime.Elapsed.TotalSeconds; + comet.Transform.RotationEulerXYZ = rotations; + } + } + } +} diff --git a/Starbreach/Particles/InitialLaserAttributes.cs b/Starbreach/Particles/InitialLaserAttributes.cs new file mode 100644 index 0000000..deb6f63 --- /dev/null +++ b/Starbreach/Particles/InitialLaserAttributes.cs @@ -0,0 +1,113 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using Xenko.Core; +using Xenko.Core.Mathematics; +using Xenko.Engine; +using Xenko.Particles; +using Xenko.Particles.Initializers; + +namespace Starbreach.Particles +{ + /// + /// Initializer which sets the initial velocity AND life for particles based on distance to a target point + /// + [DataContract] + [Display("Initial Laser Attributes")] + public class InitialLaserAttributes : ParticleInitializer + { + public InitialLaserAttributes() + { + RequiredFields.Add(ParticleFields.Velocity); + RequiredFields.Add(ParticleFields.RandomSeed); + RequiredFields.Add(ParticleFields.Life); + + DisplayParticleRotation = true; + DisplayParticleScaleUniform = true; + } + + public override unsafe void Initialize(ParticlePool pool, int startIdx, int endIdx, int maxCapacity) + { + if (!pool.FieldExists(ParticleFields.Velocity) || !pool.FieldExists(ParticleFields.RandomSeed)) + return; + + var velField = pool.GetField(ParticleFields.Velocity); + var rndField = pool.GetField(ParticleFields.RandomSeed); + var lifeField = pool.GetField(ParticleFields.Life); + + var targetVelocityAdd = Target?.WorldMatrix.TranslationVector - WorldPosition ?? FallbackTarget; + var distance = (targetVelocityAdd.Length() + 0.0001f) / MaxParticleLife; + targetVelocityAdd.Normalize(); + + var i = startIdx; + while (i != endIdx) + { + var particle = pool.FromIndex(i); + var randSeed = particle.Get(rndField); + + var speedFactor = randSeed.GetFloat(RandomOffset.Offset1A + SeedOffset) * (VelocityMax - VelocityMin) + VelocityMin; + var particleRandVel = speedFactor * targetVelocityAdd; + (*((Vector3*)particle[velField])) = particleRandVel; + + var particleLife = distance / (particleRandVel.Length() + 0.0001f); + particleLife = Math.Min(1f, particleLife); + (*((float*)particle[lifeField])) = particleLife; + + i = (i + 1) % maxCapacity; + } + } + + /// + /// The seed offset used to match or separate random values + /// + /// + /// The seed offset used to match or separate random values + /// + [DataMember(8)] + [Display("Random Seed")] + public uint SeedOffset { get; set; } = 0; + + /// + /// An arc initializer needs a second point so that it can position the particles in a line or arc between two locators + /// + /// + /// An arc initializer needs a second point so that it can position the particles in a line or arc between two locators + /// + [DataMember(10)] + [Display("Target")] + public TransformComponent Target; + + /// + /// In case the is null, the offset will be used + /// + /// + /// In case the Target is null, the FallbackTarget offset will be used + /// + [DataMember(12)] + [Display("Fallback Target")] + public Vector3 FallbackTarget = new Vector3(0, 0, -1); + + /// + /// Lower velocity value + /// + /// + /// Lower velocity value + /// + [DataMember(30)] + [Display("Velocity min")] + public float VelocityMin { get; set; } = 1; + + /// + /// Upper velocity value + /// + /// + /// Upper velocity value + /// + [DataMember(40)] + [Display("Velocity max")] + public float VelocityMax { get; set; } = 1; + + + public float MaxParticleLife = 10f; + } +} diff --git a/Starbreach/Resources/AudioToSort/TGS Sounds/Corner Effects section1 125bpm Em.wav b/Starbreach/Resources/AudioToSort/TGS Sounds/Corner Effects section1 125bpm Em.wav new file mode 100644 index 0000000..24e4297 --- /dev/null +++ b/Starbreach/Resources/AudioToSort/TGS Sounds/Corner Effects section1 125bpm Em.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ca1a7c8170579ded7b1657d4dd3c521d01eba75b9deec86025b8c18dd831a6f +size 681472 diff --git a/Starbreach/Resources/AudioToSort/TGS Sounds/Misc/alarm.wav b/Starbreach/Resources/AudioToSort/TGS Sounds/Misc/alarm.wav new file mode 100644 index 0000000..54a3210 --- /dev/null +++ b/Starbreach/Resources/AudioToSort/TGS Sounds/Misc/alarm.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86f0f493fceac919ca396ced26fdf6662595dbd7e0453d57ebffa7c632faa428 +size 384126 diff --git a/Starbreach/Resources/AudioToSort/TGS Sounds/Misc/combat_music_xenko.wav b/Starbreach/Resources/AudioToSort/TGS Sounds/Misc/combat_music_xenko.wav new file mode 100644 index 0000000..5c3fd74 --- /dev/null +++ b/Starbreach/Resources/AudioToSort/TGS Sounds/Misc/combat_music_xenko.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9693880b85639b7fd6574b588a87f7f677aaef40cd25e2437fcce4d37f11f782 +size 3840044 diff --git a/Starbreach/Resources/AudioToSort/TGS Sounds/Misc/fan.wav b/Starbreach/Resources/AudioToSort/TGS Sounds/Misc/fan.wav new file mode 100644 index 0000000..4bfb09c --- /dev/null +++ b/Starbreach/Resources/AudioToSort/TGS Sounds/Misc/fan.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3aa807ad2989fa66b85b096e55af2e23ae27827a87b33221429ac593e4bf8231 +size 147326 diff --git a/Starbreach/Resources/AudioToSort/TGS Sounds/Misc/teleport_sound.wav b/Starbreach/Resources/AudioToSort/TGS Sounds/Misc/teleport_sound.wav new file mode 100644 index 0000000..e94c6a5 --- /dev/null +++ b/Starbreach/Resources/AudioToSort/TGS Sounds/Misc/teleport_sound.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01421827f40072f71f06bcf14d8e73d26bfaa205f2acdd4078332f8bbc98cd57 +size 262536 diff --git a/Starbreach/Resources/AudioToSort/TGS Sounds/interface/cancel_beep.wav b/Starbreach/Resources/AudioToSort/TGS Sounds/interface/cancel_beep.wav new file mode 100644 index 0000000..e9ccfaf --- /dev/null +++ b/Starbreach/Resources/AudioToSort/TGS Sounds/interface/cancel_beep.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a97589f8ab3a30be736d47254afb6712401426aafd5fa539bbf9ebfceaced896 +size 53846 diff --git a/Starbreach/Resources/AudioToSort/TGS Sounds/interface/validate_beep.wav b/Starbreach/Resources/AudioToSort/TGS Sounds/interface/validate_beep.wav new file mode 100644 index 0000000..8c394c3 --- /dev/null +++ b/Starbreach/Resources/AudioToSort/TGS Sounds/interface/validate_beep.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:020ec2bd2564aa049f0db23c54b36c3fc49d116fe0a8fe1d69d24e64f8b9f0ce +size 92514 diff --git a/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/bullet_fire_one_shot1.wav b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/bullet_fire_one_shot1.wav new file mode 100644 index 0000000..1c4e3b4 --- /dev/null +++ b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/bullet_fire_one_shot1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cae844b8ed873d6f48ce2352fbb71277fff25bb21b4be38dc8178d4b2c1c6e3 +size 22054 diff --git a/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/bullet_fire_one_shot2.wav b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/bullet_fire_one_shot2.wav new file mode 100644 index 0000000..58318cf --- /dev/null +++ b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/bullet_fire_one_shot2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb87e358072384e54ce2f89c03ac1232bd7332d89358155b5e6ae68fa112a1d5 +size 22786 diff --git a/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/bullet_fire_one_shot3.wav b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/bullet_fire_one_shot3.wav new file mode 100644 index 0000000..2a96c45 --- /dev/null +++ b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/bullet_fire_one_shot3.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:536378aaa126e02b9b0045a9706eb84f843f63141f2f012636848cfaf5103ae5 +size 21302 diff --git a/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/bullet_fire_one_shot4.wav b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/bullet_fire_one_shot4.wav new file mode 100644 index 0000000..5053ffb --- /dev/null +++ b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/bullet_fire_one_shot4.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e517c0d875d7b923149889cedee483718041e8b299c5ea0ecd716922680bd33 +size 22548 diff --git a/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/bullet_fire_x4_loop.wav b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/bullet_fire_x4_loop.wav new file mode 100644 index 0000000..3de0724 --- /dev/null +++ b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/bullet_fire_x4_loop.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f82d46c4e1b8fe4e1edb5e0c4456afa6a8ab6aec0fda9fc005d1dc073132898 +size 84044 diff --git a/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/bullet_impact_1.wav b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/bullet_impact_1.wav new file mode 100644 index 0000000..79d241c --- /dev/null +++ b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/bullet_impact_1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa668e0c733db1f6c3bbbfc991d21a61a4fcaf5b2836d71260309d98529c99d0 +size 166174 diff --git a/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/bullet_impact_2.wav b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/bullet_impact_2.wav new file mode 100644 index 0000000..8f0132a --- /dev/null +++ b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/bullet_impact_2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e083d3b9a420736199932e733a7e1281401cc7a7e0214f451d458691f61c952d +size 108640 diff --git a/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/bullet_impact_3.wav b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/bullet_impact_3.wav new file mode 100644 index 0000000..9540077 --- /dev/null +++ b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/bullet_impact_3.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a8a2fd46b14d3802d3921d2d909e0bd5c01a907d87737880737e028d03bb222 +size 85736 diff --git a/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/bullet_impact_4.wav b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/bullet_impact_4.wav new file mode 100644 index 0000000..b248719 --- /dev/null +++ b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/bullet_impact_4.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f48b9962696f7711e284a78e1db3be54cf81a58145eac8157acece54cd7a5be +size 138448 diff --git a/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/bullet_impact_loop.wav b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/bullet_impact_loop.wav new file mode 100644 index 0000000..6283b65 --- /dev/null +++ b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/bullet_impact_loop.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d795d9bb3fd627cb258b5608a056882bf942a611dbf57f070f5434dbde4e36b9 +size 120044 diff --git a/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/death.wav b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/death.wav new file mode 100644 index 0000000..816a999 --- /dev/null +++ b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/death.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e07c24eb397367e035e2f362f3590236191d97768de475f99972ff460daaefb3 +size 212710 diff --git a/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/footstep1.wav b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/footstep1.wav new file mode 100644 index 0000000..6ec76e6 --- /dev/null +++ b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/footstep1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a016d234e4b7c713f50ee14d49a6fe544150c98338a5c6905b2553914dd85c3f +size 48146 diff --git a/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/footstep2.wav b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/footstep2.wav new file mode 100644 index 0000000..d13b522 --- /dev/null +++ b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/footstep2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09bcc3b9f4494be62cf79c68490ef63a8e613c1e41513b5ab06505135c8209a0 +size 47576 diff --git a/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/footstep3.wav b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/footstep3.wav new file mode 100644 index 0000000..9177716 --- /dev/null +++ b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/footstep3.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc57321a42f9c27edc3c1bc21ef301ce7cf4c0247be222b96f6d90a55a9d7947 +size 48718 diff --git a/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/footstep4.wav b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/footstep4.wav new file mode 100644 index 0000000..874b9d6 --- /dev/null +++ b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/footstep4.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b13a56a831276db3771a7b79f53483ac38e4d80e203c1844fb9d3678eac7d80d +size 53566 diff --git a/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/footstep5.wav b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/footstep5.wav new file mode 100644 index 0000000..f4fb2b9 --- /dev/null +++ b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/footstep5.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:837a9b3829dbaa4ffd519d332c085e0c36e55a46070019375a88d5fcc1428953 +size 33410 diff --git a/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/footstep6.wav b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/footstep6.wav new file mode 100644 index 0000000..59c0b2c --- /dev/null +++ b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/footstep6.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec0307c6291b7e87e1c28da16e13be1ad95e4c6ed0163d28250b57dd76261732 +size 32650 diff --git a/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/footstep7.wav b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/footstep7.wav new file mode 100644 index 0000000..d86e973 --- /dev/null +++ b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/footstep7.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69722f23983a92cdebd10574f2acfa9a1b601d31c5bd8428309c32278baf7ce1 +size 35692 diff --git a/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/reload.wav b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/reload.wav new file mode 100644 index 0000000..fbb0ab2 --- /dev/null +++ b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/reload.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6067897b8a6989127774c926a49e453f2d06c76a8a5e68dcf1f4574a8372320 +size 152510 diff --git a/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/take_damage1.wav b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/take_damage1.wav new file mode 100644 index 0000000..8fb233c --- /dev/null +++ b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/take_damage1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfe67d03e506c6e590cb9fa67342871b5a2ce75a82d248af43fe9e223367d955 +size 78266 diff --git a/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/take_damage2.wav b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/take_damage2.wav new file mode 100644 index 0000000..21992e3 --- /dev/null +++ b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/take_damage2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f08da37ea3d1cb706cf72e1f64dc44c9bef9ee9ca0378d37289470ec816eacf8 +size 78266 diff --git a/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/take_damage3.wav b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/take_damage3.wav new file mode 100644 index 0000000..1c4e124 --- /dev/null +++ b/Starbreach/Resources/AudioToSort/TGS Sounds/player soldier/take_damage3.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63669aaccdd4443d98e521ce7d8ed53d73307c96810bcb2aa8d67f63c1895a04 +size 78266 diff --git a/Starbreach/Resources/AudioToSort/drone_energy_electric.wav b/Starbreach/Resources/AudioToSort/drone_energy_electric.wav new file mode 100644 index 0000000..4f0c922 --- /dev/null +++ b/Starbreach/Resources/AudioToSort/drone_energy_electric.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:503e3e17f240e459c02f11fec626cb047664595987863874665060df2bf8d81b +size 205700 diff --git a/Starbreach/Resources/AudioToSort/drone_energy_laser.wav b/Starbreach/Resources/AudioToSort/drone_energy_laser.wav new file mode 100644 index 0000000..fcb3c75 --- /dev/null +++ b/Starbreach/Resources/AudioToSort/drone_energy_laser.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a28d2661873bca2fc015ce72a0dd423cd2e3a5b307f86a31298d4f4f6e7f972d +size 318264 diff --git a/Starbreach/Resources/AudioToSort/drone_missile_explosion.wav b/Starbreach/Resources/AudioToSort/drone_missile_explosion.wav new file mode 100644 index 0000000..6e700b7 --- /dev/null +++ b/Starbreach/Resources/AudioToSort/drone_missile_explosion.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a5685ff08c661ee17763a9bd4d4eaf586a67dd6140c7a9bee796c6d7ed0ccf1 +size 175180 diff --git a/Starbreach/Resources/AudioToSort/drone_missile_fire.wav b/Starbreach/Resources/AudioToSort/drone_missile_fire.wav new file mode 100644 index 0000000..2fcfe2b --- /dev/null +++ b/Starbreach/Resources/AudioToSort/drone_missile_fire.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8860f41dff6f8ebc9087cdcad06e28b9950d82fc38509a4bfaa1281558f1d47 +size 140232 diff --git a/Starbreach/Resources/AudioToSort/fire_burning.wav b/Starbreach/Resources/AudioToSort/fire_burning.wav new file mode 100644 index 0000000..c049d1c --- /dev/null +++ b/Starbreach/Resources/AudioToSort/fire_burning.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f41c6a60c2a94fddd048dbcb54675a1c39165a36ba7f627bae6988ce40df943a +size 384044 diff --git a/Starbreach/Resources/AudioToSort/laer_crackling_amb_v3.wav b/Starbreach/Resources/AudioToSort/laer_crackling_amb_v3.wav new file mode 100644 index 0000000..482f383 --- /dev/null +++ b/Starbreach/Resources/AudioToSort/laer_crackling_amb_v3.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:538a8502d6f847cf74e465ddfefd16e2d4d57eac402bf3e089e0b9dabb76f187 +size 384044 diff --git a/Starbreach/Resources/AudioToSort/menu_music_xenko.wav b/Starbreach/Resources/AudioToSort/menu_music_xenko.wav new file mode 100644 index 0000000..6807cda --- /dev/null +++ b/Starbreach/Resources/AudioToSort/menu_music_xenko.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffe3d7c49118aed6f000ca9b7d654ff762daa1472a7ddc6c05632ed20f308274 +size 1920044 diff --git a/Starbreach/Resources/AudioToSort/non-combat_music_xenko loop.wav b/Starbreach/Resources/AudioToSort/non-combat_music_xenko loop.wav new file mode 100644 index 0000000..9dc2ec4 --- /dev/null +++ b/Starbreach/Resources/AudioToSort/non-combat_music_xenko loop.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53fc7162bb84a34a7618c2555431a4a75545ca8d4f948d0cbf19a98951d98cf1 +size 4122992 diff --git a/Starbreach/Resources/AudioToSort/rocket_flying.wav b/Starbreach/Resources/AudioToSort/rocket_flying.wav new file mode 100644 index 0000000..dffda2b --- /dev/null +++ b/Starbreach/Resources/AudioToSort/rocket_flying.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37c5461bf63f2ae7a744063884bfd583b9ce534592c6fc02a970064f43b08e1f +size 303596 diff --git a/Starbreach/Resources/Background.dds b/Starbreach/Resources/Background.dds new file mode 100644 index 0000000..e358ad4 --- /dev/null +++ b/Starbreach/Resources/Background.dds @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5caa6e183da03f9ac769450047f0280dfa2a36a629724cdf7305f5249632c2c +size 402653312 diff --git a/Starbreach/Resources/Background/FloatingRocks/F_Rock01-NoMineral_D.png b/Starbreach/Resources/Background/FloatingRocks/F_Rock01-NoMineral_D.png new file mode 100644 index 0000000..ded1542 --- /dev/null +++ b/Starbreach/Resources/Background/FloatingRocks/F_Rock01-NoMineral_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:917f3e6ae52f3dda8c6acb3884899740b856dadb5a0adb8803f4255d15af9814 +size 11599622 diff --git a/Starbreach/Resources/Background/FloatingRocks/F_Rock01-NoMineral_G.png b/Starbreach/Resources/Background/FloatingRocks/F_Rock01-NoMineral_G.png new file mode 100644 index 0000000..5e2a2af --- /dev/null +++ b/Starbreach/Resources/Background/FloatingRocks/F_Rock01-NoMineral_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a07f376e9ec70cefaf677583356b6e0ae4055af08f45a76e2754b562fe0055c +size 9208101 diff --git a/Starbreach/Resources/Background/FloatingRocks/F_Rock01_AO.png b/Starbreach/Resources/Background/FloatingRocks/F_Rock01_AO.png new file mode 100644 index 0000000..21239d6 --- /dev/null +++ b/Starbreach/Resources/Background/FloatingRocks/F_Rock01_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec802e75ac586bbe8b6e5adf1c41f048c07c1811e71dbfc2096709918ee9d731 +size 6066790 diff --git a/Starbreach/Resources/Background/FloatingRocks/F_Rock01_D.png b/Starbreach/Resources/Background/FloatingRocks/F_Rock01_D.png new file mode 100644 index 0000000..f4aa404 --- /dev/null +++ b/Starbreach/Resources/Background/FloatingRocks/F_Rock01_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8faa4afdf48d6bdf30dda6dfefa10db0a8af1011fed1170d48462baf001d21a6 +size 33438768 diff --git a/Starbreach/Resources/Background/FloatingRocks/F_Rock01_G.png b/Starbreach/Resources/Background/FloatingRocks/F_Rock01_G.png new file mode 100644 index 0000000..d806e48 --- /dev/null +++ b/Starbreach/Resources/Background/FloatingRocks/F_Rock01_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b501e4641398a6dc6cf8d2bda3fa93de0232e6e5619ffe017819a8e6825bc3cf +size 5907188 diff --git a/Starbreach/Resources/Background/FloatingRocks/F_Rock01_M.png b/Starbreach/Resources/Background/FloatingRocks/F_Rock01_M.png new file mode 100644 index 0000000..982de3c --- /dev/null +++ b/Starbreach/Resources/Background/FloatingRocks/F_Rock01_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce1b942fd34d32405b674b54e83e4b0db14cffd4c5175a17c6e1e1e646be0097 +size 211100 diff --git a/Starbreach/Resources/Background/FloatingRocks/F_Rock01_N.png b/Starbreach/Resources/Background/FloatingRocks/F_Rock01_N.png new file mode 100644 index 0000000..f81cfd3 --- /dev/null +++ b/Starbreach/Resources/Background/FloatingRocks/F_Rock01_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06ff2d677f831539db1cf8627416a6704fb8f7a07d5eafb047b8c712d558be4d +size 41716129 diff --git a/Starbreach/Resources/Background/FloatingRocks/F_Rock02-NoMineral_D.png b/Starbreach/Resources/Background/FloatingRocks/F_Rock02-NoMineral_D.png new file mode 100644 index 0000000..5e72363 --- /dev/null +++ b/Starbreach/Resources/Background/FloatingRocks/F_Rock02-NoMineral_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07e16b1ca67feedda12167a1634921f2e4b5933781b5c1f4f81df0bd2d7280a7 +size 11726409 diff --git a/Starbreach/Resources/Background/FloatingRocks/F_Rock02-NoMineral_G.png b/Starbreach/Resources/Background/FloatingRocks/F_Rock02-NoMineral_G.png new file mode 100644 index 0000000..87c9590 --- /dev/null +++ b/Starbreach/Resources/Background/FloatingRocks/F_Rock02-NoMineral_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a84117446181115a5c56a0fb9fce6f81fdbfd6e0b5df607447f922b56914cbee +size 4315532 diff --git a/Starbreach/Resources/Background/FloatingRocks/F_Rock02_AO.png b/Starbreach/Resources/Background/FloatingRocks/F_Rock02_AO.png new file mode 100644 index 0000000..2c91a22 --- /dev/null +++ b/Starbreach/Resources/Background/FloatingRocks/F_Rock02_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e551bd4f136d17a89cfe1b030560674ab27d06c388075dddbf311e12503b477 +size 5875189 diff --git a/Starbreach/Resources/Background/FloatingRocks/F_Rock02_D.png b/Starbreach/Resources/Background/FloatingRocks/F_Rock02_D.png new file mode 100644 index 0000000..0df8e38 --- /dev/null +++ b/Starbreach/Resources/Background/FloatingRocks/F_Rock02_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ed647d4612f4eb01e9829d3e7c0b554722419d8e4eb05fad23dd4212dd0ebff +size 42399905 diff --git a/Starbreach/Resources/Background/FloatingRocks/F_Rock02_G.png b/Starbreach/Resources/Background/FloatingRocks/F_Rock02_G.png new file mode 100644 index 0000000..7c3218c --- /dev/null +++ b/Starbreach/Resources/Background/FloatingRocks/F_Rock02_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d6d567cdc9c4778d186c852a89e48446caad29a5a5103631aa3bb9bf12119ed +size 7587404 diff --git a/Starbreach/Resources/Background/FloatingRocks/F_Rock02_M.png b/Starbreach/Resources/Background/FloatingRocks/F_Rock02_M.png new file mode 100644 index 0000000..37333c4 --- /dev/null +++ b/Starbreach/Resources/Background/FloatingRocks/F_Rock02_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd8c658976fc73ee430ccb9cbec1f832f0c52750efe9f18ac7f6fbac585f984a +size 1625923 diff --git a/Starbreach/Resources/Background/FloatingRocks/F_Rock02_N.png b/Starbreach/Resources/Background/FloatingRocks/F_Rock02_N.png new file mode 100644 index 0000000..19ad5c9 --- /dev/null +++ b/Starbreach/Resources/Background/FloatingRocks/F_Rock02_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:083f43ee92f67576b92448ebb8f9e6fe9666c55852b73f76c7e395910f8d04fb +size 43451972 diff --git a/Starbreach/Resources/Background/FloatingRocks/FloatingRock1_1.FBX b/Starbreach/Resources/Background/FloatingRocks/FloatingRock1_1.FBX new file mode 100644 index 0000000..25198a1 --- /dev/null +++ b/Starbreach/Resources/Background/FloatingRocks/FloatingRock1_1.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aef0f85afea7db8c5163d98762d4d1fe8d1f478218cc8bf0aea3f6eadd9b132d +size 146096 diff --git a/Starbreach/Resources/Background/FloatingRocks/FloatingRock1_2.FBX b/Starbreach/Resources/Background/FloatingRocks/FloatingRock1_2.FBX new file mode 100644 index 0000000..bc4b5b0 --- /dev/null +++ b/Starbreach/Resources/Background/FloatingRocks/FloatingRock1_2.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6a659f6c3fe5f49119fe85ea1dbf97f73fa5ac58f07a60582f44bc0372662a8 +size 132096 diff --git a/Starbreach/Resources/Background/FloatingRocks/FloatingRock1_3.FBX b/Starbreach/Resources/Background/FloatingRocks/FloatingRock1_3.FBX new file mode 100644 index 0000000..466b304 --- /dev/null +++ b/Starbreach/Resources/Background/FloatingRocks/FloatingRock1_3.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afecb9d82ce54b4f079b47a81ee2feb5904ae9a51f8a6fcf4b94e79ece783623 +size 127680 diff --git a/Starbreach/Resources/Background/FloatingRocks/FloatingRock2_1.FBX b/Starbreach/Resources/Background/FloatingRocks/FloatingRock2_1.FBX new file mode 100644 index 0000000..47d453f --- /dev/null +++ b/Starbreach/Resources/Background/FloatingRocks/FloatingRock2_1.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5280b4a46701b401a324dd8687c611994032d1045d3399be9c438914a54ef37 +size 177024 diff --git a/Starbreach/Resources/Background/FloatingRocks/FloatingRock2_2.FBX b/Starbreach/Resources/Background/FloatingRocks/FloatingRock2_2.FBX new file mode 100644 index 0000000..b404dfd --- /dev/null +++ b/Starbreach/Resources/Background/FloatingRocks/FloatingRock2_2.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:345407fc864c5ab55b99d15921a546b2a1e9a304eef77e62ecfc8794c045d068 +size 133200 diff --git a/Starbreach/Resources/Background/FloatingRocks/FloatingRock2_3.FBX b/Starbreach/Resources/Background/FloatingRocks/FloatingRock2_3.FBX new file mode 100644 index 0000000..b9d5773 --- /dev/null +++ b/Starbreach/Resources/Background/FloatingRocks/FloatingRock2_3.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:008d4df2230c7391c681f5ad7af3c87db288c0b3c0bd0db30ec66772f8690426 +size 99024 diff --git a/Starbreach/Resources/Background/Island1/Isl1_AO.png b/Starbreach/Resources/Background/Island1/Isl1_AO.png new file mode 100644 index 0000000..dd76e3b --- /dev/null +++ b/Starbreach/Resources/Background/Island1/Isl1_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d4d21371bd5efee79f1b3e440301ba8d796178d860628bb18a4b3ae90911f45 +size 7389940 diff --git a/Starbreach/Resources/Background/Island1/Isl1_D.png b/Starbreach/Resources/Background/Island1/Isl1_D.png new file mode 100644 index 0000000..3c53c0a --- /dev/null +++ b/Starbreach/Resources/Background/Island1/Isl1_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad3d98fa64d42dfc98ec96908e1405d0899a52b96aa0e6bf97940f03e2a3e68e +size 16590964 diff --git a/Starbreach/Resources/Background/Island1/Isl1_G.png b/Starbreach/Resources/Background/Island1/Isl1_G.png new file mode 100644 index 0000000..8936406 --- /dev/null +++ b/Starbreach/Resources/Background/Island1/Isl1_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df552514dc17089540615d5232bc5482a07fb100023cdb4932f6b81abf7d5dd7 +size 8201342 diff --git a/Starbreach/Resources/Background/Island1/Isl1_M.png b/Starbreach/Resources/Background/Island1/Isl1_M.png new file mode 100644 index 0000000..fcbab59 --- /dev/null +++ b/Starbreach/Resources/Background/Island1/Isl1_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0f43004ef684a0799f3739a2597f1308118652e3ce77c590cdde7f3a6353f32 +size 6786813 diff --git a/Starbreach/Resources/Background/Island1/Isl1_N.png b/Starbreach/Resources/Background/Island1/Isl1_N.png new file mode 100644 index 0000000..391cb5e --- /dev/null +++ b/Starbreach/Resources/Background/Island1/Isl1_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cda841cb19fcbd11ee6dfddfe076c153667b13acc156ac88d8504a065fb794e +size 16125066 diff --git a/Starbreach/Resources/Background/Island1/Isl_1.fbx b/Starbreach/Resources/Background/Island1/Isl_1.fbx new file mode 100644 index 0000000..9afda32 --- /dev/null +++ b/Starbreach/Resources/Background/Island1/Isl_1.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78b69c746066262daa9b1c7461a64e7b7239e293c46a93661760e06037e0d7e2 +size 74160 diff --git a/Starbreach/Resources/Background/Island2/Isl2_AO.png b/Starbreach/Resources/Background/Island2/Isl2_AO.png new file mode 100644 index 0000000..4fe0952 --- /dev/null +++ b/Starbreach/Resources/Background/Island2/Isl2_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d749773b76ec9a9ff8f5997e3702e2758cc22c178acb6317575fdc29e3973939 +size 8560679 diff --git a/Starbreach/Resources/Background/Island2/Isl2_D.png b/Starbreach/Resources/Background/Island2/Isl2_D.png new file mode 100644 index 0000000..17bba5b --- /dev/null +++ b/Starbreach/Resources/Background/Island2/Isl2_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f57e1e0b528f31f522fb2ba87ff8e805478b0500da67c200de9fa44af55704be +size 13969776 diff --git a/Starbreach/Resources/Background/Island2/Isl2_G.png b/Starbreach/Resources/Background/Island2/Isl2_G.png new file mode 100644 index 0000000..2d20ec3 --- /dev/null +++ b/Starbreach/Resources/Background/Island2/Isl2_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5957a2d9d2c7ab8b6543a0edeec54b6936466fcd099a5b532c0b3fe2545d328c +size 7904609 diff --git a/Starbreach/Resources/Background/Island2/Isl2_M.png b/Starbreach/Resources/Background/Island2/Isl2_M.png new file mode 100644 index 0000000..38a883b --- /dev/null +++ b/Starbreach/Resources/Background/Island2/Isl2_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbb59b2671b31470cacf56d4189292de000708a689640b91025996652a78d0c3 +size 5331490 diff --git a/Starbreach/Resources/Background/Island2/Isl2_N.png b/Starbreach/Resources/Background/Island2/Isl2_N.png new file mode 100644 index 0000000..82d5325 --- /dev/null +++ b/Starbreach/Resources/Background/Island2/Isl2_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a758f05ac5dc375f1e1ae0ec930658494fcbaf29f5485b98b8ef4a2e6492fa4 +size 14178859 diff --git a/Starbreach/Resources/Background/Island2/Isl_2.fbx b/Starbreach/Resources/Background/Island2/Isl_2.fbx new file mode 100644 index 0000000..d468273 --- /dev/null +++ b/Starbreach/Resources/Background/Island2/Isl_2.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1901df40d728c29dba0087061544058be1c137794c08be1741c6fac86936d651 +size 72576 diff --git a/Starbreach/Resources/Background/PlatformRocks/RockF_A_001.FBX b/Starbreach/Resources/Background/PlatformRocks/RockF_A_001.FBX new file mode 100644 index 0000000..c05d1e3 --- /dev/null +++ b/Starbreach/Resources/Background/PlatformRocks/RockF_A_001.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc0cea68f049bdea5293477edd2fe5dea47bf4d90f4e9c48996916dc6d093729 +size 48176 diff --git a/Starbreach/Resources/Background/PlatformRocks/RockF_B_001.FBX b/Starbreach/Resources/Background/PlatformRocks/RockF_B_001.FBX new file mode 100644 index 0000000..444ec98 --- /dev/null +++ b/Starbreach/Resources/Background/PlatformRocks/RockF_B_001.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0f83f92c2ca8ffe48f6c8e982bcc52d1eed9a1810d16de8c5cbcc82d7aecb82 +size 74016 diff --git a/Starbreach/Resources/Background/PlatformRocks/RockF_C_001.FBX b/Starbreach/Resources/Background/PlatformRocks/RockF_C_001.FBX new file mode 100644 index 0000000..0832db7 --- /dev/null +++ b/Starbreach/Resources/Background/PlatformRocks/RockF_C_001.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e705a43d9435b5856e954ceb66590ba68b52d344036d5511de442ea205038052 +size 31280 diff --git a/Starbreach/Resources/Background/PlatformRocks/RockF_D_001.FBX b/Starbreach/Resources/Background/PlatformRocks/RockF_D_001.FBX new file mode 100644 index 0000000..cc82c42 --- /dev/null +++ b/Starbreach/Resources/Background/PlatformRocks/RockF_D_001.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd943412eaff9a6b5df8d5b362af36d71247d09fc4560ddc951b321dc28bf1b8 +size 27376 diff --git a/Starbreach/Resources/Background/PlatformRocks/Rocks_AO.png b/Starbreach/Resources/Background/PlatformRocks/Rocks_AO.png new file mode 100644 index 0000000..4c8aa3f --- /dev/null +++ b/Starbreach/Resources/Background/PlatformRocks/Rocks_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41fec4aea8053e35e8b2366a13295821923f3fa493fafbd7761ada4541857b42 +size 6522837 diff --git a/Starbreach/Resources/Background/PlatformRocks/Rocks_D.png b/Starbreach/Resources/Background/PlatformRocks/Rocks_D.png new file mode 100644 index 0000000..4df11ca --- /dev/null +++ b/Starbreach/Resources/Background/PlatformRocks/Rocks_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c7be849e4e5f3d533acd385011d0b30a33c96dc23f8a0a7149e4f444d654f7a +size 34590647 diff --git a/Starbreach/Resources/Background/PlatformRocks/Rocks_G.png b/Starbreach/Resources/Background/PlatformRocks/Rocks_G.png new file mode 100644 index 0000000..5ca0c5a --- /dev/null +++ b/Starbreach/Resources/Background/PlatformRocks/Rocks_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe9510cd40575910edb8d1aedbdc80500a17a9ac3f162308c3825ba67ca185eb +size 8087946 diff --git a/Starbreach/Resources/Background/PlatformRocks/Rocks_N.png b/Starbreach/Resources/Background/PlatformRocks/Rocks_N.png new file mode 100644 index 0000000..b95f23f --- /dev/null +++ b/Starbreach/Resources/Background/PlatformRocks/Rocks_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:963881bc87ffa5bee0d53aee8cb6b3e9fedefeb94593bd70c3a378a2fb87adab +size 41528195 diff --git a/Starbreach/Resources/Character/Animations/08-05-2016/critical_injury.FBX b/Starbreach/Resources/Character/Animations/08-05-2016/critical_injury.FBX new file mode 100644 index 0000000..77cfbe9 --- /dev/null +++ b/Starbreach/Resources/Character/Animations/08-05-2016/critical_injury.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:716a5716fdb7e0576b632c80a3fd140799199e6d68f78ad4eecc114f7a5d6d1f +size 1406512 diff --git a/Starbreach/Resources/Character/Animations/08-05-2016/got_hit.FBX b/Starbreach/Resources/Character/Animations/08-05-2016/got_hit.FBX new file mode 100644 index 0000000..5e929c9 --- /dev/null +++ b/Starbreach/Resources/Character/Animations/08-05-2016/got_hit.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:299166f1ca08c2ce631bc12b0ba1a7025aac0e113791dbb593ab61d5c48d8ec3 +size 680720 diff --git a/Starbreach/Resources/Character/Animations/08-05-2016/gun_goes_down_in_run.FBX b/Starbreach/Resources/Character/Animations/08-05-2016/gun_goes_down_in_run.FBX new file mode 100644 index 0000000..ed03da6 --- /dev/null +++ b/Starbreach/Resources/Character/Animations/08-05-2016/gun_goes_down_in_run.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cda22151b9184648a8c34825de5b30a7c99047eefdb5b14f6c93b9b0404a6b6 +size 635408 diff --git a/Starbreach/Resources/Character/Animations/08-05-2016/gun_goes_up_in_run.FBX b/Starbreach/Resources/Character/Animations/08-05-2016/gun_goes_up_in_run.FBX new file mode 100644 index 0000000..c0c8e34 --- /dev/null +++ b/Starbreach/Resources/Character/Animations/08-05-2016/gun_goes_up_in_run.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7798514c7e6200d5bf54ba82a7614cc785afe60167379b18a9477d8369519ef +size 635392 diff --git a/Starbreach/Resources/Character/Animations/08-05-2016/reload_aim_stand_walk.FBX b/Starbreach/Resources/Character/Animations/08-05-2016/reload_aim_stand_walk.FBX new file mode 100644 index 0000000..72e91f5 --- /dev/null +++ b/Starbreach/Resources/Character/Animations/08-05-2016/reload_aim_stand_walk.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a9bed89cf7e3eabeb4cb36f537a687b9a6df164d152f10adcc1d2080a59e235 +size 907568 diff --git a/Starbreach/Resources/Character/Animations/08-05-2016/reload_stand_walk.FBX b/Starbreach/Resources/Character/Animations/08-05-2016/reload_stand_walk.FBX new file mode 100644 index 0000000..fab8dd6 --- /dev/null +++ b/Starbreach/Resources/Character/Animations/08-05-2016/reload_stand_walk.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8b9dccf5cb3033468cfe9b5a6a36f658b30ca8d8f7767d525321029f93d9238 +size 952912 diff --git a/Starbreach/Resources/Character/Animations/08-05-2016/run_fwd_gun_down.FBX b/Starbreach/Resources/Character/Animations/08-05-2016/run_fwd_gun_down.FBX new file mode 100644 index 0000000..b128907 --- /dev/null +++ b/Starbreach/Resources/Character/Animations/08-05-2016/run_fwd_gun_down.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7707ba56880abee5cdb86a91facaed7bad719280ad4b076f6595bcaf4b297458 +size 762400 diff --git a/Starbreach/Resources/Character/Animations/08-05-2016/run_gun_aim.FBX b/Starbreach/Resources/Character/Animations/08-05-2016/run_gun_aim.FBX new file mode 100644 index 0000000..ac29e7b --- /dev/null +++ b/Starbreach/Resources/Character/Animations/08-05-2016/run_gun_aim.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ed766e103660e2b15075b42fdef0237b1028496dcaa5eb7a44e1e6ad6692040 +size 762384 diff --git a/Starbreach/Resources/Character/Animations/08-05-2016/run_shot.FBX b/Starbreach/Resources/Character/Animations/08-05-2016/run_shot.FBX new file mode 100644 index 0000000..7217f9b --- /dev/null +++ b/Starbreach/Resources/Character/Animations/08-05-2016/run_shot.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26f1e34b0e514b9127af63db01e15d84590c3f1830ecea7ed4ec860d4b11d72a +size 635360 diff --git a/Starbreach/Resources/Character/Animations/08-05-2016/stand_aim.FBX b/Starbreach/Resources/Character/Animations/08-05-2016/stand_aim.FBX new file mode 100644 index 0000000..fa6fe09 --- /dev/null +++ b/Starbreach/Resources/Character/Animations/08-05-2016/stand_aim.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:509d6dc71fb2ce6e3bb071fa64d58ed26f33188d3aba6b7c9ec867a4f330ad11 +size 862176 diff --git a/Starbreach/Resources/Character/Animations/08-05-2016/stand_gun_down.FBX b/Starbreach/Resources/Character/Animations/08-05-2016/stand_gun_down.FBX new file mode 100644 index 0000000..3f67b75 --- /dev/null +++ b/Starbreach/Resources/Character/Animations/08-05-2016/stand_gun_down.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ac9b56407f55e03d2eaaf0fc9478e9f203f244f3d0fca061d5eedc24fa8663c +size 862192 diff --git a/Starbreach/Resources/Character/Animations/08-05-2016/stand_gun_goes_down.FBX b/Starbreach/Resources/Character/Animations/08-05-2016/stand_gun_goes_down.FBX new file mode 100644 index 0000000..89aeece --- /dev/null +++ b/Starbreach/Resources/Character/Animations/08-05-2016/stand_gun_goes_down.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7ffc99ef68bc1ef490cef2adcb87d180b0090a1983aa562d1c5ed3289d7e8fd +size 608176 diff --git a/Starbreach/Resources/Character/Animations/08-05-2016/stand_gun_goes_up.FBX b/Starbreach/Resources/Character/Animations/08-05-2016/stand_gun_goes_up.FBX new file mode 100644 index 0000000..6f10e1a --- /dev/null +++ b/Starbreach/Resources/Character/Animations/08-05-2016/stand_gun_goes_up.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11a53175d17e9f9f7bb2a5c4b9d4418e2079f9ddb69a22acff1bf5db350a902f +size 608176 diff --git a/Starbreach/Resources/Character/Animations/08-05-2016/stand_walk_shot.FBX b/Starbreach/Resources/Character/Animations/08-05-2016/stand_walk_shot.FBX new file mode 100644 index 0000000..f3f4a77 --- /dev/null +++ b/Starbreach/Resources/Character/Animations/08-05-2016/stand_walk_shot.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84b4485fe47b690f6143451d13cf86f14859b32c764a8ee23e2a6b625a257207 +size 685248 diff --git a/Starbreach/Resources/Character/Animations/08-05-2016/walk_bckwrds_aims.FBX b/Starbreach/Resources/Character/Animations/08-05-2016/walk_bckwrds_aims.FBX new file mode 100644 index 0000000..46a79cc --- /dev/null +++ b/Starbreach/Resources/Character/Animations/08-05-2016/walk_bckwrds_aims.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45e0010eb0b0e3a4b65347fdca7ef22ade3807797a3b6e335e15aa1fe77856b1 +size 871264 diff --git a/Starbreach/Resources/Character/Animations/08-05-2016/walk_bwds_aim.FBX b/Starbreach/Resources/Character/Animations/08-05-2016/walk_bwds_aim.FBX new file mode 100644 index 0000000..6539e78 --- /dev/null +++ b/Starbreach/Resources/Character/Animations/08-05-2016/walk_bwds_aim.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8db6410c51e73c32e3dbf793e13c173f1bf30496534522bb1433489d06f5b2a6 +size 880320 diff --git a/Starbreach/Resources/Character/Animations/08-05-2016/walk_fwd_aim.FBX b/Starbreach/Resources/Character/Animations/08-05-2016/walk_fwd_aim.FBX new file mode 100644 index 0000000..750b389 --- /dev/null +++ b/Starbreach/Resources/Character/Animations/08-05-2016/walk_fwd_aim.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:576089a33dc1bf0c26edfb8e71c95e7255c45081a4bb791602e984a80053068e +size 862176 diff --git a/Starbreach/Resources/Character/Animations/08-05-2016/walk_left_aim.FBX b/Starbreach/Resources/Character/Animations/08-05-2016/walk_left_aim.FBX new file mode 100644 index 0000000..42dc9fb --- /dev/null +++ b/Starbreach/Resources/Character/Animations/08-05-2016/walk_left_aim.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f5d11cb53e35f521a75dc4d9d65268dc8ad69e3583a295aee30ad80101ee9e4 +size 789600 diff --git a/Starbreach/Resources/Character/Animations/08-05-2016/walk_right_aim.FBX b/Starbreach/Resources/Character/Animations/08-05-2016/walk_right_aim.FBX new file mode 100644 index 0000000..ed40880 --- /dev/null +++ b/Starbreach/Resources/Character/Animations/08-05-2016/walk_right_aim.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8d8beaf6eb5f5afe5da1b4d923b5e27a7aff2b532391c96b7cb33f1c59ca970 +size 843136 diff --git a/Starbreach/Resources/Character/Animations/17-29-2016/critical injury.FBX b/Starbreach/Resources/Character/Animations/17-29-2016/critical injury.FBX new file mode 100644 index 0000000..26a3e8a --- /dev/null +++ b/Starbreach/Resources/Character/Animations/17-29-2016/critical injury.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecd304c6aaa954092fe03adb73f171016dd6a418e7f1bd1e1445282d1b3b8336 +size 1524608 diff --git a/Starbreach/Resources/Character/Animations/17-29-2016/hot hit .FBX b/Starbreach/Resources/Character/Animations/17-29-2016/hot hit .FBX new file mode 100644 index 0000000..8e084e0 --- /dev/null +++ b/Starbreach/Resources/Character/Animations/17-29-2016/hot hit .FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3beedd852998fadb1033304f1a6899c3cc296e9029a66faebadce958016495aa +size 673024 diff --git a/Starbreach/Resources/Character/Animations/17-29-2016/idle gun aim.FBX b/Starbreach/Resources/Character/Animations/17-29-2016/idle gun aim.FBX new file mode 100644 index 0000000..fd559d4 --- /dev/null +++ b/Starbreach/Resources/Character/Animations/17-29-2016/idle gun aim.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b436890f33822c2bf0759f23a7e1d9aa6c5e474faf52d6e32e4ccf7896eee801 +size 852304 diff --git a/Starbreach/Resources/Character/Animations/17-29-2016/idle gun down.FBX b/Starbreach/Resources/Character/Animations/17-29-2016/idle gun down.FBX new file mode 100644 index 0000000..1ffd9c4 --- /dev/null +++ b/Starbreach/Resources/Character/Animations/17-29-2016/idle gun down.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c598e3ff97b440a63e50ef46c1ad76e1bda5e5cb6d33d022ddac7ed02fd25ec3 +size 852304 diff --git a/Starbreach/Resources/Character/Animations/17-29-2016/idle shot.FBX b/Starbreach/Resources/Character/Animations/17-29-2016/idle shot.FBX new file mode 100644 index 0000000..3c006fb --- /dev/null +++ b/Starbreach/Resources/Character/Animations/17-29-2016/idle shot.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4131dc17d1c895a84eea446c8c663be28b24f5c523194900b8f8fe995a85dcb9 +size 635504 diff --git a/Starbreach/Resources/Character/Animations/17-29-2016/reload stand aim.FBX b/Starbreach/Resources/Character/Animations/17-29-2016/reload stand aim.FBX new file mode 100644 index 0000000..52a24f8 --- /dev/null +++ b/Starbreach/Resources/Character/Animations/17-29-2016/reload stand aim.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a12a85b38ba57a760f01d98def1a17389ccdb114af774eb3f99f267258e1614b +size 897136 diff --git a/Starbreach/Resources/Character/Animations/17-29-2016/run gun aim.FBX b/Starbreach/Resources/Character/Animations/17-29-2016/run gun aim.FBX new file mode 100644 index 0000000..3a08c83 --- /dev/null +++ b/Starbreach/Resources/Character/Animations/17-29-2016/run gun aim.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcf6e9c042204fa1977cf8bda81612d9e1a915c91d05c498a94c031a8b929ff7 +size 753696 diff --git a/Starbreach/Resources/Character/Animations/17-29-2016/run gun down.FBX b/Starbreach/Resources/Character/Animations/17-29-2016/run gun down.FBX new file mode 100644 index 0000000..adaa721 --- /dev/null +++ b/Starbreach/Resources/Character/Animations/17-29-2016/run gun down.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e76c46bec87917e1f913d4d7f824c992af0d012a9a1b633fabba4c306e3fb94 +size 753696 diff --git a/Starbreach/Resources/Character/Animations/17-29-2016/run gun goes down.FBX b/Starbreach/Resources/Character/Animations/17-29-2016/run gun goes down.FBX new file mode 100644 index 0000000..f5310ea --- /dev/null +++ b/Starbreach/Resources/Character/Animations/17-29-2016/run gun goes down.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2a907096a77f224cfa2687ff770b0c45a436abcbb6dec406b0a13199a02f421 +size 628224 diff --git a/Starbreach/Resources/Character/Animations/17-29-2016/run gun goes up.FBX b/Starbreach/Resources/Character/Animations/17-29-2016/run gun goes up.FBX new file mode 100644 index 0000000..ef02c8a --- /dev/null +++ b/Starbreach/Resources/Character/Animations/17-29-2016/run gun goes up.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41003022dc55b253599f442bb80d8a3efb0f7b3e7fbdffd8004f7ff3e7bf9fe2 +size 628208 diff --git a/Starbreach/Resources/Character/Animations/17-29-2016/stand gun goes down.FBX b/Starbreach/Resources/Character/Animations/17-29-2016/stand gun goes down.FBX new file mode 100644 index 0000000..4ad0c49 --- /dev/null +++ b/Starbreach/Resources/Character/Animations/17-29-2016/stand gun goes down.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:181b0d3e618fe1062b5e12bf023c1b1bfd91e73e83e62748d3e2df55a6b8009a +size 601328 diff --git a/Starbreach/Resources/Character/Animations/17-29-2016/stand gun goes up.FBX b/Starbreach/Resources/Character/Animations/17-29-2016/stand gun goes up.FBX new file mode 100644 index 0000000..4397032 --- /dev/null +++ b/Starbreach/Resources/Character/Animations/17-29-2016/stand gun goes up.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4284cbe39aa032359c12e08b05157dd57aa2fc519279189970ee6fb35dc84cb0 +size 601328 diff --git a/Starbreach/Resources/Character/Animations/17-29-2016/walk bkwds aim.FBX b/Starbreach/Resources/Character/Animations/17-29-2016/walk bkwds aim.FBX new file mode 100644 index 0000000..af4e163 --- /dev/null +++ b/Starbreach/Resources/Character/Animations/17-29-2016/walk bkwds aim.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:944e325c3f15cd1ca6f2fa379bbbd18e9f7e7908cce7463260e8d9ae467c3161 +size 852320 diff --git a/Starbreach/Resources/Character/Animations/17-29-2016/walk fwd gun aim.FBX b/Starbreach/Resources/Character/Animations/17-29-2016/walk fwd gun aim.FBX new file mode 100644 index 0000000..59a2125 --- /dev/null +++ b/Starbreach/Resources/Character/Animations/17-29-2016/walk fwd gun aim.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ea4f8b3597f199b0d41e9e2b0209afab2650edcd8b18d29b12f42e885b5a513 +size 852320 diff --git a/Starbreach/Resources/Character/Animations/17-29-2016/walk left aim.FBX b/Starbreach/Resources/Character/Animations/17-29-2016/walk left aim.FBX new file mode 100644 index 0000000..ef87c5a --- /dev/null +++ b/Starbreach/Resources/Character/Animations/17-29-2016/walk left aim.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:096a87455185ae50c261f8c3d3f9c525346029c218e46e92f4f363044569fbd6 +size 780592 diff --git a/Starbreach/Resources/Character/Animations/17-29-2016/walk right aim.FBX b/Starbreach/Resources/Character/Animations/17-29-2016/walk right aim.FBX new file mode 100644 index 0000000..0ad0e7a --- /dev/null +++ b/Starbreach/Resources/Character/Animations/17-29-2016/walk right aim.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebee0565069d4022365c8791474fd4b971c65d520deef8f8880925a3224375ee +size 780592 diff --git a/Starbreach/Resources/Character/Animations/critical injury.FBX b/Starbreach/Resources/Character/Animations/critical injury.FBX new file mode 100644 index 0000000..69542ab --- /dev/null +++ b/Starbreach/Resources/Character/Animations/critical injury.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc868eff5645896defc6c87455524e0555107f2fcb211990828ba576d6769982 +size 1497280 diff --git a/Starbreach/Resources/Character/Animations/get hit (upper).FBX b/Starbreach/Resources/Character/Animations/get hit (upper).FBX new file mode 100644 index 0000000..e4a9364 --- /dev/null +++ b/Starbreach/Resources/Character/Animations/get hit (upper).FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9677368a9abcb5d41571ebf90817303653c7d796919ac43f3de01a3a978d645 +size 762448 diff --git a/Starbreach/Resources/Character/Animations/gun goes down (upper).FBX b/Starbreach/Resources/Character/Animations/gun goes down (upper).FBX new file mode 100644 index 0000000..edaa049 --- /dev/null +++ b/Starbreach/Resources/Character/Animations/gun goes down (upper).FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b031ccbef8fbd65383cbcd8bd5a0d26de54c2cf34c4f9425ee9d42c8e87f9a5 +size 581024 diff --git a/Starbreach/Resources/Character/Animations/gun goes down in stand-walk.FBX b/Starbreach/Resources/Character/Animations/gun goes down in stand-walk.FBX new file mode 100644 index 0000000..9cb9b1e --- /dev/null +++ b/Starbreach/Resources/Character/Animations/gun goes down in stand-walk.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:437830c0a519eddbbb06cc0b4c4e8c0777dcd6380f2ce14528a822106ebb0986 +size 209920 diff --git a/Starbreach/Resources/Character/Animations/gun goes to ironsight in stand-walk.FBX b/Starbreach/Resources/Character/Animations/gun goes to ironsight in stand-walk.FBX new file mode 100644 index 0000000..a751848 --- /dev/null +++ b/Starbreach/Resources/Character/Animations/gun goes to ironsight in stand-walk.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:410e5b07ee10fabca40bacc176787aa264af1d33210d03a4037fe8b5ebb5b28f +size 581072 diff --git a/Starbreach/Resources/Character/Animations/gun in ironsight while strife.FBX b/Starbreach/Resources/Character/Animations/gun in ironsight while strife.FBX new file mode 100644 index 0000000..d9ccc14 --- /dev/null +++ b/Starbreach/Resources/Character/Animations/gun in ironsight while strife.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdf7ccfaa4a83194520d74e1ef8fd32ccc635820f56566622e403e9cd860dd91 +size 726208 diff --git a/Starbreach/Resources/Character/Animations/reload (upper).FBX b/Starbreach/Resources/Character/Animations/reload (upper).FBX new file mode 100644 index 0000000..43b80ae --- /dev/null +++ b/Starbreach/Resources/Character/Animations/reload (upper).FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c5c86fa238681d6cbac3b82e3a1c00092fcfb16fe8b90473f967408c9d9cb94 +size 907600 diff --git a/Starbreach/Resources/Character/Animations/run gun goes to ironsight (upper).FBX b/Starbreach/Resources/Character/Animations/run gun goes to ironsight (upper).FBX new file mode 100644 index 0000000..e37b37b --- /dev/null +++ b/Starbreach/Resources/Character/Animations/run gun goes to ironsight (upper).FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:928dd015eecd0373d5a367ee84a62dbf14798f7c1071090ac406b3358631571a +size 581056 diff --git a/Starbreach/Resources/Character/Animations/run with gun down (upper).FBX b/Starbreach/Resources/Character/Animations/run with gun down (upper).FBX new file mode 100644 index 0000000..7e7eeed --- /dev/null +++ b/Starbreach/Resources/Character/Animations/run with gun down (upper).FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85095cf3c34468da054751b619891c9bb9ad12fd26bf3ceedbaeee2a73451eaa +size 762480 diff --git a/Starbreach/Resources/Character/Animations/run with gun in ironsight (upper).FBX b/Starbreach/Resources/Character/Animations/run with gun in ironsight (upper).FBX new file mode 100644 index 0000000..60014a2 --- /dev/null +++ b/Starbreach/Resources/Character/Animations/run with gun in ironsight (upper).FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ce699a1aa61e1cedb4a3886964da57143556ffeed6eb84483403f19df638e58 +size 762496 diff --git a/Starbreach/Resources/Character/Animations/run.FBX b/Starbreach/Resources/Character/Animations/run.FBX new file mode 100644 index 0000000..2aed97f --- /dev/null +++ b/Starbreach/Resources/Character/Animations/run.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98eb29ec6cba46c09bffaddd9f06f308ed5247e011a45326a81254df2bd3c18a +size 762416 diff --git a/Starbreach/Resources/Character/Animations/shot (upper).FBX b/Starbreach/Resources/Character/Animations/shot (upper).FBX new file mode 100644 index 0000000..c3d3360 --- /dev/null +++ b/Starbreach/Resources/Character/Animations/shot (upper).FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d42eb16aa540683bcf5226ce70c16fff8f27603b6f8091ffdfa21eb949ee1aa3 +size 717072 diff --git a/Starbreach/Resources/Character/Animations/stand with gun down.FBX b/Starbreach/Resources/Character/Animations/stand with gun down.FBX new file mode 100644 index 0000000..cd069b7 --- /dev/null +++ b/Starbreach/Resources/Character/Animations/stand with gun down.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f97490c28c48ea5cf3fdb34e4364556aeb10c1e53246fa5f129e3b4dd4752b3d +size 889472 diff --git a/Starbreach/Resources/Character/Animations/stand.FBX b/Starbreach/Resources/Character/Animations/stand.FBX new file mode 100644 index 0000000..74ea7b1 --- /dev/null +++ b/Starbreach/Resources/Character/Animations/stand.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feddcea4f71940a7c4740411b585cb12704447849d87be6b3b10070c397baa2d +size 889424 diff --git a/Starbreach/Resources/Character/Animations/walk backwards.FBX b/Starbreach/Resources/Character/Animations/walk backwards.FBX new file mode 100644 index 0000000..0bf7681 --- /dev/null +++ b/Starbreach/Resources/Character/Animations/walk backwards.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe87fcd7e2e83cb2e4921a4dda4370c4ed23ad29b00511a937683ff1e6835f8c +size 862240 diff --git a/Starbreach/Resources/Character/Animations/walk fwd (upper).FBX b/Starbreach/Resources/Character/Animations/walk fwd (upper).FBX new file mode 100644 index 0000000..5713e2b --- /dev/null +++ b/Starbreach/Resources/Character/Animations/walk fwd (upper).FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfeece615d5413759d20bf34df564c35c4f4a717958b75d29a3bdedc213d0925 +size 889456 diff --git a/Starbreach/Resources/Character/Animations/walk fwd.FBX b/Starbreach/Resources/Character/Animations/walk fwd.FBX new file mode 100644 index 0000000..6a60c5b --- /dev/null +++ b/Starbreach/Resources/Character/Animations/walk fwd.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d1ee4b35abf841fbc27ab18e7f61f9ba093a6a702a5589078b0079e2aff265a +size 862224 diff --git a/Starbreach/Resources/Character/Animations/walk left.FBX b/Starbreach/Resources/Character/Animations/walk left.FBX new file mode 100644 index 0000000..7bd674e --- /dev/null +++ b/Starbreach/Resources/Character/Animations/walk left.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:899130da940a68161ed276f7761f600d2787488e62f6adc8f50c2b66daca1685 +size 789648 diff --git a/Starbreach/Resources/Character/Animations/walk right.FBX b/Starbreach/Resources/Character/Animations/walk right.FBX new file mode 100644 index 0000000..6688828 --- /dev/null +++ b/Starbreach/Resources/Character/Animations/walk right.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7ad30a39917a341bc00585753e76df774d895e90c644230eba82e7ebe78349c +size 789648 diff --git a/Starbreach/Resources/Character/Lower [AlbedoM].tga b/Starbreach/Resources/Character/Lower [AlbedoM].tga new file mode 100644 index 0000000..e07c814 --- /dev/null +++ b/Starbreach/Resources/Character/Lower [AlbedoM].tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc582d44480893cf7589a8ea3768be85263a69a031860c2f72f265befa36948a +size 50331692 diff --git a/Starbreach/Resources/Character/Lower [Emissive].tga b/Starbreach/Resources/Character/Lower [Emissive].tga new file mode 100644 index 0000000..0ec4f56 --- /dev/null +++ b/Starbreach/Resources/Character/Lower [Emissive].tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:562b270fe7e494b3c30512421587d3455a3deaa3144fea968a00ae2d244275d6 +size 50331692 diff --git a/Starbreach/Resources/Character/Lower [Gloss].tga b/Starbreach/Resources/Character/Lower [Gloss].tga new file mode 100644 index 0000000..a6b9ace --- /dev/null +++ b/Starbreach/Resources/Character/Lower [Gloss].tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faa4948a1936ca07a2514f0dde0f140faa257905f8162fa0acfca3a39e5ba508 +size 16777260 diff --git a/Starbreach/Resources/Character/Lower [Metalness].tga b/Starbreach/Resources/Character/Lower [Metalness].tga new file mode 100644 index 0000000..54bc718 --- /dev/null +++ b/Starbreach/Resources/Character/Lower [Metalness].tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62b69a56ad829261228c0e1db7c45e32d7fb56454061a7bfc79e6fb9b93fd227 +size 16777260 diff --git a/Starbreach/Resources/Character/Lower [Normal].tga b/Starbreach/Resources/Character/Lower [Normal].tga new file mode 100644 index 0000000..5ba290b --- /dev/null +++ b/Starbreach/Resources/Character/Lower [Normal].tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a38a1bafe738f2f93d17aba99b79e1abefe4763fc6e2a559c57a7f39c4cdd14 +size 50331692 diff --git a/Starbreach/Resources/Character/Lower [Occlusion].tga b/Starbreach/Resources/Character/Lower [Occlusion].tga new file mode 100644 index 0000000..78c8460 --- /dev/null +++ b/Starbreach/Resources/Character/Lower [Occlusion].tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d0f435ea0252fd2753aec6e3b75a4d68228a41fd734e566c99da03f23e29539 +size 50331692 diff --git a/Starbreach/Resources/Character/Machinegun_A.tga b/Starbreach/Resources/Character/Machinegun_A.tga new file mode 100644 index 0000000..70f200f --- /dev/null +++ b/Starbreach/Resources/Character/Machinegun_A.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2258b86d77f14b50a168806b1f0f88db09c264caee5cd51e4227a952e1c514d9 +size 50331692 diff --git a/Starbreach/Resources/Character/Machinegun_M.tga b/Starbreach/Resources/Character/Machinegun_M.tga new file mode 100644 index 0000000..3e871e9 --- /dev/null +++ b/Starbreach/Resources/Character/Machinegun_M.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abf931dbc18e22d095b19bc0a815a58d957247a856b7be1e205fab8fc829bafa +size 50331692 diff --git a/Starbreach/Resources/Character/Machinegun_N.tga b/Starbreach/Resources/Character/Machinegun_N.tga new file mode 100644 index 0000000..dbab9ef --- /dev/null +++ b/Starbreach/Resources/Character/Machinegun_N.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b652b39ad363a55a85e1d48d5f86fda1174d4c01768d5d4e64f6f61ce499521 +size 50331692 diff --git a/Starbreach/Resources/Character/Machinegun_O.tga b/Starbreach/Resources/Character/Machinegun_O.tga new file mode 100644 index 0000000..8b2f778 --- /dev/null +++ b/Starbreach/Resources/Character/Machinegun_O.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:300dd62637b5110e42db2861d4daa7a8993427b281b0ccfb559dc797aabd71b7 +size 50331692 diff --git a/Starbreach/Resources/Character/Machinegun_R.tga b/Starbreach/Resources/Character/Machinegun_R.tga new file mode 100644 index 0000000..18fb46a --- /dev/null +++ b/Starbreach/Resources/Character/Machinegun_R.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:128912a5b1661444bf095bcb23b43820e4b0ed02195921f84b8a97a411a787cb +size 50331692 diff --git a/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Lower_Burnt_A.tga b/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Lower_Burnt_A.tga new file mode 100644 index 0000000..ae6265c --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Lower_Burnt_A.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a66ed66d53e3224439980076a3f37887b68affb0a08c284ffed4edbb531e169b +size 50331692 diff --git a/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Lower_Burnt_E.tga b/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Lower_Burnt_E.tga new file mode 100644 index 0000000..7c84301 --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Lower_Burnt_E.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2866079b4814719dcdddbbb53b40a6f2632d38f47ebedfa99215723ca883a61 +size 50331692 diff --git a/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Lower_Burnt_M.tga b/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Lower_Burnt_M.tga new file mode 100644 index 0000000..902062c --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Lower_Burnt_M.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6df364f7d99168276e16ea7b279807c0a6a3a965755f4b86a5f482492b2937c0 +size 16777260 diff --git a/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Lower_Burnt_N.tga b/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Lower_Burnt_N.tga new file mode 100644 index 0000000..5ba290b --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Lower_Burnt_N.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a38a1bafe738f2f93d17aba99b79e1abefe4763fc6e2a559c57a7f39c4cdd14 +size 50331692 diff --git a/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Lower_Burnt_O.tga b/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Lower_Burnt_O.tga new file mode 100644 index 0000000..78c8460 --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Lower_Burnt_O.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d0f435ea0252fd2753aec6e3b75a4d68228a41fd734e566c99da03f23e29539 +size 50331692 diff --git a/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Lower_Burnt_R.tga b/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Lower_Burnt_R.tga new file mode 100644 index 0000000..24b2099 --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Lower_Burnt_R.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33f941235b616ff0af5f6f93ceb2643d6da2fda490d45dc4c931b5ed250c9630 +size 16777260 diff --git a/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Upper_Burnt_A.tga b/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Upper_Burnt_A.tga new file mode 100644 index 0000000..b99b41b --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Upper_Burnt_A.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76f6af506acbc4de014570c805c08c00c57a6e28511049f1861322209bdcf0f8 +size 50331692 diff --git a/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Upper_Burnt_E.tga b/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Upper_Burnt_E.tga new file mode 100644 index 0000000..7cfc64e --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Upper_Burnt_E.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:becec73437b0471cd3fc8254f77e037341a2c8dc69425e5bc00118944d2bdbf4 +size 50331692 diff --git a/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Upper_Burnt_M.tga b/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Upper_Burnt_M.tga new file mode 100644 index 0000000..ccdce8b --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Upper_Burnt_M.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df293cdb71ff9ee730ec9500f1a290bd7e5dd3bc564b30936638f22343548a7c +size 16777260 diff --git a/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Upper_Burnt_N.tga b/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Upper_Burnt_N.tga new file mode 100644 index 0000000..c2edb2d --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Upper_Burnt_N.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3de40608b9f7b560feb1af5bc7abe6908799e007f059ecaafd070258f77204e +size 50331692 diff --git a/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Upper_Burnt_O.tga b/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Upper_Burnt_O.tga new file mode 100644 index 0000000..7429474 --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Upper_Burnt_O.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a0731a4b150ac34f5edd0369fc8967466c70b9c3377f6958e7e1388226b3f8f +size 50331692 diff --git a/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Upper_Burnt_R.tga b/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Upper_Burnt_R.tga new file mode 100644 index 0000000..e79274a --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Burnt/MainCharacter_Upper_Burnt_R.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7dee62503c20b6935fed754a5653678eafe64704c7a26a35be81be9f12b5331 +size 16777260 diff --git a/Starbreach/Resources/Character/MainCharacter_Damage_Mask/MainCharacter_Lower_Mask.tga b/Starbreach/Resources/Character/MainCharacter_Damage_Mask/MainCharacter_Lower_Mask.tga new file mode 100644 index 0000000..3aad7c4 --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Damage_Mask/MainCharacter_Lower_Mask.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a53388614b75ab232234ba818430022ce8ba1dcef1ee1a5ba62cdc6509f69136 +size 67108908 diff --git a/Starbreach/Resources/Character/MainCharacter_Damage_Mask/MainCharacter_Upper_Mask.tga b/Starbreach/Resources/Character/MainCharacter_Damage_Mask/MainCharacter_Upper_Mask.tga new file mode 100644 index 0000000..a3d1505 --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Damage_Mask/MainCharacter_Upper_Mask.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3cf860182e94475a76b53f45190510f3f41b12936871bec47d158680887c411 +size 67108908 diff --git a/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Lower_Damaged_A.tga b/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Lower_Damaged_A.tga new file mode 100644 index 0000000..b79b622 --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Lower_Damaged_A.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:210943e5e64f358b58e1b4fa2faa1019f7e3ad23e3a7dd73ab2303b9a93e1e16 +size 67108908 diff --git a/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Lower_Damaged_E.tga b/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Lower_Damaged_E.tga new file mode 100644 index 0000000..9da525c --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Lower_Damaged_E.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a571f89137e183c1c5a553257fbe90a34607d52446fe497c5c316d27d7030292 +size 67108908 diff --git a/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Lower_Damaged_M.png b/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Lower_Damaged_M.png new file mode 100644 index 0000000..9ada328 --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Lower_Damaged_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a02ea5e6e83402927101699ebea62699b621c4fb3ebd3192e21a7cc2f7ad0e9 +size 6659420 diff --git a/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Lower_Damaged_M.tga b/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Lower_Damaged_M.tga new file mode 100644 index 0000000..769d739 --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Lower_Damaged_M.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c9eb4aaf515201a02a1ebd747673833e2236ca8a1eb90e6a779ee1a7ace334f +size 16778028 diff --git a/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Lower_Damaged_N.tga b/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Lower_Damaged_N.tga new file mode 100644 index 0000000..a1ddd2f --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Lower_Damaged_N.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ed1d502a96ec74c415a9e8cef6728319dee158db07d60df86b362e6112f5cd6 +size 67108908 diff --git a/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Lower_Damaged_O.tga b/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Lower_Damaged_O.tga new file mode 100644 index 0000000..78c8460 --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Lower_Damaged_O.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d0f435ea0252fd2753aec6e3b75a4d68228a41fd734e566c99da03f23e29539 +size 50331692 diff --git a/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Lower_Damaged_R.png b/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Lower_Damaged_R.png new file mode 100644 index 0000000..8725ebb --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Lower_Damaged_R.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c491bc1686a246e60e0754da9a0c8dccf0d16182171f8ea07e82d225c0b4254 +size 8753912 diff --git a/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Lower_Damaged_R.tga b/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Lower_Damaged_R.tga new file mode 100644 index 0000000..2027322 --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Lower_Damaged_R.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60f737af97f94ee41df2ecee6783a7b9eab9b0c6e0677aa8864dace0f872f8bd +size 16778028 diff --git a/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Upper_Damaged_A.tga b/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Upper_Damaged_A.tga new file mode 100644 index 0000000..d8e8001 --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Upper_Damaged_A.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3b422e564c4977a293d58160726ceff019275b9e24b5ffa9b03b28ce42b298c +size 67108908 diff --git a/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Upper_Damaged_E.tga b/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Upper_Damaged_E.tga new file mode 100644 index 0000000..04fed12 --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Upper_Damaged_E.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a88cda74237633e06b2b3d2ccf40507ebf34783e42a107919d9596ebc5f768e +size 67108908 diff --git a/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Upper_Damaged_M.png b/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Upper_Damaged_M.png new file mode 100644 index 0000000..46b4110 --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Upper_Damaged_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6faa3cfe6cd40c9300d26f40bb4296767b1ee7b0f41f67a25071ea0993464fba +size 6083730 diff --git a/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Upper_Damaged_M.tga b/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Upper_Damaged_M.tga new file mode 100644 index 0000000..039ab6a --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Upper_Damaged_M.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92301a7216901c9a39fb5524a063fe7994702f223089fc48305fee10c9e0d60d +size 16778028 diff --git a/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Upper_Damaged_N.tga b/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Upper_Damaged_N.tga new file mode 100644 index 0000000..228fad7 --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Upper_Damaged_N.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4623f3a46c6d3d348822bc1028d13a45a44b2067a771a208d677f451d0cefa5a +size 67108908 diff --git a/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Upper_Damaged_O.tga b/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Upper_Damaged_O.tga new file mode 100644 index 0000000..7429474 --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Upper_Damaged_O.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a0731a4b150ac34f5edd0369fc8967466c70b9c3377f6958e7e1388226b3f8f +size 50331692 diff --git a/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Upper_Damaged_R.png b/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Upper_Damaged_R.png new file mode 100644 index 0000000..1e7c4d4 --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Upper_Damaged_R.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:392b25342a01e342a6e536def4c5bd8530739fba1c8b36bf8f844ea3e6f77ea1 +size 7963614 diff --git a/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Upper_Damaged_R.tga b/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Upper_Damaged_R.tga new file mode 100644 index 0000000..b7e18de --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Damaged/MainCharacter_Upper_Damaged_R.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a7157a8ee0c99f1d0276dfbbb43005396a1ab310f38ffb79a8daccfa970d607 +size 16778028 diff --git a/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Lower_Damaged_A.tga b/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Lower_Damaged_A.tga new file mode 100644 index 0000000..e6010b8 --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Lower_Damaged_A.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0be1eb1e71d458aba212d0d6be7985cf2c7769244cc676c92938ac27d3417e35 +size 67108908 diff --git a/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Lower_Damaged_E.tga b/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Lower_Damaged_E.tga new file mode 100644 index 0000000..3722bf3 --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Lower_Damaged_E.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:313d492290eca66116e1e5e7554cc5a3b822b806dbbf03ed1dd6698aa04f20e4 +size 67108908 diff --git a/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Lower_Damaged_M.tga b/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Lower_Damaged_M.tga new file mode 100644 index 0000000..769d739 --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Lower_Damaged_M.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c9eb4aaf515201a02a1ebd747673833e2236ca8a1eb90e6a779ee1a7ace334f +size 16778028 diff --git a/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Lower_Damaged_N.tga b/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Lower_Damaged_N.tga new file mode 100644 index 0000000..a1ddd2f --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Lower_Damaged_N.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ed1d502a96ec74c415a9e8cef6728319dee158db07d60df86b362e6112f5cd6 +size 67108908 diff --git a/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Lower_Damaged_O.tga b/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Lower_Damaged_O.tga new file mode 100644 index 0000000..78c8460 --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Lower_Damaged_O.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d0f435ea0252fd2753aec6e3b75a4d68228a41fd734e566c99da03f23e29539 +size 50331692 diff --git a/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Lower_Damaged_R.tga b/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Lower_Damaged_R.tga new file mode 100644 index 0000000..2027322 --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Lower_Damaged_R.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60f737af97f94ee41df2ecee6783a7b9eab9b0c6e0677aa8864dace0f872f8bd +size 16778028 diff --git a/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Upper_Damaged_A.tga b/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Upper_Damaged_A.tga new file mode 100644 index 0000000..fe3c7d2 --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Upper_Damaged_A.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13bbb72950733a9cad39b2eb72e2e6104eb743ed63fd30b02b4089a28674a7cf +size 67108908 diff --git a/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Upper_Damaged_E.tga b/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Upper_Damaged_E.tga new file mode 100644 index 0000000..0bed603 --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Upper_Damaged_E.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:746da96143cec63b1cc076ed8a97608c6ed6877c798fc59d0073839253f48a17 +size 67108908 diff --git a/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Upper_Damaged_M.tga b/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Upper_Damaged_M.tga new file mode 100644 index 0000000..039ab6a --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Upper_Damaged_M.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92301a7216901c9a39fb5524a063fe7994702f223089fc48305fee10c9e0d60d +size 16778028 diff --git a/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Upper_Damaged_N.tga b/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Upper_Damaged_N.tga new file mode 100644 index 0000000..228fad7 --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Upper_Damaged_N.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4623f3a46c6d3d348822bc1028d13a45a44b2067a771a208d677f451d0cefa5a +size 67108908 diff --git a/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Upper_Damaged_O.tga b/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Upper_Damaged_O.tga new file mode 100644 index 0000000..7429474 --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Upper_Damaged_O.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a0731a4b150ac34f5edd0369fc8967466c70b9c3377f6958e7e1388226b3f8f +size 50331692 diff --git a/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Upper_Damaged_R.tga b/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Upper_Damaged_R.tga new file mode 100644 index 0000000..b7e18de --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Damaged_RedLeaks/MainCharacter_Upper_Damaged_R.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a7157a8ee0c99f1d0276dfbbb43005396a1ab310f38ffb79a8daccfa970d607 +size 16778028 diff --git a/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Lower_Healthy_A.tga b/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Lower_Healthy_A.tga new file mode 100644 index 0000000..e07c814 --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Lower_Healthy_A.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc582d44480893cf7589a8ea3768be85263a69a031860c2f72f265befa36948a +size 50331692 diff --git a/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Lower_Healthy_E.tga b/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Lower_Healthy_E.tga new file mode 100644 index 0000000..0ec4f56 --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Lower_Healthy_E.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:562b270fe7e494b3c30512421587d3455a3deaa3144fea968a00ae2d244275d6 +size 50331692 diff --git a/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Lower_Healthy_M.tga b/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Lower_Healthy_M.tga new file mode 100644 index 0000000..54bc718 --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Lower_Healthy_M.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62b69a56ad829261228c0e1db7c45e32d7fb56454061a7bfc79e6fb9b93fd227 +size 16777260 diff --git a/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Lower_Healthy_N.tga b/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Lower_Healthy_N.tga new file mode 100644 index 0000000..5ba290b --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Lower_Healthy_N.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a38a1bafe738f2f93d17aba99b79e1abefe4763fc6e2a559c57a7f39c4cdd14 +size 50331692 diff --git a/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Lower_Healthy_O.tga b/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Lower_Healthy_O.tga new file mode 100644 index 0000000..78c8460 --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Lower_Healthy_O.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d0f435ea0252fd2753aec6e3b75a4d68228a41fd734e566c99da03f23e29539 +size 50331692 diff --git a/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Lower_Healthy_R.tga b/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Lower_Healthy_R.tga new file mode 100644 index 0000000..43e9f69 --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Lower_Healthy_R.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bacc05a7e0ffc6199118d8df4f5f08f96f0c3e5e16b801af9068d2d8c5e3c8e +size 16777260 diff --git a/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Upper_Healthy_A.tga b/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Upper_Healthy_A.tga new file mode 100644 index 0000000..182e103 --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Upper_Healthy_A.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dd99d322f9b47a1b7bb33a46210ebbefaed4bac3cc2d5810724cb2447e64004 +size 50331692 diff --git a/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Upper_Healthy_E.tga b/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Upper_Healthy_E.tga new file mode 100644 index 0000000..9e2105d --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Upper_Healthy_E.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:447042876fdb670d8275d38e52e0dbd3e0474f8d42f287fbd1e6dfcba74251d7 +size 50331692 diff --git a/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Upper_Healthy_M.tga b/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Upper_Healthy_M.tga new file mode 100644 index 0000000..93a855c --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Upper_Healthy_M.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d4780db14122699fe997acfd022923ea49b55ee8b640d6f7ac1b4957ec971a9 +size 16777260 diff --git a/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Upper_Healthy_N.tga b/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Upper_Healthy_N.tga new file mode 100644 index 0000000..c2edb2d --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Upper_Healthy_N.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3de40608b9f7b560feb1af5bc7abe6908799e007f059ecaafd070258f77204e +size 50331692 diff --git a/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Upper_Healthy_O.tga b/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Upper_Healthy_O.tga new file mode 100644 index 0000000..7429474 --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Upper_Healthy_O.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a0731a4b150ac34f5edd0369fc8967466c70b9c3377f6958e7e1388226b3f8f +size 50331692 diff --git a/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Upper_Healthy_R.tga b/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Upper_Healthy_R.tga new file mode 100644 index 0000000..e2bfa70 --- /dev/null +++ b/Starbreach/Resources/Character/MainCharacter_Healthy/MainCharacter_Upper_Healthy_R.tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ebd8c0e386d9b719907b1cef8f4d154b21b2105e4c52fccb9c21b0fe2887a59 +size 16777260 diff --git a/Starbreach/Resources/Character/Main_character_base.FBX b/Starbreach/Resources/Character/Main_character_base.FBX new file mode 100644 index 0000000..2d84523 --- /dev/null +++ b/Starbreach/Resources/Character/Main_character_base.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87d61830b71a965fffd7e5bc867e7170406042ed8f84387d73a7cfd5464c613a +size 55309376 diff --git a/Starbreach/Resources/Character/Main_character_base_02.FBX b/Starbreach/Resources/Character/Main_character_base_02.FBX new file mode 100644 index 0000000..28f10fb --- /dev/null +++ b/Starbreach/Resources/Character/Main_character_base_02.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c06e49e57148204fb6aa356e4554ea758dc707100ebe53c4e9cda834ffb39a39 +size 5028144 diff --git a/Starbreach/Resources/Character/Main_character_base_04.FBX b/Starbreach/Resources/Character/Main_character_base_04.FBX new file mode 100644 index 0000000..dd0e7a0 --- /dev/null +++ b/Starbreach/Resources/Character/Main_character_base_04.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ef84e39588fb95264644431ea72622108d21452a8683ed846de62cc636ce4f2 +size 8053440 diff --git a/Starbreach/Resources/Character/Target.png b/Starbreach/Resources/Character/Target.png new file mode 100644 index 0000000..bb5a631 --- /dev/null +++ b/Starbreach/Resources/Character/Target.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c8d7a2dd856270473ff168eafb9cca80b3a9950f9dee0e124d895800241cf41 +size 3484 diff --git a/Starbreach/Resources/Character/Upper [AlbedoM].tga b/Starbreach/Resources/Character/Upper [AlbedoM].tga new file mode 100644 index 0000000..182e103 --- /dev/null +++ b/Starbreach/Resources/Character/Upper [AlbedoM].tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dd99d322f9b47a1b7bb33a46210ebbefaed4bac3cc2d5810724cb2447e64004 +size 50331692 diff --git a/Starbreach/Resources/Character/Upper [Emissive].tga b/Starbreach/Resources/Character/Upper [Emissive].tga new file mode 100644 index 0000000..9e2105d --- /dev/null +++ b/Starbreach/Resources/Character/Upper [Emissive].tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:447042876fdb670d8275d38e52e0dbd3e0474f8d42f287fbd1e6dfcba74251d7 +size 50331692 diff --git a/Starbreach/Resources/Character/Upper [Gloss].tga b/Starbreach/Resources/Character/Upper [Gloss].tga new file mode 100644 index 0000000..78d7669 --- /dev/null +++ b/Starbreach/Resources/Character/Upper [Gloss].tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d58a3ba698aec166e6c7410bb7deaefb9c7af47a2a35e943e347531ac6e86e00 +size 16777260 diff --git a/Starbreach/Resources/Character/Upper [Metalness].tga b/Starbreach/Resources/Character/Upper [Metalness].tga new file mode 100644 index 0000000..93a855c --- /dev/null +++ b/Starbreach/Resources/Character/Upper [Metalness].tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d4780db14122699fe997acfd022923ea49b55ee8b640d6f7ac1b4957ec971a9 +size 16777260 diff --git a/Starbreach/Resources/Character/Upper [Normal].tga b/Starbreach/Resources/Character/Upper [Normal].tga new file mode 100644 index 0000000..c2edb2d --- /dev/null +++ b/Starbreach/Resources/Character/Upper [Normal].tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3de40608b9f7b560feb1af5bc7abe6908799e007f059ecaafd070258f77204e +size 50331692 diff --git a/Starbreach/Resources/Character/Upper [Occlusion].tga b/Starbreach/Resources/Character/Upper [Occlusion].tga new file mode 100644 index 0000000..7429474 --- /dev/null +++ b/Starbreach/Resources/Character/Upper [Occlusion].tga @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a0731a4b150ac34f5edd0369fc8967466c70b9c3377f6958e7e1388226b3f8f +size 50331692 diff --git a/Starbreach/Resources/Character/__mesh_pose.FBX b/Starbreach/Resources/Character/__mesh_pose.FBX new file mode 100644 index 0000000..2d84523 --- /dev/null +++ b/Starbreach/Resources/Character/__mesh_pose.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87d61830b71a965fffd7e5bc867e7170406042ed8f84387d73a7cfd5464c613a +size 55309376 diff --git a/Starbreach/Resources/CheckerTexture.png b/Starbreach/Resources/CheckerTexture.png new file mode 100644 index 0000000..0f85ef1 --- /dev/null +++ b/Starbreach/Resources/CheckerTexture.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adeaa8a5f6310e456c88251c7dd05c6115f575c826286860487ad8a1acb510be +size 479 diff --git a/Starbreach/Resources/Clouds.dds b/Starbreach/Resources/Clouds.dds new file mode 100644 index 0000000..28651d3 --- /dev/null +++ b/Starbreach/Resources/Clouds.dds @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81ddf72674c60e7a709cd026237a32b71ca1acd43bfb4efdd282e878b66f5c50 +size 402653312 diff --git a/Starbreach/Resources/Drones/Drone/DroneLower_A.png b/Starbreach/Resources/Drones/Drone/DroneLower_A.png new file mode 100644 index 0000000..99d8dce --- /dev/null +++ b/Starbreach/Resources/Drones/Drone/DroneLower_A.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d64ce063f9849a7e471a1c4974048938defccdf0b842236723d270772c86514 +size 31794126 diff --git a/Starbreach/Resources/Drones/Drone/DroneLower_E.png b/Starbreach/Resources/Drones/Drone/DroneLower_E.png new file mode 100644 index 0000000..c762ddd --- /dev/null +++ b/Starbreach/Resources/Drones/Drone/DroneLower_E.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee7aadaf7177b6f6dfe9891a0c9bd87ffee5f1076c6d4f09fa357407883bb223 +size 1779498 diff --git a/Starbreach/Resources/Drones/Drone/DroneLower_G.png b/Starbreach/Resources/Drones/Drone/DroneLower_G.png new file mode 100644 index 0000000..a049df0 --- /dev/null +++ b/Starbreach/Resources/Drones/Drone/DroneLower_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46473b4ee5b44351abd3d5c2ac6a758707cb54ba02e5c7880c52e760b741704e +size 10516162 diff --git a/Starbreach/Resources/Drones/Drone/DroneLower_M.png b/Starbreach/Resources/Drones/Drone/DroneLower_M.png new file mode 100644 index 0000000..fef3505 --- /dev/null +++ b/Starbreach/Resources/Drones/Drone/DroneLower_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a674bedf958783d574778e7aa9018c5e90497e4ccfe6174cd617b21c2a306aa +size 6296246 diff --git a/Starbreach/Resources/Drones/Drone/DroneLower_N.png b/Starbreach/Resources/Drones/Drone/DroneLower_N.png new file mode 100644 index 0000000..02f45a7 --- /dev/null +++ b/Starbreach/Resources/Drones/Drone/DroneLower_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f875c6bee089c79106afc920d407298159aa61a5f7cd82ad130e1a075fb2287f +size 29769076 diff --git a/Starbreach/Resources/Drones/Drone/DroneLower_O.png b/Starbreach/Resources/Drones/Drone/DroneLower_O.png new file mode 100644 index 0000000..1e0cb43 --- /dev/null +++ b/Starbreach/Resources/Drones/Drone/DroneLower_O.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:635f9c6759f13a177dc09e31ad62be587516f0bcf7ed3a935d35a2e9cd4c8429 +size 3110552 diff --git a/Starbreach/Resources/Drones/Drone/DroneUpper_A.png b/Starbreach/Resources/Drones/Drone/DroneUpper_A.png new file mode 100644 index 0000000..064e671 --- /dev/null +++ b/Starbreach/Resources/Drones/Drone/DroneUpper_A.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9e20e57c0fdc6700488921791d410afded2820e8249e90ca64bfb026e7dcb87 +size 34181721 diff --git a/Starbreach/Resources/Drones/Drone/DroneUpper_Desaturated.png b/Starbreach/Resources/Drones/Drone/DroneUpper_Desaturated.png new file mode 100644 index 0000000..61edd80 --- /dev/null +++ b/Starbreach/Resources/Drones/Drone/DroneUpper_Desaturated.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c1c58abbfd04e2b13e96846df8fd60bec039afce2af8773fa7bea32e6ec7f25 +size 1828740 diff --git a/Starbreach/Resources/Drones/Drone/DroneUpper_E.png b/Starbreach/Resources/Drones/Drone/DroneUpper_E.png new file mode 100644 index 0000000..7ee0171 --- /dev/null +++ b/Starbreach/Resources/Drones/Drone/DroneUpper_E.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38b6120d40610a1625f8df8f84e947e8d2e0704f9c7c50f31127b05be33362dc +size 3219851 diff --git a/Starbreach/Resources/Drones/Drone/DroneUpper_G.png b/Starbreach/Resources/Drones/Drone/DroneUpper_G.png new file mode 100644 index 0000000..99c6a90 --- /dev/null +++ b/Starbreach/Resources/Drones/Drone/DroneUpper_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53d6cf185132287354393dd312572b81eb6457d06fc37a191ec006bbacc84ac8 +size 8986025 diff --git a/Starbreach/Resources/Drones/Drone/DroneUpper_M.png b/Starbreach/Resources/Drones/Drone/DroneUpper_M.png new file mode 100644 index 0000000..dd41c7e --- /dev/null +++ b/Starbreach/Resources/Drones/Drone/DroneUpper_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0571d7b7393611bde322fa9e6e58f47e7d6f1fccf9695460544d1f8f75fba56a +size 1852568 diff --git a/Starbreach/Resources/Drones/Drone/DroneUpper_N.png b/Starbreach/Resources/Drones/Drone/DroneUpper_N.png new file mode 100644 index 0000000..c0ae618 --- /dev/null +++ b/Starbreach/Resources/Drones/Drone/DroneUpper_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efd2c5f72cd4a54c9ff96ad6cb0d6903bcfe6881ac53d621f266134c1e9949a2 +size 26455128 diff --git a/Starbreach/Resources/Drones/Drone/DroneUpper_O.png b/Starbreach/Resources/Drones/Drone/DroneUpper_O.png new file mode 100644 index 0000000..fd3dc84 --- /dev/null +++ b/Starbreach/Resources/Drones/Drone/DroneUpper_O.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee44a0e8133a9e759603e92cc7b412e1fa0d17ded5786a4be4ff8266fde8016a +size 2482962 diff --git a/Starbreach/Resources/Drones/EnergyDrone/EnergyDrone_M.png b/Starbreach/Resources/Drones/EnergyDrone/EnergyDrone_M.png new file mode 100644 index 0000000..f3f6838 --- /dev/null +++ b/Starbreach/Resources/Drones/EnergyDrone/EnergyDrone_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82a4c61d3bc4ecf093f15248883506b1d2b42d76f4141563f6ae21ecea20e73d +size 6231055 diff --git a/Starbreach/Resources/Drones/EnergyDrone/EnergyDrone_N.png b/Starbreach/Resources/Drones/EnergyDrone/EnergyDrone_N.png new file mode 100644 index 0000000..4853879 --- /dev/null +++ b/Starbreach/Resources/Drones/EnergyDrone/EnergyDrone_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:069535a2e6e7d4b7d9e9d4ba61d834a5d5f204fe5615f21ef8fb9b83988c69cb +size 18788265 diff --git a/Starbreach/Resources/Drones/EnergyDrone/EnergyDrone_O.png b/Starbreach/Resources/Drones/EnergyDrone/EnergyDrone_O.png new file mode 100644 index 0000000..c1656b6 --- /dev/null +++ b/Starbreach/Resources/Drones/EnergyDrone/EnergyDrone_O.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82d66b7fceb8caebb7737fda5da584089cb9b89d7a98459c8e0e0635500ba78c +size 3969920 diff --git a/Starbreach/Resources/Drones/EnergyDrone/Fire.FBX b/Starbreach/Resources/Drones/EnergyDrone/Fire.FBX new file mode 100644 index 0000000..0eaf209 --- /dev/null +++ b/Starbreach/Resources/Drones/EnergyDrone/Fire.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1998945b52afda32c0a209ba112176817b080d5cebd01d11c6565463081ba567 +size 53792 diff --git a/Starbreach/Resources/Drones/EnergyDrone/Fly.FBX b/Starbreach/Resources/Drones/EnergyDrone/Fly.FBX new file mode 100644 index 0000000..4556e75 --- /dev/null +++ b/Starbreach/Resources/Drones/EnergyDrone/Fly.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e231ecd7008b4f06551a09cf7030c1aefef520fb96592e9ea793e06f9d0e2ac +size 48704 diff --git a/Starbreach/Resources/Drones/EnergyDrone/Ilde.FBX b/Starbreach/Resources/Drones/EnergyDrone/Ilde.FBX new file mode 100644 index 0000000..039a1c2 --- /dev/null +++ b/Starbreach/Resources/Drones/EnergyDrone/Ilde.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a668a5f08215792ed184851144879db93de0a6f2e648bbd221a56627eebafdd +size 48688 diff --git a/Starbreach/Resources/Drones/EnergyDrone/Model.FBX b/Starbreach/Resources/Drones/EnergyDrone/Model.FBX new file mode 100644 index 0000000..250a7cd --- /dev/null +++ b/Starbreach/Resources/Drones/EnergyDrone/Model.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c16c214bcfe6dc0d0c8ccb50bde45f3d4bf5076a2133f0f1179913af1ed7413 +size 1280496 diff --git a/Starbreach/Resources/Drones/Rocket/Explosion.png b/Starbreach/Resources/Drones/Rocket/Explosion.png new file mode 100644 index 0000000..eac2c61 --- /dev/null +++ b/Starbreach/Resources/Drones/Rocket/Explosion.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03417b2e2ba3ce389ab22a0436eddc0aade9d7e606c6cec8ebcae4d2c2c9196c +size 2593399 diff --git a/Starbreach/Resources/Drones/Rocket/Explosion_Fire_Grayscale.png b/Starbreach/Resources/Drones/Rocket/Explosion_Fire_Grayscale.png new file mode 100644 index 0000000..924b2f0 --- /dev/null +++ b/Starbreach/Resources/Drones/Rocket/Explosion_Fire_Grayscale.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47dc3dffb3317b60c66554c23cbee4252749cfb5f4db15c7ab8cb9ca2285e325 +size 3914813 diff --git a/Starbreach/Resources/Drones/Rocket/Explosion_Grayscale.png b/Starbreach/Resources/Drones/Rocket/Explosion_Grayscale.png new file mode 100644 index 0000000..ccc9ad7 --- /dev/null +++ b/Starbreach/Resources/Drones/Rocket/Explosion_Grayscale.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d76e06e1b08111c1b3d4f35d30273646328c9863ab19b1ef0dafd256eb0681f5 +size 3839432 diff --git a/Starbreach/Resources/Drones/Rocket/Rocket.fbx b/Starbreach/Resources/Drones/Rocket/Rocket.fbx new file mode 100644 index 0000000..18113ae --- /dev/null +++ b/Starbreach/Resources/Drones/Rocket/Rocket.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5eedf4a089da54fefc20dd58b8d4235c0f35c777e432df49e4f6dd37ebf9954b +size 32796 diff --git a/Starbreach/Resources/Drones/Rocket/Rocket_A.png b/Starbreach/Resources/Drones/Rocket/Rocket_A.png new file mode 100644 index 0000000..de1f8ac --- /dev/null +++ b/Starbreach/Resources/Drones/Rocket/Rocket_A.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d151af0a3c53b1f999048e037bea89ac898b5e34ec09412205eca942abc2f55 +size 14854382 diff --git a/Starbreach/Resources/Drones/Rocket/Rocket_E.png b/Starbreach/Resources/Drones/Rocket/Rocket_E.png new file mode 100644 index 0000000..b9f4334 --- /dev/null +++ b/Starbreach/Resources/Drones/Rocket/Rocket_E.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a90dd6a38f3a54843de82399cd55722f367e688d740ed0d5ec4260742a0ed4cc +size 1903639 diff --git a/Starbreach/Resources/Drones/Rocket/Rocket_G.png b/Starbreach/Resources/Drones/Rocket/Rocket_G.png new file mode 100644 index 0000000..1f3dcf9 --- /dev/null +++ b/Starbreach/Resources/Drones/Rocket/Rocket_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60b4b78ae5db804f5b61bccbaa8cbbc438e71babcef34dff4edb570e25462800 +size 3420878 diff --git a/Starbreach/Resources/Drones/Rocket/Rocket_M.png b/Starbreach/Resources/Drones/Rocket/Rocket_M.png new file mode 100644 index 0000000..e7cc102 --- /dev/null +++ b/Starbreach/Resources/Drones/Rocket/Rocket_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:685b373bd33ff4cad90a6e0645715eb0f80139d52127b271bbd079cb7ca6921e +size 4092108 diff --git a/Starbreach/Resources/Drones/Rocket/Rocket_N.png b/Starbreach/Resources/Drones/Rocket/Rocket_N.png new file mode 100644 index 0000000..36733fb --- /dev/null +++ b/Starbreach/Resources/Drones/Rocket/Rocket_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c29608cae9db7cda7ebbfbdfe3fbb7fc1918e3aa20f0cbce90eba7825badf7c3 +size 16287939 diff --git a/Starbreach/Resources/Drones/Rocket/Rocket_O.png b/Starbreach/Resources/Drones/Rocket/Rocket_O.png new file mode 100644 index 0000000..42d5211 --- /dev/null +++ b/Starbreach/Resources/Drones/Rocket/Rocket_O.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2ce9bffc1d2f3a929ae66a6272a9e9679b7a4f7f1480e5da4632936571eb5bb +size 1566815 diff --git a/Starbreach/Resources/Drones/RocketDrone/EnergyDrone_A.png b/Starbreach/Resources/Drones/RocketDrone/EnergyDrone_A.png new file mode 100644 index 0000000..b53cad2 --- /dev/null +++ b/Starbreach/Resources/Drones/RocketDrone/EnergyDrone_A.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44c662b3ce1057209bdc3eb3481d9cec8c21124a02e44d41f2eaf5ae772f6c32 +size 21759961 diff --git a/Starbreach/Resources/Drones/RocketDrone/EnergyDrone_E.png b/Starbreach/Resources/Drones/RocketDrone/EnergyDrone_E.png new file mode 100644 index 0000000..ba24f1b --- /dev/null +++ b/Starbreach/Resources/Drones/RocketDrone/EnergyDrone_E.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3728d066a5e3eeed0e514a891dd4cedabec6fae7ec064460bbd65b324682f1e +size 2453306 diff --git a/Starbreach/Resources/Drones/RocketDrone/EnergyDrone_G.png b/Starbreach/Resources/Drones/RocketDrone/EnergyDrone_G.png new file mode 100644 index 0000000..5f52525 --- /dev/null +++ b/Starbreach/Resources/Drones/RocketDrone/EnergyDrone_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a0dfef2824f9330afdb0c93cb3db9e48c6b684d601aff70eaacc276f6d0f954 +size 7890588 diff --git a/Starbreach/Resources/Drones/RocketDrone/Fire.FBX b/Starbreach/Resources/Drones/RocketDrone/Fire.FBX new file mode 100644 index 0000000..b6635c7 --- /dev/null +++ b/Starbreach/Resources/Drones/RocketDrone/Fire.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d27e2b7813838399164f821319dca364a1d7c170ca03b59badfb3c2f0d3bf18 +size 102220 diff --git a/Starbreach/Resources/Drones/RocketDrone/Fly.FBX b/Starbreach/Resources/Drones/RocketDrone/Fly.FBX new file mode 100644 index 0000000..0eb35c6 --- /dev/null +++ b/Starbreach/Resources/Drones/RocketDrone/Fly.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99d6b9b73c772a06bdf2c2948a044531c154376e3494e7e36811d88c4fe3a2cb +size 90144 diff --git a/Starbreach/Resources/Drones/RocketDrone/Idle.FBX b/Starbreach/Resources/Drones/RocketDrone/Idle.FBX new file mode 100644 index 0000000..8e97a45 --- /dev/null +++ b/Starbreach/Resources/Drones/RocketDrone/Idle.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:727e19c59094b46957ee5fed57d26e96e0735738154abf66d9d2d67d0f947675 +size 90144 diff --git a/Starbreach/Resources/Drones/RocketDrone/Model.FBX b/Starbreach/Resources/Drones/RocketDrone/Model.FBX new file mode 100644 index 0000000..3b6f656 --- /dev/null +++ b/Starbreach/Resources/Drones/RocketDrone/Model.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4f188c29e3afe79b9f78df3a9984109dd636f0953da8d444aa84f7378a7c1e0 +size 1169792 diff --git a/Starbreach/Resources/Drones/RocketDrone/RocketDrone_A.png b/Starbreach/Resources/Drones/RocketDrone/RocketDrone_A.png new file mode 100644 index 0000000..5c47a29 --- /dev/null +++ b/Starbreach/Resources/Drones/RocketDrone/RocketDrone_A.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b3ec37ac59ba23a41cd3e88d36dcdfb82ccd5a79b06be5155b13505c0f29b5b +size 23090320 diff --git a/Starbreach/Resources/Drones/RocketDrone/RocketDrone_E.png b/Starbreach/Resources/Drones/RocketDrone/RocketDrone_E.png new file mode 100644 index 0000000..438ceaa --- /dev/null +++ b/Starbreach/Resources/Drones/RocketDrone/RocketDrone_E.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f8f97e3684de8c77203b95b9eb1196d67c00c1aa0a298ba9d2aa97b6133ce38 +size 2834156 diff --git a/Starbreach/Resources/Drones/RocketDrone/RocketDrone_G.png b/Starbreach/Resources/Drones/RocketDrone/RocketDrone_G.png new file mode 100644 index 0000000..22c5e1e --- /dev/null +++ b/Starbreach/Resources/Drones/RocketDrone/RocketDrone_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46b9f9777c4c07d4895499eca1fb8df82bf9f19c037aa6cddd8a7d5843ed0d67 +size 8696430 diff --git a/Starbreach/Resources/Drones/RocketDrone/RocketDrone_M.png b/Starbreach/Resources/Drones/RocketDrone/RocketDrone_M.png new file mode 100644 index 0000000..41dbc46 --- /dev/null +++ b/Starbreach/Resources/Drones/RocketDrone/RocketDrone_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3d54721a72151e1e0d411ab899b8d46dbdcb238c99d63edc9583665711f1767 +size 1779979 diff --git a/Starbreach/Resources/Drones/RocketDrone/RocketDrone_N.png b/Starbreach/Resources/Drones/RocketDrone/RocketDrone_N.png new file mode 100644 index 0000000..a54039c --- /dev/null +++ b/Starbreach/Resources/Drones/RocketDrone/RocketDrone_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35c46b3d0362025fbf024065fab1f65367dbd6dcdfab17b858380bc8ceda48f4 +size 22433596 diff --git a/Starbreach/Resources/Drones/RocketDrone/RocketDrone_O.png b/Starbreach/Resources/Drones/RocketDrone/RocketDrone_O.png new file mode 100644 index 0000000..487cba1 --- /dev/null +++ b/Starbreach/Resources/Drones/RocketDrone/RocketDrone_O.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c169491b1809c40c5b342189cebda742dfe583226a70821363b62b10cc039566 +size 1908524 diff --git a/Starbreach/Resources/Drones/Sounds/Death.wav b/Starbreach/Resources/Drones/Sounds/Death.wav new file mode 100644 index 0000000..970d272 --- /dev/null +++ b/Starbreach/Resources/Drones/Sounds/Death.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:996c60aee3b48056954dd8a1d9809f9931bf440978b5a875584ab27660b48212 +size 262216 diff --git a/Starbreach/Resources/Drones/Sounds/Engine0.wav b/Starbreach/Resources/Drones/Sounds/Engine0.wav new file mode 100644 index 0000000..12ffff3 --- /dev/null +++ b/Starbreach/Resources/Drones/Sounds/Engine0.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d424b161e84ecf61bb826e1f724a737dbaa51687eed8b77c4fe5a210a4fada6 +size 240044 diff --git a/Starbreach/Resources/Drones/Sounds/Engine1.wav b/Starbreach/Resources/Drones/Sounds/Engine1.wav new file mode 100644 index 0000000..0f5c05e --- /dev/null +++ b/Starbreach/Resources/Drones/Sounds/Engine1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87fd8b07e7b8305abc400e4dee89ca2c1cb01988df3ada8ccaf5f0b3b59134a2 +size 150044 diff --git a/Starbreach/Resources/Drones/Sounds/Engine2.wav b/Starbreach/Resources/Drones/Sounds/Engine2.wav new file mode 100644 index 0000000..335ab8b --- /dev/null +++ b/Starbreach/Resources/Drones/Sounds/Engine2.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:336da6001c4f90ade7354009ddd37f9af0115398f001120af9f55f338999fdda +size 252044 diff --git a/Starbreach/Resources/Drones/Sounds/Explosion.wav b/Starbreach/Resources/Drones/Sounds/Explosion.wav new file mode 100644 index 0000000..79a8a5d --- /dev/null +++ b/Starbreach/Resources/Drones/Sounds/Explosion.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95e4d918d4ff3717d15a5233dbbfabbfd8a8510a189451f226e9da5fc2b1aa66 +size 272178 diff --git a/Starbreach/Resources/Drones/Sounds/Hit0.wav b/Starbreach/Resources/Drones/Sounds/Hit0.wav new file mode 100644 index 0000000..db5fa3d --- /dev/null +++ b/Starbreach/Resources/Drones/Sounds/Hit0.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f670fd2d40413ac45cd59faf0f6b669c1045df951032c48c1493cb6022bc07b9 +size 79194 diff --git a/Starbreach/Resources/Drones/Sounds/Hit1.wav b/Starbreach/Resources/Drones/Sounds/Hit1.wav new file mode 100644 index 0000000..7181dd8 --- /dev/null +++ b/Starbreach/Resources/Drones/Sounds/Hit1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:629b4507aaf57507fda81d1aad496120e32b38c6a946e7961872cb65184e6d27 +size 71522 diff --git a/Starbreach/Resources/Drones/Sounds/LaserFire0.wav b/Starbreach/Resources/Drones/Sounds/LaserFire0.wav new file mode 100644 index 0000000..f580d31 --- /dev/null +++ b/Starbreach/Resources/Drones/Sounds/LaserFire0.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2805f1a857313ed00cc5c2a83ac5e57b8a1821c8aa2690b8e36e52806895fe49 +size 74102 diff --git a/Starbreach/Resources/Drones/Sounds/LaserFire1.wav b/Starbreach/Resources/Drones/Sounds/LaserFire1.wav new file mode 100644 index 0000000..2084bde --- /dev/null +++ b/Starbreach/Resources/Drones/Sounds/LaserFire1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29239ae5cc8ec4593feb12b3bffc16187c256c3090cab835970c80c1bd1b2856 +size 80252 diff --git a/Starbreach/Resources/Drones/Sounds/LaserImpact0.wav b/Starbreach/Resources/Drones/Sounds/LaserImpact0.wav new file mode 100644 index 0000000..0b95677 --- /dev/null +++ b/Starbreach/Resources/Drones/Sounds/LaserImpact0.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09f443ee590710d661201caa0f4c7e5db5355352be07388fc3608708e0cb4325 +size 140656 diff --git a/Starbreach/Resources/Drones/Sounds/LaserImpact1.wav b/Starbreach/Resources/Drones/Sounds/LaserImpact1.wav new file mode 100644 index 0000000..a0ef0b0 --- /dev/null +++ b/Starbreach/Resources/Drones/Sounds/LaserImpact1.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd99ca39258fc7a4abc647abca1ca79ad32aae6a1580446e3b2768150cb7987c +size 142200 diff --git a/Starbreach/Resources/Drones/Sounds/RocketFire.wav b/Starbreach/Resources/Drones/Sounds/RocketFire.wav new file mode 100644 index 0000000..587adf6 --- /dev/null +++ b/Starbreach/Resources/Drones/Sounds/RocketFire.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4341e73be8d866abd49e655dcc494bd901caad2065d84026f9cb3c896cb0b93a +size 137154 diff --git a/Starbreach/Resources/Drones/Sounds/RocketImpact.wav b/Starbreach/Resources/Drones/Sounds/RocketImpact.wav new file mode 100644 index 0000000..75a322e --- /dev/null +++ b/Starbreach/Resources/Drones/Sounds/RocketImpact.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7605c656546abc470e63d701fcb7d0a95d31e5d5f10e9d8a3ebba13192c80576 +size 230664 diff --git a/Starbreach/Resources/EnemyDrone/DroneFr1.fbx b/Starbreach/Resources/EnemyDrone/DroneFr1.fbx new file mode 100644 index 0000000..d90e126 --- /dev/null +++ b/Starbreach/Resources/EnemyDrone/DroneFr1.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62bcb70d41a56875bfa4f3aa23abdb4267ed73f2265b59c38e6ba9996f290084 +size 40156 diff --git a/Starbreach/Resources/EnemyDrone/DroneFr10.fbx b/Starbreach/Resources/EnemyDrone/DroneFr10.fbx new file mode 100644 index 0000000..54b8d5c --- /dev/null +++ b/Starbreach/Resources/EnemyDrone/DroneFr10.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a614607c13f629e78c3c8db772d28f16bcc7cbae911797f10f54b7fc9ae6190e +size 107004 diff --git a/Starbreach/Resources/EnemyDrone/DroneFr2.fbx b/Starbreach/Resources/EnemyDrone/DroneFr2.fbx new file mode 100644 index 0000000..8fad7ac --- /dev/null +++ b/Starbreach/Resources/EnemyDrone/DroneFr2.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6db0547bd9975c7b15323651071c1fd42708d74a585974c902595fe1bdf74b47 +size 23948 diff --git a/Starbreach/Resources/EnemyDrone/DroneFr3.fbx b/Starbreach/Resources/EnemyDrone/DroneFr3.fbx new file mode 100644 index 0000000..d1eef70 --- /dev/null +++ b/Starbreach/Resources/EnemyDrone/DroneFr3.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb27fa55e3d693c5fb9e4dac7e5f4ad80932aa30022994139ee34759f6b698e1 +size 23756 diff --git a/Starbreach/Resources/EnemyDrone/DroneFr4.fbx b/Starbreach/Resources/EnemyDrone/DroneFr4.fbx new file mode 100644 index 0000000..ed203dc --- /dev/null +++ b/Starbreach/Resources/EnemyDrone/DroneFr4.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe653e33a6a63e3fd398e1d9fe7f6bc78a743fe52b5068685164a6bd06abfecd +size 21260 diff --git a/Starbreach/Resources/EnemyDrone/DroneFr5.fbx b/Starbreach/Resources/EnemyDrone/DroneFr5.fbx new file mode 100644 index 0000000..6497e84 --- /dev/null +++ b/Starbreach/Resources/EnemyDrone/DroneFr5.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0d76546789daf7f0f1027b51cb1da19ccf1e3ebb092dc237763fc51bd0fbdbb +size 23804 diff --git a/Starbreach/Resources/EnemyDrone/DroneFr6.fbx b/Starbreach/Resources/EnemyDrone/DroneFr6.fbx new file mode 100644 index 0000000..d629698 --- /dev/null +++ b/Starbreach/Resources/EnemyDrone/DroneFr6.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c992c08605adee0778ac08ffec748a3f211fcf3aaee3267f595567618831e7ad +size 21260 diff --git a/Starbreach/Resources/EnemyDrone/DroneFr7.fbx b/Starbreach/Resources/EnemyDrone/DroneFr7.fbx new file mode 100644 index 0000000..ba80ff8 --- /dev/null +++ b/Starbreach/Resources/EnemyDrone/DroneFr7.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8eee2ed75e2115bb0478e05907bb5b7416643a4f6394bad9aa5ca98086aa2119 +size 75980 diff --git a/Starbreach/Resources/EnemyDrone/DroneFr8.fbx b/Starbreach/Resources/EnemyDrone/DroneFr8.fbx new file mode 100644 index 0000000..f8b6425 --- /dev/null +++ b/Starbreach/Resources/EnemyDrone/DroneFr8.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3462500ca9de48e1e19d13eeb2c44955e8faf8c97046a88fdc82cfb5a7ab60cc +size 25948 diff --git a/Starbreach/Resources/EnemyDrone/DroneFr9.fbx b/Starbreach/Resources/EnemyDrone/DroneFr9.fbx new file mode 100644 index 0000000..63473f8 --- /dev/null +++ b/Starbreach/Resources/EnemyDrone/DroneFr9.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2c615d952dfd8b6f63f1fef6a7a2b5ce2e14693897f5b4f81cca4674d9b55d1 +size 48940 diff --git a/Starbreach/Resources/EnemyDrone/DroneFrBody.fbx b/Starbreach/Resources/EnemyDrone/DroneFrBody.fbx new file mode 100644 index 0000000..00eac6c --- /dev/null +++ b/Starbreach/Resources/EnemyDrone/DroneFrBody.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eab800bdc360e37e23b690b6ca4cb95e5cb4a5cb971cf51873a18a3276bac0ca +size 235468 diff --git a/Starbreach/Resources/EnemyDrone/Drone_fly.FBX b/Starbreach/Resources/EnemyDrone/Drone_fly.FBX new file mode 100644 index 0000000..6cb2bca --- /dev/null +++ b/Starbreach/Resources/EnemyDrone/Drone_fly.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:867c80f10edec2844f7266d7f0b693fee85278a2c9ddd7713ff1eed0ed166b04 +size 22624 diff --git a/Starbreach/Resources/EnemyDrone/Drone_idle.FBX b/Starbreach/Resources/EnemyDrone/Drone_idle.FBX new file mode 100644 index 0000000..bd430da --- /dev/null +++ b/Starbreach/Resources/EnemyDrone/Drone_idle.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b62142ff9c26dd292fb5debbeb6e24289cc880b1351b5dc45890a7d72d6e2d5 +size 23264 diff --git a/Starbreach/Resources/EnemyDrone/Drone_pose_.FBX b/Starbreach/Resources/EnemyDrone/Drone_pose_.FBX new file mode 100644 index 0000000..0b7807e --- /dev/null +++ b/Starbreach/Resources/EnemyDrone/Drone_pose_.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cba404ab126a34dac88742e709b44686ceac7248dffa1a7889fa2806ce827b68 +size 969648 diff --git a/Starbreach/Resources/EnemyDrone/Drone_shot_recoil.FBX b/Starbreach/Resources/EnemyDrone/Drone_shot_recoil.FBX new file mode 100644 index 0000000..0c879b9 --- /dev/null +++ b/Starbreach/Resources/EnemyDrone/Drone_shot_recoil.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5504894029374b8d37508ed2b2093acba1a1c9533241d79041ebd7f47a860f14 +size 30336 diff --git a/Starbreach/Resources/EnemyDrone/EnemyDroneFractured.fbx b/Starbreach/Resources/EnemyDrone/EnemyDroneFractured.fbx new file mode 100644 index 0000000..b0f47d1 --- /dev/null +++ b/Starbreach/Resources/EnemyDrone/EnemyDroneFractured.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d665ee6dd07d25ff021da57898c3b126760c5e9ae41bbe7148f8842b21dc47ad +size 513964 diff --git a/Starbreach/Resources/EnemyDrone/EnemyDrone_Rocket.FBX b/Starbreach/Resources/EnemyDrone/EnemyDrone_Rocket.FBX new file mode 100644 index 0000000..3c5355e --- /dev/null +++ b/Starbreach/Resources/EnemyDrone/EnemyDrone_Rocket.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5203daa1a3dfa805cbd30343b1c4a20d642d79c16381e1396022ec199f9a6cf +size 930224 diff --git a/Starbreach/Resources/EnemyDrone/EnemyDrone_Rocket_cutted.FBX b/Starbreach/Resources/EnemyDrone/EnemyDrone_Rocket_cutted.FBX new file mode 100644 index 0000000..e68113a --- /dev/null +++ b/Starbreach/Resources/EnemyDrone/EnemyDrone_Rocket_cutted.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dc20a46ba70298199f4083f59b4b538145f87985729b11b9711ec66edfb9fbf +size 672336 diff --git a/Starbreach/Resources/EnemyDrone/EnemyDrone_Rocket_fly forward.FBX b/Starbreach/Resources/EnemyDrone/EnemyDrone_Rocket_fly forward.FBX new file mode 100644 index 0000000..1aab6f9 --- /dev/null +++ b/Starbreach/Resources/EnemyDrone/EnemyDrone_Rocket_fly forward.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f42a0041b4b158fa22f437bbef6c00b19b73cb65962e5380d22a7c5d1a37a3a +size 39408 diff --git a/Starbreach/Resources/EnemyDrone/EnemyDrone_Rocket_idle.FBX b/Starbreach/Resources/EnemyDrone/EnemyDrone_Rocket_idle.FBX new file mode 100644 index 0000000..c4611c3 --- /dev/null +++ b/Starbreach/Resources/EnemyDrone/EnemyDrone_Rocket_idle.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643cf6107f3312e1c26a8670001aeb6d0b9ef2b972fc39fc487ee8698ba8e1e3 +size 40864 diff --git a/Starbreach/Resources/EnemyDrone/EnemyDrone_Rocket_recoil.FBX b/Starbreach/Resources/EnemyDrone/EnemyDrone_Rocket_recoil.FBX new file mode 100644 index 0000000..c86eeb0 --- /dev/null +++ b/Starbreach/Resources/EnemyDrone/EnemyDrone_Rocket_recoil.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0bd5ee5780cc358b53e37c4bfe90d470b2c2b6909958861bcbca0831505b655 +size 39568 diff --git a/Starbreach/Resources/EnemyDrone/EnemyDrone_dummy.fbx b/Starbreach/Resources/EnemyDrone/EnemyDrone_dummy.fbx new file mode 100644 index 0000000..0d8347d --- /dev/null +++ b/Starbreach/Resources/EnemyDrone/EnemyDrone_dummy.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4524899e2250cdb7ebddc2a33c675ad594cf7d50801cbb966d6010c14bf87730 +size 116912 diff --git a/Starbreach/Resources/EnemyDrone/Fractured.blend b/Starbreach/Resources/EnemyDrone/Fractured.blend new file mode 100644 index 0000000..9cfa887 --- /dev/null +++ b/Starbreach/Resources/EnemyDrone/Fractured.blend @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21c5c5b2307628f2db5515217938ae85cc5076a141dcfb514d9b6e37249df923 +size 2187080 diff --git a/Starbreach/Resources/EnvironmentCapture.dds b/Starbreach/Resources/EnvironmentCapture.dds new file mode 100644 index 0000000..4ce3451 --- /dev/null +++ b/Starbreach/Resources/EnvironmentCapture.dds @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e01f8d18431ca6fd893afb9c4fbbda1be3b6bc6f52a926fb5a8dfceb84dd747e +size 50331796 diff --git a/Starbreach/Resources/EnvironmentMap.dds b/Starbreach/Resources/EnvironmentMap.dds new file mode 100644 index 0000000..d35153f --- /dev/null +++ b/Starbreach/Resources/EnvironmentMap.dds @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d974a948bd1191a3eda9f61b6662d69d40c789610fde3a8081cadd24be65b2f3 +size 25165952 diff --git a/Starbreach/Resources/Gameplay/LaserFence/LaserFenceAnim.FBX b/Starbreach/Resources/Gameplay/LaserFence/LaserFenceAnim.FBX new file mode 100644 index 0000000..6e557c4 --- /dev/null +++ b/Starbreach/Resources/Gameplay/LaserFence/LaserFenceAnim.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eed018f5d7a97d2845ed85f9b31611a31bd1883b8265b1b23a265cfa5aa129d4 +size 1303184 diff --git a/Starbreach/Resources/Gameplay/LaserFence/LaserFence_down.FBX b/Starbreach/Resources/Gameplay/LaserFence/LaserFence_down.FBX new file mode 100644 index 0000000..6cee8ae --- /dev/null +++ b/Starbreach/Resources/Gameplay/LaserFence/LaserFence_down.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a2d5d3a4bf0bdf1a35057edae01071f2b782224c1df610ff19aba462f0c705b +size 323232 diff --git a/Starbreach/Resources/Gameplay/LaserFence/LaserFence_up.FBX b/Starbreach/Resources/Gameplay/LaserFence/LaserFence_up.FBX new file mode 100644 index 0000000..e2f6896 --- /dev/null +++ b/Starbreach/Resources/Gameplay/LaserFence/LaserFence_up.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cfe2a5e027b27013e81a7cd958814f5b23c1ab134ddf413336ce4efc276d9d0 +size 935472 diff --git a/Starbreach/Resources/Gameplay/LaserFence/LaserWall.FBX b/Starbreach/Resources/Gameplay/LaserFence/LaserWall.FBX new file mode 100644 index 0000000..007d8a1 --- /dev/null +++ b/Starbreach/Resources/Gameplay/LaserFence/LaserWall.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bea58b3a5a804f04e8b914c8ada51b3699f90da403c6440f3416f45183a1b1db +size 1368288 diff --git a/Starbreach/Resources/Gameplay/LaserFence/LaserWall.png b/Starbreach/Resources/Gameplay/LaserFence/LaserWall.png new file mode 100644 index 0000000..e534619 --- /dev/null +++ b/Starbreach/Resources/Gameplay/LaserFence/LaserWall.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8eb778c7e66da87774492cf866394f2a05cad62ea03f6461712297881f49fa5 +size 6365761 diff --git a/Starbreach/Resources/Gameplay/Plate/Disable.wav b/Starbreach/Resources/Gameplay/Plate/Disable.wav new file mode 100644 index 0000000..9803da2 --- /dev/null +++ b/Starbreach/Resources/Gameplay/Plate/Disable.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01adac6ab3b833735a1fa7231a47eb16589ce37cb6f67ae3f16d0366856ebb78 +size 52306 diff --git a/Starbreach/Resources/Gameplay/Plate/Enable.wav b/Starbreach/Resources/Gameplay/Plate/Enable.wav new file mode 100644 index 0000000..7b42b30 --- /dev/null +++ b/Starbreach/Resources/Gameplay/Plate/Enable.wav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97c6bc284bc759b90483ae41c1d3cab987482489ae623751358ce5bca5dd7848 +size 70472 diff --git a/Starbreach/Resources/Gameplay/Plate/FloorButton.FBX b/Starbreach/Resources/Gameplay/Plate/FloorButton.FBX new file mode 100644 index 0000000..7569eb8 --- /dev/null +++ b/Starbreach/Resources/Gameplay/Plate/FloorButton.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd3d9ad1d14d4821f95770b07e7268c3a7494a2951cc9bfdc9e282a44f119e6e +size 38672 diff --git a/Starbreach/Resources/Gameplay/Plate/Plate1R_D.png b/Starbreach/Resources/Gameplay/Plate/Plate1R_D.png new file mode 100644 index 0000000..2320a02 --- /dev/null +++ b/Starbreach/Resources/Gameplay/Plate/Plate1R_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cd23a6c2bb9cce920a57dbc166b25105eb99b9b4fae10cc4548f7a651b0acb1 +size 2201041 diff --git a/Starbreach/Resources/Gameplay/Plate/Plate1R_G.png b/Starbreach/Resources/Gameplay/Plate/Plate1R_G.png new file mode 100644 index 0000000..7738ff1 --- /dev/null +++ b/Starbreach/Resources/Gameplay/Plate/Plate1R_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c71e68e95d7306ce85d51ace8402de331860bc677ca069847ba489bfe9791ae +size 772221 diff --git a/Starbreach/Resources/Gameplay/Plate/Plate1R_M.png b/Starbreach/Resources/Gameplay/Plate/Plate1R_M.png new file mode 100644 index 0000000..e4de98f --- /dev/null +++ b/Starbreach/Resources/Gameplay/Plate/Plate1R_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc6d9f57e94595ccfb6c4c4a5631f6c6c0751ba3d164a5c744ec6fc815350549 +size 872478 diff --git a/Starbreach/Resources/Gameplay/Plate/Plate1R_N.png b/Starbreach/Resources/Gameplay/Plate/Plate1R_N.png new file mode 100644 index 0000000..cb2cc74 --- /dev/null +++ b/Starbreach/Resources/Gameplay/Plate/Plate1R_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6584361cb8e559a7042f0ff6f74a231a4075960b2b18ba5340a92cd3301ae5f7 +size 1583976 diff --git a/Starbreach/Resources/Gameplay/Plate/Plate1_D.png b/Starbreach/Resources/Gameplay/Plate/Plate1_D.png new file mode 100644 index 0000000..d87eebc --- /dev/null +++ b/Starbreach/Resources/Gameplay/Plate/Plate1_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d9069255e603d98d2ab81f5d1b6dc514552e02339df1b95bb34bfdd6b400b89 +size 1527174 diff --git a/Starbreach/Resources/Gameplay/Plate/Plate1_G.png b/Starbreach/Resources/Gameplay/Plate/Plate1_G.png new file mode 100644 index 0000000..5e742cb --- /dev/null +++ b/Starbreach/Resources/Gameplay/Plate/Plate1_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3251f06033b0f889be1524e91ff77b27d317146c9114ce70224ae727f271c9f7 +size 476942 diff --git a/Starbreach/Resources/Gameplay/Plate/Plate1_M.png b/Starbreach/Resources/Gameplay/Plate/Plate1_M.png new file mode 100644 index 0000000..27376d3 --- /dev/null +++ b/Starbreach/Resources/Gameplay/Plate/Plate1_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fad6e23a969aa88aac165004e9220625a30c6284ffb78b92dcb147f25119f91 +size 560673 diff --git a/Starbreach/Resources/Gameplay/Plate/Plate1_N.png b/Starbreach/Resources/Gameplay/Plate/Plate1_N.png new file mode 100644 index 0000000..dfbe629 --- /dev/null +++ b/Starbreach/Resources/Gameplay/Plate/Plate1_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc767c0ca33b3244e0806e18643e3337cbe16c4c31828d5deed87cf748665eb4 +size 72941 diff --git a/Starbreach/Resources/Gameplay/Plate/Plate2R_A.png b/Starbreach/Resources/Gameplay/Plate/Plate2R_A.png new file mode 100644 index 0000000..48caa71 --- /dev/null +++ b/Starbreach/Resources/Gameplay/Plate/Plate2R_A.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e471bbc533166ee3984e340c3c8342953c4b15f6400fe10dc37fc33c97ac4f5 +size 2340333 diff --git a/Starbreach/Resources/Gameplay/Plate/Plate2R_G.png b/Starbreach/Resources/Gameplay/Plate/Plate2R_G.png new file mode 100644 index 0000000..86a42da --- /dev/null +++ b/Starbreach/Resources/Gameplay/Plate/Plate2R_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45e08e1a1cbd1d5074ee01aee4e07f6433cc68e34734d1db22b9711f4bbd92c5 +size 852051 diff --git a/Starbreach/Resources/Gameplay/Plate/Plate2R_M.png b/Starbreach/Resources/Gameplay/Plate/Plate2R_M.png new file mode 100644 index 0000000..7dae3f5 --- /dev/null +++ b/Starbreach/Resources/Gameplay/Plate/Plate2R_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5ed1ea95949bca0656e1373a809bfc9ee166a788ff28f3c739d7e093a12e5dd +size 490760 diff --git a/Starbreach/Resources/Gameplay/Plate/Plate2R_N.png b/Starbreach/Resources/Gameplay/Plate/Plate2R_N.png new file mode 100644 index 0000000..40b644d --- /dev/null +++ b/Starbreach/Resources/Gameplay/Plate/Plate2R_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ad1aeb438c95273f62dde225e94ae6c99ba5b98daccc2f69bb08d3c572b0223 +size 1823964 diff --git a/Starbreach/Resources/Gameplay/Plate/Plate2_D.png b/Starbreach/Resources/Gameplay/Plate/Plate2_D.png new file mode 100644 index 0000000..65b8d7a --- /dev/null +++ b/Starbreach/Resources/Gameplay/Plate/Plate2_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6878d4ae9f9560a590e6b82ae262862bb9160079bbba1c3483c599112dd0f42 +size 1261622 diff --git a/Starbreach/Resources/Gameplay/Plate/Plate2_E.png b/Starbreach/Resources/Gameplay/Plate/Plate2_E.png new file mode 100644 index 0000000..1825bb6 --- /dev/null +++ b/Starbreach/Resources/Gameplay/Plate/Plate2_E.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f026e856e7cb690b69e65c49231c9cd207858e4665b8d86bc50d337d3fc8922a +size 27107 diff --git a/Starbreach/Resources/Gameplay/Plate/Plate2_G.png b/Starbreach/Resources/Gameplay/Plate/Plate2_G.png new file mode 100644 index 0000000..91a85bd --- /dev/null +++ b/Starbreach/Resources/Gameplay/Plate/Plate2_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b550fc367e34a86b9754598dfaf4f4c381f39f4586472266306d6277605a899 +size 523343 diff --git a/Starbreach/Resources/Gameplay/Plate/Plate2_M.png b/Starbreach/Resources/Gameplay/Plate/Plate2_M.png new file mode 100644 index 0000000..404758b --- /dev/null +++ b/Starbreach/Resources/Gameplay/Plate/Plate2_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63f378960aa371df0b4f4ab2ac870bc65f61d89928e909f834ac23364e209562 +size 284233 diff --git a/Starbreach/Resources/Gameplay/Plate/Plate2_N.png b/Starbreach/Resources/Gameplay/Plate/Plate2_N.png new file mode 100644 index 0000000..f344cc8 --- /dev/null +++ b/Starbreach/Resources/Gameplay/Plate/Plate2_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:526ec9f358f3cfb1edcf208a7b075704a50f077d69e4aafa81c146ba4c6696a9 +size 722500 diff --git a/Starbreach/Resources/Gameplay/Plate/Plate2_On_E.png b/Starbreach/Resources/Gameplay/Plate/Plate2_On_E.png new file mode 100644 index 0000000..3c020ba --- /dev/null +++ b/Starbreach/Resources/Gameplay/Plate/Plate2_On_E.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:698677865249b5c913e7c1532131cc33bf179a208578f895c055bfe572a2fe84 +size 34424 diff --git a/Starbreach/Resources/Gameplay/Plate/Plate3R_D.png b/Starbreach/Resources/Gameplay/Plate/Plate3R_D.png new file mode 100644 index 0000000..780b933 --- /dev/null +++ b/Starbreach/Resources/Gameplay/Plate/Plate3R_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12cf8f7dff82468f65941c9a5a9778d0c559557a6b47a50ccdcf3b04cacec826 +size 2242349 diff --git a/Starbreach/Resources/Gameplay/Plate/Plate3R_G.png b/Starbreach/Resources/Gameplay/Plate/Plate3R_G.png new file mode 100644 index 0000000..038ae1e --- /dev/null +++ b/Starbreach/Resources/Gameplay/Plate/Plate3R_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ccaa82a65b8c06da61319a666b7874eac3e0af45c24a1596f3abcd237d696b1 +size 806317 diff --git a/Starbreach/Resources/Gameplay/Plate/Plate3R_M.png b/Starbreach/Resources/Gameplay/Plate/Plate3R_M.png new file mode 100644 index 0000000..4988f4c --- /dev/null +++ b/Starbreach/Resources/Gameplay/Plate/Plate3R_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3dcf808e31d1f01736c2b04b26128b888327a9577ec194fae7200367a69b038 +size 448975 diff --git a/Starbreach/Resources/Gameplay/Plate/Plate3R_N.png b/Starbreach/Resources/Gameplay/Plate/Plate3R_N.png new file mode 100644 index 0000000..5f62b91 --- /dev/null +++ b/Starbreach/Resources/Gameplay/Plate/Plate3R_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fb1bc97963bfae3cd7c05d48e4039505de2af4d94a4088d622a455e479ba92d +size 1724941 diff --git a/Starbreach/Resources/Gameplay/Plate/Plate3_D.png b/Starbreach/Resources/Gameplay/Plate/Plate3_D.png new file mode 100644 index 0000000..a8c915b --- /dev/null +++ b/Starbreach/Resources/Gameplay/Plate/Plate3_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdb1b2fa6f7cda4093cb994a264f21f4ae65271a08c4d5397be38b614c1663cd +size 1273974 diff --git a/Starbreach/Resources/Gameplay/Plate/Plate3_E.png b/Starbreach/Resources/Gameplay/Plate/Plate3_E.png new file mode 100644 index 0000000..bfc1040 --- /dev/null +++ b/Starbreach/Resources/Gameplay/Plate/Plate3_E.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ff219b2b554fc827cbcd51a7114f8c84054472b9f493da1a563956fb260c069 +size 8428 diff --git a/Starbreach/Resources/Gameplay/Plate/Plate3_G.png b/Starbreach/Resources/Gameplay/Plate/Plate3_G.png new file mode 100644 index 0000000..10908a0 --- /dev/null +++ b/Starbreach/Resources/Gameplay/Plate/Plate3_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ce8202dcf0b921399c7b476e13c3239f2f968318e2627889842735f7e8bd13d +size 543085 diff --git a/Starbreach/Resources/Gameplay/Plate/Plate3_M.png b/Starbreach/Resources/Gameplay/Plate/Plate3_M.png new file mode 100644 index 0000000..867b0cb --- /dev/null +++ b/Starbreach/Resources/Gameplay/Plate/Plate3_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0b05745847e1eab4072f5329527e74480c10e3a3f4e2cbb343263ea240c9c61 +size 291155 diff --git a/Starbreach/Resources/Gameplay/Plate/Plate3_N.png b/Starbreach/Resources/Gameplay/Plate/Plate3_N.png new file mode 100644 index 0000000..ca3dfae --- /dev/null +++ b/Starbreach/Resources/Gameplay/Plate/Plate3_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2428ab94249bd222740de9b317f2a889631b103fa4be10a4dc7bc889d526ea5 +size 807249 diff --git a/Starbreach/Resources/Gameplay/Plate/Plate3_On_E.png b/Starbreach/Resources/Gameplay/Plate/Plate3_On_E.png new file mode 100644 index 0000000..5645957 --- /dev/null +++ b/Starbreach/Resources/Gameplay/Plate/Plate3_On_E.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:810bf65b1f01d25e70d5d6b1746fddada98dc3d6a1402c310287a1d83c79fe5c +size 55324 diff --git a/Starbreach/Resources/OutputCube.dds b/Starbreach/Resources/OutputCube.dds new file mode 100644 index 0000000..e406e91 --- /dev/null +++ b/Starbreach/Resources/OutputCube.dds @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b28fb991c6e85cdc7429470729586b178e8faab58ab8cd46bbb45190743fa22 +size 44717528 diff --git a/Starbreach/Resources/Platforms/Borders/Border_D.png b/Starbreach/Resources/Platforms/Borders/Border_D.png new file mode 100644 index 0000000..a698bff --- /dev/null +++ b/Starbreach/Resources/Platforms/Borders/Border_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b3743f09b8589fe9ffeb4ba0e8c7f983bb70fb4b1452f9f27fc7f45c255778e +size 1016767 diff --git a/Starbreach/Resources/Platforms/Borders/Border_G.png b/Starbreach/Resources/Platforms/Borders/Border_G.png new file mode 100644 index 0000000..4b1b185 --- /dev/null +++ b/Starbreach/Resources/Platforms/Borders/Border_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2db33918e195713f35d17c62750369efb8bcf25a0713b882ebdf9275581e185e +size 471491 diff --git a/Starbreach/Resources/Platforms/Borders/Border_M.png b/Starbreach/Resources/Platforms/Borders/Border_M.png new file mode 100644 index 0000000..84a56ab --- /dev/null +++ b/Starbreach/Resources/Platforms/Borders/Border_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:766e15d9a5e669bf4bf2deca4bbac3f7c7ba800a92cea83f0c016fa913c63b11 +size 301578 diff --git a/Starbreach/Resources/Platforms/Borders/Border_N.png b/Starbreach/Resources/Platforms/Borders/Border_N.png new file mode 100644 index 0000000..e0b3e3f --- /dev/null +++ b/Starbreach/Resources/Platforms/Borders/Border_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:753b09351b1cc41ed6baf49c0908c607f2e1f050046ee88373ec8bb498363a9b +size 925107 diff --git a/Starbreach/Resources/Platforms/Borders/Border_in_corner_90.fbx b/Starbreach/Resources/Platforms/Borders/Border_in_corner_90.fbx new file mode 100644 index 0000000..a140c82 --- /dev/null +++ b/Starbreach/Resources/Platforms/Borders/Border_in_corner_90.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8aa7132623c0ce2014bf3f77ea64f842912723e712ab881edc46c4c1d3842ad0 +size 26524 diff --git a/Starbreach/Resources/Platforms/Borders/Border_out_corner_90.fbx b/Starbreach/Resources/Platforms/Borders/Border_out_corner_90.fbx new file mode 100644 index 0000000..29b10ec --- /dev/null +++ b/Starbreach/Resources/Platforms/Borders/Border_out_corner_90.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc1bf1332739df93c8a6221fd6a129aa21f5e48848d31e258ede247d6c06f70d +size 35308 diff --git a/Starbreach/Resources/Platforms/Borders/Border_straight.fbx b/Starbreach/Resources/Platforms/Borders/Border_straight.fbx new file mode 100644 index 0000000..51f5d21 --- /dev/null +++ b/Starbreach/Resources/Platforms/Borders/Border_straight.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddaaa37df9202f5066ea2f9aa3ad746f151c5a6a978b05e61f58300c9f069a0b +size 25196 diff --git a/Starbreach/Resources/Platforms/Cells/Cell.fbx b/Starbreach/Resources/Platforms/Cells/Cell.fbx new file mode 100644 index 0000000..88ae1b7 --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/Cell.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b13afe7a17aa7adb30a6413035c01b0e716bd96e31b678ee920647e2edb0b1c9 +size 34556 diff --git a/Starbreach/Resources/Platforms/Cells/Cell1R_D.png b/Starbreach/Resources/Platforms/Cells/Cell1R_D.png new file mode 100644 index 0000000..969bebe --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/Cell1R_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ca661964bed6ebf4f91f2f0d504576e00251ed4ed6760d10476319ad5bcfe8f +size 3899668 diff --git a/Starbreach/Resources/Platforms/Cells/Cell1R_G.png b/Starbreach/Resources/Platforms/Cells/Cell1R_G.png new file mode 100644 index 0000000..89f4456 --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/Cell1R_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:966f32f6b3336c9ed3836698dfef23786542c06ebd92821637bb4532996b10f4 +size 1997835 diff --git a/Starbreach/Resources/Platforms/Cells/Cell1R_M.png b/Starbreach/Resources/Platforms/Cells/Cell1R_M.png new file mode 100644 index 0000000..d319ecc --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/Cell1R_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15e1e8b81ea4ce960fe52451679913a33207863bd936e6459c66acfc6ec96145 +size 2339237 diff --git a/Starbreach/Resources/Platforms/Cells/Cell1R_N.png b/Starbreach/Resources/Platforms/Cells/Cell1R_N.png new file mode 100644 index 0000000..b8dcf54 --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/Cell1R_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a76404f829712b0a26ed1eefe955124898df66e851735230debead7ead0176a4 +size 2636468 diff --git a/Starbreach/Resources/Platforms/Cells/Cell1_D.png b/Starbreach/Resources/Platforms/Cells/Cell1_D.png new file mode 100644 index 0000000..175688c --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/Cell1_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:443dd61fd9685e21813ebcfad468ab005a6d4024cc65a087db46196bed3d63df +size 2778691 diff --git a/Starbreach/Resources/Platforms/Cells/Cell1_G.png b/Starbreach/Resources/Platforms/Cells/Cell1_G.png new file mode 100644 index 0000000..d001cac --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/Cell1_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0512a502351774383ad65c468e58bc0e0df5da4a1e49feb43e5acf1332af7092 +size 1581645 diff --git a/Starbreach/Resources/Platforms/Cells/Cell1_M.png b/Starbreach/Resources/Platforms/Cells/Cell1_M.png new file mode 100644 index 0000000..eb675b6 --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/Cell1_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de62ff6545ca0c61594f1a0bcedd36920642b7a483eb79b9f0b912932a3d3091 +size 1609868 diff --git a/Starbreach/Resources/Platforms/Cells/Cell1_N.png b/Starbreach/Resources/Platforms/Cells/Cell1_N.png new file mode 100644 index 0000000..c1b6c91 --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/Cell1_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32c5d34d376668a9108b0cc49a3b461163dfbb35426249bec3a65d091f70e90e +size 248028 diff --git a/Starbreach/Resources/Platforms/Cells/Cell2R_D.png b/Starbreach/Resources/Platforms/Cells/Cell2R_D.png new file mode 100644 index 0000000..a0c273b --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/Cell2R_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51d7591479db8dca22a452b511b7447f36276f0b84c0bae63ce742580f8c9b4f +size 4749353 diff --git a/Starbreach/Resources/Platforms/Cells/Cell2R_G.png b/Starbreach/Resources/Platforms/Cells/Cell2R_G.png new file mode 100644 index 0000000..8fdba0a --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/Cell2R_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a18f7ab3100e621edde7b32b5e12806888049e44eeef9ea5ee3439f89fa3de8 +size 1720193 diff --git a/Starbreach/Resources/Platforms/Cells/Cell2R_M.png b/Starbreach/Resources/Platforms/Cells/Cell2R_M.png new file mode 100644 index 0000000..71eed4a --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/Cell2R_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cf043ae15a3c82fc311c1b3d5eafe007dc7315c914cbaf44682f58215e79cfd +size 1374604 diff --git a/Starbreach/Resources/Platforms/Cells/Cell2R_N.png b/Starbreach/Resources/Platforms/Cells/Cell2R_N.png new file mode 100644 index 0000000..fa7b931 --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/Cell2R_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38d55c548dd345c9dfdb0bf80efddff31e7b83ddefb1d635a0a8f1e74dc12344 +size 2965222 diff --git a/Starbreach/Resources/Platforms/Cells/Cell2_D.png b/Starbreach/Resources/Platforms/Cells/Cell2_D.png new file mode 100644 index 0000000..18357bd --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/Cell2_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6e3b84e31c7bdd32c3b0a99ae9fce98712008ecd5f0a4f8b54f96ba1173cfb5 +size 2905401 diff --git a/Starbreach/Resources/Platforms/Cells/Cell2_E1.png b/Starbreach/Resources/Platforms/Cells/Cell2_E1.png new file mode 100644 index 0000000..45312f8 --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/Cell2_E1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7df2f57617f555d45144b7957d18a6e9025617b9be7c24f15aaca86d496337ef +size 116732 diff --git a/Starbreach/Resources/Platforms/Cells/Cell2_E2.png b/Starbreach/Resources/Platforms/Cells/Cell2_E2.png new file mode 100644 index 0000000..bf53d04 --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/Cell2_E2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0ee5c6e199f2fa5baa92ee5a7760aaf30fa7c8020c1492d97b0d8969c459a31 +size 252028 diff --git a/Starbreach/Resources/Platforms/Cells/Cell2_G.png b/Starbreach/Resources/Platforms/Cells/Cell2_G.png new file mode 100644 index 0000000..1e8c711 --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/Cell2_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86f359a66d05b29749659946c804c0b1385f36ef0fdf1d5ec8b2ef0420b350fc +size 1797145 diff --git a/Starbreach/Resources/Platforms/Cells/Cell2_M.png b/Starbreach/Resources/Platforms/Cells/Cell2_M.png new file mode 100644 index 0000000..5efcb78 --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/Cell2_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f824fca979a78c1ed7dc64f6013e586053a7180fa98abbcfeccc039796cb20b5 +size 1231690 diff --git a/Starbreach/Resources/Platforms/Cells/Cell2_N.png b/Starbreach/Resources/Platforms/Cells/Cell2_N.png new file mode 100644 index 0000000..dc2cfee --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/Cell2_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f7c24f01c00fae0b3b0f109d3c8f2e168122a5a6330dbab54fb739074f0f635 +size 1243708 diff --git a/Starbreach/Resources/Platforms/Cells/Cell3R_D.png b/Starbreach/Resources/Platforms/Cells/Cell3R_D.png new file mode 100644 index 0000000..6fb53ac --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/Cell3R_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9edb27019d375b0fbd4d1e83131e17775029e65b999f86b47d4b3b5434678cc2 +size 3293123 diff --git a/Starbreach/Resources/Platforms/Cells/Cell3R_G.png b/Starbreach/Resources/Platforms/Cells/Cell3R_G.png new file mode 100644 index 0000000..725bb69 --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/Cell3R_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ab7ee1d2a41ce63f8e01633667f06b52cd2c8a36dcd08885ca26c58ba559f84 +size 1575682 diff --git a/Starbreach/Resources/Platforms/Cells/Cell3R_M.png b/Starbreach/Resources/Platforms/Cells/Cell3R_M.png new file mode 100644 index 0000000..9a57578 --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/Cell3R_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b8f1f1e75c812417d99ea254c386604403ac0b5ec85a9ad685dd5fdf7bd1a97 +size 1630614 diff --git a/Starbreach/Resources/Platforms/Cells/Cell3_D.png b/Starbreach/Resources/Platforms/Cells/Cell3_D.png new file mode 100644 index 0000000..3c565e6 --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/Cell3_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96494b0a1bbb6545fbec5c4b25cec341ea737c4929a506b915baf5ce4f2d1fc8 +size 2862607 diff --git a/Starbreach/Resources/Platforms/Cells/Cell3_E1.png b/Starbreach/Resources/Platforms/Cells/Cell3_E1.png new file mode 100644 index 0000000..417baff --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/Cell3_E1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7855184f29890df813117600395d52c55a038662681afdc6cd0d19ee6b37779 +size 267405 diff --git a/Starbreach/Resources/Platforms/Cells/Cell3_E2.png b/Starbreach/Resources/Platforms/Cells/Cell3_E2.png new file mode 100644 index 0000000..9612352 --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/Cell3_E2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f7f04a4d9615651828dc6c463b297b37c157c371bee41f06ccab5c15bc09e35 +size 57742 diff --git a/Starbreach/Resources/Platforms/Cells/Cell3_E3.png b/Starbreach/Resources/Platforms/Cells/Cell3_E3.png new file mode 100644 index 0000000..da17a69 --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/Cell3_E3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c0a43994d0c7c3bf4fcfd43e5d92acc2c09e2b50a7cf8088fa205f51de7f2c8 +size 194331 diff --git a/Starbreach/Resources/Platforms/Cells/Cell3_G.png b/Starbreach/Resources/Platforms/Cells/Cell3_G.png new file mode 100644 index 0000000..91790f4 --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/Cell3_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8a44a8de115c72ab8e070fe39604118ca040141be2ed388cff4c1d0530c039f +size 1886860 diff --git a/Starbreach/Resources/Platforms/Cells/Cell3_M.png b/Starbreach/Resources/Platforms/Cells/Cell3_M.png new file mode 100644 index 0000000..0b892a6 --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/Cell3_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:813856b8e69ec9a92025e8a6a94a66de8fce2b21fe03008ee3846ab73c8ffe2d +size 1380988 diff --git a/Starbreach/Resources/Platforms/Cells/Cell3_N.png b/Starbreach/Resources/Platforms/Cells/Cell3_N.png new file mode 100644 index 0000000..d1bf5e2 --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/Cell3_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78a569e267152ef4471f2c07f6aaaf72a65b8519dec7cf13a2cf18797ed414cb +size 1513735 diff --git a/Starbreach/Resources/Platforms/Cells/Cell_1x1_1.fbx b/Starbreach/Resources/Platforms/Cells/Cell_1x1_1.fbx new file mode 100644 index 0000000..87e717b --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/Cell_1x1_1.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efc732696da5f9cd3b4269f976a2f50be573a06f274784fa8df41397427308ff +size 56460 diff --git a/Starbreach/Resources/Platforms/Cells/Cell_1x1_2.fbx b/Starbreach/Resources/Platforms/Cells/Cell_1x1_2.fbx new file mode 100644 index 0000000..5e6640b --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/Cell_1x1_2.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9619a0cadd36d695797294faf032c02186851af2926cc2229a681873a734ae09 +size 79948 diff --git a/Starbreach/Resources/Platforms/Cells/Cell_Loop.fbx b/Starbreach/Resources/Platforms/Cells/Cell_Loop.fbx new file mode 100644 index 0000000..f6a44a3 --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/Cell_Loop.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46f9103db8edf3748a0f1e758218d772926d5237f9f732495fbd92deab95170a +size 52252 diff --git a/Starbreach/Resources/Platforms/Cells/Cell_loop_half.fbx b/Starbreach/Resources/Platforms/Cells/Cell_loop_half.fbx new file mode 100644 index 0000000..aae175e --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/Cell_loop_half.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:395e76ee213f0790af70c2de49d87de9eded85991768dce571efd561ae365d5d +size 51996 diff --git a/Starbreach/Resources/Platforms/Cells/Cell_loop_half2.fbx b/Starbreach/Resources/Platforms/Cells/Cell_loop_half2.fbx new file mode 100644 index 0000000..2e3658e --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/Cell_loop_half2.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a36ccf53f87e91216566e56969865bfadfea624ca4211aae73ddb8fec544f0a +size 52044 diff --git a/Starbreach/Resources/Platforms/Cells/DiagonalCell.fbx b/Starbreach/Resources/Platforms/Cells/DiagonalCell.fbx new file mode 100644 index 0000000..2011dc3 --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/DiagonalCell.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5f0b60575c86ed87f3ff500e5fbd4be2aef2a7382e2f0cccc2d75c880ef5884 +size 52140 diff --git a/Starbreach/Resources/Platforms/Cells/DiagonalCell1.fbx b/Starbreach/Resources/Platforms/Cells/DiagonalCell1.fbx new file mode 100644 index 0000000..1073ed7 --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/DiagonalCell1.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3ed74c6ffe2d77871b777d876281a3e90e3a80756dba45f41eaf511193a5611 +size 52156 diff --git a/Starbreach/Resources/Platforms/Cells/HalfCell.fbx b/Starbreach/Resources/Platforms/Cells/HalfCell.fbx new file mode 100644 index 0000000..1c271d1 --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/HalfCell.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ee25f83791dfa7a047035edd6636fa15ce9ae8f3ce53892c11d0b8a5d183eb0 +size 34620 diff --git a/Starbreach/Resources/Platforms/Cells/cell3R_N.png b/Starbreach/Resources/Platforms/Cells/cell3R_N.png new file mode 100644 index 0000000..bc6aef3 --- /dev/null +++ b/Starbreach/Resources/Platforms/Cells/cell3R_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb193491c0af2dfecd94a5a8e795563c34fcd405fe674e072562e2f94b960e36 +size 2741320 diff --git a/Starbreach/Resources/Platforms/LargePillar/LargePillar.FBX b/Starbreach/Resources/Platforms/LargePillar/LargePillar.FBX new file mode 100644 index 0000000..9ce0b37 --- /dev/null +++ b/Starbreach/Resources/Platforms/LargePillar/LargePillar.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b42c4bff8622fb6c3c2d6845031e7c001ceb4b4d717d0ffddab1d823a45f1453 +size 41376 diff --git a/Starbreach/Resources/Platforms/LargePillar/LargePillar_AO.png b/Starbreach/Resources/Platforms/LargePillar/LargePillar_AO.png new file mode 100644 index 0000000..5f44f2a --- /dev/null +++ b/Starbreach/Resources/Platforms/LargePillar/LargePillar_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78bb72de22e789f2780c9d925a4e8049294fa4b0a3ffe1afee3c56d100d317d0 +size 1504514 diff --git a/Starbreach/Resources/Platforms/LargePillar/LargePillar_D.png b/Starbreach/Resources/Platforms/LargePillar/LargePillar_D.png new file mode 100644 index 0000000..11c0266 --- /dev/null +++ b/Starbreach/Resources/Platforms/LargePillar/LargePillar_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1ffa93ee50c94fcb995b1631f593c78cb77cba74299901d878db159891da3aa +size 38451649 diff --git a/Starbreach/Resources/Platforms/LargePillar/LargePillar_E.png b/Starbreach/Resources/Platforms/LargePillar/LargePillar_E.png new file mode 100644 index 0000000..7770b7e --- /dev/null +++ b/Starbreach/Resources/Platforms/LargePillar/LargePillar_E.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2554afba7ef67c034a19e9de860283fbf62410e8e38f6bbc9ef8895dcaa27aff +size 241599 diff --git a/Starbreach/Resources/Platforms/LargePillar/LargePillar_G.png b/Starbreach/Resources/Platforms/LargePillar/LargePillar_G.png new file mode 100644 index 0000000..190d796 --- /dev/null +++ b/Starbreach/Resources/Platforms/LargePillar/LargePillar_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86510c99821b7e032884da6ad9bb0a9b513bf3f0564d49c4911271821808e007 +size 14271035 diff --git a/Starbreach/Resources/Platforms/LargePillar/LargePillar_M.png b/Starbreach/Resources/Platforms/LargePillar/LargePillar_M.png new file mode 100644 index 0000000..9a099d2 --- /dev/null +++ b/Starbreach/Resources/Platforms/LargePillar/LargePillar_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84d039c3e392cb27b66dd35f1ad87a80f809893b12fa2fa69edf56a243ccab7d +size 10072747 diff --git a/Starbreach/Resources/Platforms/LargePillar/LargePillar_N.png b/Starbreach/Resources/Platforms/LargePillar/LargePillar_N.png new file mode 100644 index 0000000..d0635c5 --- /dev/null +++ b/Starbreach/Resources/Platforms/LargePillar/LargePillar_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2652826cc88d1f36d97c37caff6597f2c68a0b9a9a6d1ab5974dbf707821a256 +size 30071068 diff --git a/Starbreach/Resources/Platforms/Ledges/Ledge_AO.png b/Starbreach/Resources/Platforms/Ledges/Ledge_AO.png new file mode 100644 index 0000000..dcfcb35 --- /dev/null +++ b/Starbreach/Resources/Platforms/Ledges/Ledge_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cc35878e7299ca649436b1db9bcf81a601f7518b47f570b181e2c45d34b1322 +size 819127 diff --git a/Starbreach/Resources/Platforms/Ledges/Ledge_D.png b/Starbreach/Resources/Platforms/Ledges/Ledge_D.png new file mode 100644 index 0000000..28a141d --- /dev/null +++ b/Starbreach/Resources/Platforms/Ledges/Ledge_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f382c5b384e9767f2a719ccb7a0512bdbdeabfcac12428819c485fd5ebf30405 +size 7197240 diff --git a/Starbreach/Resources/Platforms/Ledges/Ledge_G.png b/Starbreach/Resources/Platforms/Ledges/Ledge_G.png new file mode 100644 index 0000000..a53b538 --- /dev/null +++ b/Starbreach/Resources/Platforms/Ledges/Ledge_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fecd745b7becb92f7d57dc371a29e8597f45877ae39715bfd816a7a441ff7b15 +size 3194398 diff --git a/Starbreach/Resources/Platforms/Ledges/Ledge_M.png b/Starbreach/Resources/Platforms/Ledges/Ledge_M.png new file mode 100644 index 0000000..37c0095 --- /dev/null +++ b/Starbreach/Resources/Platforms/Ledges/Ledge_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145cd57b9987de5e234558f38aadcbcdf17e1a07a02c8e2a9f7f6e877b61d805 +size 1845075 diff --git a/Starbreach/Resources/Platforms/Ledges/Ledge_N.png b/Starbreach/Resources/Platforms/Ledges/Ledge_N.png new file mode 100644 index 0000000..45f8292 --- /dev/null +++ b/Starbreach/Resources/Platforms/Ledges/Ledge_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2823df2a1119dec0ae14d89413bc3eacd6782fbb15122ea05ade973accd885a3 +size 598774 diff --git a/Starbreach/Resources/Platforms/Ledges/Ledge_Rusted_AO.png b/Starbreach/Resources/Platforms/Ledges/Ledge_Rusted_AO.png new file mode 100644 index 0000000..dcfcb35 --- /dev/null +++ b/Starbreach/Resources/Platforms/Ledges/Ledge_Rusted_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cc35878e7299ca649436b1db9bcf81a601f7518b47f570b181e2c45d34b1322 +size 819127 diff --git a/Starbreach/Resources/Platforms/Ledges/Ledge_Rusted_D.png b/Starbreach/Resources/Platforms/Ledges/Ledge_Rusted_D.png new file mode 100644 index 0000000..81d9b80 --- /dev/null +++ b/Starbreach/Resources/Platforms/Ledges/Ledge_Rusted_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d98f17a406ec5d43282d35f37965d1d62b915da6fcaca1f17220b132fb39a9b5 +size 9674718 diff --git a/Starbreach/Resources/Platforms/Ledges/Ledge_Rusted_G.png b/Starbreach/Resources/Platforms/Ledges/Ledge_Rusted_G.png new file mode 100644 index 0000000..5095c21 --- /dev/null +++ b/Starbreach/Resources/Platforms/Ledges/Ledge_Rusted_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccffe496759298053e70823cd54a8f82bd4aa88cf5cf070d6f422cee346b8717 +size 3500977 diff --git a/Starbreach/Resources/Platforms/Ledges/Ledge_Rusted_M.png b/Starbreach/Resources/Platforms/Ledges/Ledge_Rusted_M.png new file mode 100644 index 0000000..63e715f --- /dev/null +++ b/Starbreach/Resources/Platforms/Ledges/Ledge_Rusted_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00012fe475c19f548ae0b6be30c328592449955182a9a0051b9e3e5e77d39789 +size 3532316 diff --git a/Starbreach/Resources/Platforms/Ledges/Ledge_Rusted_N.png b/Starbreach/Resources/Platforms/Ledges/Ledge_Rusted_N.png new file mode 100644 index 0000000..dcafaee --- /dev/null +++ b/Starbreach/Resources/Platforms/Ledges/Ledge_Rusted_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfa892de439e69c9873a0e55effd6e700fdef1aa3cfed43e289004382fcf2bfc +size 7358260 diff --git a/Starbreach/Resources/Platforms/Ledges/Ledge_out_corner_90.fbx b/Starbreach/Resources/Platforms/Ledges/Ledge_out_corner_90.fbx new file mode 100644 index 0000000..68f04ac --- /dev/null +++ b/Starbreach/Resources/Platforms/Ledges/Ledge_out_corner_90.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96e06c213620bb7e294f03c1c97b1daf6e85d430a1e3f424b998a2a1c83afe3d +size 27836 diff --git a/Starbreach/Resources/Platforms/Ledges/Ledge_straight.fbx b/Starbreach/Resources/Platforms/Ledges/Ledge_straight.fbx new file mode 100644 index 0000000..2fd1179 --- /dev/null +++ b/Starbreach/Resources/Platforms/Ledges/Ledge_straight.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:376fbbef6d525c9e039bcf818ddfa209cd0867a7f365e316d14e66e3e3d72e79 +size 19308 diff --git a/Starbreach/Resources/Props/Barrel/Barrel.FBX b/Starbreach/Resources/Props/Barrel/Barrel.FBX new file mode 100644 index 0000000..3e03546 --- /dev/null +++ b/Starbreach/Resources/Props/Barrel/Barrel.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:681aa40b850f645e14bde0abe1c5003b041081581497489bfdc30af6f91b3ef8 +size 138416 diff --git a/Starbreach/Resources/Props/Barrel/Barrel_AO.png b/Starbreach/Resources/Props/Barrel/Barrel_AO.png new file mode 100644 index 0000000..af21ab3 --- /dev/null +++ b/Starbreach/Resources/Props/Barrel/Barrel_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:090da487807bdfea575d4d0caf54c8c6d8cd8c63cc4ea1a7d4f3563c3b6239f9 +size 2930066 diff --git a/Starbreach/Resources/Props/Barrel/Barrel_D.png b/Starbreach/Resources/Props/Barrel/Barrel_D.png new file mode 100644 index 0000000..30117d3 --- /dev/null +++ b/Starbreach/Resources/Props/Barrel/Barrel_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4936a15ccc0daaaa4ae60a46824108568d8c20e5f493038ecc903cdd706340ba +size 9757858 diff --git a/Starbreach/Resources/Props/Barrel/Barrel_G.png b/Starbreach/Resources/Props/Barrel/Barrel_G.png new file mode 100644 index 0000000..aea6e8c --- /dev/null +++ b/Starbreach/Resources/Props/Barrel/Barrel_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ace13366388cda41d434d895ebbc7b8715cecb86837efd690fbd28248d2516f +size 3213631 diff --git a/Starbreach/Resources/Props/Barrel/Barrel_M.png b/Starbreach/Resources/Props/Barrel/Barrel_M.png new file mode 100644 index 0000000..2427c02 --- /dev/null +++ b/Starbreach/Resources/Props/Barrel/Barrel_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a24e4bff5d14381769c370f3e0f1b868563f23da6c89c7c479caa89ecc80338 +size 3417111 diff --git a/Starbreach/Resources/Props/Barrel/Barrel_N.png b/Starbreach/Resources/Props/Barrel/Barrel_N.png new file mode 100644 index 0000000..2fc7bd7 --- /dev/null +++ b/Starbreach/Resources/Props/Barrel/Barrel_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d101b64b70e5183ab1c0582a73706dcf22b413cf523d250d5260f8c8b7fe815 +size 33228185 diff --git a/Starbreach/Resources/Props/Boxes/Box1.FBX b/Starbreach/Resources/Props/Boxes/Box1.FBX new file mode 100644 index 0000000..4fe2281 --- /dev/null +++ b/Starbreach/Resources/Props/Boxes/Box1.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e156e04db33f7879de8d1f519a98dc770d11a202617e7047bff01c95e3d67ab9 +size 679376 diff --git a/Starbreach/Resources/Props/Boxes/Box1_AO.png b/Starbreach/Resources/Props/Boxes/Box1_AO.png new file mode 100644 index 0000000..1dcc425 --- /dev/null +++ b/Starbreach/Resources/Props/Boxes/Box1_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91e3e906fb8ab18a99c69b15e141a79431277f90c8c85e1a034ae3e00f4c205c +size 7005446 diff --git a/Starbreach/Resources/Props/Boxes/Box1_D.png b/Starbreach/Resources/Props/Boxes/Box1_D.png new file mode 100644 index 0000000..5c1cdaf --- /dev/null +++ b/Starbreach/Resources/Props/Boxes/Box1_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bd9fb8b5376ff4c9c99aa15337b8ff37ffa5c5bce230e8abd55893fb2825728 +size 19238909 diff --git a/Starbreach/Resources/Props/Boxes/Box1_G.png b/Starbreach/Resources/Props/Boxes/Box1_G.png new file mode 100644 index 0000000..0fa0bb6 --- /dev/null +++ b/Starbreach/Resources/Props/Boxes/Box1_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21e386c5c9b51eb4ea3c7246906637cff4c060340dc35d7085fb55259527ad69 +size 5800399 diff --git a/Starbreach/Resources/Props/Boxes/Box1_M.png b/Starbreach/Resources/Props/Boxes/Box1_M.png new file mode 100644 index 0000000..066cc39 --- /dev/null +++ b/Starbreach/Resources/Props/Boxes/Box1_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f92218f387b5149af1b5add46c63fb60fe5836b8c2c12dc691f044a75b27f7f +size 5886236 diff --git a/Starbreach/Resources/Props/Boxes/Box1_N.png b/Starbreach/Resources/Props/Boxes/Box1_N.png new file mode 100644 index 0000000..6e7ed83 --- /dev/null +++ b/Starbreach/Resources/Props/Boxes/Box1_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d657efaa4d2e230d0dd1ea15912d8cfde844af5ba5406ad97f541953cbe241be +size 75679301 diff --git a/Starbreach/Resources/Props/Boxes/Box2.FBX b/Starbreach/Resources/Props/Boxes/Box2.FBX new file mode 100644 index 0000000..4b2367d --- /dev/null +++ b/Starbreach/Resources/Props/Boxes/Box2.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3722121596e6711e5be1a8f6865556e80ee33cc34dac0e831768678be96ffa7 +size 88416 diff --git a/Starbreach/Resources/Props/Boxes/Box2_AO.png b/Starbreach/Resources/Props/Boxes/Box2_AO.png new file mode 100644 index 0000000..a361583 --- /dev/null +++ b/Starbreach/Resources/Props/Boxes/Box2_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffdf058f7ad044f800fa2073add6e1275e3b3452223f4f03be2d369a3269d45d +size 5415612 diff --git a/Starbreach/Resources/Props/Boxes/Box2_D.png b/Starbreach/Resources/Props/Boxes/Box2_D.png new file mode 100644 index 0000000..1866eec --- /dev/null +++ b/Starbreach/Resources/Props/Boxes/Box2_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f438cc041c5c5a4f499315b5d1bebf2385829c8fb5ff711ab2186b8f7b96bfdf +size 17107243 diff --git a/Starbreach/Resources/Props/Boxes/Box2_G.png b/Starbreach/Resources/Props/Boxes/Box2_G.png new file mode 100644 index 0000000..e98658a --- /dev/null +++ b/Starbreach/Resources/Props/Boxes/Box2_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b7595c2ba4c901e3883123bc1409a96898638f64f2002c7f44cfe831e456dc8 +size 5619000 diff --git a/Starbreach/Resources/Props/Boxes/Box2_M.png b/Starbreach/Resources/Props/Boxes/Box2_M.png new file mode 100644 index 0000000..9512335 --- /dev/null +++ b/Starbreach/Resources/Props/Boxes/Box2_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2922c37ac3954c0a3f282c44cf5370656e801422cecc8cee63c466834ac241d3 +size 5785892 diff --git a/Starbreach/Resources/Props/Boxes/Box2_N.png b/Starbreach/Resources/Props/Boxes/Box2_N.png new file mode 100644 index 0000000..8491307 --- /dev/null +++ b/Starbreach/Resources/Props/Boxes/Box2_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6eddda6471e40d3f8ee9cded4425c19229f509b6bccff39f37b056aa12339c97 +size 71003160 diff --git a/Starbreach/Resources/Props/ChargerBox/ChargerBox.FBX b/Starbreach/Resources/Props/ChargerBox/ChargerBox.FBX new file mode 100644 index 0000000..f771ec0 --- /dev/null +++ b/Starbreach/Resources/Props/ChargerBox/ChargerBox.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b52e3ff7fd21757c07c406e9f51d60ce91e1a072f79e4ebcc0dbfa107444671 +size 628288 diff --git a/Starbreach/Resources/Props/ChargerBox/ChargerBox_AO.png b/Starbreach/Resources/Props/ChargerBox/ChargerBox_AO.png new file mode 100644 index 0000000..c51d1a0 --- /dev/null +++ b/Starbreach/Resources/Props/ChargerBox/ChargerBox_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f711c4cbac8f1cad7f95ccce323d2f9ffe7d919d75313c1b2aed7a1feddfc63 +size 2603127 diff --git a/Starbreach/Resources/Props/ChargerBox/ChargerBox_D.png b/Starbreach/Resources/Props/ChargerBox/ChargerBox_D.png new file mode 100644 index 0000000..9e748d3 --- /dev/null +++ b/Starbreach/Resources/Props/ChargerBox/ChargerBox_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d4b66e0562bd999a9a8bf04ad3df96bcf9f1ed567b32179988d9dd02599323 +size 27106901 diff --git a/Starbreach/Resources/Props/ChargerBox/ChargerBox_E.png b/Starbreach/Resources/Props/ChargerBox/ChargerBox_E.png new file mode 100644 index 0000000..65a2784 --- /dev/null +++ b/Starbreach/Resources/Props/ChargerBox/ChargerBox_E.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:552e4ecb416d36015809d93259e11fbc6d6d576404bfd2b1c9dd57450f910513 +size 207773 diff --git a/Starbreach/Resources/Props/ChargerBox/ChargerBox_G.png b/Starbreach/Resources/Props/ChargerBox/ChargerBox_G.png new file mode 100644 index 0000000..1f376dc --- /dev/null +++ b/Starbreach/Resources/Props/ChargerBox/ChargerBox_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3332ec4c72ae6dbce34cee3a089bd693996e7bf401294faeba128c733c1d37a9 +size 11569519 diff --git a/Starbreach/Resources/Props/ChargerBox/ChargerBox_M.png b/Starbreach/Resources/Props/ChargerBox/ChargerBox_M.png new file mode 100644 index 0000000..76226af --- /dev/null +++ b/Starbreach/Resources/Props/ChargerBox/ChargerBox_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fc5bd492305fa8c2ac490f1daff8e96d94658e72b897c7922243b85146a613e +size 4868427 diff --git a/Starbreach/Resources/Props/ChargerBox/ChargerBox_N.png b/Starbreach/Resources/Props/ChargerBox/ChargerBox_N.png new file mode 100644 index 0000000..194a125 --- /dev/null +++ b/Starbreach/Resources/Props/ChargerBox/ChargerBox_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74f7374c59514bf34c89ceca0ef6db4c29e8d752f58ce691184a65046d6ddc10 +size 18386364 diff --git a/Starbreach/Resources/Props/Column/Column.fbx b/Starbreach/Resources/Props/Column/Column.fbx new file mode 100644 index 0000000..05c91d3 --- /dev/null +++ b/Starbreach/Resources/Props/Column/Column.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3587a26496de8c7a02d75e1ef2b08bb790b457fed1e740c348f82be64e63d0e8 +size 138720 diff --git a/Starbreach/Resources/Props/Column/Column_AO.png b/Starbreach/Resources/Props/Column/Column_AO.png new file mode 100644 index 0000000..68fbe66 --- /dev/null +++ b/Starbreach/Resources/Props/Column/Column_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3cb94007761e2fd86c36098c29496e5be4bf3781f034b8c5ce6389175bb406b +size 6493964 diff --git a/Starbreach/Resources/Props/Column/Column_D.png b/Starbreach/Resources/Props/Column/Column_D.png new file mode 100644 index 0000000..265e50b --- /dev/null +++ b/Starbreach/Resources/Props/Column/Column_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9351312d3b13700ddd055f3cdb00a1bd30da289f51b039d24e9d17f3dedfc159 +size 24775402 diff --git a/Starbreach/Resources/Props/Column/Column_E.png b/Starbreach/Resources/Props/Column/Column_E.png new file mode 100644 index 0000000..7b616d4 --- /dev/null +++ b/Starbreach/Resources/Props/Column/Column_E.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2e8e971ff1ece14750feb4754f84c33d5245579cd80d663859ae8bb6377904d +size 156985 diff --git a/Starbreach/Resources/Props/Column/Column_G.png b/Starbreach/Resources/Props/Column/Column_G.png new file mode 100644 index 0000000..4237ff3 --- /dev/null +++ b/Starbreach/Resources/Props/Column/Column_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df2186b3e77ec9bb9ead7af2e13f437a00d2c80bfb35ea62836bc878e27fdf90 +size 10192441 diff --git a/Starbreach/Resources/Props/Column/Column_M.png b/Starbreach/Resources/Props/Column/Column_M.png new file mode 100644 index 0000000..1b37c70 --- /dev/null +++ b/Starbreach/Resources/Props/Column/Column_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a9728b443181f0b3c6500ad57f5620b4601603b59cc1e3a10de3d7020958608 +size 5856400 diff --git a/Starbreach/Resources/Props/Column/Column_N.png b/Starbreach/Resources/Props/Column/Column_N.png new file mode 100644 index 0000000..5877aed --- /dev/null +++ b/Starbreach/Resources/Props/Column/Column_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89e13df43f54081105db50c3717a0226bbb4c3c9f1cae72c57e4d5850d317b4b +size 18493603 diff --git a/Starbreach/Resources/Props/Crane/Crane_AO.png b/Starbreach/Resources/Props/Crane/Crane_AO.png new file mode 100644 index 0000000..f6505c7 --- /dev/null +++ b/Starbreach/Resources/Props/Crane/Crane_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:702523876003a025f1df71040265103287bc01be531f49eb3cebee938d514cbb +size 5450020 diff --git a/Starbreach/Resources/Props/Crane/Crane_D.png b/Starbreach/Resources/Props/Crane/Crane_D.png new file mode 100644 index 0000000..8ccdb0f --- /dev/null +++ b/Starbreach/Resources/Props/Crane/Crane_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec6111fa15789a46746800c451907d44c2989bfb7f3ac2a9b2ac7bbaa5827a28 +size 42497755 diff --git a/Starbreach/Resources/Props/Crane/Crane_E.png b/Starbreach/Resources/Props/Crane/Crane_E.png new file mode 100644 index 0000000..9ef68fe --- /dev/null +++ b/Starbreach/Resources/Props/Crane/Crane_E.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4004f34f302108e31e435451b2c7334836deb4eff9b0de592a2d373505dd6bd +size 125536 diff --git a/Starbreach/Resources/Props/Crane/Crane_G.png b/Starbreach/Resources/Props/Crane/Crane_G.png new file mode 100644 index 0000000..6c3ff6f --- /dev/null +++ b/Starbreach/Resources/Props/Crane/Crane_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8de8a35d82397f122ae2f84d7901e3900dd6779063a8ccaa6471942f76e476bb +size 15203421 diff --git a/Starbreach/Resources/Props/Crane/Crane_M.png b/Starbreach/Resources/Props/Crane/Crane_M.png new file mode 100644 index 0000000..5311492 --- /dev/null +++ b/Starbreach/Resources/Props/Crane/Crane_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcd59ac19ba172cabd87e50f92fc2042819b244ed6c86290c0cbe535ff43d81c +size 3059175 diff --git a/Starbreach/Resources/Props/Crane/Crane_N.png b/Starbreach/Resources/Props/Crane/Crane_N.png new file mode 100644 index 0000000..53c78cc --- /dev/null +++ b/Starbreach/Resources/Props/Crane/Crane_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:057fad3c531ec827959b97479a0229b5835fde6cfe82bd550ddff0548c55ad91 +size 32047509 diff --git a/Starbreach/Resources/Props/Crane/Crane_v1.FBX b/Starbreach/Resources/Props/Crane/Crane_v1.FBX new file mode 100644 index 0000000..64bb202 --- /dev/null +++ b/Starbreach/Resources/Props/Crane/Crane_v1.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59157d3894c075c9595d2e996942553ce24222150147060f31f6afb5719f81b9 +size 736832 diff --git a/Starbreach/Resources/Props/Crane/Crane_v2.FBX b/Starbreach/Resources/Props/Crane/Crane_v2.FBX new file mode 100644 index 0000000..50a8157 --- /dev/null +++ b/Starbreach/Resources/Props/Crane/Crane_v2.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bead2881a408d1e6b1ce2d7e3f749bd66251804502a584636b4e3e273aef1f21 +size 568688 diff --git a/Starbreach/Resources/Props/DPU/DPU1.FBX b/Starbreach/Resources/Props/DPU/DPU1.FBX new file mode 100644 index 0000000..a6de6de --- /dev/null +++ b/Starbreach/Resources/Props/DPU/DPU1.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfafee93a242024f4e23e41b0f32f5f920a0e0fe2c95e020974d5aa1058462c7 +size 61056 diff --git a/Starbreach/Resources/Props/DPU/DPU1_AO.png b/Starbreach/Resources/Props/DPU/DPU1_AO.png new file mode 100644 index 0000000..756e7c9 --- /dev/null +++ b/Starbreach/Resources/Props/DPU/DPU1_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01038aa8d0e7a9fb41259497606bd8e441ef53fbef0c197f610ede1846da75b5 +size 6013643 diff --git a/Starbreach/Resources/Props/DPU/DPU1_D.png b/Starbreach/Resources/Props/DPU/DPU1_D.png new file mode 100644 index 0000000..eb4e3e3 --- /dev/null +++ b/Starbreach/Resources/Props/DPU/DPU1_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66a7ca3cb668adc6dfd5c05facf52117e2dbfeef1a32bb6eb8c6a205bd1183ae +size 24723449 diff --git a/Starbreach/Resources/Props/DPU/DPU1_E.png b/Starbreach/Resources/Props/DPU/DPU1_E.png new file mode 100644 index 0000000..a49bf30 --- /dev/null +++ b/Starbreach/Resources/Props/DPU/DPU1_E.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:440cf78ba98e02e6597312bc2bf65e24528f52a2132362a3cc50b4a23c9292ac +size 282783 diff --git a/Starbreach/Resources/Props/DPU/DPU1_G.png b/Starbreach/Resources/Props/DPU/DPU1_G.png new file mode 100644 index 0000000..2ee8d0a --- /dev/null +++ b/Starbreach/Resources/Props/DPU/DPU1_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f25727298c1a3e113d86acf46e21144f2499d2a8895ac6abf783172c5992bc79 +size 7601700 diff --git a/Starbreach/Resources/Props/DPU/DPU1_M.png b/Starbreach/Resources/Props/DPU/DPU1_M.png new file mode 100644 index 0000000..f99163f --- /dev/null +++ b/Starbreach/Resources/Props/DPU/DPU1_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a75759ed01a6f4ec89e5b3e3d2d1fa92606436ed55aeccb6e77f6087432112b4 +size 1619701 diff --git a/Starbreach/Resources/Props/DPU/DPU1_N.png b/Starbreach/Resources/Props/DPU/DPU1_N.png new file mode 100644 index 0000000..f6ac70c --- /dev/null +++ b/Starbreach/Resources/Props/DPU/DPU1_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0135cf9915b4630b10b3a4c6f9a00732e89328a470ac73399000105fabff1e4 +size 5434989 diff --git a/Starbreach/Resources/Props/DPU/DPU1_Rust_D.png b/Starbreach/Resources/Props/DPU/DPU1_Rust_D.png new file mode 100644 index 0000000..4575b90 --- /dev/null +++ b/Starbreach/Resources/Props/DPU/DPU1_Rust_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e3898da4d61655ecafb2f728353c9a24152b99a0c712743c00fd4ce97ff3f3b +size 37340189 diff --git a/Starbreach/Resources/Props/DPU/DPU1_Rust_G.png b/Starbreach/Resources/Props/DPU/DPU1_Rust_G.png new file mode 100644 index 0000000..410ee3d --- /dev/null +++ b/Starbreach/Resources/Props/DPU/DPU1_Rust_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8c0a3395a94e5752ad3e3b1182be10112d6aa4235e0e6f6f04a300ac92b8edb +size 14222226 diff --git a/Starbreach/Resources/Props/DPU/DPU1_Rust_M.png b/Starbreach/Resources/Props/DPU/DPU1_Rust_M.png new file mode 100644 index 0000000..93455c7 --- /dev/null +++ b/Starbreach/Resources/Props/DPU/DPU1_Rust_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ec805bf68c22649d2bbe682ad2db8e5d7fba5867c0e8e56a824f7d7fe5f3cc4 +size 13022587 diff --git a/Starbreach/Resources/Props/DPU/DPU1_Rust_N.png b/Starbreach/Resources/Props/DPU/DPU1_Rust_N.png new file mode 100644 index 0000000..1a0ec80 --- /dev/null +++ b/Starbreach/Resources/Props/DPU/DPU1_Rust_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46d4f2234d3f3f7200149b919d7a40c1c8f78a21a91312f9148134cdbb1b2aba +size 35376923 diff --git a/Starbreach/Resources/Props/DPU/DPU2.FBX b/Starbreach/Resources/Props/DPU/DPU2.FBX new file mode 100644 index 0000000..703f7bb --- /dev/null +++ b/Starbreach/Resources/Props/DPU/DPU2.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8b29b6211e8ae31c89e2233017d94f0dd393b95b1a23490511d8ed9a20dbe41 +size 180976 diff --git a/Starbreach/Resources/Props/DPU/DPU2_AO.png b/Starbreach/Resources/Props/DPU/DPU2_AO.png new file mode 100644 index 0000000..31d391c --- /dev/null +++ b/Starbreach/Resources/Props/DPU/DPU2_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d22135bb2a44188536ab24044cb7d17ef7f457bb3e0f9b20a6e6f8279e566a4 +size 5866224 diff --git a/Starbreach/Resources/Props/DPU/DPU2_D.png b/Starbreach/Resources/Props/DPU/DPU2_D.png new file mode 100644 index 0000000..3a2327c --- /dev/null +++ b/Starbreach/Resources/Props/DPU/DPU2_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12251829cca95078a9b77b64c53c4dc6e703c77b19c16a29cad70bc53905d57d +size 31693621 diff --git a/Starbreach/Resources/Props/DPU/DPU2_E.png b/Starbreach/Resources/Props/DPU/DPU2_E.png new file mode 100644 index 0000000..bcda21d --- /dev/null +++ b/Starbreach/Resources/Props/DPU/DPU2_E.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdad7afa1fd794970bd7839b4d2d8f39d40e29fe49d76c11ecfcdac9ea360b06 +size 44336 diff --git a/Starbreach/Resources/Props/DPU/DPU2_G.png b/Starbreach/Resources/Props/DPU/DPU2_G.png new file mode 100644 index 0000000..d1f1c38 --- /dev/null +++ b/Starbreach/Resources/Props/DPU/DPU2_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2a5478d1614304eb11aa7d3726e021dbea38ab3744109860aede3b47ad6b341 +size 10315867 diff --git a/Starbreach/Resources/Props/DPU/DPU2_M.png b/Starbreach/Resources/Props/DPU/DPU2_M.png new file mode 100644 index 0000000..65e05e3 --- /dev/null +++ b/Starbreach/Resources/Props/DPU/DPU2_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c161be3dc21eb52ee2a236253119fd66149e8b2551b7c7b5f016a9474b6cd674 +size 2579090 diff --git a/Starbreach/Resources/Props/DPU/DPU2_N.png b/Starbreach/Resources/Props/DPU/DPU2_N.png new file mode 100644 index 0000000..cf645d8 --- /dev/null +++ b/Starbreach/Resources/Props/DPU/DPU2_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efb028da00dbfccfa8b1c99d023434988439bbc7b87b122a40a9bae15073c909 +size 5278702 diff --git a/Starbreach/Resources/Props/DPU/DPU2_Rust_D.png b/Starbreach/Resources/Props/DPU/DPU2_Rust_D.png new file mode 100644 index 0000000..56259b5 --- /dev/null +++ b/Starbreach/Resources/Props/DPU/DPU2_Rust_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa9c29a18b63e73e40f391ca5af254c4f4e3aa283b9d00f2908b0a08f4594e80 +size 39814914 diff --git a/Starbreach/Resources/Props/DPU/DPU2_Rust_G.png b/Starbreach/Resources/Props/DPU/DPU2_Rust_G.png new file mode 100644 index 0000000..5544163 --- /dev/null +++ b/Starbreach/Resources/Props/DPU/DPU2_Rust_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed6204c89a97f20a896ed3129b8b6d402704e14bc27fdb71a5e830538c550c6d +size 14634703 diff --git a/Starbreach/Resources/Props/DPU/DPU2_Rust_M.png b/Starbreach/Resources/Props/DPU/DPU2_Rust_M.png new file mode 100644 index 0000000..9b2f9b7 --- /dev/null +++ b/Starbreach/Resources/Props/DPU/DPU2_Rust_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a349c90c725424cd745a2b53ac6f7bd8ae34cab5bd79c4ad636c218dbf8d11fd +size 14105356 diff --git a/Starbreach/Resources/Props/DPU/DPU2_Rust_N.png b/Starbreach/Resources/Props/DPU/DPU2_Rust_N.png new file mode 100644 index 0000000..9ac60a6 --- /dev/null +++ b/Starbreach/Resources/Props/DPU/DPU2_Rust_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d4d40ad24262ab249dd5584640c4a039651678d47e56842a573803265986b55 +size 31642416 diff --git a/Starbreach/Resources/Props/DataPad/DataPad.FBX b/Starbreach/Resources/Props/DataPad/DataPad.FBX new file mode 100644 index 0000000..7ebd190 --- /dev/null +++ b/Starbreach/Resources/Props/DataPad/DataPad.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9ce5fc386358e397ead441cb1836f8cb60f32f06ede26d1f983013edadd3fe6 +size 96512 diff --git a/Starbreach/Resources/Props/DataPad/DataPad_AO.png b/Starbreach/Resources/Props/DataPad/DataPad_AO.png new file mode 100644 index 0000000..d1c2e52 --- /dev/null +++ b/Starbreach/Resources/Props/DataPad/DataPad_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ed8bfbb69b190f09128eb1c563c41d82dfa907e30dcdbb331ce94c4cef156d7 +size 3763817 diff --git a/Starbreach/Resources/Props/DataPad/DataPad_D.png b/Starbreach/Resources/Props/DataPad/DataPad_D.png new file mode 100644 index 0000000..6488c24 --- /dev/null +++ b/Starbreach/Resources/Props/DataPad/DataPad_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4309e2884f8225000721f4eb5946b579a7e8196a72e99c121a18eaa95caf807 +size 40397202 diff --git a/Starbreach/Resources/Props/DataPad/DataPad_E.png b/Starbreach/Resources/Props/DataPad/DataPad_E.png new file mode 100644 index 0000000..a119c40 --- /dev/null +++ b/Starbreach/Resources/Props/DataPad/DataPad_E.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9882e204615e513f022688a6c31518e290659defedf994c21d1798fa6306477a +size 887062 diff --git a/Starbreach/Resources/Props/DataPad/DataPad_G.png b/Starbreach/Resources/Props/DataPad/DataPad_G.png new file mode 100644 index 0000000..2430885 --- /dev/null +++ b/Starbreach/Resources/Props/DataPad/DataPad_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:151c283fba348d1a156620c28b6880d3a77c8f1af743deaa37c0e6853fc04e9b +size 12836785 diff --git a/Starbreach/Resources/Props/DataPad/DataPad_M.png b/Starbreach/Resources/Props/DataPad/DataPad_M.png new file mode 100644 index 0000000..391e616 --- /dev/null +++ b/Starbreach/Resources/Props/DataPad/DataPad_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d57a0155e745cee005a40e46d4205ca496ffb5a5b06f8998161ac7901ae8056f +size 11915273 diff --git a/Starbreach/Resources/Props/DataPad/DataPad_N.png b/Starbreach/Resources/Props/DataPad/DataPad_N.png new file mode 100644 index 0000000..f14ec61 --- /dev/null +++ b/Starbreach/Resources/Props/DataPad/DataPad_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5a3f40643e4cc7130d20399717ce7cd00ed9f07cb6a1fdc15959072aacb7e6d +size 30004123 diff --git a/Starbreach/Resources/Props/DataSwitcher/DataSwitcher.FBX b/Starbreach/Resources/Props/DataSwitcher/DataSwitcher.FBX new file mode 100644 index 0000000..aca60a5 --- /dev/null +++ b/Starbreach/Resources/Props/DataSwitcher/DataSwitcher.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b844436c038e2544992a17882838f2149689b7b951700e8a30882185dc66be8a +size 600240 diff --git a/Starbreach/Resources/Props/DataSwitcher/DataSwitcher_AO.png b/Starbreach/Resources/Props/DataSwitcher/DataSwitcher_AO.png new file mode 100644 index 0000000..17121db --- /dev/null +++ b/Starbreach/Resources/Props/DataSwitcher/DataSwitcher_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2b28d07260255852763d9d11bf4a84855144bffa120c288d5fe582d067d67d5 +size 7926477 diff --git a/Starbreach/Resources/Props/DataSwitcher/DataSwitcher_D.png b/Starbreach/Resources/Props/DataSwitcher/DataSwitcher_D.png new file mode 100644 index 0000000..09e295e --- /dev/null +++ b/Starbreach/Resources/Props/DataSwitcher/DataSwitcher_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b45613ea3f2e13cee70ef79313480a8612fdbd4d3af049793bcddcdea1dd8b2a +size 38345164 diff --git a/Starbreach/Resources/Props/DataSwitcher/DataSwitcher_E.png b/Starbreach/Resources/Props/DataSwitcher/DataSwitcher_E.png new file mode 100644 index 0000000..ecb9cb8 --- /dev/null +++ b/Starbreach/Resources/Props/DataSwitcher/DataSwitcher_E.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5a46ea88a4cd9b015ebd7e5bfdbde240b08ae9b4d295efef09867ee24954da5 +size 339037 diff --git a/Starbreach/Resources/Props/DataSwitcher/DataSwitcher_G.png b/Starbreach/Resources/Props/DataSwitcher/DataSwitcher_G.png new file mode 100644 index 0000000..d78c263 --- /dev/null +++ b/Starbreach/Resources/Props/DataSwitcher/DataSwitcher_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:037c32881729d1309956f82937f22c77d56aeabf41673aab3277739c69a507cf +size 13432881 diff --git a/Starbreach/Resources/Props/DataSwitcher/DataSwitcher_M.png b/Starbreach/Resources/Props/DataSwitcher/DataSwitcher_M.png new file mode 100644 index 0000000..46cf76c --- /dev/null +++ b/Starbreach/Resources/Props/DataSwitcher/DataSwitcher_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f3d94ef651182bed0929a7056b6b75a773a40176ef123811b5ab22dfa850755 +size 9287489 diff --git a/Starbreach/Resources/Props/DataSwitcher/DataSwitcher_N.png b/Starbreach/Resources/Props/DataSwitcher/DataSwitcher_N.png new file mode 100644 index 0000000..fc1a9e9 --- /dev/null +++ b/Starbreach/Resources/Props/DataSwitcher/DataSwitcher_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:165cd1e68e1da760398653c2f1e456424c3cb4c2c4227e4bfd7fe37437c805a1 +size 32356153 diff --git a/Starbreach/Resources/Props/ExplosedCells/Cells_damage.FBX b/Starbreach/Resources/Props/ExplosedCells/Cells_damage.FBX new file mode 100644 index 0000000..3a3f497 --- /dev/null +++ b/Starbreach/Resources/Props/ExplosedCells/Cells_damage.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5c95ef797b135aa54b2d8139de5ecc8f022bd013e4a636d9237aa76a5f8e249 +size 624544 diff --git a/Starbreach/Resources/Props/ExplosedCells/Cells_damaged_D.png b/Starbreach/Resources/Props/ExplosedCells/Cells_damaged_D.png new file mode 100644 index 0000000..2d9f924 --- /dev/null +++ b/Starbreach/Resources/Props/ExplosedCells/Cells_damaged_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8abb30c8651fa889dabc7fa107fdfaa8a4784a3cef71741ba5d3e65ab448384 +size 30760192 diff --git a/Starbreach/Resources/Props/ExplosedCells/Cells_damaged_E.png b/Starbreach/Resources/Props/ExplosedCells/Cells_damaged_E.png new file mode 100644 index 0000000..24fa8c7 --- /dev/null +++ b/Starbreach/Resources/Props/ExplosedCells/Cells_damaged_E.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80895c00a5bf3ee652dbe9f460460891fc88b84aefb02ae0decab4f36d100d95 +size 2562217 diff --git a/Starbreach/Resources/Props/ExplosedCells/Cells_damaged_G.png b/Starbreach/Resources/Props/ExplosedCells/Cells_damaged_G.png new file mode 100644 index 0000000..5c9dd56 --- /dev/null +++ b/Starbreach/Resources/Props/ExplosedCells/Cells_damaged_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f9074581d6b27fc8ad81a18a182e0ab82d7056fa2750291b43c039001319779 +size 11414976 diff --git a/Starbreach/Resources/Props/ExplosedCells/Cells_damaged_M.png b/Starbreach/Resources/Props/ExplosedCells/Cells_damaged_M.png new file mode 100644 index 0000000..47d4a09 --- /dev/null +++ b/Starbreach/Resources/Props/ExplosedCells/Cells_damaged_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a502231e37bd47d5a8a6269b35fab1758360a5ff6c11fc171c9ad2187046f8a9 +size 9030219 diff --git a/Starbreach/Resources/Props/ExplosedCells/Cells_damaged_N.png b/Starbreach/Resources/Props/ExplosedCells/Cells_damaged_N.png new file mode 100644 index 0000000..4611a82 --- /dev/null +++ b/Starbreach/Resources/Props/ExplosedCells/Cells_damaged_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7204333802b8c875aa6632358bb02336c695afd56c69441a292abbbcc849e429 +size 18532491 diff --git a/Starbreach/Resources/Props/ExplosedCells/Pipes_damage_AO.png b/Starbreach/Resources/Props/ExplosedCells/Pipes_damage_AO.png new file mode 100644 index 0000000..1e7efa7 --- /dev/null +++ b/Starbreach/Resources/Props/ExplosedCells/Pipes_damage_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe64f8604c7d8cec73becdd059f7b59ec418aeffb880291a18909afe1374d5d8 +size 6113358 diff --git a/Starbreach/Resources/Props/ExplosedCells/Pipes_damage_D.png b/Starbreach/Resources/Props/ExplosedCells/Pipes_damage_D.png new file mode 100644 index 0000000..49255f5 --- /dev/null +++ b/Starbreach/Resources/Props/ExplosedCells/Pipes_damage_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae935d55ffa29f0cdf7d25079beb78b04f2758791581f26c7a02e3b4e94d2bd8 +size 35658204 diff --git a/Starbreach/Resources/Props/ExplosedCells/Pipes_damage_E.png b/Starbreach/Resources/Props/ExplosedCells/Pipes_damage_E.png new file mode 100644 index 0000000..3ea82db --- /dev/null +++ b/Starbreach/Resources/Props/ExplosedCells/Pipes_damage_E.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5119a35cc223f3796688e393353899d23796675c14dadfe57ea5524280df6060 +size 3579327 diff --git a/Starbreach/Resources/Props/ExplosedCells/Pipes_damage_G.png b/Starbreach/Resources/Props/ExplosedCells/Pipes_damage_G.png new file mode 100644 index 0000000..e23fe32 --- /dev/null +++ b/Starbreach/Resources/Props/ExplosedCells/Pipes_damage_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2987795e50994bb33bf56af95c1517c7c0281f21fb6bce500f2752955f197153 +size 11286582 diff --git a/Starbreach/Resources/Props/ExplosedCells/Pipes_damage_M.png b/Starbreach/Resources/Props/ExplosedCells/Pipes_damage_M.png new file mode 100644 index 0000000..9203e00 --- /dev/null +++ b/Starbreach/Resources/Props/ExplosedCells/Pipes_damage_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2624519b1d69fcec6b8d19036a173f9c124a8c0198f98a4d28e891344259fc1a +size 10033781 diff --git a/Starbreach/Resources/Props/ExplosedCells/Pipes_damage_N.png b/Starbreach/Resources/Props/ExplosedCells/Pipes_damage_N.png new file mode 100644 index 0000000..117eded --- /dev/null +++ b/Starbreach/Resources/Props/ExplosedCells/Pipes_damage_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b56d5e9cff09390c265b6f8763ed22b340d47e85b198a6b59316333dc491e992 +size 40685830 diff --git a/Starbreach/Resources/Props/FloorRocks/FloorRock.FBX b/Starbreach/Resources/Props/FloorRocks/FloorRock.FBX new file mode 100644 index 0000000..bb1d3e1 --- /dev/null +++ b/Starbreach/Resources/Props/FloorRocks/FloorRock.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22c993106526490b92b9c72cd25bfc6c25c7fc948701edc32935f3d91b01ee31 +size 126960 diff --git a/Starbreach/Resources/Props/FloorRocks/FloorRock_2.FBX b/Starbreach/Resources/Props/FloorRocks/FloorRock_2.FBX new file mode 100644 index 0000000..92484bf --- /dev/null +++ b/Starbreach/Resources/Props/FloorRocks/FloorRock_2.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a580aea4851a8161068a3f128589a2f945efa1a0bf241d13ce3e103eeeda383b +size 57648 diff --git a/Starbreach/Resources/Props/FloorRocks/FloorRock_3.FBX b/Starbreach/Resources/Props/FloorRocks/FloorRock_3.FBX new file mode 100644 index 0000000..8382a14 --- /dev/null +++ b/Starbreach/Resources/Props/FloorRocks/FloorRock_3.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5877b2985f343890f7a0f72bf50e4abfe1824126540b7512648d61080bdb5db7 +size 49184 diff --git a/Starbreach/Resources/Props/FloorRocks/FloorRock_4.FBX b/Starbreach/Resources/Props/FloorRocks/FloorRock_4.FBX new file mode 100644 index 0000000..0f8683c --- /dev/null +++ b/Starbreach/Resources/Props/FloorRocks/FloorRock_4.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0c6e2a471de5659c8e615a7bd41823534cefc432ef9307319ccec0261c2ed36 +size 57136 diff --git a/Starbreach/Resources/Props/FloorRocks/FloorRock_5.FBX b/Starbreach/Resources/Props/FloorRocks/FloorRock_5.FBX new file mode 100644 index 0000000..00afa31 --- /dev/null +++ b/Starbreach/Resources/Props/FloorRocks/FloorRock_5.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66591b3899a0aeab3a84040581f1266bfe20d469d2f31da40ffb05af4cc63077 +size 46704 diff --git a/Starbreach/Resources/Props/FloorRocks/FloorRock_6.FBX b/Starbreach/Resources/Props/FloorRocks/FloorRock_6.FBX new file mode 100644 index 0000000..858366f --- /dev/null +++ b/Starbreach/Resources/Props/FloorRocks/FloorRock_6.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77b88c7166a0a3a17b9fd93ca721e5aa69291303230f5c11fe50225f0424851f +size 37168 diff --git a/Starbreach/Resources/Props/FloorRocks/FloorRock_AO.png b/Starbreach/Resources/Props/FloorRocks/FloorRock_AO.png new file mode 100644 index 0000000..012dd3b --- /dev/null +++ b/Starbreach/Resources/Props/FloorRocks/FloorRock_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26b1d48f3d8f98b6fe11793d85ae0093b181a2e1a3280463eed21444a47de07d +size 7516465 diff --git a/Starbreach/Resources/Props/FloorRocks/FloorRock_D.png b/Starbreach/Resources/Props/FloorRocks/FloorRock_D.png new file mode 100644 index 0000000..f571b81 --- /dev/null +++ b/Starbreach/Resources/Props/FloorRocks/FloorRock_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9bcd3772f10631b8dcd241c918e87900e57e3ba9f307d5d6d17b4f4e03e4068 +size 39771992 diff --git a/Starbreach/Resources/Props/FloorRocks/FloorRock_G.png b/Starbreach/Resources/Props/FloorRocks/FloorRock_G.png new file mode 100644 index 0000000..3b41d50 --- /dev/null +++ b/Starbreach/Resources/Props/FloorRocks/FloorRock_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d6b9d436b500186dbe42949f21831ca077946bcbe9092c264431f6d76c8c608 +size 9155984 diff --git a/Starbreach/Resources/Props/FloorRocks/FloorRock_M.png b/Starbreach/Resources/Props/FloorRocks/FloorRock_M.png new file mode 100644 index 0000000..0421be3 --- /dev/null +++ b/Starbreach/Resources/Props/FloorRocks/FloorRock_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dac23c16e3f1d5273cfee2f4b8b8d81bc4d37118bd6f76444526b7bc4c975b01 +size 3148577 diff --git a/Starbreach/Resources/Props/FloorRocks/FloorRock_N.png b/Starbreach/Resources/Props/FloorRocks/FloorRock_N.png new file mode 100644 index 0000000..b4c2ec8 --- /dev/null +++ b/Starbreach/Resources/Props/FloorRocks/FloorRock_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37192e62fb2d7137bbf52f958c0cc91e10079fd55f40dd455fa300651fa9ae60 +size 27346833 diff --git a/Starbreach/Resources/Props/GasPump/GasPump.FBX b/Starbreach/Resources/Props/GasPump/GasPump.FBX new file mode 100644 index 0000000..1306190 --- /dev/null +++ b/Starbreach/Resources/Props/GasPump/GasPump.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25d500e329cc36e28a9135baac5f22cc69a4b0f7004383884f445d50b8572a40 +size 298704 diff --git a/Starbreach/Resources/Props/GasPump/GasPump_AO.png b/Starbreach/Resources/Props/GasPump/GasPump_AO.png new file mode 100644 index 0000000..e07dc84 --- /dev/null +++ b/Starbreach/Resources/Props/GasPump/GasPump_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a252f73235ce4ee52ad576b7efcb6fe8ef392e77cb27711af9ac5309585390b0 +size 3822731 diff --git a/Starbreach/Resources/Props/GasPump/GasPump_D.png b/Starbreach/Resources/Props/GasPump/GasPump_D.png new file mode 100644 index 0000000..62d0f4f --- /dev/null +++ b/Starbreach/Resources/Props/GasPump/GasPump_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5887dfc2ed4bccf2ca2459e01f68d32be0afa4bb33cc303a9d78eb0dfc862a8 +size 36902651 diff --git a/Starbreach/Resources/Props/GasPump/GasPump_G.png b/Starbreach/Resources/Props/GasPump/GasPump_G.png new file mode 100644 index 0000000..d640a3e --- /dev/null +++ b/Starbreach/Resources/Props/GasPump/GasPump_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3e4cea716a3413e4daf3f9e1574452f94a62d212339545faa9f062219e51960 +size 13379186 diff --git a/Starbreach/Resources/Props/GasPump/GasPump_M.png b/Starbreach/Resources/Props/GasPump/GasPump_M.png new file mode 100644 index 0000000..5db1626 --- /dev/null +++ b/Starbreach/Resources/Props/GasPump/GasPump_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dffaba9cac54ec4520e241569b8246e1de0d99e1119e29cc2acdb065685103d +size 8273339 diff --git a/Starbreach/Resources/Props/GasPump/GasPump_N.png b/Starbreach/Resources/Props/GasPump/GasPump_N.png new file mode 100644 index 0000000..8edb18e --- /dev/null +++ b/Starbreach/Resources/Props/GasPump/GasPump_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5608a82e63fd40f0f62cad66b5a0e4a1cd9e03e70c617b200ea96e895fba7d0 +size 34918611 diff --git a/Starbreach/Resources/Props/Generator/Generator.FBX b/Starbreach/Resources/Props/Generator/Generator.FBX new file mode 100644 index 0000000..2f3313d --- /dev/null +++ b/Starbreach/Resources/Props/Generator/Generator.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66e53cc9fcec657b276bf0e03b6838545dc1f0f59768c62eaa8ecb28c8454c1b +size 455152 diff --git a/Starbreach/Resources/Props/Generator/Generator_AO.png b/Starbreach/Resources/Props/Generator/Generator_AO.png new file mode 100644 index 0000000..7c3ea57 --- /dev/null +++ b/Starbreach/Resources/Props/Generator/Generator_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dd1b32452f8d6a9e24f4d20b67b4f896e5bea574002ebf3b6e6e88b119bc482 +size 7183425 diff --git a/Starbreach/Resources/Props/Generator/Generator_D.png b/Starbreach/Resources/Props/Generator/Generator_D.png new file mode 100644 index 0000000..07a84c5 --- /dev/null +++ b/Starbreach/Resources/Props/Generator/Generator_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eddfd7c5ce5129b02aa37412f9baa13413b5d9c98a02bfd177e22a211da2d26c +size 30606207 diff --git a/Starbreach/Resources/Props/Generator/Generator_E.png b/Starbreach/Resources/Props/Generator/Generator_E.png new file mode 100644 index 0000000..68c08a9 --- /dev/null +++ b/Starbreach/Resources/Props/Generator/Generator_E.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c458c17fd27a66161a457f1f782af5de51e1e9b6fed709043271df7c558142c5 +size 100345 diff --git a/Starbreach/Resources/Props/Generator/Generator_G.png b/Starbreach/Resources/Props/Generator/Generator_G.png new file mode 100644 index 0000000..3580bde --- /dev/null +++ b/Starbreach/Resources/Props/Generator/Generator_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8aa39aa3c6dd35e441952bb97b48b00a3192c410055156ff3f9ab4731ae775e6 +size 12759574 diff --git a/Starbreach/Resources/Props/Generator/Generator_M.png b/Starbreach/Resources/Props/Generator/Generator_M.png new file mode 100644 index 0000000..f6aa5f1 --- /dev/null +++ b/Starbreach/Resources/Props/Generator/Generator_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f22b9f844409897f15dc315fc5096e20fca2e2b9e5a20a9e5546ff69a05fd3b +size 2678475 diff --git a/Starbreach/Resources/Props/Generator/Generator_N.png b/Starbreach/Resources/Props/Generator/Generator_N.png new file mode 100644 index 0000000..3b8ff9c --- /dev/null +++ b/Starbreach/Resources/Props/Generator/Generator_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7744a18eb9998c6c68674204b6e754cdedb92d75945cf074799f5744a8bc455d +size 27750266 diff --git a/Starbreach/Resources/Props/OilPump/OilPump.FBX b/Starbreach/Resources/Props/OilPump/OilPump.FBX new file mode 100644 index 0000000..f267c65 --- /dev/null +++ b/Starbreach/Resources/Props/OilPump/OilPump.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16fd47a9adbb3af07ccc6ad52019ad8d2572e3e8478e87e876d51781e036dbc9 +size 87824 diff --git a/Starbreach/Resources/Props/OilPump/OilPump_AO.png b/Starbreach/Resources/Props/OilPump/OilPump_AO.png new file mode 100644 index 0000000..fe7bb52 --- /dev/null +++ b/Starbreach/Resources/Props/OilPump/OilPump_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28f31b74283a883e92ed33f7930694db202a16b284c952438b2837cc4b5c5717 +size 4003357 diff --git a/Starbreach/Resources/Props/OilPump/OilPump_D.png b/Starbreach/Resources/Props/OilPump/OilPump_D.png new file mode 100644 index 0000000..d585570 --- /dev/null +++ b/Starbreach/Resources/Props/OilPump/OilPump_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb0a00954d48ce59ca56a29510552223d452f9bfc892b19db1ae3155d9c405ed +size 35871177 diff --git a/Starbreach/Resources/Props/OilPump/OilPump_G.png b/Starbreach/Resources/Props/OilPump/OilPump_G.png new file mode 100644 index 0000000..128060c --- /dev/null +++ b/Starbreach/Resources/Props/OilPump/OilPump_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:978cd329172b19fcfce00153707ad4c79f1b4d935fba123e0d707a5ce1b73d47 +size 14669987 diff --git a/Starbreach/Resources/Props/OilPump/OilPump_M.png b/Starbreach/Resources/Props/OilPump/OilPump_M.png new file mode 100644 index 0000000..b01a239 --- /dev/null +++ b/Starbreach/Resources/Props/OilPump/OilPump_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62eee5e39046226f0aece738b0805761229614b2a02331b212b24db3c9075696 +size 1446163 diff --git a/Starbreach/Resources/Props/OilPump/OilPump_N.png b/Starbreach/Resources/Props/OilPump/OilPump_N.png new file mode 100644 index 0000000..19c3ce3 --- /dev/null +++ b/Starbreach/Resources/Props/OilPump/OilPump_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:112020ea414a8e712090a8285a87aba9b40d0199cc4523f46a729763d09f04d1 +size 30402321 diff --git a/Starbreach/Resources/Props/Pillar1/Pillar1.FBX b/Starbreach/Resources/Props/Pillar1/Pillar1.FBX new file mode 100644 index 0000000..4431c08 --- /dev/null +++ b/Starbreach/Resources/Props/Pillar1/Pillar1.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5599cc2afa3ca7064cf26b94cd7d6fae4533eb8332bbc7c8063d2a5d518816fd +size 123392 diff --git a/Starbreach/Resources/Props/Pillar1/Pillar1_ E.png b/Starbreach/Resources/Props/Pillar1/Pillar1_ E.png new file mode 100644 index 0000000..2158062 --- /dev/null +++ b/Starbreach/Resources/Props/Pillar1/Pillar1_ E.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b00c63a3d459f46b3c7cd294ec9d933249654ce0fd775ef4d837b9fa501094c +size 214338 diff --git a/Starbreach/Resources/Props/Pillar1/Pillar1_ M.png b/Starbreach/Resources/Props/Pillar1/Pillar1_ M.png new file mode 100644 index 0000000..1d2a410 --- /dev/null +++ b/Starbreach/Resources/Props/Pillar1/Pillar1_ M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d2971a5d4261cdbcec5a000c5ebd3e699e1da0a255fe30689c376f215b73e25 +size 814528 diff --git a/Starbreach/Resources/Props/Pillar1/Pillar1_AO.png b/Starbreach/Resources/Props/Pillar1/Pillar1_AO.png new file mode 100644 index 0000000..0da6435 --- /dev/null +++ b/Starbreach/Resources/Props/Pillar1/Pillar1_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6d8a8852fe15cd71ba387c56482a7f3571e98a0425f946835f056c8a95f23fc +size 3821040 diff --git a/Starbreach/Resources/Props/Pillar1/Pillar1_D.png b/Starbreach/Resources/Props/Pillar1/Pillar1_D.png new file mode 100644 index 0000000..21cd7f7 --- /dev/null +++ b/Starbreach/Resources/Props/Pillar1/Pillar1_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d40729ea72d173c2558bb35ee037ff79429e82fe9e5f9c4c753f5fc73b90ad5e +size 20511902 diff --git a/Starbreach/Resources/Props/Pillar1/Pillar1_G.png b/Starbreach/Resources/Props/Pillar1/Pillar1_G.png new file mode 100644 index 0000000..47dc2e1 --- /dev/null +++ b/Starbreach/Resources/Props/Pillar1/Pillar1_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:010b03276a9d06bc7c21625a0a00962a275f90a7308c2719315b1c26590c5ee0 +size 5904497 diff --git a/Starbreach/Resources/Props/Pillar1/Pillar1_N.png b/Starbreach/Resources/Props/Pillar1/Pillar1_N.png new file mode 100644 index 0000000..b9c03be --- /dev/null +++ b/Starbreach/Resources/Props/Pillar1/Pillar1_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4054f04c392dde1fe4033955cf408563c22f1f6226b2a180e0beb5d5b196813e +size 5017478 diff --git a/Starbreach/Resources/Props/Pillar1/Pillar1_Rust_D.png b/Starbreach/Resources/Props/Pillar1/Pillar1_Rust_D.png new file mode 100644 index 0000000..e1a8253 --- /dev/null +++ b/Starbreach/Resources/Props/Pillar1/Pillar1_Rust_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:288cd9ff298e02d1d3c30fea10befc0006ee739f20ce1d79d39bdc377b210ac9 +size 28528268 diff --git a/Starbreach/Resources/Props/Pillar1/Pillar1_Rust_G.png b/Starbreach/Resources/Props/Pillar1/Pillar1_Rust_G.png new file mode 100644 index 0000000..a2125bf --- /dev/null +++ b/Starbreach/Resources/Props/Pillar1/Pillar1_Rust_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd561f6bb4f93e473a55bc4e661d2d47a2d54c5652fbdbf656bc9a9df74c553d +size 9733137 diff --git a/Starbreach/Resources/Props/Pillar1/Pillar1_Rust_M.png b/Starbreach/Resources/Props/Pillar1/Pillar1_Rust_M.png new file mode 100644 index 0000000..5a93e35 --- /dev/null +++ b/Starbreach/Resources/Props/Pillar1/Pillar1_Rust_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:483ca479a409d822abc5a9c0795add7c2ad8a1a58747b08bd7aa3c30ab44ca37 +size 9223096 diff --git a/Starbreach/Resources/Props/Pillar1/Pillar1_Rust_N.png b/Starbreach/Resources/Props/Pillar1/Pillar1_Rust_N.png new file mode 100644 index 0000000..471fb7e --- /dev/null +++ b/Starbreach/Resources/Props/Pillar1/Pillar1_Rust_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b795279f5e3b96b5bbb76ee3cbf2f355f7314b03b2ed5a848134b40eea1d4cf +size 30786247 diff --git a/Starbreach/Resources/Props/Pillar2/Pillar2.FBX b/Starbreach/Resources/Props/Pillar2/Pillar2.FBX new file mode 100644 index 0000000..9e25efd --- /dev/null +++ b/Starbreach/Resources/Props/Pillar2/Pillar2.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a74db34ed4264512efa41239cc72694bfa79fc189493ae24465c7cc64bd1d2f +size 76608 diff --git a/Starbreach/Resources/Props/Pillar2/Pillar2_2.FBX b/Starbreach/Resources/Props/Pillar2/Pillar2_2.FBX new file mode 100644 index 0000000..426847b --- /dev/null +++ b/Starbreach/Resources/Props/Pillar2/Pillar2_2.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75ca19942156cebdf840b622910eee75c8a95d5991431f009e097ebbf845350a +size 83360 diff --git a/Starbreach/Resources/Props/Pillar2/Pillar2_AO.png b/Starbreach/Resources/Props/Pillar2/Pillar2_AO.png new file mode 100644 index 0000000..ee8c157 --- /dev/null +++ b/Starbreach/Resources/Props/Pillar2/Pillar2_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5fdea9f400d5d53c68f816f701b955bc67fff22c1454be6a8a54d81eae2c645 +size 3546724 diff --git a/Starbreach/Resources/Props/Pillar2/Pillar2_D.png b/Starbreach/Resources/Props/Pillar2/Pillar2_D.png new file mode 100644 index 0000000..05209c4 --- /dev/null +++ b/Starbreach/Resources/Props/Pillar2/Pillar2_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:725923ec228dfc5b467c50601b36d67ad99d2c752f8234a982feddb1c5dda86f +size 41891686 diff --git a/Starbreach/Resources/Props/Pillar2/Pillar2_E.png b/Starbreach/Resources/Props/Pillar2/Pillar2_E.png new file mode 100644 index 0000000..042fb31 --- /dev/null +++ b/Starbreach/Resources/Props/Pillar2/Pillar2_E.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf82c126718053892151c273117e8b2677fd3eed601538c4467559e757340c47 +size 983767 diff --git a/Starbreach/Resources/Props/Pillar2/Pillar2_G.png b/Starbreach/Resources/Props/Pillar2/Pillar2_G.png new file mode 100644 index 0000000..0bffa70 --- /dev/null +++ b/Starbreach/Resources/Props/Pillar2/Pillar2_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c53161027656cb6a9e1f91e08829970a3d8985662bebc06c270783f10a65ed56 +size 14098900 diff --git a/Starbreach/Resources/Props/Pillar2/Pillar2_M.png b/Starbreach/Resources/Props/Pillar2/Pillar2_M.png new file mode 100644 index 0000000..7acafbf --- /dev/null +++ b/Starbreach/Resources/Props/Pillar2/Pillar2_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80677bfc00998758f86fc5d86a3962662b4f104dfec973e02a14715a656d3dda +size 14223201 diff --git a/Starbreach/Resources/Props/Pillar2/Pillar2_N.png b/Starbreach/Resources/Props/Pillar2/Pillar2_N.png new file mode 100644 index 0000000..74fc642 --- /dev/null +++ b/Starbreach/Resources/Props/Pillar2/Pillar2_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29201d56cb40b73cd51411bed5710171c6815aee6f62539e42278b296addb762 +size 31969259 diff --git a/Starbreach/Resources/Props/QuadBarrels/QuadBarrels.FBX b/Starbreach/Resources/Props/QuadBarrels/QuadBarrels.FBX new file mode 100644 index 0000000..10ad3df --- /dev/null +++ b/Starbreach/Resources/Props/QuadBarrels/QuadBarrels.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42ba5911a30c591c3d7c9506dc3356b1cefe97925236ede26f4c932335c39064 +size 214928 diff --git a/Starbreach/Resources/Props/QuadBarrels/QuadBarrels_AO.png b/Starbreach/Resources/Props/QuadBarrels/QuadBarrels_AO.png new file mode 100644 index 0000000..dfbc392 --- /dev/null +++ b/Starbreach/Resources/Props/QuadBarrels/QuadBarrels_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37b781624efbcf3ac43a364137241905cee6e0eadf830be8ca25a0a111a7e8c3 +size 2899411 diff --git a/Starbreach/Resources/Props/QuadBarrels/QuadBarrels_D.png b/Starbreach/Resources/Props/QuadBarrels/QuadBarrels_D.png new file mode 100644 index 0000000..27d58b3 --- /dev/null +++ b/Starbreach/Resources/Props/QuadBarrels/QuadBarrels_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a94cbc228386eac23ae684b488ff1efb675af28eff5891917be5c5f002eec8c2 +size 30929573 diff --git a/Starbreach/Resources/Props/QuadBarrels/QuadBarrels_G.png b/Starbreach/Resources/Props/QuadBarrels/QuadBarrels_G.png new file mode 100644 index 0000000..6ecfb2b --- /dev/null +++ b/Starbreach/Resources/Props/QuadBarrels/QuadBarrels_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e2792f4a6e08f8e141ac434eef47962de9d0866b757d08f132a53d5c956b59a +size 11220493 diff --git a/Starbreach/Resources/Props/QuadBarrels/QuadBarrels_M.png b/Starbreach/Resources/Props/QuadBarrels/QuadBarrels_M.png new file mode 100644 index 0000000..67165e6 --- /dev/null +++ b/Starbreach/Resources/Props/QuadBarrels/QuadBarrels_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e3e79cd5b43bff6ea8a433ae7ce97374e9a226a364c6f59a99769c58dc8a8b6 +size 5491785 diff --git a/Starbreach/Resources/Props/QuadBarrels/QuadBarrels_N.png b/Starbreach/Resources/Props/QuadBarrels/QuadBarrels_N.png new file mode 100644 index 0000000..ffb54ef --- /dev/null +++ b/Starbreach/Resources/Props/QuadBarrels/QuadBarrels_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bae616494ca42a532247d0080d9325e2ca950124cfe16966d24356aff198f99f +size 31776734 diff --git a/Starbreach/Resources/Props/Satellite/Satellite.FBX b/Starbreach/Resources/Props/Satellite/Satellite.FBX new file mode 100644 index 0000000..20e0ef1 --- /dev/null +++ b/Starbreach/Resources/Props/Satellite/Satellite.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0b49803d4501ade99c308378755ab66f72826483b0eba1884d4ece09977131c +size 310320 diff --git a/Starbreach/Resources/Props/Satellite/Satellite_AO.png b/Starbreach/Resources/Props/Satellite/Satellite_AO.png new file mode 100644 index 0000000..9fd6354 --- /dev/null +++ b/Starbreach/Resources/Props/Satellite/Satellite_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:224d6d38abc034793924169e6cfaa023ff40e771822b1e142494e028e30a701d +size 4418737 diff --git a/Starbreach/Resources/Props/Satellite/Satellite_D.png b/Starbreach/Resources/Props/Satellite/Satellite_D.png new file mode 100644 index 0000000..25970cb --- /dev/null +++ b/Starbreach/Resources/Props/Satellite/Satellite_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10ec5a09b4dec1c8a04961cf2f52a0400e58307846a786cfbc9c755e70d4c899 +size 39582378 diff --git a/Starbreach/Resources/Props/Satellite/Satellite_E.png b/Starbreach/Resources/Props/Satellite/Satellite_E.png new file mode 100644 index 0000000..0338780 --- /dev/null +++ b/Starbreach/Resources/Props/Satellite/Satellite_E.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:234c98fcdfd736c27995cbe1144852ebac40e69bfba86bc7dfea08a21dcf1894 +size 347951 diff --git a/Starbreach/Resources/Props/Satellite/Satellite_G.png b/Starbreach/Resources/Props/Satellite/Satellite_G.png new file mode 100644 index 0000000..c0c228a --- /dev/null +++ b/Starbreach/Resources/Props/Satellite/Satellite_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:270ea214937365403b8d0afe9ab7d967e12ef8cfe4424aebe6aa51d31d1a0084 +size 12491750 diff --git a/Starbreach/Resources/Props/Satellite/Satellite_M.png b/Starbreach/Resources/Props/Satellite/Satellite_M.png new file mode 100644 index 0000000..407e815 --- /dev/null +++ b/Starbreach/Resources/Props/Satellite/Satellite_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:294602689f8223cdedcfe2117d117a8fb8a934a0f2ab4c27fffa5533e9003f97 +size 11994324 diff --git a/Starbreach/Resources/Props/Satellite/Satellite_N.png b/Starbreach/Resources/Props/Satellite/Satellite_N.png new file mode 100644 index 0000000..77643d2 --- /dev/null +++ b/Starbreach/Resources/Props/Satellite/Satellite_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bb2f7fa54016e16a0c7081a2003639a9a4b6a8d2d0d7190b3b03748af4dc863 +size 27110011 diff --git a/Starbreach/Resources/Props/Satellite/Satellite_base.FBX b/Starbreach/Resources/Props/Satellite/Satellite_base.FBX new file mode 100644 index 0000000..ced2c7a --- /dev/null +++ b/Starbreach/Resources/Props/Satellite/Satellite_base.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4136e27cb5e50a8982a076b169415fed79d6ab9a4d5cedb948e2b3be524d1b94 +size 162192 diff --git a/Starbreach/Resources/Props/Satellite/Satellite_plate.FBX b/Starbreach/Resources/Props/Satellite/Satellite_plate.FBX new file mode 100644 index 0000000..80eb37b --- /dev/null +++ b/Starbreach/Resources/Props/Satellite/Satellite_plate.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:744e63f1f19835ca596d592f02251514e11bb8508ca3f0bd12079301135288a1 +size 161120 diff --git a/Starbreach/Resources/Props/ServerPad/ServerPad.FBX b/Starbreach/Resources/Props/ServerPad/ServerPad.FBX new file mode 100644 index 0000000..9b70ced --- /dev/null +++ b/Starbreach/Resources/Props/ServerPad/ServerPad.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f91198ab1f26c490ae3d2288042bf92b6e4490398918593cd09a77ddecf5b79 +size 1255600 diff --git a/Starbreach/Resources/Props/ServerPad/ServerPad_AO.png b/Starbreach/Resources/Props/ServerPad/ServerPad_AO.png new file mode 100644 index 0000000..69f7c4a --- /dev/null +++ b/Starbreach/Resources/Props/ServerPad/ServerPad_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9161d203c88b3582b7b7e663bc9d55ab25c95d5cef0f54b93c338642f2cc392e +size 7680215 diff --git a/Starbreach/Resources/Props/ServerPad/ServerPad_E.png b/Starbreach/Resources/Props/ServerPad/ServerPad_E.png new file mode 100644 index 0000000..56ec3d4 --- /dev/null +++ b/Starbreach/Resources/Props/ServerPad/ServerPad_E.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:010d0e803e2a541b7aa67674eaa0cb44538639c31413edaa3fb3e97e2239ec03 +size 377338 diff --git a/Starbreach/Resources/Props/ServerPad/ServerPad_v1_D.png b/Starbreach/Resources/Props/ServerPad/ServerPad_v1_D.png new file mode 100644 index 0000000..e7ecd16 --- /dev/null +++ b/Starbreach/Resources/Props/ServerPad/ServerPad_v1_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56ba624ce80a3f9b2f463009826d98c6a4825cda3f883a9c340af7a51804c0e0 +size 30727381 diff --git a/Starbreach/Resources/Props/ServerPad/ServerPad_v1_G.png b/Starbreach/Resources/Props/ServerPad/ServerPad_v1_G.png new file mode 100644 index 0000000..0060918 --- /dev/null +++ b/Starbreach/Resources/Props/ServerPad/ServerPad_v1_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4099fe6d2e16745a209e53410ac367302960eb4e71df0f7c4c2eec9d0cb6bf12 +size 10744414 diff --git a/Starbreach/Resources/Props/ServerPad/ServerPad_v1_M.png b/Starbreach/Resources/Props/ServerPad/ServerPad_v1_M.png new file mode 100644 index 0000000..ddb0cd6 --- /dev/null +++ b/Starbreach/Resources/Props/ServerPad/ServerPad_v1_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e10f6f16c3e479c7b5129a3b51ba938e5d8d03732d47ca39b947369b07c8097 +size 1008538 diff --git a/Starbreach/Resources/Props/ServerPad/ServerPad_v1_N.png b/Starbreach/Resources/Props/ServerPad/ServerPad_v1_N.png new file mode 100644 index 0000000..e41e147 --- /dev/null +++ b/Starbreach/Resources/Props/ServerPad/ServerPad_v1_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:023cf0013f4c030bcccd571438a1382fd8ecf4744ce2f0b98d6a4dd3a8709965 +size 33317600 diff --git a/Starbreach/Resources/Props/ServerPad/ServerPad_v2_D.png b/Starbreach/Resources/Props/ServerPad/ServerPad_v2_D.png new file mode 100644 index 0000000..396f099 --- /dev/null +++ b/Starbreach/Resources/Props/ServerPad/ServerPad_v2_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67e85f7283a96ac816d7559e679af5cb786073b1096f298a214628a1ce32348c +size 17090042 diff --git a/Starbreach/Resources/Props/ServerPad/ServerPad_v2_G.png b/Starbreach/Resources/Props/ServerPad/ServerPad_v2_G.png new file mode 100644 index 0000000..2c000e0 --- /dev/null +++ b/Starbreach/Resources/Props/ServerPad/ServerPad_v2_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bc61a1e58785ee23687b10ea8053af967fc6883cd8bae7567f682fad6a75fe5 +size 9273517 diff --git a/Starbreach/Resources/Props/ServerPad/ServerPad_v2_M.png b/Starbreach/Resources/Props/ServerPad/ServerPad_v2_M.png new file mode 100644 index 0000000..f695f6f --- /dev/null +++ b/Starbreach/Resources/Props/ServerPad/ServerPad_v2_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eccecb21e761fd8b691f8135d1578a2c1f02b143ae36967b2a20d8ffd486da84 +size 8313404 diff --git a/Starbreach/Resources/Props/ServerPad/ServerPad_v2_N.png b/Starbreach/Resources/Props/ServerPad/ServerPad_v2_N.png new file mode 100644 index 0000000..42781f2 --- /dev/null +++ b/Starbreach/Resources/Props/ServerPad/ServerPad_v2_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d66db96f80f05738e0e825281dc26f5860d8363bd2bf218a86da83a332ce3cc8 +size 16442370 diff --git a/Starbreach/Resources/Props/Teleport/Teleport.FBX b/Starbreach/Resources/Props/Teleport/Teleport.FBX new file mode 100644 index 0000000..0ce9117 --- /dev/null +++ b/Starbreach/Resources/Props/Teleport/Teleport.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fa860a8dc7abf31f3496ee2c5c35a1dec89aee88781e31a4d82539380f7c822 +size 335600 diff --git a/Starbreach/Resources/Props/Teleport/Teleport_AO.png b/Starbreach/Resources/Props/Teleport/Teleport_AO.png new file mode 100644 index 0000000..86d036d --- /dev/null +++ b/Starbreach/Resources/Props/Teleport/Teleport_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa9c58dd5591d391d4e6ccc4676b6325f8b29eecde47a701a868e851b314bc06 +size 4349233 diff --git a/Starbreach/Resources/Props/Teleport/Teleport_D.png b/Starbreach/Resources/Props/Teleport/Teleport_D.png new file mode 100644 index 0000000..fe5b3a6 --- /dev/null +++ b/Starbreach/Resources/Props/Teleport/Teleport_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b17825150ab3191b4df7470e4165921d58cb14807d0bf2b8f116019341c4d6ef +size 32333592 diff --git a/Starbreach/Resources/Props/Teleport/Teleport_E.png b/Starbreach/Resources/Props/Teleport/Teleport_E.png new file mode 100644 index 0000000..90b0f3e --- /dev/null +++ b/Starbreach/Resources/Props/Teleport/Teleport_E.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8e7bf4935178cf8aa8872d58c9eec9a28fba6b37cbbfca301ff5ba4ce234b04 +size 3022909 diff --git a/Starbreach/Resources/Props/Teleport/Teleport_G.png b/Starbreach/Resources/Props/Teleport/Teleport_G.png new file mode 100644 index 0000000..55e1ad6 --- /dev/null +++ b/Starbreach/Resources/Props/Teleport/Teleport_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdd00125f04e6770d1bcac792d26bfbfcdce56a9a5cd9f27be6e55c2eb77a48e +size 13015079 diff --git a/Starbreach/Resources/Props/Teleport/Teleport_M.png b/Starbreach/Resources/Props/Teleport/Teleport_M.png new file mode 100644 index 0000000..949f54a --- /dev/null +++ b/Starbreach/Resources/Props/Teleport/Teleport_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2975f42df18d019fdb87ad51072bc181a4c4231ee8ccf78b720ad949aa392858 +size 1853623 diff --git a/Starbreach/Resources/Props/Teleport/Teleport_N.png b/Starbreach/Resources/Props/Teleport/Teleport_N.png new file mode 100644 index 0000000..4d51541 --- /dev/null +++ b/Starbreach/Resources/Props/Teleport/Teleport_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1ab00015f88721910b9c5d086cbf9a43138acaad0fdbe054b986f627413543f +size 33709619 diff --git a/Starbreach/Resources/Props/Tube/Tube_AO.png b/Starbreach/Resources/Props/Tube/Tube_AO.png new file mode 100644 index 0000000..0ca5137 --- /dev/null +++ b/Starbreach/Resources/Props/Tube/Tube_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b383c188d35688b6dd34a3bf4bb21d0a53deafa7b4e7da7ec278933a619c6290 +size 2066244 diff --git a/Starbreach/Resources/Props/Tube/Tube_D.png b/Starbreach/Resources/Props/Tube/Tube_D.png new file mode 100644 index 0000000..411ca88 --- /dev/null +++ b/Starbreach/Resources/Props/Tube/Tube_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:925e105c1cd1ddfb8df9f8c42c7ea5dc0f81f030520ef84b89f971a423986bfb +size 35229303 diff --git a/Starbreach/Resources/Props/Tube/Tube_E.png b/Starbreach/Resources/Props/Tube/Tube_E.png new file mode 100644 index 0000000..b1b8ea8 --- /dev/null +++ b/Starbreach/Resources/Props/Tube/Tube_E.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc0b977b8f74e0fe9928a378aa6956df1d2e5b64a0092a6c59e197a5f458de20 +size 2901816 diff --git a/Starbreach/Resources/Props/Tube/Tube_G.png b/Starbreach/Resources/Props/Tube/Tube_G.png new file mode 100644 index 0000000..bb7e831 --- /dev/null +++ b/Starbreach/Resources/Props/Tube/Tube_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de18b7a61f804330e0ff6425b0893d3c99f890465d623ac3665079a4cc8e4f8e +size 9741486 diff --git a/Starbreach/Resources/Props/Tube/Tube_M.png b/Starbreach/Resources/Props/Tube/Tube_M.png new file mode 100644 index 0000000..0b8e1d7 --- /dev/null +++ b/Starbreach/Resources/Props/Tube/Tube_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4ba03f7c1f3dcbe9b8916aa1e170d9ed537d8da729056a1b07a6a77bda881b6 +size 4236570 diff --git a/Starbreach/Resources/Props/Tube/Tube_N.png b/Starbreach/Resources/Props/Tube/Tube_N.png new file mode 100644 index 0000000..afa8e1d --- /dev/null +++ b/Starbreach/Resources/Props/Tube/Tube_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28fdedfc5dfb10b01156fb874a4c8f23627364378ebf178d1d9bff8eed995451 +size 18535519 diff --git a/Starbreach/Resources/Props/Tube/Tube_Rust_D.png b/Starbreach/Resources/Props/Tube/Tube_Rust_D.png new file mode 100644 index 0000000..4134f09 --- /dev/null +++ b/Starbreach/Resources/Props/Tube/Tube_Rust_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e7a4e3f49639b4e28f66c9cfcbc23019252fef9d630d08fd614b947ba33db58 +size 40652696 diff --git a/Starbreach/Resources/Props/Tube/Tube_Rust_G.png b/Starbreach/Resources/Props/Tube/Tube_Rust_G.png new file mode 100644 index 0000000..ae95d73 --- /dev/null +++ b/Starbreach/Resources/Props/Tube/Tube_Rust_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43d85e89420f4baad9d370fc444a5cfc9c48881e9e97c7f3372cb66fff9f19e7 +size 14145465 diff --git a/Starbreach/Resources/Props/Tube/Tube_Rust_M.png b/Starbreach/Resources/Props/Tube/Tube_Rust_M.png new file mode 100644 index 0000000..b182b60 --- /dev/null +++ b/Starbreach/Resources/Props/Tube/Tube_Rust_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3a172a3465cba6717809c8c07f1c203b46035608eacd387759a1f5f12c877a6 +size 8584189 diff --git a/Starbreach/Resources/Props/Tube/Tube_Rust_N.png b/Starbreach/Resources/Props/Tube/Tube_Rust_N.png new file mode 100644 index 0000000..783ec45 --- /dev/null +++ b/Starbreach/Resources/Props/Tube/Tube_Rust_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c21de7fadb12f3f6c47caf7ec556ba7ad3089494119a036b71b75422e60aabb +size 17371311 diff --git a/Starbreach/Resources/Props/Tube/tube_eng01.FBX b/Starbreach/Resources/Props/Tube/tube_eng01.FBX new file mode 100644 index 0000000..7568a9a --- /dev/null +++ b/Starbreach/Resources/Props/Tube/tube_eng01.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf7a78b0de5db9d3ee15279f0824595bdb4b20dd52b68659fe068b87806c6cdb +size 289408 diff --git a/Starbreach/Resources/Props/Tube/tube_eng03.FBX b/Starbreach/Resources/Props/Tube/tube_eng03.FBX new file mode 100644 index 0000000..d0ee40b --- /dev/null +++ b/Starbreach/Resources/Props/Tube/tube_eng03.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d85fe2727963e3e2cf782946267841e55c845b27b3432e475c38de3b2253e832 +size 91392 diff --git a/Starbreach/Resources/Props/Vent/Vent.FBX b/Starbreach/Resources/Props/Vent/Vent.FBX new file mode 100644 index 0000000..c5a6ecb --- /dev/null +++ b/Starbreach/Resources/Props/Vent/Vent.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efab9d7ac2c03e0669218da6c390143552c51e17072d414446f8d634297994ae +size 35136 diff --git a/Starbreach/Resources/Props/Vent/Vent_AO.png b/Starbreach/Resources/Props/Vent/Vent_AO.png new file mode 100644 index 0000000..f3c9b2e --- /dev/null +++ b/Starbreach/Resources/Props/Vent/Vent_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a4928001b23816460519339129e834353e4ff4b73a593e25201f7df55aee403 +size 6523558 diff --git a/Starbreach/Resources/Props/Vent/Vent_D.png b/Starbreach/Resources/Props/Vent/Vent_D.png new file mode 100644 index 0000000..fb13612 --- /dev/null +++ b/Starbreach/Resources/Props/Vent/Vent_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcd34e058c5fdf587c23f645c150f8e66ed84aa823e5aa9d748259d019355c4e +size 41138517 diff --git a/Starbreach/Resources/Props/Vent/Vent_G.png b/Starbreach/Resources/Props/Vent/Vent_G.png new file mode 100644 index 0000000..17a0275 --- /dev/null +++ b/Starbreach/Resources/Props/Vent/Vent_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:111336a6b6d8ed6ff98bb4d614aa61ea0d77dc776d81a284a8544232085e7441 +size 13510989 diff --git a/Starbreach/Resources/Props/Vent/Vent_Light_base.png b/Starbreach/Resources/Props/Vent/Vent_Light_base.png new file mode 100644 index 0000000..c3da366 --- /dev/null +++ b/Starbreach/Resources/Props/Vent/Vent_Light_base.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d761137bfdf4d8f4c9256c114788ffac0cee4c427c10e7c32c14c4455e7f374c +size 1674632 diff --git a/Starbreach/Resources/Props/Vent/Vent_M.png b/Starbreach/Resources/Props/Vent/Vent_M.png new file mode 100644 index 0000000..e6a856e --- /dev/null +++ b/Starbreach/Resources/Props/Vent/Vent_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:098dcdef5aad8c5e8312a34f921f0de2ca10d6b51ff01566ca6d599feeb66181 +size 13480730 diff --git a/Starbreach/Resources/Props/Vent/Vent_N.png b/Starbreach/Resources/Props/Vent/Vent_N.png new file mode 100644 index 0000000..541ee71 --- /dev/null +++ b/Starbreach/Resources/Props/Vent/Vent_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ea002e2226e2f9d2011a240fbeb418012dc20fb5bf11da0b1b2865fef754227 +size 36560177 diff --git a/Starbreach/Resources/Props/Vent/Vent_base.FBX b/Starbreach/Resources/Props/Vent/Vent_base.FBX new file mode 100644 index 0000000..b944ab1 --- /dev/null +++ b/Starbreach/Resources/Props/Vent/Vent_base.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cd449e6c2c02b1fad7ccce8b7b5c2c4d5cc7b8b640a55ca2cffccd3f87a6546 +size 236048 diff --git a/Starbreach/Resources/Props/Vent/Vent_base_E.png b/Starbreach/Resources/Props/Vent/Vent_base_E.png new file mode 100644 index 0000000..a09baed --- /dev/null +++ b/Starbreach/Resources/Props/Vent/Vent_base_E.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c02d811d12d67453c9ca09ca4709db48f60735823fc7890049727350e1b64325 +size 491577 diff --git a/Starbreach/Resources/Props/Vent/Vent_inner_E.png b/Starbreach/Resources/Props/Vent/Vent_inner_E.png new file mode 100644 index 0000000..4c106c2 --- /dev/null +++ b/Starbreach/Resources/Props/Vent/Vent_inner_E.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:947634814cba20eee844a6e37cc8e4375fe5752e29a10e5b02da649479a2f000 +size 561028 diff --git a/Starbreach/Resources/Props/Vent/Vent_light_mesh.FBX b/Starbreach/Resources/Props/Vent/Vent_light_mesh.FBX new file mode 100644 index 0000000..4a665b8 --- /dev/null +++ b/Starbreach/Resources/Props/Vent/Vent_light_mesh.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e39ee626d7b1a0824081587a059cc8ff49113e40d96c52fcd31680f325695ca8 +size 23664 diff --git a/Starbreach/Resources/SkyBox_Try_04.dds b/Starbreach/Resources/SkyBox_Try_04.dds new file mode 100644 index 0000000..349ca9c --- /dev/null +++ b/Starbreach/Resources/SkyBox_Try_04.dds @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c8256de6ba684c3bdb0b6284c147c09bb67bd2ef6a89c0c36d12ac6ceda9936 +size 100663424 diff --git a/Starbreach/Resources/UI/HUD/Ammo_fill.png b/Starbreach/Resources/UI/HUD/Ammo_fill.png new file mode 100644 index 0000000..6e6402f --- /dev/null +++ b/Starbreach/Resources/UI/HUD/Ammo_fill.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f06a5e15ae7e6dffb6e867ca2a218461f2b10d45bb8663623c4a07b66997b4a +size 691 diff --git a/Starbreach/Resources/UI/HUD/Ammo_shadow.png b/Starbreach/Resources/UI/HUD/Ammo_shadow.png new file mode 100644 index 0000000..b60f198 --- /dev/null +++ b/Starbreach/Resources/UI/HUD/Ammo_shadow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:029cd24b760e794510de5c473f012cf61bbfa57ecb1e96c609054811fa4b9ce7 +size 716 diff --git a/Starbreach/Resources/UI/HUD/General_fill.png b/Starbreach/Resources/UI/HUD/General_fill.png new file mode 100644 index 0000000..12c3d6c --- /dev/null +++ b/Starbreach/Resources/UI/HUD/General_fill.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59e9a864c0ef592f50c925a99b669f532d79067cdcca1e56e39d8098d724ba8d +size 948 diff --git a/Starbreach/Resources/UI/HUD/Hero_avatar.png b/Starbreach/Resources/UI/HUD/Hero_avatar.png new file mode 100644 index 0000000..e9e6f43 --- /dev/null +++ b/Starbreach/Resources/UI/HUD/Hero_avatar.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77503fd0fc5d1cdd3aeb73c7cd992e27b4d83123dcdce0095cc36c6f90e90286 +size 81745 diff --git a/Starbreach/Resources/UI/HUD/Hero_avatar_mask.png b/Starbreach/Resources/UI/HUD/Hero_avatar_mask.png new file mode 100644 index 0000000..2c9f651 --- /dev/null +++ b/Starbreach/Resources/UI/HUD/Hero_avatar_mask.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc11e5903bdbad852d01e0acee46a998870fcee0759c79f911ae1771664238a8 +size 22503 diff --git a/Starbreach/Resources/UI/HUD/Hero_avatar_shadow.png b/Starbreach/Resources/UI/HUD/Hero_avatar_shadow.png new file mode 100644 index 0000000..f630a27 --- /dev/null +++ b/Starbreach/Resources/UI/HUD/Hero_avatar_shadow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6daeccbb97a51859fa707e520b4158e99915461b638ac3d5b4b18f4446ba866 +size 6394 diff --git a/Starbreach/Resources/UI/HUD/Life_BG.png b/Starbreach/Resources/UI/HUD/Life_BG.png new file mode 100644 index 0000000..f3b128c --- /dev/null +++ b/Starbreach/Resources/UI/HUD/Life_BG.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6db5faea7e25c6bb795341f97b55caf2aa58eb95c00b5ee8306ba1e72b7ede7 +size 718 diff --git a/Starbreach/Resources/UI/HUD/Life_fill.png b/Starbreach/Resources/UI/HUD/Life_fill.png new file mode 100644 index 0000000..0df09ba --- /dev/null +++ b/Starbreach/Resources/UI/HUD/Life_fill.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6398bcc2d097e4ae748023b515a485faa7ca82d5608e19ebe54ca98b9a20e612 +size 691 diff --git a/Starbreach/Resources/UI/HUD/Life_shadow.png b/Starbreach/Resources/UI/HUD/Life_shadow.png new file mode 100644 index 0000000..b60f198 --- /dev/null +++ b/Starbreach/Resources/UI/HUD/Life_shadow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:029cd24b760e794510de5c473f012cf61bbfa57ecb1e96c609054811fa4b9ce7 +size 716 diff --git a/Starbreach/Resources/UI/HUD/Panel_BG.png b/Starbreach/Resources/UI/HUD/Panel_BG.png new file mode 100644 index 0000000..5130f17 --- /dev/null +++ b/Starbreach/Resources/UI/HUD/Panel_BG.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fedb91326edfec568ac017b3ae792ee215cacd66816ab5cbe8b2696d0731839a +size 1730 diff --git a/Starbreach/Resources/UI/HUD/ammo_BG.png b/Starbreach/Resources/UI/HUD/ammo_BG.png new file mode 100644 index 0000000..9e8fa4f --- /dev/null +++ b/Starbreach/Resources/UI/HUD/ammo_BG.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fa51b84a87b24fe7e764f51139bd013bbe01568839570ef2b9709a8bd2ed026 +size 691 diff --git a/Starbreach/Resources/UI/HUD/ammo_icon.png b/Starbreach/Resources/UI/HUD/ammo_icon.png new file mode 100644 index 0000000..4c4f3ec --- /dev/null +++ b/Starbreach/Resources/UI/HUD/ammo_icon.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc8c8bbd49401c04c6798a12736647f567ceb6899e7090eec019d3a39d0d5411 +size 2900 diff --git a/Starbreach/Resources/UI/Logo.png b/Starbreach/Resources/UI/Logo.png new file mode 100644 index 0000000..cdbd564 --- /dev/null +++ b/Starbreach/Resources/UI/Logo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa3ded2a49279977ea3a6051227d4a056e9481540295c1860b82130351a7802b +size 346253 diff --git a/Starbreach/Resources/VisualEffects/TiledPattern01.png b/Starbreach/Resources/VisualEffects/TiledPattern01.png new file mode 100644 index 0000000..1d3859e --- /dev/null +++ b/Starbreach/Resources/VisualEffects/TiledPattern01.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4490d4c8e521cee8a8781e7b07a37b433dfd3b5501b1bfc6bbd60b9c5216b3d2 +size 41520 diff --git a/Starbreach/Resources/VisualEffects/TiledPattern02.png b/Starbreach/Resources/VisualEffects/TiledPattern02.png new file mode 100644 index 0000000..8861c7a --- /dev/null +++ b/Starbreach/Resources/VisualEffects/TiledPattern02.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7457e766f2000b668fb1cf3c36a4c5b4223923c2aa20a534c6e32111f1a1ced +size 40402 diff --git a/Starbreach/Resources/VisualEffects/TiledPattern03.png b/Starbreach/Resources/VisualEffects/TiledPattern03.png new file mode 100644 index 0000000..821b609 --- /dev/null +++ b/Starbreach/Resources/VisualEffects/TiledPattern03.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7328c3a5a8a298cd6f5cf774228e7ce50a9b5ceb2fee6d179c9c61ddfdf53654 +size 63582 diff --git a/Starbreach/Resources/VisualEffects/TiledPattern04.png b/Starbreach/Resources/VisualEffects/TiledPattern04.png new file mode 100644 index 0000000..d5dbece --- /dev/null +++ b/Starbreach/Resources/VisualEffects/TiledPattern04.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e27bd5b2edeb1c7851b9a8591332dd89b28b18a7294ca34a4a91dd3ff96e3e0 +size 28959 diff --git a/Starbreach/Resources/VisualEffects/circle1.tif b/Starbreach/Resources/VisualEffects/circle1.tif new file mode 100644 index 0000000..d78bda9 Binary files /dev/null and b/Starbreach/Resources/VisualEffects/circle1.tif differ diff --git a/Starbreach/Resources/VisualEffects/swoosh.png b/Starbreach/Resources/VisualEffects/swoosh.png new file mode 100644 index 0000000..c0c54bb --- /dev/null +++ b/Starbreach/Resources/VisualEffects/swoosh.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb7e2ff1e729b20beb58b5781a86aef7d29916ffe1832f69c349ada198ab573f +size 52267 diff --git a/Starbreach/Resources/Walls/Wall1/Wall1_AO.png b/Starbreach/Resources/Walls/Wall1/Wall1_AO.png new file mode 100644 index 0000000..df0a4f3 --- /dev/null +++ b/Starbreach/Resources/Walls/Wall1/Wall1_AO.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b57442ffd3eddd1f40e7c4efc8e4e19d75e92004a73100f7aa520c29a3ce96a +size 3054539 diff --git a/Starbreach/Resources/Walls/Wall1/Wall1_D.png b/Starbreach/Resources/Walls/Wall1/Wall1_D.png new file mode 100644 index 0000000..34d0aa6 --- /dev/null +++ b/Starbreach/Resources/Walls/Wall1/Wall1_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:934afe0c5f2287a6b6a254a6f4683ae53d511c3c7a751b98396f0b387bf81d15 +size 25747354 diff --git a/Starbreach/Resources/Walls/Wall1/Wall1_G.png b/Starbreach/Resources/Walls/Wall1/Wall1_G.png new file mode 100644 index 0000000..ee16346 --- /dev/null +++ b/Starbreach/Resources/Walls/Wall1/Wall1_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:339b894976b94d4256ff4f779dbb74e6a8132cd224fb74f7f90ee3f3173d7e91 +size 9900784 diff --git a/Starbreach/Resources/Walls/Wall1/Wall1_M.png b/Starbreach/Resources/Walls/Wall1/Wall1_M.png new file mode 100644 index 0000000..50050c8 --- /dev/null +++ b/Starbreach/Resources/Walls/Wall1/Wall1_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2fe1358d94a4f8bdce7ffd4fd780498bca6433aae8c12293f736817e3cf7f7b +size 1736337 diff --git a/Starbreach/Resources/Walls/Wall1/Wall1_N.png b/Starbreach/Resources/Walls/Wall1/Wall1_N.png new file mode 100644 index 0000000..4cc49f1 --- /dev/null +++ b/Starbreach/Resources/Walls/Wall1/Wall1_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:944e15b7c4345fb59139c3ad18fcf5f1c9638b7b32ba8d128f96c373324da188 +size 25324334 diff --git a/Starbreach/Resources/Walls/Wall1/Wall1_Rust_D.png b/Starbreach/Resources/Walls/Wall1/Wall1_Rust_D.png new file mode 100644 index 0000000..b85102e --- /dev/null +++ b/Starbreach/Resources/Walls/Wall1/Wall1_Rust_D.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1afdc4f02b3f9cc6f0125920d5cc91e38574dbd4e7316d1edeb4a4fe21163d6e +size 40327441 diff --git a/Starbreach/Resources/Walls/Wall1/Wall1_Rust_G.png b/Starbreach/Resources/Walls/Wall1/Wall1_Rust_G.png new file mode 100644 index 0000000..962f553 --- /dev/null +++ b/Starbreach/Resources/Walls/Wall1/Wall1_Rust_G.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3edadd1a86e47d7addce96bdfe72becc5cc68ea032352319c130acb07b928766 +size 15770097 diff --git a/Starbreach/Resources/Walls/Wall1/Wall1_Rust_M.png b/Starbreach/Resources/Walls/Wall1/Wall1_Rust_M.png new file mode 100644 index 0000000..e55e7bf --- /dev/null +++ b/Starbreach/Resources/Walls/Wall1/Wall1_Rust_M.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7919fd2be2947d30357435d3d8bca4724f426ec958b1bf3c29d47da7c94188d7 +size 15556247 diff --git a/Starbreach/Resources/Walls/Wall1/Wall1_Rust_N.png b/Starbreach/Resources/Walls/Wall1/Wall1_Rust_N.png new file mode 100644 index 0000000..bab80ed --- /dev/null +++ b/Starbreach/Resources/Walls/Wall1/Wall1_Rust_N.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42a3fd946c188470a54cf738373abecbaaeb80e2055cacc715789c0225750c26 +size 25842213 diff --git a/Starbreach/Resources/Walls/Wall1/Wall_I.fbx b/Starbreach/Resources/Walls/Wall1/Wall_I.fbx new file mode 100644 index 0000000..d59377a --- /dev/null +++ b/Starbreach/Resources/Walls/Wall1/Wall_I.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49592eb29381a2d2f3245d3a301222d2020219e638cbd2a2e1bb40ea971392b7 +size 57628 diff --git a/Starbreach/Resources/Walls/Wall1/Wall_L.fbx b/Starbreach/Resources/Walls/Wall1/Wall_L.fbx new file mode 100644 index 0000000..23957cf --- /dev/null +++ b/Starbreach/Resources/Walls/Wall1/Wall_L.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:365c5f649353f3f5f8cb8185eb7456412fdf13431e422dd67f7a2091debb2afb +size 56176 diff --git a/Starbreach/Resources/Walls/Wall1/Wall_T.fbx b/Starbreach/Resources/Walls/Wall1/Wall_T.fbx new file mode 100644 index 0000000..724c6ef --- /dev/null +++ b/Starbreach/Resources/Walls/Wall1/Wall_T.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d3290687e12f9ded76c1f1bf1e65ed828ec7afd93fb5c206dbed0f6190a7cb3 +size 57856 diff --git a/Starbreach/Resources/Walls/Wall1/Wall_X.fbx b/Starbreach/Resources/Walls/Wall1/Wall_X.fbx new file mode 100644 index 0000000..ee52046 --- /dev/null +++ b/Starbreach/Resources/Walls/Wall1/Wall_X.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6948ef40c1c9ad612be11c2dd32aca98b8e2de90893482883a2c7ae02741dc02 +size 50000 diff --git a/Starbreach/Resources/Walls/Wall1/Wall_endA.fbx b/Starbreach/Resources/Walls/Wall1/Wall_endA.fbx new file mode 100644 index 0000000..1aa6a05 --- /dev/null +++ b/Starbreach/Resources/Walls/Wall1/Wall_endA.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3edc9e0c1549feddbe418f1b01833c5bd96247844d3b6b532c6a5485fb9bde2e +size 52956 diff --git a/Starbreach/Resources/Walls/Wall1/Wall_endB.fbx b/Starbreach/Resources/Walls/Wall1/Wall_endB.fbx new file mode 100644 index 0000000..7f0b60f --- /dev/null +++ b/Starbreach/Resources/Walls/Wall1/Wall_endB.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb4e94f89357696d65797cb42828ab0519dcb7acc6b19b8af207677fb3ac9598 +size 49308 diff --git a/Starbreach/Resources/Walls/Wall1/Wall_seg.fbx b/Starbreach/Resources/Walls/Wall1/Wall_seg.fbx new file mode 100644 index 0000000..0b3a12d --- /dev/null +++ b/Starbreach/Resources/Walls/Wall1/Wall_seg.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cdb7fa43e02ecba98770d9fa2d2f6bba20e04c336796a7613c94e6e924233a4 +size 23100 diff --git a/Starbreach/Resources/skybox_texture_hdr.dds b/Starbreach/Resources/skybox_texture_hdr.dds new file mode 100644 index 0000000..a2eaba7 --- /dev/null +++ b/Starbreach/Resources/skybox_texture_hdr.dds @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7113aaa586e1bb7dbe530069047551473ea452165d886bb3456a180f7a7c900f +size 1048688 diff --git a/Starbreach/Soldier/SoldierAnimation.cs b/Starbreach/Soldier/SoldierAnimation.cs new file mode 100644 index 0000000..01216f7 --- /dev/null +++ b/Starbreach/Soldier/SoldierAnimation.cs @@ -0,0 +1,407 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using System.Linq; +using System.Threading.Tasks; +using Starbreach.Core; +using Xenko.Core.Extensions; +using Xenko.Core.Mathematics; +using Xenko.Animations; +using Xenko.Engine; +using Xenko.Engine.Events; + +namespace Starbreach.Soldier +{ + public class SoldierAnimation : SyncScript + { + public static class AnimKeys + { + public const string IdleLow = "Idle_Low"; + public const string IdleAim = "Idle_Aim"; + public const string RunLow = "Run_Low"; + public const string RunAim = "Run_Aim"; + public const string WalkForward = "Walk_Forward"; + public const string WalkBackward = "Walk_Backward"; + public const string WalkLeft = "Walk_Left"; + public const string WalkRight = "Walk_Right"; + public const string Death = "Death"; + public const string DrawWeapon = "Additive_Draw_Weapon"; + public const string HolsterWeapon = "Additive_Holster_Weapon"; + public const string FireWeapon = "Additive_Fire_Weapon"; + public const string ReloadWeapon = "Additive_Reload_Weapon"; + public const string TakeDamage = "Additive_Take_Damage"; + } + + public const string LowerIdleState = "Idle"; + public const string LowerRunState = "Run"; + public const string LowerWalkState = "Walk"; + + public const string UpperLowState = "Low"; + public const string UpperAimState = "Aim"; + public const string UpperFireState = "Fire"; + + private Vector3 moveDirection; + private Vector3 aimDirection = -Vector3.UnitZ; + private FiniteStateMachine lowerStateMachine; + private FiniteStateMachine upperStateMachine; + private PlayingAnimation lowerAnimation; + private PlayingAnimation fireAnimation; + private int additiveAnimations; + private bool dead; + + public Vector2 WalkAngleThreshold { get; set; } = new Vector2(67.5f, 112.5f); + + public float WalkCrossfadeDuration { get; set; } = 0.2f; + + public CameraComponent Camera { get; set; } + + public AnimationComponent AnimationComponent { get; set; } + + private bool IsIdle => lowerStateMachine.CurrentStateName == LowerIdleState; + + private bool IsRun => lowerStateMachine.CurrentStateName == LowerRunState; + + private bool HasAdditiveAnimation => additiveAnimations > 0; + + private int LowerAnimCount { get { var r = AnimationComponent.PlayingAnimations.IndexOf(x => x.BlendOperation != AnimationBlendOperation.LinearBlend); return r > 0 ? r : AnimationComponent.PlayingAnimations.Count; } } + + public SoldierController SoldierController; + + private SoldierWeapon soldierWeapon; + + public override void Start() + { + base.Start(); + if (Camera == null) throw new ArgumentException("The camera is not set"); + if (AnimationComponent == null) throw new ArgumentException("The animation component is not set"); + if (SoldierController == null) throw new ArgumentException("SoldierController is not set"); + + InitializeLowerStateMachine(); + InitializeUpperStateMachine(); + + SoldierController.OnDamageTaken += (soldier, damage) => + { + if(dead) + return; + if(soldier.IsDead) + { + dead = true; + AnimationComponent.PlayingAnimations.ForEach(x => { x.WeightTarget = 0.0f; x.CrossfadeRemainingTime = TimeSpan.FromSeconds(0.2); }); + var death = NewAnimation(AnimKeys.Death); + AddLowerAnimation(death); + lowerStateMachine?.Exit(); + upperStateMachine?.Exit(); + } + else + { + for (var i = AnimationComponent.PlayingAnimations.Count - 1; i >= 0; i--) + { + if (AnimationComponent.PlayingAnimations[i].Name == AnimKeys.TakeDamage) + AnimationComponent.PlayingAnimations.RemoveAt(i); + } + AnimationComponent.PlayingAnimations.Add(NewAnimation(AnimKeys.TakeDamage, true)); + } + }; + + soldierWeapon = SoldierController.Entity.Get(); + soldierWeapon.OnReload += weapon => + { + if(!dead) Script.AddTask(() => AddAdditiveAnimation(AnimKeys.ReloadWeapon)); + }; + } + + public override void Update() + { + // Check movement status and update states + if (SoldierController.MoveDirection == Vector3.Zero) + { + if (IsRun) + { + lowerStateMachine?.SwitchTo(LowerIdleState); + } + moveDirection = Vector3.Zero; + } + else + { + if (IsIdle) + { + lowerStateMachine?.SwitchTo(LowerRunState); + } + moveDirection = SoldierController.MoveDirection; + } + + bool reloading = soldierWeapon.IsReloading; + bool firing = SoldierController.Input.FireState; + + // Check aim status and update states + aimDirection = Camera.Entity.Transform.WorldMatrix.TranslationVector - Entity.Transform.WorldMatrix.TranslationVector; + aimDirection.Normalize(); + + if (SoldierController.IsAiming) + { + if (lowerStateMachine != null && lowerStateMachine?.CurrentStateName != LowerWalkState) + { + lowerStateMachine.SwitchTo(LowerWalkState); + } + if (!HasAdditiveAnimation) + { + upperStateMachine.SwitchTo(firing && !reloading ? UpperFireState : UpperAimState); + } + } + else + { + if (lowerStateMachine != null && lowerStateMachine.CurrentStateName == LowerWalkState) + { + lowerStateMachine?.SwitchTo(LowerIdleState); + } + if (!HasAdditiveAnimation) + { + upperStateMachine.SwitchTo(UpperLowState); + } + } + } + + private void InitializeLowerStateMachine() + { + lowerStateMachine = new FiniteStateMachine("SoldierAnimationLower"); + + Action startIdleOrRun = (from, newAnimNameLow, newAnimNameAim) => + { + // Select the proper animation to play + lowerAnimation = NewAnimation(HasAdditiveAnimation ? newAnimNameAim : newAnimNameLow); + if (from != null) + { + // Blend in if needed + lowerAnimation.Weight = 0.0f; + lowerAnimation.WeightTarget = 1.0f; + lowerAnimation.CrossfadeRemainingTime = TimeSpan.FromSeconds(0.2); + } + // Add the animation + InsertLowerAnimation(0, lowerAnimation); + }; + + Action updateLowerIdleOrRun = () => + { + // Swap between the low animation (used if no additive animation) and the aim animation (used only for additive animation) + if (HasAdditiveAnimation) + { + SwapLowerAnimation(AnimKeys.IdleLow, AnimKeys.IdleAim, false); + SwapLowerAnimation(AnimKeys.RunLow, AnimKeys.RunAim, false); + } + else + { + SwapLowerAnimation(AnimKeys.IdleAim, AnimKeys.IdleLow, true); + SwapLowerAnimation(AnimKeys.RunAim, AnimKeys.RunLow, true); + } + }; + + Action exitLowerIdleOrRun = to => + { + // Blend away the remaining animation + lowerAnimation.WeightTarget = 0.0f; + lowerAnimation.CrossfadeRemainingTime = TimeSpan.FromSeconds(0.2); + }; + + Action startLowerWalk = from => + { + // Add all the animations used for walking, enable only Idle at start + AddLowerAnimation(NewAnimation(AnimKeys.IdleAim)); + AddLowerAnimation(NewAnimation(AnimKeys.WalkForward, 0.0f)); + AddLowerAnimation(NewAnimation(AnimKeys.WalkBackward, 0.0f)); + AddLowerAnimation(NewAnimation(AnimKeys.WalkLeft, 0.0f)); + AddLowerAnimation(NewAnimation(AnimKeys.WalkRight, 0.0f)); + }; + + Action updateLowerWalk = () => + { + var dot = Vector3.Dot(moveDirection, aimDirection); + string lowerAnimToPlay; + var forwardThreshold = Math.Cos(MathUtil.DegreesToRadians(WalkAngleThreshold.X)); + var backwardThreshold = Math.Cos(MathUtil.DegreesToRadians(WalkAngleThreshold.Y)); + var crossfadeFactor = Game.UpdateTime.Elapsed.TotalSeconds / WalkCrossfadeDuration; + // Find out which anim should be played + if (moveDirection == Vector3.Zero) + { + lowerAnimToPlay = AnimKeys.IdleAim; + } + else if (dot > forwardThreshold) + { + lowerAnimToPlay = AnimKeys.WalkForward; + } + else if (dot < backwardThreshold) + { + lowerAnimToPlay = AnimKeys.WalkBackward; + } + else + { + var cross = Vector3.Cross(aimDirection, moveDirection); + lowerAnimToPlay = cross.Y <= 0 ? AnimKeys.WalkLeft : AnimKeys.WalkRight; + } + + foreach (var anim in AnimationComponent.PlayingAnimations.Take(LowerAnimCount)) + { + if (anim.Name == lowerAnimToPlay) + anim.Weight = (float)Math.Min(anim.Weight + crossfadeFactor, 1.0f); + else + anim.Weight = (float)Math.Max(anim.Weight - crossfadeFactor, 0.0f); + } + }; + + Action exitWalk = to => + { + PlayingAnimation crossfadeAnim = null; + var maxWeight = float.MinValue; + + foreach (var anim in AnimationComponent.PlayingAnimations.Take(LowerAnimCount).ToList()) + { + if (anim.Weight > maxWeight) + { + crossfadeAnim = anim; + maxWeight = anim.Weight; + } + // Remove all walking animation... + AnimationComponent.PlayingAnimations.Remove(anim); + } + // ... except the current one that will be blended away + if (crossfadeAnim != null) + { + InsertLowerAnimation(0, crossfadeAnim); + crossfadeAnim.WeightTarget = 0.0f; + crossfadeAnim.CrossfadeRemainingTime = TimeSpan.FromSeconds(0.2); + } + }; + + var idleState = new State(LowerIdleState) + { + EnterMethod = State.ToTask(from => startIdleOrRun(from, AnimKeys.IdleLow, AnimKeys.IdleAim)), + UpdateMethod = updateLowerIdleOrRun, + ExitMethod = State.ToTask(to => exitLowerIdleOrRun(to)) + }; + + var runState = new State(LowerRunState) + { + EnterMethod = State.ToTask(from => startIdleOrRun(from, AnimKeys.RunLow, AnimKeys.RunAim)), + UpdateMethod = updateLowerIdleOrRun, + ExitMethod = State.ToTask(to => exitLowerIdleOrRun(to)) + }; + + var walkState = new State(LowerWalkState) + { + EnterMethod = State.ToTask(startLowerWalk), + UpdateMethod = updateLowerWalk, + ExitMethod = State.ToTask(to => exitWalk(to)) + }; + + lowerStateMachine.RegisterState(idleState); + lowerStateMachine.RegisterState(runState); + lowerStateMachine.RegisterState(walkState); + lowerStateMachine.Start(Script, LowerIdleState); + } + + private void InitializeUpperStateMachine() + { + upperStateMachine = new FiniteStateMachine("SoldierAnimationLower"); + + var lowState = new State(UpperLowState); + var aimState = new State(UpperAimState) + { + EnterMethod = async from => + { + // Display the draw animation only if we come from the low state + if (!HasAdditiveAnimation && @from.Name == UpperLowState) + { + var animation = NewAnimation(AnimKeys.DrawWeapon, true); + AnimationComponent.PlayingAnimations.Add(animation); + await AnimationComponent.Ended(animation); + } + }, + ExitMethod = async to => + { + // Display the draw animation only if we're going to the low state + if (!HasAdditiveAnimation && to.Name == UpperLowState) + { + var animation = NewAnimation(AnimKeys.HolsterWeapon, true); + AnimationComponent.PlayingAnimations.Add(animation); + await AnimationComponent.Ended(animation); + } + } + }; + var fireState = new State(UpperFireState) + { + EnterMethod = State.ToTask(from => + { + fireAnimation = NewAnimation(AnimKeys.FireWeapon, true); + AnimationComponent.PlayingAnimations.Add(fireAnimation); + }), + ExitMethod = State.ToTask(to => AnimationComponent.PlayingAnimations.Remove(fireAnimation)) + }; + upperStateMachine.RegisterState(lowState); + upperStateMachine.RegisterState(aimState); + upperStateMachine.RegisterState(fireState); + upperStateMachine.Start(Script, UpperLowState); + } + + private void SwapLowerAnimation(string source, string target, bool crossfade) + { + if (lowerAnimation.Name == source) + { + var sourceAnim = lowerAnimation; + var i = AnimationComponent.PlayingAnimations.IndexOf(sourceAnim); + lowerAnimation = NewAnimation(target, lowerAnimation.Weight); + lowerAnimation.WeightTarget = sourceAnim.WeightTarget; + lowerAnimation.CrossfadeRemainingTime = sourceAnim.CrossfadeRemainingTime; + lowerAnimation.CurrentTime = sourceAnim.CurrentTime; + lowerAnimation.TimeFactor = sourceAnim.TimeFactor; + if (crossfade) + { + sourceAnim.WeightTarget = 0.0f; + sourceAnim.CrossfadeRemainingTime = TimeSpan.FromSeconds(0.2f); + lowerAnimation.Weight = 0.0f; + lowerAnimation.WeightTarget = 1.0f; + lowerAnimation.CrossfadeRemainingTime = TimeSpan.FromSeconds(0.2f); + InsertLowerAnimation(i, lowerAnimation); + } + else + { + AnimationComponent.PlayingAnimations[i] = lowerAnimation; + } + } + } + + private void AddLowerAnimation(PlayingAnimation anim) + { + AnimationComponent.PlayingAnimations.Insert(LowerAnimCount, anim); + } + + private void InsertLowerAnimation(int index, PlayingAnimation anim) + { + if (index > LowerAnimCount) throw new ArgumentOutOfRangeException(); + AnimationComponent.PlayingAnimations.Insert(index, anim); + } + + private async Task AddAdditiveAnimation(string animName) + { + var animation = NewAnimation(animName, true); + AnimationComponent.PlayingAnimations.Add(animation); + ++additiveAnimations; + await AnimationComponent.Ended(animation); + --additiveAnimations; + } + + private PlayingAnimation NewAnimation(string name, bool additive) + { + return NewAnimation(name, 1.0f, additive); + } + + private PlayingAnimation NewAnimation(string name, float weight = 1.0f, bool additive = false) + { + var animation = AnimationComponent.NewPlayingAnimation(name); + animation.Weight = weight; + if (additive) + { + animation.BlendOperation = AnimationBlendOperation.Add; + } + return animation; + } + } +} \ No newline at end of file diff --git a/Starbreach/Soldier/SoldierController.cs b/Starbreach/Soldier/SoldierController.cs new file mode 100644 index 0000000..c49b41b --- /dev/null +++ b/Starbreach/Soldier/SoldierController.cs @@ -0,0 +1,332 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using System.Threading.Tasks; +using Starbreach.Camera; +using Starbreach.Core; +using Starbreach.Drones; +using Xenko.Core; +using Xenko.Core.Annotations; +using Xenko.Core.Mathematics; +using Xenko.Engine; +using Xenko.Engine.Events; +using Xenko.Physics; +using System.Collections.Generic; +using Xenko.Core.Collections; +using Xenko.Audio; +using Xenko.Particles; +using Xenko.UI; +using Xenko.UI.Controls; +using Xenko.UI.Panels; + +namespace Starbreach.Soldier +{ + /// + /// This script controls the soldier movement and orientation. + /// + public class SoldierController : SyncScript, IDestructible, IPlayer + { + public const string IdleState = "Idle"; + public const string RunState = "Run"; + public const string WalkState = "Walk"; + + public static SoldierController Instance { get; private set; } + + public delegate void DamageTakenHandler(SoldierController soldier, int damage); + + public DamageTakenHandler OnDamageTaken; + + public Vector3 MoveDirection { get; private set; } + public Vector2 AimDirection { get; private set; } + private FiniteStateMachine stateMachine; + private int controllerIndex; + private Entity sphereCastOrigin; + private CharacterComponent character; + private SphereColliderShape usableOverlapShape = new SphereColliderShape(false, 0.5f); + + // Sounds + private AudioEmitterSoundController[] hitSounds; + private AudioEmitterSoundController deathSound; + private Random soundIndexGenerator = new Random(); + + // UI + //private UIComponent uiComponent; + + public bool IsAiming => Input.AimState || Input.FireState; + + public float RunSpeed { get; set; } = 1.0f; + + public float WalkSpeed { get; set; } = 0.5f; + + [DataMemberRange(0, 1, 0.05, 0.1, 3)] + public float RotationSpeed { get; set; } = 0.2f; + + public float YawSpeedDuringAim { get; set; } = 45.0f; + + public CameraComponent Camera { get; set; } + + public AnimationComponent AnimationComponent { get; set; } + + public CameraController CameraController { get; set; } + + public Entity DroneCrosshair { get; set; } + + public bool IsEnabled { get; set; } = false; + + public new SoldierPlayerInput Input; + + [DataMemberIgnore] + public float Yaw { get; set; } + + [DataMemberIgnore] + public bool IsAlive { get; private set; } = true; + + public void Init(IPlayerInput input) + { + Input = input as SoldierPlayerInput; + if(Input == null) throw new ArgumentException("Player Input was not of type SoldierPlayerInput"); + } + + public static readonly int MaxHealthPoints = 250; + + [DataMemberIgnore] + public int HealthPoints { get; private set; } = MaxHealthPoints; + + public override void Start() + { + if (Entity.Transform.Parent != null) throw new ArgumentException("SoldierController must be root"); + if (Camera == null) throw new ArgumentException("Camera is not set"); + if (AnimationComponent == null) throw new ArgumentException("AnimationComponent is not set"); + if (CameraController == null) throw new ArgumentException("CameraController is not set"); + if (DroneCrosshair == null) throw new ArgumentException("DroneCrosshair is not set"); + if (RotationSpeed < 0 || RotationSpeed > 1) throw new ArgumentException("Rotation Speed must be between 0 and 1"); + + //this.GetSimulation().ColliderShapesRendering = true; + + // Enable UI + IStarbreach ipbrGame = Game as IStarbreach; + //Entity statusBarEntity = ipbrGame.PlayerUiEntity.FindChild("StatusBar"); + //uiComponent = statusBarEntity.Get(); + //uiComponent.Enabled = true; + + stateMachine = new FiniteStateMachine("SoldierController"); + stateMachine.RegisterState(new State(IdleState) { UpdateMethod = UpdateIdle }); + stateMachine.RegisterState(new State(RunState) { UpdateMethod = UpdateRun }); + stateMachine.RegisterState(new State(WalkState) { EnterMethod = StartWalk, UpdateMethod = UpdateWalk }); + stateMachine.Start(Script, IdleState); + Instance = this; + + character = Entity.Get(); + sphereCastOrigin = Entity.FindChild("SphereCastOrigin"); + + AudioEmitterComponent emitter = Entity.Get(); + + // Load 3 different being hit sounds + hitSounds = new AudioEmitterSoundController[3]; + for (int i = 0; i < 3; i++) + { + hitSounds[i] = emitter["Hit" + i]; + hitSounds[i].IsLooping = false; + } + deathSound = emitter["Death"]; + } + + public override void Update() + { + UpdateUI(); + + if (!IsEnabled) + return; + + // Do nothing if we're dead + if (HealthPoints <= 0) + return; + + AimDirection = Input.AimDirection; + + // Update movement direction + MoveDirection = Utils.LogicDirectionToWorldDirection(Input.MoveDirection, Camera.Entity); + + // Check for state transition from movement Input + if (MoveDirection == Vector3.Zero && stateMachine?.CurrentStateName == RunState) + { + // Currently in Run, but movement stopped. Switch to Idle. + stateMachine?.SwitchTo(IdleState); + } + else if (MoveDirection != Vector3.Zero && stateMachine?.CurrentStateName == IdleState) + { + // Currently in Idle, but movement started. Switch to Run. + stateMachine?.SwitchTo(RunState); + } + + // Check for state transition from aim Input + if (IsAiming && stateMachine != null && stateMachine.CurrentStateName != WalkState) + { + // Currently in Run or Idle, aim toggled. Switch to Walk. + stateMachine?.SwitchTo(WalkState); + } + else if (!IsAiming && stateMachine != null && stateMachine.CurrentStateName == WalkState) + { + // Currently in Walk, aim toggled. Switch to Idle. + stateMachine?.SwitchTo(IdleState); + } + + // Check which nearby objects soldier can interact with + Vector3 sweepDirection = -AnimationComponent.Entity.Transform.WorldMatrix.Forward; + Matrix sweepStart = sphereCastOrigin.Transform.WorldMatrix; + Matrix sweepEnd = sphereCastOrigin.Transform.WorldMatrix * Matrix.Translation(sweepDirection * 2.0f); + var sphereHits = this.GetSimulation().ShapeSweepPenetrating(usableOverlapShape, sweepStart, sweepEnd); + float closestUsableDistance = float.MaxValue; + IUsable closestUsable = null; + Vector3 castOriginPosition = sphereCastOrigin.Transform.WorldMatrix.TranslationVector; + foreach (HitResult hit in sphereHits) + { + IUsable usable = Utils.GetUsable(hit.Collider.Entity); + if (usable != null) + { + Vector3 otherPosition = hit.Collider.Entity.Transform.WorldMatrix.TranslationVector; + float dist = (otherPosition - castOriginPosition).Length(); + if (dist < closestUsableDistance) + { + closestUsableDistance = dist; + closestUsable = usable; + } + } + } + + // TODO move to interact event handler + // Use usable object if there is one nearby + //if(closestUsable != null && closestUsable.CanBeUsed) + //{ + // bool interacting = false; + // + // closestUsable.Use(); + // + // Game.DebugPrint($"Press to use [{closestUsable.Name}]"); + //} + } + + public override void Cancel() + { + // Disable UI + //uiComponent.Enabled = false; + stateMachine.Exit(); + } + + private void SetUIBar(string barGridName, float value) + { + //Grid barGrid = uiComponent.Page.RootElement.FindNameRecursive(barGridName) as Grid; + float healthPercent = value; + healthPercent *= 100.0f; + if (healthPercent < 4.0f && healthPercent > 0.0f) + healthPercent = 4.0f; + //barGrid.ColumnDefinitions[0].SizeValue = healthPercent; + //barGrid.ColumnDefinitions[1].SizeValue = (100.0f - healthPercent); + } + + private void UpdateUI() + { + //SetUIBar("lifebarGrid", (float) HealthPoints/(float) MaxHealthPoints); + //TextBlock timerText = uiComponent.Page.RootElement.FindNameRecursive("timer") as TextBlock; + } + + private void UpdateIdle() + { + // Stop moving + Move(0.0f); + AnimationComponent.Entity.Transform.Rotation = Quaternion.RotationYawPitchRoll(MathUtil.DegreesToRadians(Yaw), 0, 0); + } + + private void UpdateRun() + { + // Apply movement + Move(RunSpeed); + // Apply character rotation + SmoothRotate(RotationSpeed); + } + + private Task StartWalk(State arg) + { + // Reset the yaw of the SoldierController to match the camera yaw + Yaw = CameraController.Yaw; + return Task.FromResult(0); + } + + private void UpdateWalk() + { + // Apply movement + Move(WalkSpeed); + + // Update yaw from aim direction + var dt = (float)Game.UpdateTime.Elapsed.TotalSeconds; + Yaw += -AimDirection.X * YawSpeedDuringAim * dt; + + AnimationComponent.Entity.Transform.Rotation = Quaternion.RotationYawPitchRoll(MathUtil.DegreesToRadians(Yaw), 0, 0); + + CameraController.Yaw = Yaw; + // TODO: make this customizable + CameraController.Pitch = 10.0f; + } + + private void SmoothRotate(float speed) + { + // Compute target yaw from the movement direction + var targetYaw = (float)Math.Atan2(-MoveDirection.Z, MoveDirection.X) + MathUtil.PiOverTwo; + // Update the orientation of the soldier (lower pass filter to smooth rotation) + float yawRadians = Utils.LerpYaw(MathUtil.DegreesToRadians(Yaw), targetYaw, speed); + // Update the soldier rotation according to the yaw + AnimationComponent.Entity.Transform.Rotation = Quaternion.RotationYawPitchRoll(MathUtil.DegreesToRadians(Yaw), 0, 0); + + Yaw = MathUtil.RadiansToDegrees(yawRadians); + } + + private void Move(float speed) + { + // Use the delta time from physics + character.SetVelocity(MoveDirection * speed); + } + + public void Damage(int damage) + { + bool wasDead = IsDead; + + // Let's keep the godmode for now + //HealthPoints = Math.Max(0, HealthPoints - damage); + if (HealthPoints > 0) + { + Game.VibratorSmooth(controllerIndex, new Vector2(0.50f, 0.45f), new Vector2(0.95f, 0.90f), TimeSpan.FromSeconds(0.5)); + + // Stop other hit sounds + for (int i = 0; i < hitSounds.Length; i++) + hitSounds[i].Stop(); + + // Play being hit sound + hitSounds[soundIndexGenerator.Next(0, hitSounds.Length - 1)].PlayAndForget(); + } + else + { + // Only do this once, when dying + if (!wasDead) + { + // Play dying sound + deathSound.PlayAndForget(); + + Game.VibratorSmooth(controllerIndex, new Vector2(0.90f, 0.99f), new Vector2(0.0f, 0.0f), TimeSpan.FromSeconds(3)); + Move(0.0f); //stop any motion + stateMachine?.SwitchTo(IdleState); + stateMachine?.Exit(); + Script.AddTask(async () => + { + await Game.WaitTime(TimeSpan.FromSeconds(3)); + IsAlive = false; + }); + } + } + + // Fire event + OnDamageTaken?.Invoke(this, damage); + } + + public bool IsDead => HealthPoints <= 0; + } +} diff --git a/Starbreach/Soldier/SoldierPlayerInput.cs b/Starbreach/Soldier/SoldierPlayerInput.cs new file mode 100644 index 0000000..4b431d7 --- /dev/null +++ b/Starbreach/Soldier/SoldierPlayerInput.cs @@ -0,0 +1,189 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using System.Collections.Generic; +using System.Linq; +using Starbreach.Core; +using Xenko.Core.Mathematics; +using Xenko.Engine; +using Xenko.Engine.Events; +using Xenko.Input; + +namespace Starbreach.Soldier +{ + /// + /// This script listens to player Input and emits events. + /// + public class SoldierPlayerInput : SyncScript, IPlayerInput + { + public bool AimState { get; private set; } = false; + public bool FireState { get; private set; } = false; + public bool ReloadState { get; private set; } = false; + + public Vector2 MoveDirection { get; private set; } = new Vector2(); + + public Vector2 AimDirection { get; private set; } = new Vector2(); + + public delegate void InputEventHandler(Entity e); + + /// + /// Called when the user presses the reload button + /// + public InputEventHandler OnReload; + + /// + /// Called when the user presses the start button + /// + public InputEventHandler OnStart; + + /// + /// Called when the user presses the interact button + /// + public InputEventHandler OnInteract; + + private GamePadButton lastButtonState = 0; + + /// + /// Invert aim Y axis + /// + public bool InvertYAxis = false; + + /// + /// Invert aim X axis + /// + public bool InvertXAxis = false; + + /// + /// Multiplies move movement by this amount to apply aim rotations + /// + public float MouseSensitivity = 100.0f; + + public List KeysLeft { get; } = new List(); + + public List KeysRight { get; } = new List(); + + public List KeysUp { get; } = new List(); + + public List KeysDown { get; } = new List(); + + public List KeysAim { get; } = new List(); + + public List KeysShoot { get; } = new List(); + + public List KeysReload { get; } = new List(); + + public List KeysStart { get; } = new List(); + + public List KeysInteract { get; } = new List(); + + public int ControllerIndex { get; set; } + + public float DeadZone { get; set; } = 0.5f; + + /// + /// Tries to get the player Input component from the player entity + /// + /// The entity created from the prefab that is the player + /// A valid Player Input object or null + public static SoldierPlayerInput FromEntity(Entity playerEntity) + { + return playerEntity.Get(); + } + + public override void Start() + { + base.Start(); + if (Priority >= 0) + throw new InvalidOperationException("SoldierPlayerInput must have a priority lower than zero."); + } + + public override void Update() + { + MoveDirection = Vector2.Zero; + AimDirection = Vector2.Zero; + + // Left stick: movement + var padDirection = Input.GetLeftThumb(ControllerIndex); + var isDeadZone = padDirection.Length() < DeadZone; + if (!isDeadZone) + MoveDirection = padDirection; + MoveDirection.Normalize(); + + // Right stick: aim + padDirection = Input.GetRightThumb(ControllerIndex); + var aimSpeed = padDirection.Length(); + isDeadZone = aimSpeed < DeadZone; + // Make sure aim starts at 0 when outside deadzone + aimSpeed = (aimSpeed - DeadZone)/(1.0f - DeadZone); + // Clamp aim speed + if (aimSpeed > 1.0f) + aimSpeed = 1.0f; + // Curve aim speed + aimSpeed = (float)Math.Pow(aimSpeed, 1.6); + if (!isDeadZone) + { + AimDirection = padDirection; + AimDirection.Normalize(); + AimDirection *= aimSpeed; + } + + // Keyboard move + if (KeysLeft.Any(key => Input.IsKeyDown(key))) + MoveDirection += -Vector2.UnitX; + if (KeysRight.Any(key => Input.IsKeyDown(key))) + MoveDirection += +Vector2.UnitX; + if (KeysUp.Any(key => Input.IsKeyDown(key))) + MoveDirection += +Vector2.UnitY; + if (KeysDown.Any(key => Input.IsKeyDown(key))) + MoveDirection += -Vector2.UnitY; + + var isAiming = KeysAim.Any(key => Input.IsKeyDown(key)) || Input.GetLeftTrigger(ControllerIndex) >= DeadZone; + var isFiring = KeysShoot.Any(key => Input.IsKeyDown(key)) || Input.GetRightTrigger(ControllerIndex) >= DeadZone; + var isStarting = KeysStart.Any(key => Input.IsKeyPressed(key)) || Input.IsGamePadButtonPressed(ControllerIndex, GamePadButton.Start); + var isReloading = KeysReload.Any(key => Input.IsKeyPressed(key)) || Input.IsGamePadButtonPressed(ControllerIndex, GamePadButton.Y); + var isInteracting = KeysInteract.Any(key => Input.IsKeyPressed(key)) || Input.IsGamePadButtonPressed(ControllerIndex, GamePadButton.A); + + if(isStarting) + OnStart?.Invoke(Entity); + + if (isReloading) + OnReload?.Invoke(Entity); + + if (isInteracting) + OnInteract?.Invoke(Entity); + + // Mouse aim (after normalization of aim direction) + // mouse aim is only enabled after you click the screen to lock your cursor, pressing escape cancels this + if (Input.IsMouseButtonDown(MouseButton.Left)) + Input.LockMousePosition(true); + if (Input.IsKeyPressed(Keys.Escape)) + Input.UnlockMousePosition(); + if (Input.IsMousePositionLocked) + { + // Mouse shooting + if (Input.IsMouseButtonDown(MouseButton.Left)) + isFiring = true; + + // Mouse aiming + if (Input.IsMouseButtonDown(MouseButton.Right)) + isAiming = true; + + AimDirection += new Vector2(Input.MouseDelta.X, -Input.MouseDelta.Y) * MouseSensitivity; + } + + if (InvertXAxis) + AimDirection = new Vector2(-AimDirection.X, AimDirection.Y); + if (InvertYAxis) + AimDirection = new Vector2(AimDirection.X, -AimDirection.Y); + + AimState = isAiming; + FireState = isFiring; + } + + public override void Cancel() + { + base.Cancel(); + Input.UnlockMousePosition(); + } + } +} diff --git a/Starbreach/Soldier/SoldierSpawner.cs b/Starbreach/Soldier/SoldierSpawner.cs new file mode 100644 index 0000000..e793e00 --- /dev/null +++ b/Starbreach/Soldier/SoldierSpawner.cs @@ -0,0 +1,106 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using Starbreach.Core; +using Xenko.Core.Mathematics; +using Xenko.Animations; +using Xenko.Engine; +using Xenko.Engine.Events; +using Xenko.Physics; +using Xenko.Rendering.Compositing; +using Xenko.UI.Controls; + +namespace Starbreach.Soldier +{ + public class SoldierSpawner : PlayerSpawner + { + private SoldierController currentSoldier; + + private UIComponent spawnUiComponent; + private TextBlock respawnTimerTextBlock; + + private CameraComponent currentCameraComponent; + + private CameraComponent ActiveCamera + { + get + { + return (SceneSystem.GraphicsCompositor).Cameras[0].Camera; + } + set + { + if (currentCameraComponent != null) + { + currentCameraComponent.Slot = new SceneCameraSlotId(); + } + if (value != null) + { + value.Slot = (SceneSystem.GraphicsCompositor).Cameras[0].ToSlotId(); + } + currentCameraComponent = value; + } + } + + public CameraComponent DefaultCamera { get; set; } + + public override void Start() + { + var ipbrGame = Services.GetService(); + spawnUiComponent = ipbrGame.PlayerUiEntity.FindChild("RespawnUI").Get(); + respawnTimerTextBlock = spawnUiComponent.Page.RootElement.FindNameRecursive("CountDown") as TextBlock; + + base.Start(); + } + + protected override void PreSpawnPlayer(Entity playerEntity) + { + var controller = playerEntity.Get(); + if (controller != null) + { + Player = currentSoldier = controller; + IPlayerInput input = playerEntity.Get(); + Player.Init(input); + } + } + + protected override void SpawnPlayer() + { + base.SpawnPlayer(); + + // Hide Respawn UI + spawnUiComponent.Enabled = false; + + if (Player == null) + throw new InvalidOperationException("Could not find the player controller"); + + // Set yaw on spawned soldier + if(currentSoldier != null) + { + var rot = Entity.Transform.Rotation; + rot.X = rot.Z = 0.0f; + rot.Normalize(); + var yaw = MathUtil.RadiansToDegrees(2 * (float)Math.Acos(rot.W)); + currentSoldier.Yaw = yaw; + currentSoldier.CameraController.Yaw = yaw; + ActiveCamera = currentSoldier.Camera; + } + } + + protected override void UpdateRespawnTimer(float timeLeft) + { + // Show respawn timer (when game has started) + spawnUiComponent.Enabled = true; + + int timeLeftRounded = (int)Math.Round(timeLeft); + respawnTimerTextBlock.Text = timeLeftRounded.ToString(); + } + + protected override void KillPlayer() + { + ActiveCamera = DefaultCamera; + currentSoldier = null; + + base.KillPlayer(); + } + } +} diff --git a/Starbreach/Soldier/SoldierWeapon.cs b/Starbreach/Soldier/SoldierWeapon.cs new file mode 100644 index 0000000..e846395 --- /dev/null +++ b/Starbreach/Soldier/SoldierWeapon.cs @@ -0,0 +1,238 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using System.Collections.Generic; +using Starbreach.Camera; +using Starbreach.Core; +using Xenko.Core; +using Xenko.Core.Mathematics; +using Xenko.Audio; +using Xenko.Engine; +using Xenko.Engine.Events; +using Xenko.Games; +using Xenko.Graphics; +using Xenko.Physics; +using Xenko.UI; +using Xenko.UI.Controls; +using Xenko.UI.Panels; + +namespace Starbreach.Soldier +{ + public struct WeaponFiredResult + { + public HitResult HitResult; + public Vector3 Target; + } + + /// + /// This script handles the weapon of the solider and makes it fire. + /// + public class SoldierWeapon : SyncScript + { + private readonly Random rand = new Random(42); + + private SoldierController soldier; + private TimeSpan lastBullet; + private bool isFiring; + public bool IsReloading { get; private set; } + + // Sound + private AudioEmitterSoundController reloadSound; + private Entity uiCameraEntity; + private Entity crosshairEntity; + private Entity statusBarEntity; + private StackPanel ammoBarGrid; + + public delegate void ShotFiredHandler(SoldierWeapon weapon, WeaponFiredResult result); + public ShotFiredHandler OnShotFired; + + public delegate void ReloadHandler(SoldierWeapon weapon); + public ReloadHandler OnReload; + + /// + /// Gets or sets the camera that defines the direction of the shooting. + /// + public CameraController Camera { get; set; } + + /// + /// Gets or sets the entity from which bullets are fired. + /// + public Entity ShootSource { get; set; } + + /// + /// Gets or sets the number of bullets shot per second + /// + public float BulletPerSeconds { get; set; } = 10; + + /// + /// Gets or sets the angle of the shooting cone. + /// + public float ShootingConeAngle { get; set; } = 2.0f; + + public int MaxAmmo { get; set; } = 25; + + [DataMemberIgnore] + public int CurrentAmmo { get; private set; } + + public override void Start() + { + if (Camera == null) throw new ArgumentException("Camera is not set"); + if (ShootSource == null) throw new ArgumentException("ShootSource is not set"); + if (BulletPerSeconds <= 0) throw new ArgumentException("BulletPerSeconds must be > 0"); + if (MaxAmmo <= 0) throw new ArgumentException("MaxAmmo must be > 0"); + CurrentAmmo = MaxAmmo; + + soldier = Entity.Get(); + reloadSound = ShootSource.Get()["Reload"]; + + // Handle reload event + soldier.Input.OnReload += (e) => + { + if(!IsReloading && CurrentAmmo != MaxAmmo) Reload(); + }; + BulletPerSeconds = 40; + } + + public override void Update() + { + // Can't shoot while dead + if (soldier.IsDead) return; + + isFiring = soldier.Input.FireState; + + var bulletDelta = 1.0f / BulletPerSeconds; + if ((Game.UpdateTime.Total - lastBullet).TotalSeconds > bulletDelta) + { + if (IsReloading) + { + CurrentAmmo = MaxAmmo; + IsReloading = false; + } + if (isFiring) + { + if (CurrentAmmo > 0) + { + Shoot(); + } + else + { + Reload(); + } + } + else if (CurrentAmmo == 0) + Reload(); // Auto reload when empty + } + //Game.DebugPrint($"Ammo: {CurrentAmmo}"); + + UpdateUI(); + } + + private void UpdateUI() + { + var source = ShootSource.Transform.WorldMatrix.TranslationVector; + var accuracyVector = new Vector3(0.0f, 0.0f, 1.0f); + accuracyVector = Vector3.Transform(accuracyVector, Quaternion.RotationYawPitchRoll( + MathUtil.DegreesToRadians(Camera.Yaw), 0, 0)); + var target = source + accuracyVector * 100.0f; + + var vrGame = (IStarbreach)Game; + uiCameraEntity = uiCameraEntity ?? vrGame.PlayerUiEntity.FindChild("Camera"); + if (uiCameraEntity != null) + { + crosshairEntity = crosshairEntity ?? vrGame.PlayerUiEntity.FindChild("Crosshair"); + if (soldier.IsAiming) + { + // TEMPORARY Until we have a correct crosshair + //crosshairEntity.Get().Enabled = true; + + // TODO make sure crosshair doesn't lag behind camera movement + //if(!crosshairSet) + { + var y = uiCameraEntity.Get().OrthographicSize; + var x = y*uiCameraEntity.Get().AspectRatio; + + var crosshairPosition = Vector3.Project(target, -x*0.5f, -y*0.5f, x, y, + Camera.Camera.NearClipPlane, Camera.Camera.FarClipPlane, Camera.Camera.ViewProjectionMatrix); + crosshairPosition.Y *= -1.0f; + + crosshairEntity.Transform.Position = crosshairPosition; + crosshairEntity.Transform.Position.Z = -10.0f; + crosshairEntity.Transform.UpdateWorldMatrix(); + } + } + else + { + crosshairEntity.Get().Enabled = false; + } + } + + // Update Ammo indicator + statusBarEntity = statusBarEntity ?? vrGame.PlayerUiEntity.FindChild("StatusBar"); + //ammoBarGrid = ammoBarGrid ?? (StackPanel)statusBarEntity.Get().Page.RootElement.FindName("ammobarGrid"); + //for (var i = 0; i < ammoBarGrid.Children.Count; i++) + //{ + // ammoBarGrid.Children[i].Visibility = (i < CurrentAmmo) ? Visibility.Visible : Visibility.Hidden; + //} + } + + private void Reload() + { + var bulletDelta = 1.0f / BulletPerSeconds; + lastBullet = Game.UpdateTime.Total + TimeSpan.FromSeconds(1.5 - bulletDelta); + IsReloading = true; + OnReload?.Invoke(this); + + // Play reload sound + reloadSound.PlayAndForget(); + } + + private void Shoot() + { + var simulation = this.GetSimulation(); + var source = ShootSource.Transform.WorldMatrix.TranslationVector; + // Compute direction from the angle of the shooting cone + var accuracyRadius = Math.Tan(MathUtil.DegreesToRadians(ShootingConeAngle) * 0.5) * rand.NextDouble(); + var accuracyAngle = Math.PI * 2 * rand.NextDouble(); + var accuracyVector = new Vector3((float)(accuracyRadius * Math.Cos(accuracyAngle)), (float)(accuracyRadius * Math.Sin(accuracyAngle)), 1.0f); + accuracyVector = Vector3.Transform(accuracyVector, Quaternion.RotationYawPitchRoll(MathUtil.DegreesToRadians(Camera.Yaw), 0, 0)); + var target = source + accuracyVector * 100.0f; + + // Cast a ray to find the collision + var hits = simulation.RaycastPenetrating(source, target); + Vector3 normal = (target - source); + normal.Normalize(); + hits.Sort(Comparer.Create((a,b) => Vector3.Dot(a.Point, normal).CompareTo(Vector3.Dot(b.Point, normal)))); + + // Hack to ignore disabled colliders + HitResult hit = new HitResult(); + hit.Succeeded = false; + foreach(var testHit in hits) + { + if (testHit.Collider.CollisionGroup == CollisionFilterGroups.CustomFilter2) // Alert sphere + continue; + + if (testHit.Collider.Enabled) + { + hit = testHit; + break; + } + } + + if (hit.Succeeded) + { + //Damage things that are hit + var destructible = Utils.GetDestructible(hit.Collider.Entity); + if(destructible != null && !Utils.IsPlayerEntity(hit.Collider.Entity)) + { + destructible?.Damage(25); + } + } + + OnShotFired?.Invoke(this, new WeaponFiredResult { HitResult = hit, Target = target}); + lastBullet = Game.UpdateTime.Total; + + // Debug ammo usage + CurrentAmmo--; + } + } +} \ No newline at end of file diff --git a/Starbreach/Soldier/SoldierWeaponFireFeedback.cs b/Starbreach/Soldier/SoldierWeaponFireFeedback.cs new file mode 100644 index 0000000..0a35894 --- /dev/null +++ b/Starbreach/Soldier/SoldierWeaponFireFeedback.cs @@ -0,0 +1,151 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using System.Threading.Tasks; +using Xenko.Core.Mathematics; +using Xenko.Audio; +using Xenko.Engine; +using Xenko.Engine.Events; +using Xenko.Particles; +using Xenko.Particles.Components; +using Xenko.Physics; + +namespace Starbreach.Soldier +{ + /// + /// This script handles all feedback of the soldier's weapon firing. + /// + public class SoldierWeaponFireFeedback : StartupScript + { + /// + /// Gets or sets the entity from which bullets are fired. + /// + public Entity ShootSource { get; set; } + + /// + /// Gets or sets the entity that will be placed at the hit location of the bullet to render particles. + /// + public Entity ShootTarget { get; set; } + + /// + /// Gets or sets the light to toggle on when the weapon is firing. + /// + public LightComponent Light { get; set; } + + /// + /// Gets or sets the particle system for the bullet trail. + /// + public ParticleSystemComponent ShootTrail { get; set; } + + /// + /// Gets or sets the particle system for the bullet impact. + /// + public ParticleSystemComponent ShootImpact { get; set; } + + /// + /// Gets or sets the particle system for the bullet holes effect. + /// + public ParticleSystemComponent BulletHole { get; set; } + + /// + /// Particle system which controls the muzzle flash + /// + private ParticleSystem muzzleFlashParticles; + + private ParticleSystem laserEffect; + private ParticleSystem laserImpact; + + private AudioEmitterSoundController[] shootSounds; + private AudioEmitterSoundController[] impactSounds; + private Random soundIndexGenerator = new Random(); + + public override void Start() + { + if (ShootSource == null) throw new ArgumentException("ShootSource not set"); + if (ShootTarget == null) throw new ArgumentException("ShootTarget not set"); + if (Light == null) throw new ArgumentException("Light not set"); + if (ShootTrail == null) throw new ArgumentException("ShootTrail not set"); + if (ShootImpact == null) throw new ArgumentException("ShootImpact not set"); + if (BulletHole == null) throw new ArgumentException("BulletHole not set"); + + var muzzleFlashEntity = ShootSource.FindChild("MuzzleFlash"); + muzzleFlashParticles = muzzleFlashEntity?.Get()?.ParticleSystem; + muzzleFlashParticles?.Stop(); + + laserEffect = ShootTrail.ParticleSystem; + laserEffect.Stop(); + laserImpact = ShootImpact.ParticleSystem; + laserImpact.Stop(); + + + BulletHole.ParticleSystem.Enabled = true; + BulletHole.ParticleSystem.Stop(); + + Light.Enabled = false; + + AudioEmitterComponent shootEmitter = Entity.FindChild("ShootSource").Get(); + AudioEmitterComponent shootTargetEmitter = ShootTarget.Get(); + + // Load different shoot sound effects + shootSounds = new AudioEmitterSoundController[4]; + for (int i = 0; i < shootSounds.Length; i++) + shootSounds[i] = shootEmitter["Shoot" + i]; + + // Load different impact sound effects + impactSounds = new AudioEmitterSoundController[4]; + for (int i = 0; i < impactSounds.Length; i++) + impactSounds[i] = shootTargetEmitter["Impact" + i]; + + SoldierWeapon weapon = Entity.Get(); + weapon.OnShotFired += (soldierWeapon, result) => + { + Script.AddTask(async() => await FireWeapon(result)); + }; + } + + public async Task FireWeapon(WeaponFiredResult hit) + { + + var hitPoint = hit.HitResult.Succeeded ? hit.HitResult.Point : hit.Target; + + // MORE LOGIC HERE + // The bullet holes should be more discriminitive + + var displayBulletHole = hit.HitResult.Succeeded && (hit.HitResult.Collider.CollisionGroup != CollisionFilterGroups.CustomFilter3 && // Enemy Drone + hit.HitResult.Collider.CollisionGroup != CollisionFilterGroups.CharacterFilter && // Player Character + hit.HitResult.Collider.CollisionGroup != CollisionFilterGroups.CustomFilter1); // VR Drone + + displayBulletHole = false; + + ShootTarget.Transform.Position = hitPoint; + + var rightVector = Vector3.Cross(new Vector3(0, 1, 0), hit.HitResult.Normal); + var rightCos = Vector3.Dot(new Vector3(0, 1, 0), hit.HitResult.Normal); + var rightAngle = (float) Math.Acos(rightCos); + Quaternion.RotationAxis(ref rightVector, rightAngle, out ShootTarget.Transform.Rotation); + + // Wait for camera to turn + await Script.NextFrame(); + + Light.Enabled = true; + if (displayBulletHole) + BulletHole.ParticleSystem.Play(); + laserImpact.Play(); + muzzleFlashParticles?.Play(); + laserEffect.Play(); + + shootSounds[soundIndexGenerator.Next(0, shootSounds.Length-1)].PlayAndForget(); + + await Script.NextFrame(); + + impactSounds[soundIndexGenerator.Next(0, impactSounds.Length - 1)].PlayAndForget(); + + Light.Enabled = false; + if (displayBulletHole) + BulletHole.ParticleSystem.Timeout(10); + laserEffect.Timeout(1); + laserImpact.Timeout(1); + muzzleFlashParticles?.Timeout(1); + } + } +} \ No newline at end of file diff --git a/Starbreach/Starbreach.csproj b/Starbreach/Starbreach.csproj new file mode 100644 index 0000000..d8547c2 --- /dev/null +++ b/Starbreach/Starbreach.csproj @@ -0,0 +1,54 @@ + + + net461 + PBRGame + true + + + + + + + + + + + + + + XenkoShaderKeyGenerator + ComputeColorTextureScrollH.cs + + + XenkoShaderKeyGenerator + ComputeColorTextureScrollParam1.cs + + + XenkoShaderKeyGenerator + ComputeColorTextureScrollV1.cs + + + + + + + + True + True + True + ComputeColorTextureScrollH.xksl + + + True + True + True + ComputeColorTextureScrollParam.xksl + + + True + True + True + ComputeColorTextureScrollV.xksl + + + \ No newline at end of file diff --git a/Starbreach/Starbreach.xkpkg b/Starbreach/Starbreach.xkpkg new file mode 100644 index 0000000..ea73c5b --- /dev/null +++ b/Starbreach/Starbreach.xkpkg @@ -0,0 +1,32 @@ +!Package +SerializedVersion: {Assets: 3.1.0.0} +Meta: + Name: PBRGame.Game + Version: 1.0.0 + Authors: [] + Owners: [] + RootNamespace: PBRGame + Dependencies: null +AssetFolders: + - Path: !dir Assets/Shared + - Path: !dir Effects + - Path: !dir VFX +ResourceFolders: [] +OutputGroupDirectories: {} +ExplicitFolders: [] +Bundles: [] +TemplateFolders: [] +RootAssets: + - 0e041445-76b6-4cb6-aca7-6716c51880de:UI/VR_MiddlePanel + - 22f13931-e267-4a3b-b7ff-a8d0f1411386:Levels/Bridge_1-1_to_1-2 + - 4468824f-6749-4a15-9efd-b49da99895d7:Sounds/combat_music_xenko + - 52177230-a906-45aa-8d74-41356acc1e19:UI/CountDownVR + - 636abdbb-b92c-4472-9abe-27564541611e:UI/UISceneSoldier + - 6fe8ba5a-74a2-41ee-9f3a-f607c0cfcab8:UI/UIScene + - 9b7e53c9-752a-40f8-ae41-3a5e975085ad:Levels/Platform_1-1 + - 9dede2cf-fbc3-4f47-b9e3-31cd2650e3e4:Levels/Platform_1-4 + - c19198c4-4894-4d04-bbad-e31a414da5d5:Levels/Platform_1-3 + - c2757ab9-1b26-4857-825b-74f39acb6f2d:Levels/Bridge_1-3_to_1-4 + - c6a4ba7f-4488-4cdd-9373-8980d5139065:Levels/Bridge_1-2_to_1-3 + - d77f799f-75e2-4168-bf2b-d5b98b615d95:UI/VRMirrorScene + - d84c90f8-5819-4d13-9da0-44e63ffe03b2:Levels/Platform_1-2 diff --git a/Starbreach/VFX/BeamPostUpdate.cs b/Starbreach/VFX/BeamPostUpdate.cs new file mode 100644 index 0000000..3010fd6 --- /dev/null +++ b/Starbreach/VFX/BeamPostUpdate.cs @@ -0,0 +1,68 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using Xenko.Core; +using Xenko.Core.Mathematics; +using Xenko.Engine; +using Xenko.Particles; +using Xenko.Particles.Modules; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Starbreach.VFX +{ + /// + /// The updates the particles' positions and velocity based on proximity and relative position to a bounding force field + /// + [DataContract] + [Display("Beam Position")] + public class BeamPostUpdate : ParticleUpdater + { + public override bool IsPostUpdater => true; + + public BeamPostUpdate() + { + RequiredFields.Add(ParticleFields.Position); + RequiredFields.Add(ParticleFields.Velocity); + RequiredFields.Add(ParticleFields.RandomSeed); + } + + [DataMember(10)] + [Display("Target")] + public TransformComponent Target; + + /// + public override unsafe void Update(float dt, ParticlePool pool) + { + if (!pool.FieldExists(ParticleFields.Position) || !pool.FieldExists(ParticleFields.Velocity)) + return; + + var posField = pool.GetField(ParticleFields.Position); + var velField = pool.GetField(ParticleFields.Velocity); + var lifeField = pool.GetField(ParticleFields.Life); + + var beamAdd = Target?.WorldMatrix.TranslationVector - WorldPosition ?? new Vector3(); + + foreach (var particle in pool) + { + var remainingLife = (*((float*)particle[lifeField])); + var lerp = 1.0f - remainingLife; + + // var particlePosition = WorldPosition + beamAdd * lerp; + // Force contribution to velocity - conserved energy + //(*((Vector3*)particle[velField])) = particlePosition; + + var desiredPosition = WorldPosition + beamAdd * lerp; + var desiredOffset = desiredPosition - (*((Vector3*)particle[posField])); + + (*((Vector3*)particle[velField])) += desiredOffset * 3 * (float)Math.Sqrt(lerp); + + lerp *= lerp; + + (*((Vector3*)particle[posField])) += desiredOffset * lerp * lerp; + } + } + } +} \ No newline at end of file diff --git a/Starbreach/VFX/ComputeColorTextureScrollH.cs b/Starbreach/VFX/ComputeColorTextureScrollH.cs new file mode 100644 index 0000000..2d108c4 --- /dev/null +++ b/Starbreach/VFX/ComputeColorTextureScrollH.cs @@ -0,0 +1,9 @@ +// +// Do not edit this file yourself! +// +// This code was generated by Xenko Shader Mixin Code Generator. +// To generate it yourself, please install Xenko.VisualStudio.Package .vsix +// and re-save the associated .xkfx. +// + +// Nothing to generate diff --git a/Starbreach/VFX/ComputeColorTextureScrollH.xksl b/Starbreach/VFX/ComputeColorTextureScrollH.xksl new file mode 100644 index 0000000..e735883 --- /dev/null +++ b/Starbreach/VFX/ComputeColorTextureScrollH.xksl @@ -0,0 +1,23 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. + +// Only works properly for ProceduralCylinder! +// You will have to customize it to handle other shapes if they are required. +shader ComputeColorTextureScrollH : ComputeColor, Texturing +{ + // ------------------------------------- + // streams + // ------------------------------------- + stage stream float4 Position : POSITION; + + // Only works properly for ProceduralCylinder! + // You will have to customize it to handle other shapes if they are required. + override float4 Compute() + { + streams.TexCoord.x += Global.Time * UvSpeed; + + float alpha = 1 - 10 * (abs(streams.Position.y) - 0.4f); + + return float4(alpha * colorIntensity, alpha * colorIntensity, alpha * colorIntensity, alpha); + } +}; diff --git a/Starbreach/VFX/ComputeColorTextureScrollParam.xksl b/Starbreach/VFX/ComputeColorTextureScrollParam.xksl new file mode 100644 index 0000000..3a17fd4 --- /dev/null +++ b/Starbreach/VFX/ComputeColorTextureScrollParam.xksl @@ -0,0 +1,16 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +shader ComputeColorTextureScrollParam : ComputeColor, Texturing +{ + rgroup PerMaterial + { + stage Texture2D MyTexture; + + stage float2 Offset; + } + + override float4 Compute() + { + return MyTexture.Sample(Texturing.LinearRepeatSampler, streams.TexCoord + Offset); + } +}; diff --git a/Starbreach/VFX/ComputeColorTextureScrollParam1.cs b/Starbreach/VFX/ComputeColorTextureScrollParam1.cs new file mode 100644 index 0000000..5fead31 --- /dev/null +++ b/Starbreach/VFX/ComputeColorTextureScrollParam1.cs @@ -0,0 +1,24 @@ +// +// Do not edit this file yourself! +// +// This code was generated by Xenko Shader Mixin Code Generator. +// To generate it yourself, please install Xenko.VisualStudio.Package .vsix +// and re-save the associated .xkfx. +// + +using System; +using Xenko.Core; +using Xenko.Rendering; +using Xenko.Graphics; +using Xenko.Shaders; +using Xenko.Core.Mathematics; +using Buffer = Xenko.Graphics.Buffer; + +namespace Xenko.Rendering +{ + public static partial class ComputeColorTextureScrollParamKeys + { + public static readonly ObjectParameterKey MyTexture = ParameterKeys.NewObject(); + public static readonly ValueParameterKey Offset = ParameterKeys.NewValue(); + } +} diff --git a/Starbreach/VFX/ComputeColorTextureScrollV.xksl b/Starbreach/VFX/ComputeColorTextureScrollV.xksl new file mode 100644 index 0000000..0db672e --- /dev/null +++ b/Starbreach/VFX/ComputeColorTextureScrollV.xksl @@ -0,0 +1,23 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. + +// Only works properly for ProceduralCylinder! +// You will have to customize it to handle other shapes if they are required. +shader ComputeColorTextureScrollV : ComputeColor, Texturing +{ + // ------------------------------------- + // streams + // ------------------------------------- + stage stream float4 Position : POSITION; + + // Only works properly for ProceduralCylinder! + // You will have to customize it to handle other shapes if they are required. + override float4 Compute() + { + streams.TexCoord.y += Global.Time * UvSpeed; + + float alpha = 1 - 10 * (abs(streams.Position.y) - 0.4f); + + return float4(alpha * colorIntensity, alpha * colorIntensity, alpha * colorIntensity, alpha); + } +}; diff --git a/Starbreach/VFX/ComputeColorTextureScrollV1.cs b/Starbreach/VFX/ComputeColorTextureScrollV1.cs new file mode 100644 index 0000000..2d108c4 --- /dev/null +++ b/Starbreach/VFX/ComputeColorTextureScrollV1.cs @@ -0,0 +1,9 @@ +// +// Do not edit this file yourself! +// +// This code was generated by Xenko Shader Mixin Code Generator. +// To generate it yourself, please install Xenko.VisualStudio.Package .vsix +// and re-save the associated .xkfx. +// + +// Nothing to generate diff --git a/Starbreach/VFX/DroneExplosion.cs b/Starbreach/VFX/DroneExplosion.cs new file mode 100644 index 0000000..3c83c86 --- /dev/null +++ b/Starbreach/VFX/DroneExplosion.cs @@ -0,0 +1,53 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Xenko.Core.Mathematics; +using Xenko.Audio; +using Xenko.Engine; +using Xenko.Physics; + +namespace Starbreach.VFX +{ + public class DroneExplosion : AsyncScript + { + protected AudioEmitterSoundController explosionSound; + + public override async Task Execute() + { + // Play explosion sound + AudioEmitterComponent audioEmitter = Entity.Get(); + explosionSound = audioEmitter["Explosion"]; + explosionSound.PlayAndForget(); + + Entity.Transform.UpdateWorldMatrix(); + + var model = Entity.Get(); + + // Scatter all the Rigidbody parts of the scattered drone model + var fracturedRigidBodies = Entity.GetAll(); + Vector3 explosionCenter = Entity.Transform.WorldMatrix.TranslationVector; + Random explosionRandom = new Random(); + foreach (var fragment in fracturedRigidBodies) + { + Vector3 dir = fragment.PhysicsWorldTransform.TranslationVector - explosionCenter; + dir.Normalize(); + + fragment.IsKinematic = false; + if (model.Skeleton.Nodes[fragment.BoneIndex].Name != "Drone_D_part_015") + { + fragment.ApplyTorqueImpulse(-dir*(float) (explosionRandom.NextDouble()*0.2f)); + fragment.ApplyImpulse(dir * (float)(explosionRandom.NextDouble() * 2.5f + 2.5f)); + } + } + + await Task.Delay(30000); + + // Despawn after a while to clean up drone parts + SceneSystem.SceneInstance.RootScene.Entities.Remove(Entity); + } + } +} diff --git a/Starbreach/VFX/Fan.cs b/Starbreach/VFX/Fan.cs new file mode 100644 index 0000000..4fd8ba3 --- /dev/null +++ b/Starbreach/VFX/Fan.cs @@ -0,0 +1,48 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Xenko.Core.Mathematics; +using Xenko.Engine; +using Xenko.Games; +using Xenko.Graphics; +using Xenko.Rendering; + +namespace Starbreach.VFX +{ + public class Fan : SyncScript + { + public float RotationSpeed = 1.0f; + public ModelComponent VentLightModelComponent; + + public Texture LightTexture; + + private float phase = 0.0f; + private Vector3 upAxis; + private Quaternion originalRotation; + + public override void Start() + { + Entity.Transform.UpdateLocalMatrix(); + upAxis = Entity.Transform.LocalMatrix.Up; + originalRotation = Entity.Transform.Rotation; + } + + public override void Update() + { + phase = (float)Game.UpdateTime.Total.TotalSeconds * RotationSpeed; + var rotate = Quaternion.RotationAxis(upAxis, (float)Math.PI * 2.0f * phase); + Entity.Transform.Rotation = originalRotation * rotate; + + var material = VentLightModelComponent.GetMaterial(0); + foreach (var pass in material.Passes) + { + pass.Parameters.Set(ComputeColorTextureScrollParamKeys.Offset, new Vector2(phase, 0.0f)); + pass.Parameters.Set(ComputeColorTextureScrollParamKeys.MyTexture, LightTexture); + } + } + } +} diff --git a/Starbreach/VFX/FloatingRock.cs b/Starbreach/VFX/FloatingRock.cs new file mode 100644 index 0000000..3cd31bb --- /dev/null +++ b/Starbreach/VFX/FloatingRock.cs @@ -0,0 +1,43 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Xenko.Core.Mathematics; +using Xenko.Engine; + +namespace Starbreach.VFX +{ + public class FloatingRock : SyncScript + { + public Vector2 FrequencyRange = new Vector2(0.05f, 0.2f); + public Vector2 AmplitudeRange = new Vector2(0.2f, 1.5f); + + private Vector3 startingPosition; + private float frequency; + private float amplitude; + private float timer = 0.0f; + + public override void Start() + { + Random random = new Random(Entity.GetHashCode()); + frequency = MathUtil.Lerp(FrequencyRange.X, FrequencyRange.Y, (float)random.NextDouble()); + amplitude = MathUtil.Lerp(AmplitudeRange.X, AmplitudeRange.Y, (float)random.NextDouble()); + + // Random offset + timer = (float)random.NextDouble(); + + Entity.Transform.UpdateWorldMatrix(); + startingPosition = Entity.Transform.WorldMatrix.TranslationVector; + } + + public override void Update() + { + timer += (float)Game.UpdateTime.Elapsed.TotalSeconds; + var offset = (float)Math.Sin(timer * Math.PI * 2.0 * frequency) * amplitude; + Entity.Transform.Position = startingPosition + new Vector3(0.0f, offset, 0.0f); + } + } +} diff --git a/Starbreach/VFX/GuidePath.cs b/Starbreach/VFX/GuidePath.cs new file mode 100644 index 0000000..b3b5aaa --- /dev/null +++ b/Starbreach/VFX/GuidePath.cs @@ -0,0 +1,66 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Xenko.Engine; +using Xenko.Rendering; + +namespace Starbreach.VFX +{ + /// + /// A path of blinking lights, to indicate a direction + /// + public class GuidePath : SyncScript + { + public Material OnMaterial; + + public Material OffMaterial; + + /// + /// Maximum distance between lights + /// + public int MaxDistance = 10; + + public int Offset = 0; + + public float BlinkDuration = 0.2f; + + private ModelComponent[] modelChain; + + private float timer; + + public override void Start() + { + List models = new List(); + foreach(TransformComponent c in Entity.Transform.Children) + { + ModelComponent modelComponent = c.Children[0].Entity.Get(); + modelComponent.Materials[0] = OffMaterial; + models.Insert(0, modelComponent); + } + modelChain = models.ToArray(); + } + + public override void Update() + { + timer += (float)Game.UpdateTime.Elapsed.TotalSeconds; + if (timer > BlinkDuration) + { + Offset = (Offset + 1) % Math.Min(MaxDistance, modelChain.Length); + timer -= BlinkDuration; + } + + for (int i = 0; i < modelChain.Length; i++) + { + bool on = (i % MaxDistance) == Offset; + if(!on && ((i - 1) % MaxDistance) == Offset && (timer > (BlinkDuration * 0.75f))) + on = true; + + modelChain[i].Materials[0] = on ? OnMaterial : OffMaterial; + } + } + } +} diff --git a/Starbreach/VFX/RotateAxisY.cs b/Starbreach/VFX/RotateAxisY.cs new file mode 100644 index 0000000..f40c3a4 --- /dev/null +++ b/Starbreach/VFX/RotateAxisY.cs @@ -0,0 +1,28 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Xenko.Core.Mathematics; +using Xenko.Engine; + +namespace Starbreach.VFX +{ + public class RotateAxisY : AsyncScript + { + public override async Task Execute() + { + while (Game.IsRunning) + { + await Script.NextFrame(); + + var rotationSpeed = 2f; + + var elapsedTime = (float)Game.UpdateTime.Elapsed.TotalSeconds; + Entity.Transform.Rotation *= Quaternion.RotationY(rotationSpeed * elapsedTime); + } + } + } +} diff --git a/Starbreach/VFX/SaveRenderFrame.cs b/Starbreach/VFX/SaveRenderFrame.cs new file mode 100644 index 0000000..7711b8b --- /dev/null +++ b/Starbreach/VFX/SaveRenderFrame.cs @@ -0,0 +1,29 @@ +// Copyright (c) Silicon Studio Corp. (https://www.siliconstudio.co.jp) +// Distributed under the MIT license. See the LICENSE.md file in the project root for more information. +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Xenko.Engine; +using Xenko.Graphics; +using Xenko.Input; +using Xenko.Rendering; +using System.IO; + +namespace Starbreach.VFX +{ + /// + /// Debug script to save a to a file + /// + class SaveRenderFrame : SyncScript + { + public override void Update() + { + if (Input.IsKeyPressed(Keys.Space)) + { + // TODO Take a screenshot + } + } + } +} diff --git a/VFXPackage/Assets/Shared/Textures/Aura01.xktex b/VFXPackage/Assets/Shared/Textures/Aura01.xktex new file mode 100644 index 0000000..7620e09 --- /dev/null +++ b/VFXPackage/Assets/Shared/Textures/Aura01.xktex @@ -0,0 +1,7 @@ +!Texture +Id: ca6ebc41-c296-47ba-b009-4ed9429d2844 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/Textures/Aura01.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/VFXPackage/Assets/Shared/Textures/BulletHole.xktex b/VFXPackage/Assets/Shared/Textures/BulletHole.xktex new file mode 100644 index 0000000..cd240da --- /dev/null +++ b/VFXPackage/Assets/Shared/Textures/BulletHole.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 12575e84-8b35-4683-82d3-1f40a6348473 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/Textures/BulletHole.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/VFXPackage/Assets/Shared/Textures/Bullettrail01.xktex b/VFXPackage/Assets/Shared/Textures/Bullettrail01.xktex new file mode 100644 index 0000000..0673396 --- /dev/null +++ b/VFXPackage/Assets/Shared/Textures/Bullettrail01.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 2c8e60e4-e070-4124-a1fa-f36cc74de76c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/Textures/Bullettrail01.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/VFXPackage/Assets/Shared/Textures/EXP001.xktex b/VFXPackage/Assets/Shared/Textures/EXP001.xktex new file mode 100644 index 0000000..84dbce0 --- /dev/null +++ b/VFXPackage/Assets/Shared/Textures/EXP001.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 24a1fa27-5ec5-4eb6-bf4d-918005b0fb24 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/Textures/Explosion/EXP001.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/VFXPackage/Assets/Shared/Textures/FIR001.xktex b/VFXPackage/Assets/Shared/Textures/FIR001.xktex new file mode 100644 index 0000000..15ee64f --- /dev/null +++ b/VFXPackage/Assets/Shared/Textures/FIR001.xktex @@ -0,0 +1,7 @@ +!Texture +Id: d023ae47-8f08-4abd-b82b-0e27e5d89515 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/Textures/Flame/FIR001.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/VFXPackage/Assets/Shared/Textures/FRB001.xktex b/VFXPackage/Assets/Shared/Textures/FRB001.xktex new file mode 100644 index 0000000..551c764 --- /dev/null +++ b/VFXPackage/Assets/Shared/Textures/FRB001.xktex @@ -0,0 +1,7 @@ +!Texture +Id: b34370ba-2a1a-485a-8eaf-d8fbd228ca39 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/Textures/Bonfire/FRB001.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/VFXPackage/Assets/Shared/Textures/Gradation01.xktex b/VFXPackage/Assets/Shared/Textures/Gradation01.xktex new file mode 100644 index 0000000..70d919e --- /dev/null +++ b/VFXPackage/Assets/Shared/Textures/Gradation01.xktex @@ -0,0 +1,7 @@ +!Texture +Id: da9b119e-ce87-4f7b-a4cc-2e93b158f137 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/Textures/Gradation01.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/VFXPackage/Assets/Shared/Textures/Hit01.xktex b/VFXPackage/Assets/Shared/Textures/Hit01.xktex new file mode 100644 index 0000000..9a014fc --- /dev/null +++ b/VFXPackage/Assets/Shared/Textures/Hit01.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 712fda70-50dc-47b2-9d41-1f4011945cac +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/Textures/Hit01.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/VFXPackage/Assets/Shared/Textures/LensFlare01.xktex b/VFXPackage/Assets/Shared/Textures/LensFlare01.xktex new file mode 100644 index 0000000..0340de2 --- /dev/null +++ b/VFXPackage/Assets/Shared/Textures/LensFlare01.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 163e7dce-4f33-419a-b03b-c592204a8a65 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/Textures/LensFlare01.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/VFXPackage/Assets/Shared/Textures/MuzzleFlash.xktex b/VFXPackage/Assets/Shared/Textures/MuzzleFlash.xktex new file mode 100644 index 0000000..2c6cfde --- /dev/null +++ b/VFXPackage/Assets/Shared/Textures/MuzzleFlash.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 078e5195-2425-43e2-bceb-5b4f9770e8cf +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/Textures/MuzzleFlash.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} +GenerateMipmaps: false diff --git a/VFXPackage/Assets/Shared/Textures/Muzzle_flash_NiX.xktex b/VFXPackage/Assets/Shared/Textures/Muzzle_flash_NiX.xktex new file mode 100644 index 0000000..4608a18 --- /dev/null +++ b/VFXPackage/Assets/Shared/Textures/Muzzle_flash_NiX.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 0455ae16-c507-49ba-8b06-68cd747e0155 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/Textures/Muzzle_flash_NiX.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/VFXPackage/Assets/Shared/Textures/Muzzleflash02.xktex b/VFXPackage/Assets/Shared/Textures/Muzzleflash02.xktex new file mode 100644 index 0000000..ab72627 --- /dev/null +++ b/VFXPackage/Assets/Shared/Textures/Muzzleflash02.xktex @@ -0,0 +1,7 @@ +!Texture +Id: e1f01f3a-44fa-4288-917a-d24692beb01f +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/Textures/Muzzleflash02.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/VFXPackage/Assets/Shared/Textures/Muzzleflash02_Desaturated.xktex b/VFXPackage/Assets/Shared/Textures/Muzzleflash02_Desaturated.xktex new file mode 100644 index 0000000..4bf5322 --- /dev/null +++ b/VFXPackage/Assets/Shared/Textures/Muzzleflash02_Desaturated.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 2607dde5-8519-4cf3-b4d0-cac472175827 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/Textures/Muzzleflash02_Desaturated.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/VFXPackage/Assets/Shared/Textures/Ring01.xktex b/VFXPackage/Assets/Shared/Textures/Ring01.xktex new file mode 100644 index 0000000..39c06d8 --- /dev/null +++ b/VFXPackage/Assets/Shared/Textures/Ring01.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 4ae36a31-e5f2-4cab-8143-e10f0ea7ab34 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/Textures/Ring01.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/VFXPackage/Assets/Shared/Textures/SMO001.xktex b/VFXPackage/Assets/Shared/Textures/SMO001.xktex new file mode 100644 index 0000000..01e2a26 --- /dev/null +++ b/VFXPackage/Assets/Shared/Textures/SMO001.xktex @@ -0,0 +1,7 @@ +!Texture +Id: fa1018e4-c74d-4495-9535-134f5a06e4cd +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/Textures/Smoke01/SMO001.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/VFXPackage/Assets/Shared/Textures/SMO001_2.xktex b/VFXPackage/Assets/Shared/Textures/SMO001_2.xktex new file mode 100644 index 0000000..f2b05df --- /dev/null +++ b/VFXPackage/Assets/Shared/Textures/SMO001_2.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 9cbbe433-0bc7-48e9-91c8-c7f05f957afd +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/Textures/Smoke02/SMO001.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/VFXPackage/Assets/Shared/Textures/SMO001_3.xktex b/VFXPackage/Assets/Shared/Textures/SMO001_3.xktex new file mode 100644 index 0000000..2072c69 --- /dev/null +++ b/VFXPackage/Assets/Shared/Textures/SMO001_3.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 8dbe2382-769c-45fe-9604-98c5ae5c434c +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/Textures/Smoke03/SMO001.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/VFXPackage/Assets/Shared/Textures/Smoke02.xktex b/VFXPackage/Assets/Shared/Textures/Smoke02.xktex new file mode 100644 index 0000000..42268bb --- /dev/null +++ b/VFXPackage/Assets/Shared/Textures/Smoke02.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 8ab2edfe-0ead-489f-a899-97a8112807f7 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/Textures/Smoke02.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/VFXPackage/Assets/Shared/Textures/SparkLight01_0001.xktex b/VFXPackage/Assets/Shared/Textures/SparkLight01_0001.xktex new file mode 100644 index 0000000..6acf23e --- /dev/null +++ b/VFXPackage/Assets/Shared/Textures/SparkLight01_0001.xktex @@ -0,0 +1,8 @@ +!Texture +Id: 28a187b3-de84-4e71-9c87-c5facb6e2ff6 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/Textures/SparkLight01.png +IsCompressed: false +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/VFXPackage/Assets/Shared/Textures/TeleportRing.xktex b/VFXPackage/Assets/Shared/Textures/TeleportRing.xktex new file mode 100644 index 0000000..e6da01f --- /dev/null +++ b/VFXPackage/Assets/Shared/Textures/TeleportRing.xktex @@ -0,0 +1,9 @@ +!Texture +Id: 8bd33d20-0a1c-4505-be78-4316d81bc076 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/Textures/TeleportRing.png +IsCompressed: false +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} +GenerateMipmaps: false diff --git a/VFXPackage/Assets/Shared/Textures/TiledPattern04.xktex b/VFXPackage/Assets/Shared/Textures/TiledPattern04.xktex new file mode 100644 index 0000000..83edfb2 --- /dev/null +++ b/VFXPackage/Assets/Shared/Textures/TiledPattern04.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 52e2ef32-8aaf-4ddd-8a2a-9b069a89e99e +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/Textures/TiledPattern04.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/VFXPackage/Assets/Shared/Textures/dota.xktex b/VFXPackage/Assets/Shared/Textures/dota.xktex new file mode 100644 index 0000000..8a3646f --- /dev/null +++ b/VFXPackage/Assets/Shared/Textures/dota.xktex @@ -0,0 +1,7 @@ +!Texture +Id: 91119660-137e-4be0-bcb9-32f8aeee6ca8 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/Textures/dota.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/VFXPackage/Assets/Shared/Textures/dota02.xktex b/VFXPackage/Assets/Shared/Textures/dota02.xktex new file mode 100644 index 0000000..ae57ee2 --- /dev/null +++ b/VFXPackage/Assets/Shared/Textures/dota02.xktex @@ -0,0 +1,7 @@ +!Texture +Id: ceddee07-138f-4b86-8465-b31eeb5d4cf4 +SerializedVersion: {Xenko: 2.0.0.0} +Tags: [] +Source: ../../../Resources/Textures/dota02.png +Type: !ColorTextureType + ColorKeyColor: {R: 255, G: 0, B: 255, A: 255} diff --git a/VFXPackage/Assets/Shared/VFXPrefabs/ventSteam.xkprefab b/VFXPackage/Assets/Shared/VFXPrefabs/ventSteam.xkprefab new file mode 100644 index 0000000..c25005b --- /dev/null +++ b/VFXPackage/Assets/Shared/VFXPrefabs/ventSteam.xkprefab @@ -0,0 +1,168 @@ +!PrefabAsset +Id: d968d908-b16a-495e-ab6a-09964fa5f9cd +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 7785ea21-d62a-4114-818d-1c8590e0fcd8 + Parts: + - Entity: + Id: 7785ea21-d62a-4114-818d-1c8590e0fcd8 + Name: Steam + Components: + c1ecc9674350ec47b258da4ab8ccf2ff: !TransformComponent + Id: 67c9ecc1-5043-47ec-b258-da4ab8ccf2ff + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8323bf5daa524c4fb5d833e41b08b32d: !ParticleSystemComponent + Id: 5dbf2383-52aa-4f4c-b5d8-33e41b08b32d + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 0.15 + ParticleSystem: + Settings: {} + BoundingShape: !BoundingSpheretatic + Radius: 2.0 + Emitters: + 9a3a5271a4a0934d9467f6b095793379: + ParticleLifetime: {X: 0.5, Y: 0.5} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 0383cd796e839e4b9667af5d0fe71756: + Key: 0.0 + Value: 0.2 + TangentType: Linear + 3c3bf45d6e50e542871470a99fdfd9f3: + Key: 0.3 + Value: 0.5 + TangentType: Linear + aa6cd07e77ba1c4da6e836dff7b31695: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 5.0, Y: 5.0, Z: 5.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 9cbbe433-0bc7-48e9-91c8-c7f05f957afd:Textures/SMO001_2 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: !UVBuilderFlipbook + XDivisions: 8 + YDivisions: 8 + StartingFrame: 0 + AnimationSpeed: 64 + ForceTexCoords: false + Spawners: + fa12c9550522c24fa400d8ce84ef83a0: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 30.0 + Initializers: + 3994a4c9897c7049af5217d699e668a9: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.4, Y: 0.5} + 7fa5fb2d4e692c4aae5cda5ce081ca44: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: 0.0, Y: 0.0, Z: 0.0} + PositionMax: {X: 0.0, Y: 0.0, Z: 0.0} + Interpolate: false + 3d037e54f2051d42a511f75567a2d5eb: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.05, Y: 1.0, Z: -0.05} + VelocityMax: {X: 0.05, Y: 2.0, Z: 0.05} + d4d112e1ace7b944828fa9278f3938e1: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + Updaters: + 226c0f6bc8f05441a0eb6454e9f89045: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 82276cc03e3f854b9dc5c50ece2e25f9: + Key: 0.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + e3927f1e92cb4d4f80c729960776e1ca: + Key: 0.2 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.5} + TangentType: Linear + bb31441c3997734baf5d4b324f145da1: + Key: 1.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 diff --git a/VFXPackage/Assets/Shared/VFXPrefabs/vfx-Bullehole.xkprefab b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-Bullehole.xkprefab new file mode 100644 index 0000000..0d534fa --- /dev/null +++ b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-Bullehole.xkprefab @@ -0,0 +1,150 @@ +!PrefabAsset +Id: e1164942-e691-4b2b-baf5-95d11fe6d716 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 2fbd0a2c-0a41-4079-9140-62862ef77192 + Parts: + - Entity: + Id: 2fbd0a2c-0a41-4079-9140-62862ef77192 + Name: BulletHole + Components: + 54ee1d701f5ac045a7c28e344d497057: !TransformComponent + Id: 701dee54-5a1f-45c0-a7c2-8e344d497057 + Position: {X: -0.0981434, Y: 0.0, Z: 0.5368307} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 60814874cfa3a64a89916d0f963cccd6: !ParticleSystemComponent + Id: 74488160-a3cf-4aa6-8991-6d0f963cccd6 + Control: + ResetSeconds: 5.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + 521c907b72b6834b9d48d92a6bf8e435: + EmitterName: Burns + ParticleLifetime: {X: 4.0, Y: 8.0} + ShapeBuilder: !ShapeBuilderQuad + SamplerPosition: null + SamplerSize: null + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ZOffset: 0.3 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8ab2edfe-0ead-489f-a899-97a8112807f7:Textures/Smoke02 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeColor + Value: {R: 0.0, G: 0.0, B: 0.0, A: 1.0} + UVBuilder: null + ForceTexCoords: false + Spawners: + 9df7798dc9990c428193ecef2e239385: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 100.0 + Initializers: + 7c224fce36d98f44b7c26299c92cba5c: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.5, Y: 0.0, Z: -0.5} + PositionMax: {X: 0.5, Y: 0.0, Z: 0.5} + Interpolate: false + Updaters: {} + baf8b3df9268df43801ec26aa3319b64: + EmitterName: BulletHoles + ParticleLifetime: {X: 8.0, Y: 10.0} + ShapeBuilder: !ShapeBuilderQuad + SamplerPosition: null + SamplerSize: null + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ZOffset: 0.3 + ComputeColor: !ComputeBinaryColor + Operator: Add + LeftChild: !ComputeFloat4 + Value: {X: 0.0, Y: 0.0, Z: 0.0, W: 0.0} + RightChild: !ComputeTextureColor + Texture: 12575e84-8b35-4683-82d3-1f40a6348473:Textures/BulletHole + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: null + ForceTexCoords: false + Spawners: + 803a0da2aad47744906ea363fa84f20a: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 20.0 + Initializers: + 82a8489872a87f43b6cb9fd28a5a4beb: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.35, Y: 0.55} + e45d4ea9945e824898135a8e911ebc47: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.5, Y: 0.0, Z: -0.5} + PositionMax: {X: 0.5, Y: 0.0, Z: 0.5} + Interpolate: false + 62d96e98c4c2d847a37e0816cc022395: !Initial3DRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: false + RotationQuaternionMin: {X: 0.0, Y: -0.6427876, Z: 0.0, W: 0.766044438} + RotationQuaternionMax: {X: 0.0, Y: 0.6427876, Z: 0.0, W: 0.766044438} + Updaters: {} diff --git a/VFXPackage/Assets/Shared/VFXPrefabs/vfx-BulletImpact.xkprefab b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-BulletImpact.xkprefab new file mode 100644 index 0000000..6ecb678 --- /dev/null +++ b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-BulletImpact.xkprefab @@ -0,0 +1,411 @@ +!PrefabAsset +Id: b5a5cb8f-7cf1-47b6-ba8c-f43d4dd022da +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 1cc01df1-7f9f-4fbc-a958-3e2e8dcfbf0a + Parts: + - Entity: + Id: 1cc01df1-7f9f-4fbc-a958-3e2e8dcfbf0a + Name: BulletImpact + Components: + 40e02acd386dee4c9c911bca9766a35a: !TransformComponent + Id: cd2ae040-6d38-4cee-9c91-1bca9766a35a + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + ce882d93b6dd3e4d983d1bb0e90ca4b3: !ParticleSystemComponent + Id: 932d88ce-ddb6-4d3e-983d-1bb0e90ca4b3 + Control: + ResetSeconds: 3.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + 2359d1a34ee21345aa0787b3e42a7be8: + EmitterName: flash + MaxParticlesOverride: 10 + ParticleLifetime: {X: 0.05, Y: 0.05} + DrawPriority: 5 + SortingPolicy: ByDepth + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 212e60c016ca4a4c823729d2c0e9622b: + Key: 0.0 + Value: 1.0 + TangentType: Linear + b91397ba3beb81419482755fd4c537a0: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 20.0, Y: 20.0, Z: 20.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 712fda70-50dc-47b2-9d41-1f4011945cac:Textures/Hit01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 3a8ca0ac9d31d347af54966db92b56b1: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 3 + Initializers: + 295ecad5d733554090120387ab08e4eb: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: 0.0, Y: 360.0} + 4911ac4c26ce6947a2cd66532961b4c4: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.2 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 1.0, Y: 1.5} + 967c3f66fb42d34ab05b2801cd773bb3: !InitialVelocityParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + DisplayParticleRotation: true + DisplayParticlePosition: false + DisplayParticleScaleUniform: true + DisplayParticleScale: false + ParentName: null + ParentSeedOffset: 0 + ParentControlFlag: Group00 + SeedOffset: 0 + ParentVelocityFactor: 0.5 + VelocityMin: {X: -1.0, Y: 0.0, Z: -1.0} + VelocityMax: {X: 1.0, Y: 3.0, Z: 1.0} + Updaters: + 2e1eda982890c24f81b4ec5422d0eb8b: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + e4c63287d8fc724e8b484115fc351be1: + Key: 0.246887788 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.2} + TangentType: Linear + 9c9dd35c9be65d4292aa758bd7bf1e04: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 11832d62ab78d844a4408afe4d500392: + EmitterName: sparks + ParticleLifetime: {X: 0.1, Y: 0.15} + DrawPriority: 3 + SortingPolicy: ByDepth + ShapeBuilder: !ShapeBuilderOrientedQuad + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 9eaab1924dd4a147a4e62eb57953493d: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 635814e424af564a94a836ec82cb3210: + Key: 1.0 + Value: 0.0 + TangentType: Linear + ScaleLength: false + LengthFactor: 0.05 + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 5.0, Y: 5.0, Z: 5.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 91119660-137e-4be0-bcb9-32f8aeee6ca8:Textures/dota + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 011d23e57c0a354f95d6ae739d539104: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.05, Y: 0.05} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 50 + Initializers: + 5e05dbdc8eac654e8af8e22b83b3251b: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.03 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.5, Y: 1.0} + 3d6652418790ca4ab0453c91de9ecf22: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -3.0, Y: 3.0, Z: -3.0} + VelocityMax: {X: 3.0, Y: 5.0, Z: 3.0} + 3371f60078f23746a12f59258dee0d1e: !InitialColorSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ColorMin: {R: 1.0, G: 0.8329202, B: 0.41875, A: 1.0} + ColorMax: {R: 0.9921568, G: 0.297647059, B: 0.0, A: 1.0} + Updaters: + 24f076826d5ef24ba29ce8318050d8e9: !UpdaterSpeedToDirection + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + f720f44e1bf1e744b8750ed452cf5ba4: + EmitterName: smoke + ParticleLifetime: {X: 1.2, Y: 1.2} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 37cf89c2a5a4b249a096f087167e67fb: + Key: 0.0 + Value: 0.5 + TangentType: Linear + 4287f604e874cc4aa116b8dfd1ee90ac: + Key: 1.0 + Value: 1.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 5.0, Y: 5.0, Z: 5.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8dbe2382-769c-45fe-9604-98c5ae5c434c:Textures/SMO001_3 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 2ef6cad4f19a0640bdebf0e1b6fbe424: !SpawnerPerFrame + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 5.0 + Framerate: 1.0 + Initializers: + 68e4ed0741bc964a8597bd1e52904ffb: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + 5bdacc7a10a5bf40b33874cc4046950c: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.01, Y: 0.0, Z: -0.01} + PositionMax: {X: 0.01, Y: 0.01, Z: 0.01} + Interpolate: false + 3d347dfb5d8b2f4cbed90d0ed254fd16: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.5 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.7, Y: 1.0} + 57d911618678dc4d8042115f2a7a1b6d: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.05, Y: 0.2, Z: -0.05} + VelocityMax: {X: 0.05, Y: 0.2, Z: 0.05} + Updaters: + d208e43deb5dc344a8f1d9361a3068bc: !UpdaterForceField + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + DisplayParticleRotation: true + DisplayParticlePosition: true + FieldShape: !FieldShapeCylinder + HalfHeight: 1.0 + Radius: 1.0 + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 1.0 + FalloffStart: 0.1 + StrengthOutside: 0.0 + FalloffEnd: 0.9 + EnergyConservation: 0.5 + ForceDirected: 0.1 + ForceVortex: 0.0 + ForceRepulsive: 0.05 + ForceFixed: {X: 0.0, Y: 0.0, Z: 0.0} + fcccbefea1b9c84ea18dc399c53f97c0: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 518762dc187c674992996809b749401f: + Key: 0.0 + Value: {R: 0.5, G: 0.5, B: 0.5, A: 0.0} + TangentType: Linear + a426fc88f7a5e64ba19669d3e5d13520: + Key: 0.1 + Value: {R: 0.5, G: 0.5, B: 0.5, A: 0.02} + TangentType: Linear + 9aff2054a7f779488f88032515361eec: + Key: 0.3 + Value: {R: 0.5, G: 0.5, B: 0.5, A: 0.1} + TangentType: Linear + 3cf545bce4ed2f47be52d1545be2a2d2: + Key: 1.0 + Value: {R: 0.5, G: 0.5, B: 0.5, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 diff --git a/VFXPackage/Assets/Shared/VFXPrefabs/vfx-Bullettrail.xkprefab b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-Bullettrail.xkprefab new file mode 100644 index 0000000..3f099ee --- /dev/null +++ b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-Bullettrail.xkprefab @@ -0,0 +1,147 @@ +!PrefabAsset +Id: 5016de4d-9078-4966-a548-570e7e0bc37d +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 7858fffa-938f-49dd-8d71-e4c227fdf269 + Parts: + - Entity: + Id: 7858fffa-938f-49dd-8d71-e4c227fdf269 + Name: Bullettrail + Components: + f64803bed11dc146a051377a1f0dd811: !TransformComponent + Id: be0348f6-1dd1-46c1-a051-377a1f0dd811 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + b2e8f21fd1cd9f42a98b5df3285b58c1: !ParticleSystemComponent + Id: 1ff2e8b2-cdd1-429f-a98b-5df3285b58c1 + Control: + ResetSeconds: 3.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + a69514f7e76a3947a388fab4b17b40e3: + EmitterName: trail + MaxParticlesOverride: 50 + ParticleLifetime: {X: 1.0, Y: 1.0} + SortingPolicy: ByOrder + ShapeBuilder: !ShapeBuilderRibbon + SmoothingPolicy: Best + Segments: 15 + TextureCoordinatePolicy: Stretched + TexCoordsFactor: 1.0 + UVRotate: + FlipX: false + FlipY: false + UVClockwise: Degree0 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 0.5 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 5.0, Y: 5.0, Z: 5.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 2c8e60e4-e070-4124-a1fa-f36cc74de76c:Textures/Bullettrail01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 49a593b25a626a4a9ae6abd1e6d80a01: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 50.0 + Initializers: + 77e504c4ae8c8b40b3e86fc2f2159927: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.1, Y: 0.4, Z: -0.1} + VelocityMax: {X: 0.1, Y: 0.4, Z: 0.1} + b81a1444d030c3418f4268a112f3495e: !InitialSpawnOrder + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + Updaters: + f5dcc863ffffb248a240f9a87c4986d4: !UpdaterSizeOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + a1df6c8fa767cc4c9256ed22cb99047e: + Key: 0.0 + Value: 0.1 + TangentType: Linear + 069b80707306b341902968bc4a16cff9: + Key: 0.9 + Value: 0.0 + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 4b4b8636d557404f89e237f792878df3: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 5ba51e26ba02014281f963a86f91993d: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.5} + TangentType: Linear + 772e3919fe5c9b41aa10618cb4e9abbc: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 diff --git a/VFXPackage/Assets/Shared/VFXPrefabs/vfx-Engine.xkprefab b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-Engine.xkprefab new file mode 100644 index 0000000..4d6c2c4 --- /dev/null +++ b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-Engine.xkprefab @@ -0,0 +1,191 @@ +!PrefabAsset +Id: d20837e3-879e-45a0-874b-030246721293 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 39e6666d-d2d1-49c3-8f0e-31f321ca5b12 + Parts: + - Entity: + Id: 39e6666d-d2d1-49c3-8f0e-31f321ca5b12 + Name: Steam + Components: + c1ecc9674350ec47b258da4ab8ccf2ff: !TransformComponent + Id: 67c9ecc1-5043-47ec-b258-da4ab8ccf2ff + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8323bf5daa524c4fb5d833e41b08b32d: !ParticleSystemComponent + Id: 5dbf2383-52aa-4f4c-b5d8-33e41b08b32d + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + 9a3a5271a4a0934d9467f6b095793379: + ParticleLifetime: {X: 0.5, Y: 1.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 0383cd796e839e4b9667af5d0fe71756: + Key: 0.0 + Value: 0.5 + TangentType: Linear + 3c3bf45d6e50e542871470a99fdfd9f3: + Key: 0.3 + Value: 0.7 + TangentType: Linear + aa6cd07e77ba1c4da6e836dff7b31695: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ZOffset: 0.2 + SoftEdgeDistance: 0.3 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 5.0, Y: 5.0, Z: 5.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8dbe2382-769c-45fe-9604-98c5ae5c434c:Textures/SMO001_3 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + fa12c9550522c24fa400d8ce84ef83a0: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 80.0 + Initializers: + 3994a4c9897c7049af5217d699e668a9: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.4, Y: 0.5} + 7fa5fb2d4e692c4aae5cda5ce081ca44: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.5, Y: 0.0, Z: -0.5} + PositionMax: {X: 0.5, Y: 0.0, Z: 0.5} + Interpolate: false + 3d037e54f2051d42a511f75567a2d5eb: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.05, Y: -3.0, Z: -0.05} + VelocityMax: {X: 0.05, Y: -3.0, Z: 0.05} + d4d112e1ace7b944828fa9278f3938e1: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + Updaters: + 226c0f6bc8f05441a0eb6454e9f89045: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 82276cc03e3f854b9dc5c50ece2e25f9: + Key: 0.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + e3927f1e92cb4d4f80c729960776e1ca: + Key: 0.2 + Value: {R: 0.5, G: 0.5, B: 0.5, A: 0.25} + TangentType: Linear + bb31441c3997734baf5d4b324f145da1: + Key: 1.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + a788c7989777534fbc50541f7eebe631: !UpdaterForceField + DebugDraw: true + InheritPosition: true + Position: {X: 0.0, Y: -1.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + DisplayParticleRotation: true + DisplayParticlePosition: true + FieldShape: !FieldShapeCylinder + HalfHeight: 1.0 + Radius: 1.0 + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 1.0 + FalloffStart: 0.1 + StrengthOutside: 0.0 + FalloffEnd: 0.9 + EnergyConservation: 1.0 + ForceDirected: 0.0 + ForceVortex: 0.0 + ForceRepulsive: 4.0 + ForceFixed: {X: 0.0, Y: 8.0, Z: 0.0} diff --git a/VFXPackage/Assets/Shared/VFXPrefabs/vfx-Explosion.xkprefab b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-Explosion.xkprefab new file mode 100644 index 0000000..952fd92 --- /dev/null +++ b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-Explosion.xkprefab @@ -0,0 +1,643 @@ +!PrefabAsset +Id: 22ae5484-30af-4633-8e35-a4f5a177188e +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! a561f593-5d34-4ddc-9c89-8328527c4ac0 + Parts: + - Entity: + Id: a561f593-5d34-4ddc-9c89-8328527c4ac0 + Name: Explosion + Components: + fa8f95b220b7df4e8f0019f95a5d1eef: !TransformComponent + Id: b2958ffa-b720-4edf-8f00-19f95a5d1eef + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 39b07e196ff99a4d957dbebeb153ad2c: !ParticleSystemComponent + Id: 197eb039-f96f-4d9a-957d-bebeb153ad2c + Control: + ResetSeconds: 3.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + eb5ed7aa88fb514bba1d3d103de25130: + EmitterName: explosionfire + ParticleLifetime: {X: 1.0, Y: 1.3} + DrawPriority: 5 + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: null + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ZOffset: 0.3 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 50.0, Y: 50.0, Z: 50.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 24a1fa27-5ec5-4eb6-bf4d-918005b0fb24:Textures/EXP001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: !UVBuilderFlipbook + XDivisions: 8 + YDivisions: 8 + StartingFrame: 8 + AnimationSpeed: 56 + ForceTexCoords: false + Spawners: + 165f1e4629d4e94dbd8b07106bba4094: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 10 + Initializers: + 970c04baec3d9446b004b8b395b4e55c: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 1.0, Y: 2.0} + 9954f868fd1b684bace8a8bcb5b40077: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.2, Y: 0.0, Z: -0.2} + PositionMax: {X: 0.2, Y: 0.0, Z: 0.2} + Interpolate: false + 2d3a6f731037fb4fabce65b7a4d9e699: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.5, Y: -0.2, Z: -0.5} + VelocityMax: {X: 0.5, Y: 0.5, Z: 0.5} + e72f33e3e3dbc34a97a52bb1518ad1d7: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + Updaters: + 8d180206ee158549a2761d2780549f34: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 27419d94c90c0148b5946367e7e9596c: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + TangentType: Linear + ad146079d1b1ae4b911db781ac5990b1: + Key: 0.5 + Value: {R: 0.3, G: 0.3, B: 0.3, A: 0.25} + TangentType: Linear + 3feb08a0affa9e439cfe3d30cfdd7f06: + Key: 1.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 5af7f013ba6565478604ad770eb2d79b: + EmitterName: explosionsmoke01 + ParticleLifetime: {X: 2.0, Y: 2.0} + DrawPriority: 10 + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 6c44bc7750f4f84dbc608cf07e7c2746: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 6a4fef6ba2a55e4197a3c969d09ff2ed: + Key: 0.1 + Value: 2.0 + TangentType: Linear + aa24e7b496ddf143b46f3fbb8993e7c5: + Key: 1.0 + Value: 3.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ZOffset: 0.3 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 30.0, Y: 25.0, Z: 20.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8ab2edfe-0ead-489f-a899-97a8112807f7:Textures/Smoke02 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 3896be20cd20964e8c2588e75eb168e3: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 5 + Initializers: + a610a3236a6e9a4881ab8e8cf3c173c0: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.15, Y: -0.15, Z: -0.15} + PositionMax: {X: 0.15, Y: 0.15, Z: 0.15} + Interpolate: false + 481a0c50e2cdd24db2aaee92ae6d123e: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.5, Y: -0.5, Z: -0.5} + VelocityMax: {X: 0.5, Y: 0.5, Z: 0.5} + Updaters: + c084855f635b064a9472035e0844893c: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 4a5fc68d580326498f44faec012fbef4: + Key: 0.0 + Value: {R: 1.0, G: 0.5, B: 0.199999988, A: 1.0} + TangentType: Linear + 28960ea9445c6e409b9c3cfc147cf310: + Key: 0.08 + Value: {R: 1.0, G: 0.5, B: 0.2, A: 0.01} + TangentType: Linear + 10753de7bd280b4a95fd92ce9ab074d2: + Key: 1.0 + Value: {R: 0.5, G: 0.2, B: 0.1, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 1410f2689a31a14c8019f0f7c9cfbf1a: + EmitterName: explosionsmoke02 + ParticleLifetime: {X: 1.0, Y: 2.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 3e866549c2cb6a4daacb90f0bf831502: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 71e90623a5ba0e4f94572b38dbac3796: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ZOffset: 0.3 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 1.0, Y: 1.0, Z: 1.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: fa1018e4-c74d-4495-9535-134f5a06e4cd:Textures/SMO001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: !UVBuilderFlipbook + XDivisions: 8 + YDivisions: 8 + StartingFrame: 0 + AnimationSpeed: 64 + ForceTexCoords: false + Spawners: + 47416577012cb541a89c0af842ed0a78: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 10 + Initializers: + 7a67faa43612c044bcb0ceafca3c1980: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.4, Y: -0.4, Z: -0.4} + VelocityMax: {X: 0.4, Y: 0.4, Z: 0.4} + 44b42d9fe0db524bb1608fa15c426c92: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + 31c1fff3ce08fd42b625e9620a75a410: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.3, Y: -0.3, Z: -0.3} + PositionMax: {X: 0.3, Y: 0.3, Z: 0.3} + Interpolate: false + Updaters: + d46f4ae2805dc94b93cda65de7715f54: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + e4e848b71c5d344a94c4d5f651bf4e83: + Key: 0.0 + Value: {R: 0.5, G: 0.25, B: 0.1, A: 1.0} + TangentType: Linear + 930d8a2b2d2445448cfb1729782f16d6: + Key: 0.5 + Value: {R: 0.5, G: 0.2, B: 0.1, A: 0.7} + TangentType: Linear + a045b91bb4837c42b4058100893916e5: + Key: 1.0 + Value: {R: 0.1, G: 0.1, B: 0.1, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + cfa68e0360198c449c8508789d2e698f: + EmitterName: sparks + ParticleLifetime: {X: 0.7, Y: 1.4} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + de2510d5fd44ff4aa2491947f98e2470: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 5e73e50106cc4541abf62d1aff2bed31: + Key: 1.0 + Value: 0.1 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 100.0, Y: 40.0, Z: 40.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 91119660-137e-4be0-bcb9-32f8aeee6ca8:Textures/dota + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 9c09411daafbac478a3a27646840aee4: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.5, Y: 0.5} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 50 + Initializers: + dfb1a4fa455fd5458c8758b302cc5011: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.5, Y: -0.5, Z: -0.5} + VelocityMax: {X: 0.5, Y: 0.5, Z: 0.5} + baa8a2a1459ce84f8be9542a80c9c9bd: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.1 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.1, Y: 0.2} + 3ad9c7d485619e4f9d8e2be0b7046bd2: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.6, Y: -0.6, Z: -0.6} + PositionMax: {X: 0.6, Y: 0.6, Z: 0.6} + Interpolate: false + 11906182baabda4aab60a117befd904b: !InitialColorSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ColorMin: {R: 1.0, G: 0.18187499, B: 0.0375000238, A: 1.0} + ColorMax: {R: 1.0, G: 0.3, B: 0.0, A: 1.0} + Updaters: + abe14565ea671640b23e478d067dd5d8: !UpdaterForceField + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + DisplayParticleRotation: true + DisplayParticlePosition: true + FieldShape: !FieldShapeSphere + Radius: 1.0 + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 1.0 + FalloffStart: 0.1 + StrengthOutside: 0.0 + FalloffEnd: 0.9 + EnergyConservation: 0.5 + ForceDirected: 0.3 + ForceVortex: 0.5 + ForceRepulsive: -0.3 + ForceFixed: {X: 0.0, Y: 0.0, Z: 0.0} + b5cedd623bce604099cb47871db40684: + EmitterName: explosionsmoke03 + ParticleLifetime: {X: 1.0, Y: 1.5} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 8a08f695e107b4488ca7a7991a7fb325: + Key: 0.0 + Value: 1.0 + TangentType: Linear + f6eb8711c87144438e694499547b1831: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 59b7b5ec9861c445b1b3558255d3325d: + Key: 0.0 + Value: 0.0 + TangentType: Linear + c03fea4e42fdd04c9d069925ad89de2e: + Key: 1.0 + Value: 30.0 + TangentType: Linear + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ZOffset: 0.3 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 50.0, Y: 11.0, Z: 0.5, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8dbe2382-769c-45fe-9604-98c5ae5c434c:Textures/SMO001_3 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 6b2ae1cdda05e44382e9b234b33baa99: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 5 + Initializers: + 9000f9d978246049b41d3c659be5bad3: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + a7aa65c6f62d6545a0df7b410f241198: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.2, Y: -0.2, Z: -0.2} + PositionMax: {X: 0.2, Y: 0.2, Z: 0.2} + Interpolate: false + e16f3ca37b2d5a4ca3d259ad28ee8c04: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.2, Y: -0.2, Z: -0.2} + VelocityMax: {X: 0.2, Y: 0.2, Z: 0.2} + Updaters: + d0cd4314fa204547a067c82f1617f51d: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 695a36ed6b47f64a80e5513d1a1331fa: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + aaed0ceebb6bc6408f2cb7eba355998a: + Key: 0.5 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.03} + TangentType: Linear + f57e4def19b7a04892597661194881b7: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 diff --git a/VFXPackage/Assets/Shared/VFXPrefabs/vfx-Fire.xkprefab b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-Fire.xkprefab new file mode 100644 index 0000000..be9ce61 --- /dev/null +++ b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-Fire.xkprefab @@ -0,0 +1,296 @@ +!PrefabAsset +Id: f4a78453-d9f7-4ab4-a934-27c35b04f7de +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! a8264b8c-1936-4560-8dab-477ca0a45a33 + Parts: + - Entity: + Id: a8264b8c-1936-4560-8dab-477ca0a45a33 + Name: Fire + Components: + 27186d172392d74c820fa3f1b4c39f81: !TransformComponent + Id: 176d1827-9223-4cd7-820f-a3f1b4c39f81 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 5d58e0d592743d4a85bfcfca0d875bde: !ParticleSystemComponent + Id: d5e0585d-7492-4a3d-85bf-cfca0d875bde + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + a60758652fee384e997cfe8163513cc0: + EmitterName: fire + ParticleLifetime: {X: 1.0, Y: 2.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: null + SamplerRotation: null + Material: !ParticleMaterialComputeColor + AlphaAdditive: 0.8 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 10.0, Y: 10.0, Z: 10.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: d023ae47-8f08-4abd-b82b-0e27e5d89515:Textures/FIR001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: !UVBuilderFlipbook + XDivisions: 8 + YDivisions: 8 + StartingFrame: 0 + AnimationSpeed: 64 + ForceTexCoords: false + Spawners: + 7702cac3d9f7c74aa23296a4da210d35: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 20.0 + Initializers: + 2fd9d2cd90ea4d40adf9ad43314ab453: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.7, Y: 1.2} + e700b80e88683c43bfb0882b0d19b6a9: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.35, Y: 0.0, Z: -0.35} + PositionMax: {X: 0.35, Y: 0.5, Z: 0.35} + Interpolate: false + 22d7a3c190dce241a645ac83c2393cda: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.2, Y: 0.5, Z: -0.2} + VelocityMax: {X: 0.2, Y: 1.0, Z: 0.2} + 7002bd2e7bee47429bd49d25da4ee76a: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + 7a0916f37f1f7449984a28004023bbee: !InitialColorSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ColorMin: {R: 1.0, G: 0.619607866, B: 0.2, A: 1.0} + ColorMax: {R: 1.0, G: 0.559999943, B: 0.199999988, A: 1.0} + Updaters: + f63ab8a43f18d44a801c4e6fa3617e10: !UpdaterForceField + InheritPosition: true + Position: {X: 0.0, Y: 2.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 2.0, Y: 5.0, Z: 2.0} + DisplayParticleRotation: true + DisplayParticlePosition: true + FieldShape: !FieldShapeCylinder + HalfHeight: 1.0 + Radius: 1.0 + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 0.2 + FalloffStart: 0.1 + StrengthOutside: 0.628866 + FalloffEnd: 1.0 + EnergyConservation: 0.6 + ForceDirected: 0.1 + ForceVortex: 0.5 + ForceRepulsive: -3.0 + ForceFixed: {X: 0.0, Y: 0.0, Z: 0.0} + 233ba2bba796cb40a57fb57e197e8f74: + ParticleLifetime: {X: 0.5, Y: 1.5} + ShapeBuilder: !ShapeBuilderOrientedQuad + SamplerPosition: null + SamplerSize: null + ScaleLength: true + LengthFactor: 1.0 + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 50.0, Y: 50.0, Z: 50.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 91119660-137e-4be0-bcb9-32f8aeee6ca8:Textures/dota + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 684c8043766c14469ade21cf66d3a884: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 50.0 + Initializers: + 46dd738c28591043b0835b3bc41e66cc: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.1, Y: 0.5, Z: -0.1} + VelocityMax: {X: 0.1, Y: 1.0, Z: 0.1} + 27289c657ac4bd4ca3de8a6b16e589ac: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.05 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.1, Y: 0.25} + 5905c425deb8eb489c42c11bffe9874c: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.6, Y: 0.0, Z: -0.6} + PositionMax: {X: 0.6, Y: 1.0, Z: 0.6} + Interpolate: false + 36aa093b31bb894084a7b34964f8e134: !InitialColorSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ColorMin: {R: 1.0, G: 0.07450981, B: 0.0, A: 1.0} + ColorMax: {R: 1.0, G: 0.1875, B: 0.0, A: 1.0} + Updaters: + b628c1e757f3a5478fa18eb8c7fe7e4f: !UpdaterForceField + InheritPosition: true + Position: {X: 0.0, Y: 5.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 2.0, Y: 5.0, Z: 2.0} + DisplayParticleRotation: true + DisplayParticlePosition: true + FieldShape: !FieldShapeCylinder + HalfHeight: 1.0 + Radius: 1.0 + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 1.0 + FalloffStart: 0.1 + StrengthOutside: 0.0 + FalloffEnd: 0.9 + EnergyConservation: 0.0 + ForceDirected: 0.5 + ForceVortex: 1.0 + ForceRepulsive: 0.1 + ForceFixed: {X: 0.0, Y: 0.0, Z: 0.0} + 6dd10cdd49e1f74c889b809f1d1287fb: !UpdaterSpeedToDirection + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false diff --git a/VFXPackage/Assets/Shared/VFXPrefabs/vfx-LaserBeam.xkprefab b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-LaserBeam.xkprefab new file mode 100644 index 0000000..386a179 --- /dev/null +++ b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-LaserBeam.xkprefab @@ -0,0 +1,373 @@ +!PrefabAsset +Id: 8a4fed52-02c4-46fa-9f41-bee3decdc3d1 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! ce106045-4e8e-423f-959c-180ca5a81f04 + - ref!! 6e00cd87-867f-4039-ae08-a2fcfdcf6e89 + Parts: + - Entity: + Id: 6e00cd87-867f-4039-ae08-a2fcfdcf6e89 + Name: LaserArc + Components: + 336f7ce982182944823955cce7f2b5ee: !TransformComponent + Id: e97c6f33-1882-4429-8239-55cce7f2b5ee + Position: {X: -7.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + - Entity: + Id: ce106045-4e8e-423f-959c-180ca5a81f04 + Name: LeserBeam + Components: + c2a61ac9cca3304c949c26193b0945c4: !TransformComponent + Id: c91aa6c2-a3cc-4c30-949c-26193b0945c4 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 5ee7f85c3fbac746b5c31e169615a5c7: !ParticleSystemComponent + Id: 5cf8e75e-ba3f-46c7-b5c3-1e169615a5c7 + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 6.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + 2170ccaa483ed447ae1e60edebcc0f3b: + EmitterName: LaserEmitter01 + MaxParticlesOverride: 50 + ParticleLifetime: {X: 0.2, Y: 0.2} + SortingPolicy: ByOrder + ShapeBuilder: !ShapeBuilderRibbon + SmoothingPolicy: None + Segments: 5 + TextureCoordinatePolicy: Stretched + TexCoordsFactor: 1.0 + UVRotate: + FlipX: false + FlipY: false + UVClockwise: Degree0 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 20.0, Y: 20.0, Z: 20.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: da9b119e-ce87-4f7b-a4cc-2e93b158f137:Textures/Gradation01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + e393b3de5c81c24c9e85d79d0bac314e: !SpawnerPerFrame + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 50.0 + Framerate: 60.0 + Initializers: + b905aa18d986ce499211de42f5eeebd4: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: 0.05, Y: 0.05, Z: 0.05} + VelocityMax: {X: 0.05, Y: 0.05, Z: 0.05} + 96a019b126b85e4b8410298bb289ebac: !InitialPositionArc + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticleRotation: true + DisplayParticlePosition: false + Target: ref!! e97c6f33-1882-4429-8239-55cce7f2b5ee + DisplayParticleScaleUniform: false + DisplayParticleScale: false + FallbackTarget: {X: 0.0, Y: 0.0, Z: -1.0} + ArcHeight: 0.4 + Sequential: true + FixedLength: 0 + PositionMin: {X: -0.2, Y: -0.2, Z: -0.2} + PositionMax: {X: 0.2, Y: 0.2, Z: 0.2} + SeedOffset: 0 + d84cfa29770b8b408a4e2ec5edabce15: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.01, Y: 0.1} + b0208787eb4a42419ff8bcf16cb290d1: !InitialSpawnOrder + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + 185acc857da864478aebb33829143edd: !InitialColorSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ColorMin: {R: 0.05000019, G: 0.0, B: 1.0, A: 1.0} + ColorMax: {R: 0.304999828, G: 0.131250024, B: 1.0, A: 1.0} + Updaters: {} + f239db465dd7354bbc55100bd300b151: + EmitterName: sparks + ParticleLifetime: {X: 1.0, Y: 5.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + ba54a1971cd84340b5ba37f508a3bd2c: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 881873fa3d3a744db46ae3db16b7d133: + Key: 1.0 + Value: 0.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 50.0, Y: 50.0, Z: 50.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 946a1b5e1895434284c7dbdaa728c786: !SpawnerBurst + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 500 + Initializers: + 581d30af2592fb41a520efcb0f64656c: !InitialPositionParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + DisplayParticleRotation: true + DisplayParticlePosition: false + DisplayParticleScaleUniform: true + DisplayParticleScale: false + ParentName: LaserEmitter01 + ParentSeedOffset: 0 + ParentControlFlag: Group00 + SeedOffset: 0 + PositionMin: {X: -0.1, Y: -0.1, Z: -0.1} + PositionMax: {X: 0.1, Y: 0.1, Z: 0.1} + 0460848851abf642879131d04c839872: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.3 + SeedOffset: 24 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.05, Y: 0.4} + cd410cf87ddf07449ea894f8b8cb5238: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.02, Y: -0.01, Z: -0.02} + VelocityMax: {X: 0.02, Y: 0.05, Z: 0.02} + 855cafaded1b164dab92516ac877abf5: !InitialColorParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + DisplayParticleRotation: false + DisplayParticlePosition: false + DisplayParticleScaleUniform: false + DisplayParticleScale: false + ParentName: LaserEmitter01 + ParentSeedOffset: 0 + ParentControlFlag: Group00 + SeedOffset: 0 + ColorMin: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + ColorMax: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Updaters: {} + eabed859a30c6f409b30f3e5fa9295b2: + EmitterName: LaserEmitter02 + MaxParticlesOverride: 10 + ParticleLifetime: {X: 0.2, Y: 0.2} + ShapeBuilder: !ShapeBuilderRibbon + SmoothingPolicy: None + Segments: 50 + TextureCoordinatePolicy: AsIs + TexCoordsFactor: 1.0 + UVRotate: + FlipX: false + FlipY: false + UVClockwise: Degree0 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 100.0, Y: 100.0, Z: 100.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: da9b119e-ce87-4f7b-a4cc-2e93b158f137:Textures/Gradation01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: !UVBuilderScroll + StartFrame: {X: 0.0, Y: 0.0, Z: 1.0, W: 1.0} + EndFrame: {X: 0.0, Y: 1.0, Z: 1.0, W: 2.0} + ForceTexCoords: false + Spawners: + 771c66d89d336449959f8c37915bdb0e: !SpawnerPerFrame + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 10.0 + Framerate: 60.0 + Initializers: + af1eef0c052b814ab025d0cbeb5ef838: !InitialPositionArc + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticleRotation: true + DisplayParticlePosition: false + Target: ref!! e97c6f33-1882-4429-8239-55cce7f2b5ee + DisplayParticleScaleUniform: false + DisplayParticleScale: false + FallbackTarget: {X: 0.0, Y: 0.0, Z: -1.0} + ArcHeight: 0.4 + Sequential: true + FixedLength: 0 + PositionMin: {X: -0.05, Y: -0.05, Z: -0.05} + PositionMax: {X: 0.05, Y: 0.05, Z: 0.05} + SeedOffset: 0 + 6d09f593db786145af6ba89f386f9b48: !InitialSpawnOrder + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + d1dbc13de4fdfd44a592f202d7bed600: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.5 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.2, Y: 1.0} + 6271b4d5a12e85478df35d9f6ee7f89b: !InitialColorParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + DisplayParticleRotation: false + DisplayParticlePosition: false + DisplayParticleScaleUniform: false + DisplayParticleScale: false + ParentName: LaserEmitter01 + ParentSeedOffset: 0 + ParentControlFlag: Group00 + SeedOffset: 0 + ColorMin: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + ColorMax: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Updaters: {} diff --git a/VFXPackage/Assets/Shared/VFXPrefabs/vfx-LaserSparks.xkprefab b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-LaserSparks.xkprefab new file mode 100644 index 0000000..97206bb --- /dev/null +++ b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-LaserSparks.xkprefab @@ -0,0 +1,377 @@ +!PrefabAsset +Id: 417f8621-7097-44a4-9b57-574704389d0a +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 4bb551db-595c-4c2f-928c-19e06785ef70 + Parts: + - Entity: + Id: 4bb551db-595c-4c2f-928c-19e06785ef70 + Name: Sparks + Components: + ff26b404fd96534ba50fff60cdb5128a: !TransformComponent + Id: 04b426ff-96fd-4b53-a50f-ff60cdb5128a + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + eac5e46777b7354babea586ef30bd4d1: !ParticleSystemComponent + Id: 67e4c5ea-b777-4b35-abea-586ef30bd4d1 + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + da465e53965ade4fabe172d1fb19dc30: + EmitterName: sparks + MaxParticlesOverride: 100 + ParticleLifetime: {X: 0.75, Y: 1.0} + ShapeBuilder: !ShapeBuilderOrientedQuad + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 66179a362867ad4fa81c4828ed37b306: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 543edb979345114aaf57da0586b2b1f3: + Key: 0.25 + Value: 0.5 + TangentType: Linear + 48220905d438de4b959e474a415a16ce: + Key: 1.0 + Value: 0.1 + TangentType: Linear + ScaleLength: true + LengthFactor: 5.0 + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 200.0, Y: 30.0, Z: 30.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 91119660-137e-4be0-bcb9-32f8aeee6ca8:Textures/dota + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + bd4c9485a5a8a1428cb47bcb0a7d8628: !SpawnerPerFrame + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 8.0 + Framerate: 60.0 + Initializers: + 2bf8de46251ee442b293ab905c0871d1: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.3 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.05, Y: 0.02} + e9ae5eeccf4333458f3c00f2b2a75054: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.03, Y: -0.03, Z: -0.03} + PositionMax: {X: 0.03, Y: 0.03, Z: 0.03} + Interpolate: false + e3f2dfa8c4b2e14685c4b3aba307172d: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -3.0, Y: 3.0, Z: -3.0} + VelocityMax: {X: 3.0, Y: 4.0, Z: 3.0} + Updaters: + b2b11ca17ffada469874b44e6649cfd4: !UpdaterGravity + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + GravitationalAcceleration: {X: 0.0, Y: -9.80665, Z: 0.0} + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + a79b1f60c1902143b6307dd66abf51d5: !UpdaterSpeedToDirection + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + 1f0893c277cc9944b3dd11dd4a146534: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + caf74a8c447ba4419561e5cf23beb6a1: + Key: 0.0 + Value: {R: 0.1, G: 0.3, B: 1.0, A: 0.1} + TangentType: Linear + c01c3713703bd1419e97bbe94289ab0a: + Key: 1.0 + Value: {R: 0.1, G: 0.3, B: 1.0, A: 0.5} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 0d41855c55cfcd419fb3035290400829: + EmitterName: smoke + MaxParticlesOverride: 20 + ParticleLifetime: {X: 2.0, Y: 4.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: null + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 1.0, Y: 1.0, Z: 1.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: fa1018e4-c74d-4495-9535-134f5a06e4cd:Textures/SMO001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: !UVBuilderFlipbook + XDivisions: 8 + YDivisions: 8 + StartingFrame: 0 + AnimationSpeed: 64 + ForceTexCoords: false + Spawners: + e21904c7fcc8d442ba9483a0d2c949c8: !SpawnerPerFrame + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 1.0 + Framerate: 60.0 + Initializers: + a21e9cb2a8bf8644b6169341be64314f: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: false + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.05, Y: 0.3, Z: -0.05} + VelocityMax: {X: 0.05, Y: 0.4, Z: 0.05} + e4a11e3acc820643ae48224552a9a515: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + e0b8f7c67c6ce9439ba76a1bd6cfa7f0: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.5 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.5, Y: 1.0} + 86147475590605478ba314d672d20660: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.1, Y: 0.0, Z: -0.1} + PositionMax: {X: 0.1, Y: 0.0, Z: 0.1} + Interpolate: false + Updaters: + b17cff875d669f499d203cc83e037c0c: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + d300a7e45c2a724db551167f0e543b0a: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.05} + TangentType: Linear + 7edeaa8dd1cba04b941cea8b0f3a0c00: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 08a5f70ad7c56f4ca2e4f64a3c798053: + EmitterName: light + MaxParticlesOverride: 10 + ParticleLifetime: {X: 0.05, Y: 0.05} + DrawPriority: 5 + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: null + SamplerRotation: null + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 50.0, Y: 30.0, Z: 30.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + e52202fd0b9d664d8ac076bafbd5e60d: !SpawnerPerFrame + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 1.0 + Framerate: 60.0 + Initializers: + cefeaf78276ac545881e1c827aecc458: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: 0.0, Y: 360.0} + Updaters: + d12128e39a11eb4dac43c4ca32b9babf: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + fe6a13211f49d94498b31de2b381881e: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + 8751ea2a3f769648b7a2d7615393278b: + Key: 0.5 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.1} + TangentType: Linear + 4da52f14639c7d448abd17cdf528ee07: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 diff --git a/VFXPackage/Assets/Shared/VFXPrefabs/vfx-MeteoriteTrail.xkprefab b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-MeteoriteTrail.xkprefab new file mode 100644 index 0000000..d669660 --- /dev/null +++ b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-MeteoriteTrail.xkprefab @@ -0,0 +1,501 @@ +!PrefabAsset +Id: 67f0d9a3-3e9f-41b3-a925-1a4b32c42b40 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 8fdae74d-bb9e-4313-9c5b-e33a859823a7 + Parts: + - Entity: + Id: 8fdae74d-bb9e-4313-9c5b-e33a859823a7 + Name: Meteoritetrail + Components: + eb6c3948932fc2468a226a48364fc232: !TransformComponent + Id: 48396ceb-2f93-46c2-8a22-6a48364fc232 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + e8942245f4d83244ac2eaebee7fe00a8: !ParticleSystemComponent + Id: 452294e8-d8f4-4432-ac2e-aebee7fe00a8 + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + 9f9db0940beb7d4f83a1a85eadf5852f: + EmitterName: smoke01 + MaxParticlesOverride: 800 + ParticleLifetime: {X: 1.0, Y: 3.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + d1898d5139695644a70690e67ae7c125: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 01f5ba53c4800c4bb797935fb325d39e: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 3.0, Y: 3.0, Z: 3.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: fa1018e4-c74d-4495-9535-134f5a06e4cd:Textures/SMO001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: !UVBuilderFlipbook + XDivisions: 8 + YDivisions: 8 + StartingFrame: 8 + AnimationSpeed: 56 + ForceTexCoords: false + Spawners: + 1f97da64c163ae4896c44d8c05d168c0: !SpawnerFromDistance + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 100.0 + 524887814b78b540a3243c3a915012ee: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 50.0 + Initializers: + 49172c0d4e4e7344afd5efeae1e31d22: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.5, Y: 1.0} + bbe3f14c720d74468bf98d060775a4a4: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.1, Y: -0.1, Z: -0.1} + PositionMax: {X: 0.1, Y: 0.1, Z: 0.1} + Interpolate: false + 91c36e9f3675a44daefb7ebc2edf5857: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.1, Y: -0.1, Z: -0.1} + VelocityMax: {X: 0.1, Y: 0.1, Z: 0.1} + 2e0a84ba7259d4428760fd3a6755ae93: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + Updaters: + 7738024cd38b5046baddd368f6bac396: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + cc5f1e1ebe36d04d8d8888c5f17decf4: + Key: 0.0 + Value: {R: 1.0, G: 0.3, B: 0.2, A: 0.7} + TangentType: Linear + 3ec066b5ef32ca4a9c09a811a89ad183: + Key: 0.5 + Value: {R: 0.6, G: 0.5, B: 0.45, A: 0.3} + TangentType: Linear + e63c7ccf4a657b40bd884ca0ecc4ff98: + Key: 0.9201655 + Value: {R: 0.6, G: 0.6, B: 0.6, A: 0.1} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 45d7c5d25db41d4d90e256d3fdc42b6e: + EmitterName: fire + ParticleLifetime: {X: 0.25, Y: 0.5} + DrawPriority: 1 + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 67a0c3e3b5b9d04dadca7b20f1101f4f: + Key: 1.0 + Value: 0.5 + TangentType: Linear + 485e51c5ebbab84bab8e87555cc8ec60: + Key: 0.0 + Value: 1.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + AlphaAdditive: 0.7 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 30.0, Y: 15.0, Z: 10.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: d023ae47-8f08-4abd-b82b-0e27e5d89515:Textures/FIR001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: !UVBuilderFlipbook + XDivisions: 8 + YDivisions: 8 + StartingFrame: 0 + AnimationSpeed: 64 + ForceTexCoords: false + Spawners: + 9e54077ffbab124392fcc318f002ddd9: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 50.0 + Initializers: + e252b5d40e49f240b9e02acd3e60cdc7: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -60.0, Y: 60.0} + 337eb7ba5012974c909637ccdcf147c8: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.7 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.1, Y: 1.0} + 04de135ab78ac34489f36246360be2ed: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.1, Y: -0.1, Z: -0.1} + PositionMax: {X: 0.1, Y: 0.1, Z: 0.1} + Interpolate: false + Updaters: + 6a855da6a1a402408c01e318e66ef4b8: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 333e1a0b1e3c0d46aee19e484b3636a0: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.5} + TangentType: Linear + 89ed92ed1bab27429b04e6e28f9c0c10: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + c769db5a729f034aa21b734b562edd9e: + EmitterName: sparks + ParticleLifetime: {X: 0.2, Y: 3.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: null + SamplerRotation: null + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 20.0, Y: 10.0, Z: 10.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 91119660-137e-4be0-bcb9-32f8aeee6ca8:Textures/dota + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 80f4e2001f81d14893c69211a7237b96: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 100.0 + Initializers: + 62a7cfa19d5a284fa8a119df690d10ac: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.05 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.1, Y: 0.4} + 038b9a33d2f15d4fb0535fa8da6fb251: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.1, Y: -0.1, Z: -0.1} + PositionMax: {X: 0.1, Y: 0.1, Z: 0.1} + Interpolate: false + df3a2d3e26a5a34c996beae533df52ee: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.2, Y: -0.2, Z: -0.2} + VelocityMax: {X: 0.2, Y: 0.2, Z: 0.2} + 56f14fa708cc1141ab6317a9bb597913: !InitialColorSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ColorMin: {R: 1.0, G: 0.0, B: 0.0, A: 1.0} + ColorMax: {R: 1.0, G: 0.1875, B: 0.0, A: 1.0} + Updaters: {} + 995833730340af46b651896b85531f79: + EmitterName: smoke02 + ParticleLifetime: {X: 1.0, Y: 3.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 814710ab1c7ba343b80ae572314a0522: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 3b856dfd126ba241892eadec74939c43: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 13a8dcd016ae6d4c82184820d704cfae: + Key: 0.0 + Value: 0.0 + TangentType: Linear + 44f0bf7b0d7d2442af0d9bfcc35226ff: + Key: 1.0 + Value: 60.0 + TangentType: Linear + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 1.0, Y: 1.0, Z: 1.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8ab2edfe-0ead-489f-a899-97a8112807f7:Textures/Smoke02 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8dbe2382-769c-45fe-9604-98c5ae5c434c:Textures/SMO001_3 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + df5be9083c1a45408d1c2879dd1fb421: !SpawnerPerFrame + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 1.0 + Framerate: 60.0 + Initializers: + da656289b5b8164f83430671a0ac96ac: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.1, Y: -0.1, Z: -0.1} + VelocityMax: {X: 0.1, Y: 0.1, Z: 0.1} + 0e0d619e916e504db4a42d074366c720: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.5, Y: 1.5} + Updaters: + 27abceb134154d4d8b62904663ff272c: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: {} + SamplerOptional: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 99330dd5e326404486641066d960359c: + Key: 0.0 + Value: {R: 1.0, G: 0.6, B: 0.5, A: 1.0} + TangentType: Linear + 82b514d3e1c20a4d93357a3a6730fb2e: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SeedOffset: 0 diff --git a/VFXPackage/Assets/Shared/VFXPrefabs/vfx-Muzzleflash.xkprefab b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-Muzzleflash.xkprefab new file mode 100644 index 0000000..3d9cda2 --- /dev/null +++ b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-Muzzleflash.xkprefab @@ -0,0 +1,277 @@ +!PrefabAsset +Id: 91a17444-8dc3-436e-b0ed-0f56e9386a3c +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 404e4378-40d6-47d6-a176-59e9ebfefef6 + Parts: + - Entity: + Id: 404e4378-40d6-47d6-a176-59e9ebfefef6 + Name: Muzzle Flash + Components: + deaf1457ba59b64eb63142c10b9c36b9: !TransformComponent + Id: 5714afde-59ba-4eb6-b631-42c10b9c36b9 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 70923e79a93be746a2869fa79b781871: !ParticleSystemComponent + Id: 793e9270-3ba9-46e7-a286-9fa79b781871 + Control: + ResetSeconds: 5.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + bdbf4692944fa34b93ac2c0b4cdaa06e: + EmitterName: Fire01 + ParticleLifetime: {X: 0.08, Y: 0.08} + SortingPolicy: ByDepth + ShapeBuilder: !ShapeBuilderOrientedQuad + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 3fb40769a2c5d84c8fb0edff54cbde11: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 656dedb32f540b4eb9b629fef2d4d9b8: + Key: 1.0 + Value: 2.0 + TangentType: Linear + ScaleLength: true + LengthFactor: 1.3 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 50.0, Y: 50.0, Z: 50.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 078e5195-2425-43e2-bceb-5b4f9770e8cf:Textures/MuzzleFlash + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 7a950fef1afb7047aa538aadb79e6891: !SpawnerBurst + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 1 + Initializers: + 4fbcfc89c8d0a748947f57b3b59a1035: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: 0.0, Y: 0.4, Z: 0.0} + PositionMax: {X: 0.0, Y: 0.4, Z: 0.0} + Interpolate: false + ed042b61eea8264b8fc3665ca26b539f: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: 0.0, Y: 0.8, Z: 0.0} + VelocityMax: {X: 0.0, Y: 0.8, Z: 0.0} + 791ead271bed7a4ca1078a956c6782cb: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.5 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 1.0, Y: 1.0} + Updaters: + d78f984c59b2d442bee5d592a099196c: !UpdaterSpeedToDirection + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + d9ac87f27a3e2442957d69355b2f037c: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 5685808a440d074398006e47fcd9ea4d: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + TangentType: Linear + e6917016e7d70849a3bdcdadb129181e: + Key: 0.5 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.1} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + a1e76b90974d714aa991ec6a16af22a6: + EmitterName: Fire02 + ParticleLifetime: {X: 0.1, Y: 0.1} + DrawPriority: 5 + SortingPolicy: ByDepth + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 572b84240f0acd4c976160c15d1b79d8: + Key: 0.0 + Value: 0.0 + TangentType: Linear + 9d0d99b19c8bff4f9593c04b42514900: + Key: 0.5 + Value: 2.0 + TangentType: Linear + 9eb5ab0949f67647a755fbe64fc880f4: + Key: 1.0 + Value: 0.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 10.0, Y: 10.0, Z: 10.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: e1f01f3a-44fa-4288-917a-d24692beb01f:Textures/Muzzleflash02 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 790d7d7371b24e4ea0fd8854a254b9bb: !SpawnerBurst + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 10 + Initializers: + 240663e569da164899e641ff0e28f475: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: 0.0, Y: 3.0, Z: 0.0} + VelocityMax: {X: 0.0, Y: 4.0, Z: 0.0} + b1bf3cb0d41f91468afbb55b5f7184d8: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: 0.0, Y: 0.0, Z: 0.0} + PositionMax: {X: 0.0, Y: 0.2, Z: 0.0} + Interpolate: false + f959f629b26c06429f49d3db77f16038: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.5 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 1.0, Y: 1.0} + Updaters: + 150385996adb85449c8d21ff415dcb61: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 14b719f14cb80b4e87fa847d19b11f55: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.5} + TangentType: Linear + 895e803c27276543841b3060281b2288: + Key: 0.5 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.1} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 diff --git a/VFXPackage/Assets/Shared/VFXPrefabs/vfx-MuzzleflashNiX.xkprefab b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-MuzzleflashNiX.xkprefab new file mode 100644 index 0000000..828a5cd --- /dev/null +++ b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-MuzzleflashNiX.xkprefab @@ -0,0 +1,174 @@ +!PrefabAsset +Id: 391b3662-9158-406c-bb92-bb76b70cac7c +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! de3d82d7-b1dd-459f-9d3d-13545a31156e + Parts: + - Entity: + Id: de3d82d7-b1dd-459f-9d3d-13545a31156e + Name: Muzzle Flash + Components: + 1e49a7c9b0fb9243a6c8969764c516e5: !TransformComponent + Id: c9a7491e-fbb0-4392-a6c8-969764c516e5 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.707106769, W: 0.707106769} + Scale: {X: 1.738093, Y: 1.738093, Z: 1.738093} + Children: {} + 9da8f6cb5544c14a87c630b9fdc7706f: !ParticleSystemComponent + Id: cbf6a89d-4455-4ac1-87c6-30b9fdc7706f + Control: + ResetSeconds: 5.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + 16d5d9d86396824d94ceb3d7518fd6c2: + ParticleLifetime: {X: 0.1, Y: 0.15} + SimulationSpace: Local + ShapeBuilder: !ShapeBuilderQuad + SamplerPosition: null + SamplerSize: null + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeTextureColor + Texture: 0455ae16-c507-49ba-8b06-68cd747e0155:Textures/Muzzle_flash_NiX + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: !UVBuilderFlipbook + XDivisions: 3 + YDivisions: 3 + StartingFrame: 0 + AnimationSpeed: 9 + ForceTexCoords: false + Spawners: + 66a3a56abb70e7479895a7a916fa16ac: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.1, Y: 0.2} + Duration: {X: 0.1, Y: 0.2} + SpawnCount: 40.0 + Initializers: + 1c7d1a02bd5f844da871e583baffffcd: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.35, Y: 0.55} + 7f10f8fc21890b4594da108ba71daa71: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: 0.15, Y: 0.0, Z: 0.0} + PositionMax: {X: 0.25, Y: 0.0, Z: 0.0} + Interpolate: false + 28068111562f744daed35a7d7e640782: !Initial3DRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 1001 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: false + RotationQuaternionMin: {X: -0.675590158, Y: 0.0, Z: 0.0, W: 0.7372773} + RotationQuaternionMax: {X: 0.675590158, Y: 0.0, Z: 0.0, W: 0.7372773} + Updaters: {} + 86693d3ede99964b84987adfcb956eae: + ParticleLifetime: {X: 0.1, Y: 0.15} + SimulationSpace: Local + ShapeBuilder: !ShapeBuilderQuad + SamplerPosition: null + SamplerSize: null + SamplerRotation: null + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeTextureColor + Texture: e1f01f3a-44fa-4288-917a-d24692beb01f:Textures/Muzzleflash02 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + UVBuilder: null + ForceTexCoords: false + Spawners: + 4cf35d84e2ea7f45a4175790ac406423: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.1, Y: 0.2} + Duration: {X: 0.1, Y: 0.2} + SpawnCount: 30.0 + Initializers: + 223774884ad9bb4693a9ba6d2a6b3436: !Initial3DRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: false + RotationQuaternionMin: {X: 0.0, Y: 0.0, Z: 0.707106769, W: 0.707106769} + RotationQuaternionMax: {X: 0.0, Y: 0.0, Z: 0.707106769, W: 0.707106769} + 6ab62e4e22b91a43a6d44a00f2094231: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.2, Y: 0.35} + f61e0a061a3d714fb1a862463ac46a49: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: 0.04, Y: 0.0, Z: 0.0} + PositionMax: {X: 0.04, Y: 0.0, Z: 0.0} + Interpolate: false + Updaters: {} diff --git a/VFXPackage/Assets/Shared/VFXPrefabs/vfx-RocketTrail.xkprefab b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-RocketTrail.xkprefab new file mode 100644 index 0000000..bcd9943 --- /dev/null +++ b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-RocketTrail.xkprefab @@ -0,0 +1,334 @@ +!PrefabAsset +Id: f949da4a-6b7a-4ef3-ab12-da762421b99d +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 4bcfd42e-48b7-40c8-a5a1-2f0173287445 + Parts: + - Entity: + Id: 4bcfd42e-48b7-40c8-a5a1-2f0173287445 + Name: RoketTailRoot + Components: + 0cd0490e049aa04f9d6efe35417ad5f9: !TransformComponent + Id: 0e49d00c-9a04-4fa0-9d6e-fe35417ad5f9 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: + 0cd0490e049aa04f9d6efe35417ad5f9: ref!! 68a96537-5cd9-40a8-b5e4-3f9cad8a3ac7 + 3fb4f0aa604400429d9fc1ed9313363a: !ParticleSystemComponent + Id: aaf0b43f-4460-4200-9d9f-c1ed9313363a + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + 8ab455fc3de8b74d9d0adc70c93342ce: + MaxParticlesOverride: 100 + ParticleLifetime: {X: 1.0, Y: 2.0} + DrawPriority: 5 + SortingPolicy: ByDepth + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + af26ddb6999d1b42b781ccf683ff84bc: + Key: 0.0 + Value: 0.5 + TangentType: Linear + b6c28cc87fc8bf459aa9c5a97ac5f49b: + Key: 1.0 + Value: 3.0 + TangentType: Linear + SamplerRotation: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 22af0b2e68fed24f9a8244fb3ef29761: + Key: 0.0 + Value: 0.0 + TangentType: Linear + d049056ec2eae64c82920881bede75f8: + Key: 1.0 + Value: -100.0 + TangentType: Linear + Material: !ParticleMaterialComputeColor + AlphaAdditive: 0.5 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 5.0, Y: 5.0, Z: 5.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8ab2edfe-0ead-489f-a899-97a8112807f7:Textures/Smoke02 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8dbe2382-769c-45fe-9604-98c5ae5c434c:Textures/SMO001_3 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + feb687d899cafb49adc3ca52630ea144: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 50.0 + Initializers: + 0e4342f6a1c0864eb286635dd256b6c3: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.35, Y: 0.55} + cf653775dc8b0b4aa81e4db1e66212ec: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.1, Y: -0.1, Z: -0.1} + VelocityMax: {X: 0.1, Y: 0.1, Z: 0.1} + 12039668758eb946a3c989ff8d3946c6: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + 8e15470605665a46acac42bbba4807f0: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.15, Y: -0.15, Z: -0.15} + PositionMax: {X: 0.15, Y: 0.15, Z: 0.15} + Interpolate: false + Updaters: + 7b404bfcbc825848a1ea61cdfaee9e66: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 522ed310b54885448391d53346c3dbee: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.3} + TangentType: Linear + 4a9ee7e2a6ce1a4aad6a3f60c282bc8e: + Key: 0.5 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.6} + TangentType: Linear + cba812dcea7a5e479749eb539fc08675: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + - Entity: + Id: acecae33-691d-4406-8f2b-56b327255d02 + Name: RoketTail + Components: + 0cd0490e049aa04f9d6efe35417ad5f9: !TransformComponent + Id: 68a96537-5cd9-40a8-b5e4-3f9cad8a3ac7 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 3fb4f0aa604400429d9fc1ed9313363a: !ParticleSystemComponent + Id: 5619e037-4f5b-4f14-b6a0-0ac8e1458d08 + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + 8ab455fc3de8b74d9d0adc70c93342ce: + MaxParticlesOverride: 500 + ParticleLifetime: {X: 1.0, Y: 1.5} + SortingPolicy: ByDepth + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + af26ddb6999d1b42b781ccf683ff84bc: + Key: 0.0 + Value: 1.5 + TangentType: Linear + b6c28cc87fc8bf459aa9c5a97ac5f49b: + Key: 1.0 + Value: 2.5 + TangentType: Linear + SamplerRotation: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 22af0b2e68fed24f9a8244fb3ef29761: + Key: 0.0 + Value: 0.0 + TangentType: Linear + d049056ec2eae64c82920881bede75f8: + Key: 1.0 + Value: 30.0 + TangentType: Linear + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 1.0, Y: 1.0, Z: 1.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: fa1018e4-c74d-4495-9535-134f5a06e4cd:Textures/SMO001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: !UVBuilderFlipbook + XDivisions: 8 + YDivisions: 8 + StartingFrame: 12 + AnimationSpeed: 48 + ForceTexCoords: false + Spawners: + 6a86a4a7ba023248b4a7c5a1ff3c9c6d: !SpawnerFromDistance + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 100.0 + Initializers: + 0e4342f6a1c0864eb286635dd256b6c3: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.35, Y: 0.55} + cf653775dc8b0b4aa81e4db1e66212ec: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.1, Y: -0.1, Z: -0.1} + VelocityMax: {X: 0.1, Y: 0.1, Z: 0.1} + 12039668758eb946a3c989ff8d3946c6: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + Updaters: + 3c21ffe2315b4240857c7f3e948371a8: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 3510ca702895e148be75fe5ad972f06c: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.5} + TangentType: Linear + 114d2588d1b8944383a3c8ae7878906f: + Key: 0.5 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.7} + TangentType: Linear + 4eebbc43ac0f0043ad36552b8126040f: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 diff --git a/VFXPackage/Assets/Shared/VFXPrefabs/vfx-Sandstorm.xkprefab b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-Sandstorm.xkprefab new file mode 100644 index 0000000..c00a36b --- /dev/null +++ b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-Sandstorm.xkprefab @@ -0,0 +1,159 @@ +!PrefabAsset +Id: 2c840748-5f5f-4c16-a343-a8c315c3dfd7 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 5d65bde8-7c2b-49db-9ae4-66a07d59f75d + Parts: + - Entity: + Id: 5d65bde8-7c2b-49db-9ae4-66a07d59f75d + Name: SandstormEmitter + Components: + 28f975afa6227844910cdaa172ed5646: !TransformComponent + Id: af75f928-22a6-4478-910c-daa172ed5646 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + d500265d044c7f48b080a6504d1ae88f: !ParticleSystemComponent + Id: 5d2600d5-4c04-487f-b080-a6504d1ae88f + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + 2b077f9691daed47a0278634d1ce0aed: + ParticleLifetime: {X: 0.5, Y: 1.5} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: null + SamplerRotation: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 84b1c889cf38ae4aa5ba751e4b391429: + Key: 0.0 + Value: 0.0 + TangentType: Linear + eee1d6bc948ea44692cb87d7d7a0ddb0: + Key: 1.0 + Value: -120.0 + TangentType: Linear + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 1.0, Y: 1.0, Z: 1.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8ab2edfe-0ead-489f-a899-97a8112807f7:Textures/Smoke02 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 7673b8a983e7c047a6bdbacaffba3e1b: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 100.0 + Initializers: + e90acf5ac1a7d045881a5afed9b53d77: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 10.0, Y: 10.0} + d2a9978912b3dc42abd08b19f7cb6f05: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -10.0, Y: 0.0, Z: 0.0} + PositionMax: {X: 10.0, Y: 5.0, Z: 5.0} + Interpolate: false + 72a9f31339f4e8438cb7590cb179979b: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -1.0, Y: -0.5, Z: 15.0} + VelocityMax: {X: 1.0, Y: 0.5, Z: 30.0} + ac5c64a143cf4a4bb1464c64f297714b: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + Updaters: + 88d540bd7c6f04468bcc64bd460d7d80: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + ede812aacc58f249a63d458b8448fcf0: + Key: 0.0 + Value: {R: 0.55, G: 0.45, B: 0.3, A: 0.0} + TangentType: Linear + d29b3edcdb626b45b98e739302245660: + Key: 0.5 + Value: {R: 0.55, G: 0.45, B: 0.3, A: 0.3} + TangentType: Linear + 867383dfd42cd8439b239bf322152718: + Key: 1.0 + Value: {R: 0.55, G: 0.45, B: 0.3, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 diff --git a/VFXPackage/Assets/Shared/VFXPrefabs/vfx-Smoke.xkprefab b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-Smoke.xkprefab new file mode 100644 index 0000000..b9b7b2d --- /dev/null +++ b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-Smoke.xkprefab @@ -0,0 +1,221 @@ +!PrefabAsset +Id: ec6bca6b-c31f-4bbe-b3fb-48aca34e1193 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! ff2bc58a-a47b-44d9-a1a5-9ff39bf8bf76 + Parts: + - Entity: + Id: ff2bc58a-a47b-44d9-a1a5-9ff39bf8bf76 + Name: Smoke Particle System + Components: + 476b8129ad3c3e4cb86922a709819877: !TransformComponent + Id: 29816b47-3cad-4c3e-b869-22a709819877 + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + ee7db3a05334194b8c8b216dd4b42975: !ParticleSystemComponent + Id: a0b37dee-3453-4b19-8c8b-216dd4b42975 + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + dd0916c4c66c17418a67a87d749d61e4: + EmitterName: Smoke + ParticleLifetime: {X: 5.0, Y: 7.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 49632ce0f530da42a200f4d1d9a75b50: + Key: 0.0 + Value: 1.0 + TangentType: Linear + b5915338bc97934d8307210e08b10d28: + Key: 0.5 + Value: 1.2 + TangentType: Linear + 6db0a2c9be4ecf408be065facf1b0adf: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + a81c719a9b558143b458d9dd0064edf5: + Key: 0.0 + Value: 0.5133011 + TangentType: Linear + 4050aa9ac4fb0545a743ed0c542229b6: + Key: 1.0 + Value: -60.0 + TangentType: Linear + Material: !ParticleMaterialComputeColor + AlphaAdditive: 0.5 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 1.0, Y: 1.0, Z: 1.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: fa1018e4-c74d-4495-9535-134f5a06e4cd:Textures/SMO001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: !UVBuilderFlipbook + XDivisions: 8 + YDivisions: 8 + StartingFrame: 0 + AnimationSpeed: 64 + ForceTexCoords: false + Spawners: + 82c7723c7b76aa4680b700cd3f523397: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 10.0 + Initializers: + 88a298f08b41e644b60f9eff976abb88: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.7, Y: 1.5} + 5ba84f7e7a82ee409575a46d819c0f46: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.1, Y: 0.0, Z: -0.1} + PositionMax: {X: 0.1, Y: 0.2, Z: 0.1} + Interpolate: false + 4df5dda27dc1064d93f06f1e851989d5: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.1, Y: 0.5, Z: -0.1} + VelocityMax: {X: 0.1, Y: 0.7, Z: 0.1} + d38187a8c6074f4abfb99edfe0ffa49d: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + Updaters: + 38b172560326654a8a7c3e848e1cbc77: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 1e5e0d0f0c6ba3428682986289cb6be5: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + 301d58e71b774949ac38da7bd5ac81f4: + Key: 0.2 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.1} + TangentType: Linear + 5f149fe79436f14c965b65433f8a0280: + Key: 0.5 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.5} + TangentType: Linear + 96be9bbb0f05df459c09a333ec4a802a: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + f82dd4ccb91f2a468f8e879fee9724b8: !UpdaterForceField + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 2.0, Y: 10.0, Z: 2.0} + DisplayParticleRotation: true + DisplayParticlePosition: true + FieldShape: !FieldShapeCylinder + HalfHeight: 1.0 + Radius: 1.0 + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 1.0 + FalloffStart: 0.1 + StrengthOutside: 0.0 + FalloffEnd: 0.9 + EnergyConservation: 0.2 + ForceDirected: -0.05 + ForceVortex: 0.1 + ForceRepulsive: 0.0 + ForceFixed: {X: 0.0, Y: 0.0, Z: 0.0} + 080ce184a0c5eb4a8161eef1784594dc: !UpdaterGravity + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + GravitationalAcceleration: {X: 0.0, Y: 0.15, Z: 0.0} + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false diff --git a/VFXPackage/Assets/Shared/VFXPrefabs/vfx-Sparks.xkprefab b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-Sparks.xkprefab new file mode 100644 index 0000000..7020515 --- /dev/null +++ b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-Sparks.xkprefab @@ -0,0 +1,371 @@ +!PrefabAsset +Id: ded8b935-865e-4133-b438-79aa043e6a86 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 4bb551db-595c-4c2f-928c-19e06785ef70 + Parts: + - Entity: + Id: 4bb551db-595c-4c2f-928c-19e06785ef70 + Name: Sparks + Components: + ff26b404fd96534ba50fff60cdb5128a: !TransformComponent + Id: 04b426ff-96fd-4b53-a50f-ff60cdb5128a + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + eac5e46777b7354babea586ef30bd4d1: !ParticleSystemComponent + Id: 67e4c5ea-b777-4b35-abea-586ef30bd4d1 + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + da465e53965ade4fabe172d1fb19dc30: + EmitterName: sparks + ParticleLifetime: {X: 1.5, Y: 2.0} + ShapeBuilder: !ShapeBuilderOrientedQuad + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 66179a362867ad4fa81c4828ed37b306: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 543edb979345114aaf57da0586b2b1f3: + Key: 0.25 + Value: 0.5 + TangentType: Linear + 48220905d438de4b959e474a415a16ce: + Key: 1.0 + Value: 0.1 + TangentType: Linear + ScaleLength: true + LengthFactor: 3.0 + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 200.0, Y: 200.0, Z: 200.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 91119660-137e-4be0-bcb9-32f8aeee6ca8:Textures/dota + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + c279c8c5a4ac5e4bb9dd74ae0c4ce522: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 50.0 + Initializers: + 2bf8de46251ee442b293ab905c0871d1: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.3 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.05, Y: 0.02} + e9ae5eeccf4333458f3c00f2b2a75054: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.03, Y: -0.03, Z: -0.03} + PositionMax: {X: 0.03, Y: 0.03, Z: 0.03} + Interpolate: false + e3f2dfa8c4b2e14685c4b3aba307172d: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: 0.0, Y: 3.0, Z: 0.0} + VelocityMax: {X: 3.0, Y: 4.0, Z: 3.0} + Updaters: + b2b11ca17ffada469874b44e6649cfd4: !UpdaterGravity + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + GravitationalAcceleration: {X: 0.0, Y: -9.80665, Z: 0.0} + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + a79b1f60c1902143b6307dd66abf51d5: !UpdaterSpeedToDirection + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + 1f0893c277cc9944b3dd11dd4a146534: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + caf74a8c447ba4419561e5cf23beb6a1: + Key: 0.0 + Value: {R: 0.1, G: 0.3, B: 1.0, A: 0.1} + TangentType: Linear + c01c3713703bd1419e97bbe94289ab0a: + Key: 1.0 + Value: {R: 0.1, G: 0.3, B: 1.0, A: 0.5} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 0d41855c55cfcd419fb3035290400829: + EmitterName: smoke + ParticleLifetime: {X: 3.0, Y: 4.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: null + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 1.0, Y: 1.0, Z: 1.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: fa1018e4-c74d-4495-9535-134f5a06e4cd:Textures/SMO001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: !UVBuilderFlipbook + XDivisions: 8 + YDivisions: 8 + StartingFrame: 0 + AnimationSpeed: 64 + ForceTexCoords: false + Spawners: + e50d93489a30be44bbebd701dcb65f6a: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 10.0 + Initializers: + a21e9cb2a8bf8644b6169341be64314f: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.05, Y: 0.3, Z: -0.05} + VelocityMax: {X: 0.05, Y: 0.4, Z: 0.05} + e4a11e3acc820643ae48224552a9a515: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + e0b8f7c67c6ce9439ba76a1bd6cfa7f0: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.5 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.5, Y: 1.0} + 86147475590605478ba314d672d20660: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.1, Y: 0.0, Z: -0.1} + PositionMax: {X: 0.1, Y: 0.0, Z: 0.1} + Interpolate: false + Updaters: + b17cff875d669f499d203cc83e037c0c: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + d300a7e45c2a724db551167f0e543b0a: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.05} + TangentType: Linear + 7edeaa8dd1cba04b941cea8b0f3a0c00: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 08a5f70ad7c56f4ca2e4f64a3c798053: + EmitterName: light + ParticleLifetime: {X: 0.05, Y: 0.05} + DrawPriority: 5 + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: null + SamplerRotation: null + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 30.0, Y: 40.0, Z: 50.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 902938804c93fb4b861d53eee1ae2c0b: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 0.5, Y: 0.1} + SpawnCount: 8.0 + Initializers: + cefeaf78276ac545881e1c827aecc458: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: 0.0, Y: 360.0} + Updaters: + d12128e39a11eb4dac43c4ca32b9babf: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + fe6a13211f49d94498b31de2b381881e: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + 8751ea2a3f769648b7a2d7615393278b: + Key: 0.5 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.1} + TangentType: Linear + 4da52f14639c7d448abd17cdf528ee07: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 diff --git a/VFXPackage/Assets/Shared/VFXPrefabs/vfx-Steam.xkprefab b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-Steam.xkprefab new file mode 100644 index 0000000..ece7fc3 --- /dev/null +++ b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-Steam.xkprefab @@ -0,0 +1,163 @@ +!PrefabAsset +Id: 7e583813-c264-4c77-bb7f-23f0f609968d +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! 39e6666d-d2d1-49c3-8f0e-31f321ca5b12 + Parts: + - Entity: + Id: 39e6666d-d2d1-49c3-8f0e-31f321ca5b12 + Name: Steam + Components: + c1ecc9674350ec47b258da4ab8ccf2ff: !TransformComponent + Id: 67c9ecc1-5043-47ec-b258-da4ab8ccf2ff + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 8323bf5daa524c4fb5d833e41b08b32d: !ParticleSystemComponent + Id: 5dbf2383-52aa-4f4c-b5d8-33e41b08b32d + Control: + ResetSeconds: 0.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + 9a3a5271a4a0934d9467f6b095793379: + ParticleLifetime: {X: 0.5, Y: 0.5} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 0383cd796e839e4b9667af5d0fe71756: + Key: 0.0 + Value: 0.2 + TangentType: Linear + 3c3bf45d6e50e542871470a99fdfd9f3: + Key: 0.3 + Value: 0.5 + TangentType: Linear + aa6cd07e77ba1c4da6e836dff7b31695: + Key: 1.0 + Value: 2.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 5.0, Y: 5.0, Z: 5.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8dbe2382-769c-45fe-9604-98c5ae5c434c:Textures/SMO001_3 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + fa12c9550522c24fa400d8ce84ef83a0: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 50.0 + Initializers: + 3994a4c9897c7049af5217d699e668a9: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.4, Y: 0.5} + 7fa5fb2d4e692c4aae5cda5ce081ca44: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: 0.0, Y: 0.0, Z: 0.0} + PositionMax: {X: 0.0, Y: 0.0, Z: 0.0} + Interpolate: false + 3d037e54f2051d42a511f75567a2d5eb: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.05, Y: 5.0, Z: -0.05} + VelocityMax: {X: 0.05, Y: 5.0, Z: 0.05} + d4d112e1ace7b944828fa9278f3938e1: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + Updaters: + 226c0f6bc8f05441a0eb6454e9f89045: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 82276cc03e3f854b9dc5c50ece2e25f9: + Key: 0.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + e3927f1e92cb4d4f80c729960776e1ca: + Key: 0.2 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.5} + TangentType: Linear + bb31441c3997734baf5d4b324f145da1: + Key: 1.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 diff --git a/VFXPackage/Assets/Shared/VFXPrefabs/vfx-Teleport.xkprefab b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-Teleport.xkprefab new file mode 100644 index 0000000..f7bb920 --- /dev/null +++ b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-Teleport.xkprefab @@ -0,0 +1,1069 @@ +!PrefabAsset +Id: 3a5d76b7-2841-4d50-94a7-6e792a00e320 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! f9c3492f-998f-4728-a47c-17bdc010143a + Parts: + - Entity: + Id: f9c3492f-998f-4728-a47c-17bdc010143a + Name: TeleportEmitter + Components: + 6395ef07f550744397dd3081cd4a79cb: !TransformComponent + Id: 07ef9563-50f5-4374-97dd-3081cd4a79cb + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6669f00e3e069c40b07ce44ccf962a18: !ParticleSystemComponent + Id: 0ef06966-063e-409c-b07c-e44ccf962a18 + Control: + ResetSeconds: 3.0 + Control: Play + Color: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + 5040219717fd324093f1886466fda636: + ParticleLifetime: {X: 0.25, Y: 0.25} + DrawPriority: 5 + SortingPolicy: ByDepth + ShapeBuilder: !ShapeBuilderOrientedQuad + SamplerPosition: !ComputeCurveSamplerVector3 + Curve: !ComputeAnimationCurveVector3 + KeyFrames: + d4161c929ac69844a7083d46d80ca72d: + Key: 0.0 + Value: {X: 0.0, Y: -0.5, Z: 0.0} + TangentType: Linear + 9dfb29819652f943904a8794a2962457: + Key: 1.0 + Value: {X: 0.0, Y: 0.5, Z: 0.0} + TangentType: Linear + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + c4d7e1eb2866d8438f0f053da05de0ab: + Key: 2.220446E-16 + Value: 1.5 + TangentType: Linear + 0fbcd9f00ea7e04c812446849ba3c7b6: + Key: 0.05 + Value: 3.0 + TangentType: Linear + 50cbbf6311e2d04b9dd2ba0024c921d3: + Key: 0.5 + Value: 0.5 + TangentType: Linear + d0b72df5fdd2e448960e3267def415be: + Key: 1.0 + Value: 0.0 + TangentType: Linear + ScaleLength: false + LengthFactor: 5.0 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 100.0, Y: 100.0, Z: 100.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 163e7dce-4f33-419a-b03b-c592204a8a65:Textures/LensFlare01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 496e17e43727db46bdcde4f4bcc66dd1: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 1 + Initializers: + e1e472a3c24ac448921ec520f483204b: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.5, Y: 1.0} + 6165852bf4bbc743a07f29d28119d243: !InitialColorSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ColorMin: {R: 0.113725491, G: 0.172549024, B: 1.0, A: 1.0} + ColorMax: {R: 0.113725491, G: 0.172549024, B: 1.0, A: 1.0} + Updaters: {} + f738a7aee0e79e46bb75f702cf0b1691: + ParticleLifetime: {X: 0.5, Y: 1.5} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + e0b302699b821046add506e580a1f10d: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 7d1324b08263c949bc38f15855f48b48: + Key: 1.0 + Value: 0.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 50.0, Y: 50.0, Z: 50.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + aeffcc90d3662940a4aadd87175efcdd: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.1, Y: 0.1} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 50 + Initializers: + de19c0c802943e43b5bc16bf87710585: !InitialVelocityParent + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + DisplayParticleRotation: true + DisplayParticlePosition: false + DisplayParticleScaleUniform: true + DisplayParticleScale: false + ParentName: null + ParentSeedOffset: 0 + ParentControlFlag: Group00 + SeedOffset: 0 + ParentVelocityFactor: 0.5 + VelocityMin: {X: -0.2, Y: 0.0, Z: -0.2} + VelocityMax: {X: 0.2, Y: 0.2, Z: 0.2} + fffa6b4f3d3d71419258fec3c9df68f1: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.4 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.05, Y: 0.2} + b8e4f334269e834bae2ca058294c5379: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.1, Y: -1.5, Z: -0.1} + PositionMax: {X: 0.1, Y: 1.5, Z: 0.1} + Interpolate: false + 60a091975d1fcb46815576f1488c9c2e: !InitialColorSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ColorMin: {R: 0.0, G: 0.0235294122, B: 1.0, A: 1.0} + ColorMax: {R: 0.29375, G: 0.3103674, B: 1.0, A: 1.0} + Updaters: + dad1aef5ec8a2149ad5117fb3b07dddf: !UpdaterForceField + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + DisplayParticleRotation: true + DisplayParticlePosition: true + FieldShape: !FieldShapeCylinder + HalfHeight: 1.0 + Radius: 1.0 + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 1.0 + FalloffStart: 0.1 + StrengthOutside: 0.0 + FalloffEnd: 0.9 + EnergyConservation: 0.5 + ForceDirected: 0.1 + ForceVortex: 0.3 + ForceRepulsive: 0.1 + ForceFixed: {X: 0.0, Y: 0.0, Z: 0.0} + 2367f1689883364ebc569283d9f78125: + ParticleLifetime: {X: 1.0, Y: 1.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 7d7327de46f348448de7aedbf5ad6e1c: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 000497e646e2a546ba4392d0c1b66575: + Key: 0.1 + Value: 2.0 + TangentType: Linear + 37cee8ea5a1f6a40bfbca8f78b33b718: + Key: 1.0 + Value: 3.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 2.0, Y: 2.0, Z: 2.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 91119660-137e-4be0-bcb9-32f8aeee6ca8:Textures/dota + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + f1342f4364f2c64a8e1109743226adda: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 1 + Initializers: {} + Updaters: + 92f14c2b239c804da91f87a452a7fae4: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 69cb6c275bacdc4081de7994e8aeab90: + Key: 0.0 + Value: {R: 0.2, G: 0.5, B: 1.0, A: 1.0} + TangentType: Linear + e2f4b5c3d6f82f41bdb30432bfddf8b1: + Key: 0.1 + Value: {R: 0.200000018, G: 0.5, B: 1.0, A: 0.2} + TangentType: Linear + 25f7523959ba7a4e8bb39921e9b1e993: + Key: 1.0 + Value: {R: 0.2, G: 0.5, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 8e789b11275a364fa866418228030b42: + ParticleLifetime: {X: 1.0, Y: 1.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 6ddde43e984e1a47bf567213c1119a99: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 9b61f57d88bb4a45a8ac0ccbb8005efe: + Key: 1.0 + Value: 0.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 50.0, Y: 50.0, Z: 50.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + eabe55d5cbc7454c836ec6c6ea3fa992: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 30 + Initializers: + 060b688c3079634fb2fcef4eeb738cf7: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.1, Y: -1.5, Z: -0.1} + PositionMax: {X: 0.1, Y: 1.5, Z: 0.1} + Interpolate: false + 458df8842fb51346bd3cd84fa0a3d048: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.1 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.1, Y: 0.5} + 1061bb81f346d14da70b57360377d87a: !InitialColorSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + ColorMin: {R: 0.350000024, G: 0.683125, B: 1.0, A: 1.0} + ColorMax: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + 79628854ff680140b85d6011699fe4e7: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.05, Y: 0.0, Z: -0.05} + VelocityMax: {X: 0.05, Y: 0.25, Z: 0.05} + Updaters: {} + 841cf1cc6bea974fb72aeafc1e3b058b: + ParticleLifetime: {X: 0.5, Y: 2.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + cfc8cbfc5f7e80468f4658697a0dccfb: + Key: 0.0 + Value: 0.1 + TangentType: Linear + cec950b71d6b054cb0d52c4463cf843f: + Key: 1.0 + Value: 1.5 + TangentType: Linear + SamplerRotation: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 4f6a5597f95530449174ae84f03e5522: + Key: 0.0 + Value: 0.0 + TangentType: Linear + cf98f41d25d41c4a83ad36e1ec9746a2: + Key: 1.0 + Value: 60.0 + TangentType: Linear + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 20.0, Y: 20.0, Z: 20.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: ca6ebc41-c296-47ba-b009-4ed9429d2844:Textures/Aura01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 79df6107b22e334d8bca6b4960444b27: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 30 + Initializers: + 142e006d8e6b3a4dbbcb1926c73840f8: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.05, Y: 0.0, Z: -0.05} + VelocityMax: {X: 0.05, Y: 0.5, Z: 0.05} + f6eb4c7264821d4ab65350c123ab5be5: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + 46bdcf28870a6b458f932a8575859785: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.2, Y: -0.5, Z: -0.2} + PositionMax: {X: 0.2, Y: 0.5, Z: 0.2} + Interpolate: false + afa421dee27b89458bf03b8615bd730f: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 2.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.25, Y: 1.0} + Updaters: + db7c0011cf236a478829483fa06ce33e: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + e54f18a2ce59fd49ac1c52a0968ca7b5: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + 65d9881cc9902243a3f9561a1d617a34: + Key: 0.25 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.1} + TangentType: Linear + 050e06182d0dc149a97d6eee6edc869d: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 0c6d623373813b429d7c03b96d846da6: !UpdaterForceField + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 2.0, Z: 1.0} + DisplayParticleRotation: true + DisplayParticlePosition: true + FieldShape: !FieldShapeCylinder + HalfHeight: 1.0 + Radius: 1.0 + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 1.0 + FalloffStart: 0.1 + StrengthOutside: 0.0 + FalloffEnd: 0.9 + EnergyConservation: 0.5 + ForceDirected: 0.1 + ForceVortex: 0.7 + ForceRepulsive: 0.2 + ForceFixed: {X: 0.0, Y: 0.0, Z: 0.0} + d54f5f02b8fb784ca93dc56c42f1d31b: + MaxParticlesOverride: 3 + ParticleLifetime: {X: 0.2, Y: 0.2} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + f0279f2d9cd2c040ae63cfba0a277659: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 6faf63523fcdb14b9969d16a6dc927fa: + Key: 0.25 + Value: 2.0 + TangentType: Linear + ce867259d05680459a58feab8d883b77: + Key: 1.0 + Value: 2.5 + TangentType: Linear + SamplerRotation: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + ac96eaa5f5df674ba0b8864577cbbd22: + Key: 0.0 + Value: 45.0 + TangentType: Linear + ad95a725b3057a459f5521f45bf6a0bd: + Key: 1.0 + Value: 180.0 + TangentType: Linear + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 2.0, Y: 2.0, Z: 2.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 4ae36a31-e5f2-4cab-8143-e10f0ea7ab34:Textures/Ring01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 0a02d7d136d5304db330a2238551a554: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 1 + Initializers: {} + Updaters: + 01cc50267aaa1e4a8643cd7c75973809: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 53f065c2aa4c434aa5ad52c72076d5f4: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + TangentType: Linear + dc113008bd4b374b963d351d8c825d70: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 2b453fc5e8d3854098448c84c5fedb2f: + ParticleLifetime: {X: 0.1, Y: 0.1} + DrawPriority: 5 + SortingPolicy: ByDepth + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + dd02c62a2c326e4e8504fe1dde1b24ce: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 4d38720d6be9b54a96ae79d509d78bb3: + Key: 0.1 + Value: 2.0 + TangentType: Linear + 84c911cf8c60da43abdc6991b06c8822: + Key: 1.0 + Value: 3.0 + TangentType: Linear + SamplerRotation: null + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 20.0, Y: 50.0, Z: 100.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 11c110bc69927041a204bf6719fe448a: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 1 + Initializers: {} + Updaters: + 9f087a05a80b7e4b84b338aacdb69423: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 8493449dd2a0c84892c6f2ae1e28433c: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + TangentType: Linear + 28e4be7a18d4684fbc161eb940356754: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 5e86c7f04b616d459bcbeaf756f15754: + ParticleLifetime: {X: 0.2, Y: 1.5} + ShapeBuilder: !ShapeBuilderOrientedQuad + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + df36b147405cec4cb05b05d70ee60e33: + Key: 0.0 + Value: 1.0 + TangentType: Linear + 26e9d6f9d1f9594d9d5954fa232bff57: + Key: 1.0 + Value: 0.0 + TangentType: Linear + ScaleLength: false + LengthFactor: 0.08 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 30.0, Y: 50.0, Z: 100.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 28a187b3-de84-4e71-9c87-c5facb6e2ff6:Textures/SparkLight01_0001 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 3f6c60d5046c8b418f3d934d53ddcb22: !SpawnerBurst + LoopCondition: OneShot + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 100 + Initializers: + 4f9c775831acee4a9995624b1132cfe0: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.2 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.05, Y: 0.2} + db7a69e7ebbf224ebf621a9ab73cba51: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.1, Y: -0.1, Z: -0.1} + VelocityMax: {X: 0.1, Y: 0.0, Z: 0.1} + 4e66b7ed44680943b98d885b771a7640: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: false + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.2, Y: -0.5, Z: -0.2} + PositionMax: {X: 0.2, Y: 0.5, Z: 0.2} + Interpolate: false + Updaters: + 183a71912f9f51488a6e3b0c8b4123ba: !UpdaterSpeedToDirection + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + 96df0b832224fa498c74e725c6dd6145: !UpdaterForceField + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 2.0, Y: 2.0, Z: 2.0} + DisplayParticleRotation: true + DisplayParticlePosition: true + FieldShape: !FieldShapeSphere + Radius: 1.0 + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 1.0 + FalloffStart: 0.1 + StrengthOutside: 0.0 + FalloffEnd: 1.0 + EnergyConservation: 0.5 + ForceDirected: 0.5 + ForceVortex: 0.5 + ForceRepulsive: 0.5 + ForceFixed: {X: 0.0, Y: 0.0, Z: 0.0} + 552875fdb9bd534ea1e92b174567f678: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 6177e9905b4c1d458e8d4517a1682c32: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + 7fe9f118193470428f9fa8597d926761: + Key: 0.375415534 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + TangentType: Linear + bd818fedd0f77c44b8859c7a538d39ae: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 205ebee5fda131429afd176bd143ff9a: + ParticleLifetime: {X: 0.2, Y: 0.4} + ShapeBuilder: !ShapeBuilderOrientedQuad + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + f7a0542348699444bfc89d071847bfe3: + Key: 0.0 + Value: 0.0 + TangentType: Linear + 1234bc64e7632348b5b9a2131b99b8aa: + Key: 0.5 + Value: 1.0 + TangentType: Linear + f43779da0bba924aaf069c8e828c9409: + Key: 1.0 + Value: 0.0 + TangentType: Linear + ScaleLength: true + LengthFactor: 1.0 + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 20.0, Y: 20.0, Z: 20.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 163e7dce-4f33-419a-b03b-c592204a8a65:Textures/LensFlare01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 3ece173fbb7ff4488c90ebf8c5e9b905: !SpawnerPerSecond + LoopCondition: OneShot + Delay: {X: 0.01, Y: 0.01} + Duration: {X: 0.3, Y: 0.3} + SpawnCount: 50.0 + Initializers: + e6ca323f4ea1b844a1a4ce45f559ebaf: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.5, Y: -1.0, Z: -0.5} + PositionMax: {X: 0.5, Y: 0.0, Z: 0.5} + Interpolate: false + 25bee8304e31464987d2cac60753cbb5: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: 0.0, Y: 4.0, Z: 0.0} + VelocityMax: {X: 0.0, Y: 5.0, Z: 0.0} + 00fef165306cd34da79578a24e931a36: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 0.4 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.1, Y: 1.0} + Updaters: + 47ce56558958f54b8e175088d1b2dfe6: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + fab43df57f347a4e94ec19e31f78e254: + Key: 0.0 + Value: {R: 0.0, G: 0.0, B: 1.0, A: 1.0} + TangentType: Linear + a13eda9bc54a4f4abbcb0831c2b03997: + Key: 0.5 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + TangentType: Linear + 88570bb570ad7a43a95c2e76575425c5: + Key: 1.0 + Value: {R: 0.0, G: 0.0, B: 1.0, A: 1.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 2dc8d724e8a39f43921e71057609fa5e: !UpdaterSpeedToDirection + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + a965fc946450744ba7fe151d40c653aa: !UpdaterForceField + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 5.0, Z: 1.0} + DisplayParticleRotation: true + DisplayParticlePosition: true + FieldShape: !FieldShapeCylinder + HalfHeight: 1.0 + Radius: 1.0 + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 1.0 + FalloffStart: 0.1 + StrengthOutside: 0.0 + FalloffEnd: 0.9 + EnergyConservation: 0.5 + ForceDirected: -2.0 + ForceVortex: 0.0 + ForceRepulsive: 0.0 + ForceFixed: {X: 0.0, Y: 0.0, Z: 0.0} diff --git a/VFXPackage/Assets/Shared/VFXPrefabs/vfx-TeleportPoint.xkprefab b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-TeleportPoint.xkprefab new file mode 100644 index 0000000..b682bdc --- /dev/null +++ b/VFXPackage/Assets/Shared/VFXPrefabs/vfx-TeleportPoint.xkprefab @@ -0,0 +1,308 @@ +!PrefabAsset +Id: 77857998-42e8-4b56-ba99-30e2f94c24a1 +SerializedVersion: {Xenko: 3.1.0.1} +Tags: [] +Hierarchy: + RootParts: + - ref!! f9c3492f-998f-4728-a47c-17bdc010143a + Parts: + - Entity: + Id: f9c3492f-998f-4728-a47c-17bdc010143a + Name: TeleportLocation + Components: + 6395ef07f550744397dd3081cd4a79cb: !TransformComponent + Id: 07ef9563-50f5-4374-97dd-3081cd4a79cb + Position: {X: 0.0, Y: 0.0, Z: 0.0} + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + Children: {} + 6669f00e3e069c40b07ce44ccf962a18: !ParticleSystemComponent + Id: 0ef06966-063e-409c-b07c-e44ccf962a18 + Control: + ResetSeconds: 0.0 + Control: Play + ThumbnailWarmupTime: 2.0 + Color: {R: 0.5372549, G: 0.5372549, B: 0.5372549, A: 0.5372549} + Speed: 1.0 + ParticleSystem: + Settings: {} + BoundingShape: null + Emitters: + 841cf1cc6bea974fb72aeafc1e3b058b: + ParticleLifetime: {X: 0.5, Y: 2.0} + ShapeBuilder: !ShapeBuilderBillboard + SamplerPosition: null + SamplerSize: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + cfc8cbfc5f7e80468f4658697a0dccfb: + Key: 0.0 + Value: 0.1 + TangentType: Linear + cec950b71d6b054cb0d52c4463cf843f: + Key: 1.0 + Value: 1.5 + TangentType: Linear + SamplerRotation: !ComputeCurveSamplerFloat + Curve: !ComputeAnimationCurveFloat + KeyFrames: + 4f6a5597f95530449174ae84f03e5522: + Key: 0.0 + Value: 0.0 + TangentType: Linear + cf98f41d25d41c4a83ad36e1ec9746a2: + Key: 1.0 + Value: 60.0 + TangentType: Linear + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeFloat4 + Value: {X: 20.0, Y: 20.0, Z: 20.0, W: 1.0} + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: ca6ebc41-c296-47ba-b009-4ed9429d2844:Textures/Aura01 + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + UVBuilder: null + ForceTexCoords: false + Spawners: + 79df6107b22e334d8bca6b4960444b27: !SpawnerBurst + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 8 + Initializers: + 142e006d8e6b3a4dbbcb1926c73840f8: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: -0.05, Y: 0.0, Z: -0.05} + VelocityMax: {X: 0.05, Y: 0.5, Z: 0.05} + f6eb4c7264821d4ab65350c123ab5be5: !InitialRotationSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + AngularRotation: {X: -360.0, Y: 360.0} + 46bdcf28870a6b458f932a8575859785: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: -0.2, Y: -0.5, Z: -0.2} + PositionMax: {X: 0.2, Y: 2.5, Z: 0.2} + Interpolate: false + afa421dee27b89458bf03b8615bd730f: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 2.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 0.25, Y: 1.0} + Updaters: + db7c0011cf236a478829483fa06ce33e: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + e54f18a2ce59fd49ac1c52a0968ca7b5: + Key: 0.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + 65d9881cc9902243a3f9561a1d617a34: + Key: 0.25 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.1} + TangentType: Linear + 050e06182d0dc149a97d6eee6edc869d: + Key: 1.0 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 + 0c6d623373813b429d7c03b96d846da6: !UpdaterForceField + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 2.0, Z: 1.0} + DisplayParticleRotation: true + DisplayParticlePosition: true + FieldShape: !FieldShapeCylinder + HalfHeight: 1.0 + Radius: 1.0 + DisplayParticleScale: true + DisplayParticleScaleUniform: false + FieldFalloff: + StrengthInside: 1.0 + FalloffStart: 0.1 + StrengthOutside: 0.0 + FalloffEnd: 0.9 + EnergyConservation: 0.5 + ForceDirected: 0.1 + ForceVortex: 0.7 + ForceRepulsive: 0.2 + ForceFixed: {X: 0.0, Y: 0.0, Z: 0.0} + 15cd087bf720094aa6dde39ae052d3eb: + EmitterName: ConcentricRings + ParticleLifetime: {X: 3.0, Y: 3.0} + ShapeBuilder: !ShapeBuilderQuad + SamplerPosition: null + SamplerSize: null + SamplerRotation: null + Material: !ParticleMaterialComputeColor + AlphaAdditive: 1.0 + ComputeColor: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeTextureColor + Texture: 8bd33d20-0a1c-4505-be78-4316d81bc076:Textures/TeleportRing + FallbackValue: + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + Scale: {X: 1.0, Y: 1.0} + Offset: {X: 0.0, Y: 0.0} + Swizzle: null + RightChild: !ComputeBinaryColor + Operator: Multiply + LeftChild: !ComputeVertexStreamColor + Stream: !ColorVertexStreamDefinition {} + RightChild: !ComputeFloat4 + Value: {X: 10.0, Y: 10.0, Z: 10.0, W: 1.0} + UVBuilder: null + ForceTexCoords: false + Spawners: + a03c36e038210f4a96e53e2c0119c664: !SpawnerPerSecond + LoopCondition: Looping + Delay: {X: 0.0, Y: 0.0} + Duration: {X: 1.0, Y: 1.0} + SpawnCount: 2.0 + Initializers: + b87817a4f4eb8f4da445aa7de372392a: !InitialPositionSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + ScaleUniform: 1.0 + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + PositionMin: {X: 0.0, Y: 3.0, Z: 0.0} + PositionMax: {X: 0.0, Y: 3.0, Z: 0.0} + Interpolate: false + e3bcbc4bcc40d343b0827d807d5dbbe9: !InitialVelocitySeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: true + DisplayParticleScale: false + DisplayParticleScaleUniform: true + VelocityMin: {X: 0.0, Y: -1.0, Z: 0.0} + VelocityMax: {X: 0.0, Y: -1.0, Z: 0.0} + fe4bc073c575a2439d7e7b28bb5d7992: !InitialSizeSeed + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + SeedOffset: 0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: true + RandomSize: {X: 1.0, Y: 1.0} + Updaters: + 7eca96cfdfa6cc42ad13558374c11a03: !UpdaterColorOverTime + InheritPosition: true + Position: {X: 0.0, Y: 0.0, Z: 0.0} + InheritRotation: true + Rotation: {X: 0.0, Y: 0.0, Z: 0.0, W: 1.0} + InheritScale: true + Scale: {X: 1.0, Y: 1.0, Z: 1.0} + ScaleUniform: 1.0 + DisplayParticlePosition: false + DisplayParticleRotation: false + DisplayParticleScale: false + DisplayParticleScaleUniform: false + SamplerMain: !ComputeCurveSamplerColor4 + Curve: !ComputeAnimationCurveColor4 + KeyFrames: + 0da3819b07c7fb4e899de240d5c6e5cc: + Key: 0.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + 93c5881ab51bd34d84115845f7c08125: + Key: 0.2 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + TangentType: Linear + e38410fbc5e204449e9ca1150535550b: + Key: 0.8 + Value: {R: 1.0, G: 1.0, B: 1.0, A: 1.0} + TangentType: Linear + 0b0b632e86733a4498a18a182fc903b7: + Key: 1.0 + Value: {R: 0.0, G: 0.0, B: 0.0, A: 0.0} + TangentType: Linear + SamplerOptional: null + SeedOffset: 0 diff --git a/VFXPackage/Resources/Models/Muzzleflashmodel.fbx b/VFXPackage/Resources/Models/Muzzleflashmodel.fbx new file mode 100644 index 0000000..4971ed0 --- /dev/null +++ b/VFXPackage/Resources/Models/Muzzleflashmodel.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:706074e7a885ba5e5e5f1f0092b65d897236e6445ef2cbe965e29bb1bf5d585c +size 28016 diff --git a/VFXPackage/Resources/Textures/Aura01.png b/VFXPackage/Resources/Textures/Aura01.png new file mode 100644 index 0000000..3c2cd68 --- /dev/null +++ b/VFXPackage/Resources/Textures/Aura01.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a08add7ecdf16a975ed32601dff99941631f60b1c1d67123424a8d4c86896108 +size 68456 diff --git a/VFXPackage/Resources/Textures/Bonfire/FRB001.alphaOnly.png b/VFXPackage/Resources/Textures/Bonfire/FRB001.alphaOnly.png new file mode 100644 index 0000000..17329d1 --- /dev/null +++ b/VFXPackage/Resources/Textures/Bonfire/FRB001.alphaOnly.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a304084a10eec2c0c62f684caa92c5c42d5c3ad0f0c24a028e5b6fa58f42119 +size 1141652 diff --git a/VFXPackage/Resources/Textures/Bonfire/FRB001.png b/VFXPackage/Resources/Textures/Bonfire/FRB001.png new file mode 100644 index 0000000..e4ae1ad --- /dev/null +++ b/VFXPackage/Resources/Textures/Bonfire/FRB001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdccf5d08f2e9f1284fe8423d68d31d67c6f38bb0d075b055fdd49ebeeb2a592 +size 1913637 diff --git a/VFXPackage/Resources/Textures/Bonfire/FRB001.rgbOnly.png b/VFXPackage/Resources/Textures/Bonfire/FRB001.rgbOnly.png new file mode 100644 index 0000000..6643152 --- /dev/null +++ b/VFXPackage/Resources/Textures/Bonfire/FRB001.rgbOnly.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:359ff4777735afea01ff137bca8f3677521423b1506bbc1cd36b4627b5c21afa +size 1373378 diff --git a/VFXPackage/Resources/Textures/BulletHole.png b/VFXPackage/Resources/Textures/BulletHole.png new file mode 100644 index 0000000..24cd3e5 --- /dev/null +++ b/VFXPackage/Resources/Textures/BulletHole.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12cb3a8389cc65f002e1a64c0be7629f9819d0501ae39d9b478f37a9940f22ec +size 32265 diff --git a/VFXPackage/Resources/Textures/Bullettrail01.png b/VFXPackage/Resources/Textures/Bullettrail01.png new file mode 100644 index 0000000..c037bd8 --- /dev/null +++ b/VFXPackage/Resources/Textures/Bullettrail01.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22a4599053ed86125deb70e475f1748158344ff8c6dcc3bed7e91bdfd22b1c7b +size 28487 diff --git a/VFXPackage/Resources/Textures/Explosion/EXP001.alphaOnly.png b/VFXPackage/Resources/Textures/Explosion/EXP001.alphaOnly.png new file mode 100644 index 0000000..3f26c7c --- /dev/null +++ b/VFXPackage/Resources/Textures/Explosion/EXP001.alphaOnly.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:646ec596e6f02a4ca50710ed775189f62f7ae45dedc7b91277c3bef628c89e8b +size 1743940 diff --git a/VFXPackage/Resources/Textures/Explosion/EXP001.png b/VFXPackage/Resources/Textures/Explosion/EXP001.png new file mode 100644 index 0000000..eac2c61 --- /dev/null +++ b/VFXPackage/Resources/Textures/Explosion/EXP001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03417b2e2ba3ce389ab22a0436eddc0aade9d7e606c6cec8ebcae4d2c2c9196c +size 2593399 diff --git a/VFXPackage/Resources/Textures/Explosion/EXP001.rgbOnly.png b/VFXPackage/Resources/Textures/Explosion/EXP001.rgbOnly.png new file mode 100644 index 0000000..6d97fbd --- /dev/null +++ b/VFXPackage/Resources/Textures/Explosion/EXP001.rgbOnly.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:924ce9b20eb19659e7caaf07432ed83cc1182b01ab25350f21ff8b5f43c86249 +size 1726399 diff --git a/VFXPackage/Resources/Textures/Flame/FIR001.alphaOnly.png b/VFXPackage/Resources/Textures/Flame/FIR001.alphaOnly.png new file mode 100644 index 0000000..f57f501 --- /dev/null +++ b/VFXPackage/Resources/Textures/Flame/FIR001.alphaOnly.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccdc0c442c3448e34a6c99327a71e47d210ec87d67641a30d2f320a7bfc31d9d +size 2203946 diff --git a/VFXPackage/Resources/Textures/Flame/FIR001.png b/VFXPackage/Resources/Textures/Flame/FIR001.png new file mode 100644 index 0000000..3e1afa5 --- /dev/null +++ b/VFXPackage/Resources/Textures/Flame/FIR001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:303ba283800d1b83a1cfb15d9a497e11cbd5f9755b0df6d3459646a64a7586aa +size 3425489 diff --git a/VFXPackage/Resources/Textures/Flame/FIR001.rgbOnly.png b/VFXPackage/Resources/Textures/Flame/FIR001.rgbOnly.png new file mode 100644 index 0000000..965d857 --- /dev/null +++ b/VFXPackage/Resources/Textures/Flame/FIR001.rgbOnly.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5e64fb6f484cead03845c1700f52105a735c81baeb833f6a840a8105f6aad49 +size 2062731 diff --git a/VFXPackage/Resources/Textures/Gradation01.png b/VFXPackage/Resources/Textures/Gradation01.png new file mode 100644 index 0000000..081e06f --- /dev/null +++ b/VFXPackage/Resources/Textures/Gradation01.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e59b92fc435091fdf1f3584fbcf726699feed764345ed848abff3d8a612f3699 +size 68456 diff --git a/VFXPackage/Resources/Textures/Hit01.png b/VFXPackage/Resources/Textures/Hit01.png new file mode 100644 index 0000000..70770d8 --- /dev/null +++ b/VFXPackage/Resources/Textures/Hit01.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bce37aaba5858d83adcaeafc5a26a522df046ec0407e38a934af502bbd033447 +size 68456 diff --git a/VFXPackage/Resources/Textures/LensFlare01.png b/VFXPackage/Resources/Textures/LensFlare01.png new file mode 100644 index 0000000..8619e88 --- /dev/null +++ b/VFXPackage/Resources/Textures/LensFlare01.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e6f22c4909c791be8401103bcd7df655a57cf0d4142e222a611491bc514c09d +size 11891 diff --git a/VFXPackage/Resources/Textures/Maya/EXP001.fxExpFire.ma b/VFXPackage/Resources/Textures/Maya/EXP001.fxExpFire.ma new file mode 100644 index 0000000..c8638cc --- /dev/null +++ b/VFXPackage/Resources/Textures/Maya/EXP001.fxExpFire.ma @@ -0,0 +1,8984 @@ +//Maya ASCII 2015 scene +//Name: EXP001.fxExpFire.ma +//Last modified: Wed, Apr 27, 2016 03:22:10 PM +//Codeset: 932 +requires maya "2015"; +requires -nodeType "mentalrayFramebuffer" -nodeType "mentalrayOptions" -nodeType "mentalrayGlobals" + -nodeType "mentalrayItemsList" -dataType "byteArray" "Mayatomr" "2015.0 - 3.12.1.18 "; +requires -nodeType "VRaySettingsNode" -dataType "vrayFloatVectorData" -dataType "vrayFloatVectorData" + -dataType "vrayIntData" "vrayformaya" "3.30.01"; +requires -nodeType "ffxDyna" -nodeType "ffxParticleSource" -nodeType "ffxWarpsHandle" + -nodeType "ffxTurbulenceShader" -dataType "ffxMeshData" "FumeFX" "FumeFX3.5.8-2014_07_30-PTxihnQcZP3aiJoqdo5F"; +requires "mtorsubdiv" "1.1"; +requires "maxwell" "1.6.4"; +requires "TurtleForMaya80" "4.0.0.6"; +currentUnit -l centimeter -a degree -t ntsc; +fileInfo "application" "maya"; +fileInfo "product" "Maya 2015"; +fileInfo "version" "2015"; +fileInfo "cutIdentifier" "201503261530-955654"; +fileInfo "osv" "Microsoft Windows 7 Business Edition, 64-bit Windows 7 Service Pack 1 (Build 7601)\n"; +createNode transform -s -n "persp"; + setAttr ".v" no; + setAttr ".t" -type "double3" 0.87971114742846179 31.994752962092896 63.927842269272247 ; + setAttr ".r" -type "double3" 1.4616473430105124 1082.6000000004924 6.2184222939993913e-018 ; +createNode camera -s -n "perspShape" -p "persp"; + setAttr -k off ".v" no; + setAttr ".rnd" no; + setAttr ".fl" 31.794661288881883; + setAttr ".coi" 66.934678294512096; + setAttr ".imn" -type "string" "persp"; + setAttr ".den" -type "string" "persp_depth"; + setAttr ".man" -type "string" "persp_mask"; + setAttr ".tp" -type "double3" 5.8078202362411453 0 0 ; + setAttr ".hc" -type "string" "viewSet -p %camera"; +createNode transform -s -n "top"; + setAttr ".v" no; + setAttr ".t" -type "double3" 0 100.1 0 ; + setAttr ".r" -type "double3" -89.999999999999986 0 0 ; +createNode camera -s -n "topShape" -p "top"; + setAttr -k off ".v" no; + setAttr ".rnd" no; + setAttr ".coi" 100.1; + setAttr ".ow" 30; + setAttr ".imn" -type "string" "top"; + setAttr ".den" -type "string" "top_depth"; + setAttr ".man" -type "string" "top_mask"; + setAttr ".hc" -type "string" "viewSet -t %camera"; + setAttr ".o" yes; +createNode transform -s -n "front"; + setAttr ".v" no; + setAttr ".t" -type "double3" 0 0 100.1 ; +createNode camera -s -n "frontShape" -p "front"; + setAttr -k off ".v" no; + setAttr ".rnd" no; + setAttr ".coi" 100.1; + setAttr ".ow" 30; + setAttr ".imn" -type "string" "front"; + setAttr ".den" -type "string" "front_depth"; + setAttr ".man" -type "string" "front_mask"; + setAttr ".hc" -type "string" "viewSet -f %camera"; + setAttr ".o" yes; +createNode transform -s -n "side"; + setAttr ".v" no; + setAttr ".t" -type "double3" 100.1 58.173602664197816 -1.118723128157656 ; + setAttr ".r" -type "double3" 0 89.999999999999986 0 ; +createNode camera -s -n "sideShape" -p "side"; + setAttr -k off ".v" no; + setAttr ".rnd" no; + setAttr ".coi" 100.1; + setAttr ".ow" 54.870004973590852; + setAttr ".imn" -type "string" "side"; + setAttr ".den" -type "string" "side_depth"; + setAttr ".man" -type "string" "side_mask"; + setAttr ".hc" -type "string" "viewSet -s %camera"; + setAttr ".o" yes; +createNode transform -n "fxExpFire_A"; +createNode transform -n "fxExpFire_obj" -p "fxExpFire_A"; + setAttr ".t" -type "double3" 0 31.071821146227229 0 ; +createNode mesh -n "fxExpFire_objShape" -p "fxExpFire_obj"; + setAttr -k off ".v"; + setAttr ".vir" yes; + setAttr ".vif" yes; + setAttr ".pv" -type "double2" 0.50000017881393433 0.20000001788139343 ; + setAttr ".uvst[0].uvsn" -type "string" "map1"; + setAttr ".cuvs" -type "string" "map1"; + setAttr ".dcc" -type "string" "Ambient+Diffuse"; + setAttr ".covm[0]" 0 1 1; + setAttr ".cdvm[0]" 0 1 1; + setAttr ".sdt" 0; + setAttr ".ugsdt" no; +createNode pointEmitter -n "fxEpxFire_emitter" -p "fxExpFire_obj"; + setAttr ".emt" 2; + setAttr ".sro" no; + setAttr -l on ".urpp"; + setAttr ".spd" 50; + setAttr ".srnd" 7; + setAttr ".tspd" 0.075; +createNode transform -n "fxExpFire_particle" -p "fxExpFire_A"; +createNode particle -n "fxExpFire_particleShape" -p "fxExpFire_particle"; + addAttr -s false -ci true -sn "lifespanPP" -ln "lifespanPP" -dt "doubleArray"; + addAttr -ci true -h true -sn "lifespanPP0" -ln "lifespanPP0" -dt "doubleArray"; + addAttr -ci true -sn "lifespan" -ln "lifespan" -at "double"; + addAttr -is true -ci true -sn "colorAccum" -ln "colorAccum" -min 0 -max 1 -at "bool"; + addAttr -is true -ci true -sn "useLighting" -ln "useLighting" -min 0 -max 1 -at "bool"; + addAttr -is true -ci true -sn "pointSize" -ln "pointSize" -dv 2 -min 1 -max 60 -at "long"; + addAttr -is true -ci true -sn "normalDir" -ln "normalDir" -dv 2 -min 1 -max 3 -at "long"; + addAttr -s false -ci true -sn "radiusPP" -ln "radiusPP" -dt "doubleArray"; + addAttr -ci true -h true -sn "radiusPP0" -ln "radiusPP0" -dt "doubleArray"; + addAttr -s false -ci true -sn "ageNormalized" -ln "ageNormalized" -dt "doubleArray"; + addAttr -ci true -h true -sn "ageNormalized0" -ln "ageNormalized0" -dt "doubleArray"; + addAttr -is true -ci true -sn "spriteTwist" -ln "spriteTwist" -min -180 -max 180 + -at "float"; + addAttr -is true -ci true -sn "spriteScaleX" -ln "spriteScaleX" -dv 1 -at "double"; + addAttr -is true -ci true -sn "spriteScaleY" -ln "spriteScaleY" -dv 1 -at "double"; + addAttr -is true -ci true -sn "spriteNum" -ln "spriteNum" -dv 1 -at "long"; + addAttr -s false -ci true -sn "opacityPP" -ln "opacityPP" -dt "doubleArray"; + addAttr -ci true -h true -sn "opacityPP0" -ln "opacityPP0" -dt "doubleArray"; + setAttr -k off ".v"; + setAttr ".gf" -type "Int32Array" 0 ; + setAttr -s 2 ".ifc"; + setAttr ".pos0" -type "vectorArray" 0 ; + setAttr ".vel0" -type "vectorArray" 0 ; + setAttr ".acc0" -type "vectorArray" 0 ; + setAttr ".mas0" -type "doubleArray" 0 ; + setAttr ".id0" -type "doubleArray" 0 ; + setAttr ".bt0" -type "doubleArray" 0 ; + setAttr ".ag0" -type "doubleArray" 0 ; + setAttr ".lfm" 3; + setAttr ".lfr" 0.15; + setAttr ".irbx" -type "string" ""; + setAttr ".irax" -type "string" ""; + setAttr ".icx" -type "string" ".O[0] = rand(0.3, 0.7);"; + setAttr ".chw" 128; + setAttr -s 2 ".ppfd"; + setAttr ".lifespanPP0" -type "doubleArray" 0 ; + setAttr -k on ".lifespan" 0.1; + setAttr -k on ".colorAccum"; + setAttr -k on ".useLighting"; + setAttr -k on ".pointSize" 3; + setAttr -k on ".normalDir"; + setAttr ".radiusPP0" -type "doubleArray" 0 ; + setAttr ".ageNormalized0" -type "doubleArray" 0 ; + setAttr ".opacityPP0" -type "doubleArray" 0 ; +createNode transform -n "fxExpFire_fields" -p "fxExpFire_A"; +createNode dragField -n "dragField1" -p "fxExpFire_fields"; + setAttr ".t" -type "double3" 2.240287343166532 30.434168005968985 -0.4874514710997877 ; + setAttr ".mag" 5; + setAttr ".fc[0]" 0 1 1; + setAttr ".amag[0]" 0 1 1; + setAttr ".crad[0]" 0 1 1; +createNode volumeAxisField -n "volumeAxisField1" -p "fxExpFire_fields"; + setAttr ".t" -type "double3" 0 30.141267899004838 0 ; + setAttr ".s" -type "double3" 16.966666620674658 16.966666620674658 16.966666620674658 ; + setAttr ".mag" 4; + setAttr -k off ".apv"; + setAttr ".vol" 3; + setAttr -k off ".vex"; + setAttr ".fc[0]" 0 1 1; + setAttr ".amag[0]" 0 1 1; + setAttr ".crad[0]" 0 1 1; + setAttr ".afa" 0; + setAttr ".alx" 1.5; + setAttr ".trb" 1.5; + setAttr ".tf" -type "double3" 3 3 3 ; +createNode transform -n "group" -p "fxExpFire_A"; +createNode place3dTexture -n "place3dTexture2" -p "group"; + setAttr ".t" -type "double3" 0 24.641267899004838 0 ; +createNode place3dTexture -n "place3dTexture1" -p "group"; + setAttr ".t" -type "double3" 0 24.641267899004838 0 ; +createNode transform -n "fumeFX_A"; + setAttr ".t" -type "double3" 0.00040905880744546153 19.765919301834444 0 ; +createNode ffxDyna -n "fumeFX_AShape" -p "fumeFX_A"; + setAttr -k off ".v"; + setAttr ".vir" yes; + setAttr ".vif" yes; + setAttr ".vss" 248; + setAttr ".ppopath" -type "string" "Y:/IG/proj/XEF/cache/ffxCache/EXP/001/fxExpFire/EXP001.fxExpFireRe21.v27_fumeFX_A/EXP001.fxExpFireRe21.v27_fumeFX_A_pp..fxd"; + setAttr ".wopath" -type "string" "Y:/IG/proj/XEF/cache/ffxCache/EXP/001/fxExpFire/EXP001.fxExpFireRe21.v27_fumeFX_A/EXP001.fxExpFireRe21.v27_fumeFX_A_wt..fxd"; + setAttr ".sp" 0.070000000298023224; + setAttr ".wid" 40; + setAttr ".len" 40; + setAttr ".hgt" 50; + setAttr ".awid" 17.079999923706055; + setAttr ".alen" 16.799999237060547; + setAttr ".ahgt" 16.659999847412109; + setAttr ".acenter" -type "float3" -0.68000031 11.34 -0.64999962 ; + setAttr ".endfr" 128; + setAttr ".pef" 128; + setAttr ".vptupd" 3; + setAttr ".opath" -type "string" "Y:/IG/proj/XEF/cache/ffxCache/EXP/001/fxExpFire/EXP001.fxExpFireRe21.v27_fumeFX_A/EXP001.fxExpFireRe21.v27_fumeFX_A..fxd"; + setAttr ".ropath" -type "string" "Y:/IG/proj/XEF/cache/ffxCache/EXP/001/fxExpFire/EXP001.fxExpFireRe21.v27_fumeFX_A/EXP001.fxExpFireRe21.v27_fumeFX_A.0026.fxd"; + setAttr ".iopa" -type "string" "Y:/IG/proj/XEF/cache/ffxCache/EXP/001/fxExpFire/EXP001.fxExpFireRe21.v27_fumeFX_A/EXP001.fxExpFireRe21.v27_fumeFX_A..fim"; + setAttr ".pt_im" -type "string" "X:/IG/proj/XEF/cache/ffxCache/FRB/001/fxBonFire/FRB001.fxBonFire.v28_fumeFX_A/FRB001.fxBonFire.v28_fumeFX_A.0026.fim"; + setAttr ".maxiter" 300; + setAttr ".maxsimsteps" 2; + setAttr ".adv" 1; + setAttr ".advstride" 3; + setAttr ".vort" 0.85000002384185791; + setAttr ".xturb" 0.019999999552965164; + setAttr ".tnoisedet" 2.2000000476837158; + setAttr ".tnoisefrms" 5; + setAttr ".fuelbuoy" -0.25; + setAttr ".brate" 13; + setAttr ".bratevar" 0.30000001192092896; + setAttr ".heatprod" 50; + setAttr ".firecrtssmoke" yes; + setAttr ".smokedens" 0.15000000596046448; + setAttr ".tempbasedfuel" yes; + setAttr ".tempthres" 0.05000000074505806; + setAttr ".smokebuoy" 0.05000000074505806; + setAttr ".tempbuoy" 0.079999998211860657; + setAttr ".tempdissip" 4; + setAttr ".tempdiff" 0.029999999329447746; + setAttr ".wfire" no; + setAttr ".wsmoke" no; + setAttr ".wfuel" no; + setAttr ".ppce" 150; + setAttr ".vp_red" 3; + setAttr ".sh_brig" 0.80000001192092896; + setAttr ".sh_fro" 15; + setAttr ".sh_frg" 1.3999999761581421; + setAttr ".sh_smn" 0.0099999997764825821; + setAttr ".sh_smx" 35; + setAttr ".sh_sac" -type "float3" 0.178 0.178 0.178 ; + setAttr ".sh_scs" yes; + setAttr ".sh_srs" yes; + setAttr ".sh_flc" -type "float3" 1 0.13483334 0 ; + setAttr ".sh_flo" 1.8686869144439697; + setAttr ".sh_flv" 2.4261603355407715; + setAttr ".sh_sjt" 20; + setAttr ".sh_msdms" yes; + setAttr ".sh_msmd" 8; + setAttr ".sh_msfs" 3; + setAttr ".sh_msf" 1; + setAttr -s 14 ".sh_fi_cl_tb"; + setAttr ".sh_fi_cl_tb[0].sh_fi_cl_tbp" 0.11502029746770859; + setAttr ".sh_fi_cl_tb[1].sh_fi_cl_tbcv" -type "float3" 0.0238485 0.0124322 0 ; + setAttr ".sh_fi_cl_tb[2].sh_fi_cl_tbp" 0.075778082013130188; + setAttr ".sh_fi_cl_tb[2].sh_fi_cl_tbcv" -type "float3" 1 0.47191668 0 ; + setAttr ".sh_fi_cl_tb[3].sh_fi_cl_tbp" 0.15561570227146149; + setAttr ".sh_fi_cl_tb[3].sh_fi_cl_tbcv" -type "float3" 1 0.47191668 0 ; + setAttr ".sh_fi_cl_tb[4].sh_fi_cl_tbp" 0.6062246561050415; + setAttr ".sh_fi_cl_tb[5].sh_fi_cl_tbp" 0.33558863401412964; + setAttr ".sh_fi_cl_tb[5].sh_fi_cl_tbcv" -type "float3" 0.0060000001 0.0028315 0 ; + setAttr ".sh_fi_cl_tb[6].sh_fi_cl_tbp" 0.89580512046813965; + setAttr ".sh_fi_cl_tb[6].sh_fi_cl_tbcv" -type "float3" 0.0224785 0.010608 0 ; + setAttr ".sh_fi_cl_tb[7].sh_fi_cl_tbp" 0.50744247436523438; + setAttr ".sh_fi_cl_tb[7].sh_fi_cl_tbcv" -type "float3" 1 0.64044994 0 ; + setAttr ".sh_fi_cl_tb[8].sh_fi_cl_tbp" 0.42489850521087646; + setAttr ".sh_fi_cl_tb[8].sh_fi_cl_tbcv" -type "float3" 0.044 0.023271598 0 ; + setAttr ".sh_fi_cl_tb[9].sh_fi_cl_tbp" 0.20838971436023712; + setAttr ".sh_fi_cl_tb[9].sh_fi_cl_tbcv" -type "float3" 0.833 0.47733676 0 ; + setAttr ".sh_fi_cl_tb[10].sh_fi_cl_tbp" 0.81596750020980835; + setAttr ".sh_fi_cl_tb[10].sh_fi_cl_tbcv" -type "float3" 1 0.64090335 0.31999999 ; + setAttr ".sh_fi_cl_tb[11].sh_fi_cl_tbp" 0.047361299395561218; + setAttr ".sh_fi_cl_tb[11].sh_fi_cl_tbcv" -type "float3" 0.17200001 0.040583402 0 ; + setAttr ".sh_fi_cl_tb[12].sh_fi_cl_tbp" 0.070365361869335175; + setAttr ".sh_fi_cl_tb[12].sh_fi_cl_tbcv" -type "float3" 0.0915749 0.0253013 0 ; + setAttr ".sh_fi_cl_tb[13].sh_fi_cl_tbp" 0.058186739683151245; + setAttr ".sh_fi_cl_tb[13].sh_fi_cl_tbcv" -type "float3" 0.827586 0.39055201 0 ; + setAttr -s 5 ".sh_fi_op_tb[0:4]" 0 0.31491712 1 0.11008231 0.75414366 + 1 0.17695473 0.40055248 1 0.99130434 0 1 0.80144036 0.42817679 1; + setAttr -s 7 ".sh_sm_cl_tb"; + setAttr ".sh_sm_cl_tb[3].sh_sm_cl_tbp" 0.73207038640975952; + setAttr ".sh_sm_cl_tb[3].sh_sm_cl_tbcv" -type "float3" 0.1 0.1 0.1 ; + setAttr ".sh_sm_cl_tb[4].sh_sm_cl_tbcv" -type "float3" 0.033 0.02957955 0.025574999 ; + setAttr ".sh_sm_cl_tb[5].sh_sm_cl_tbp" 0.30434799194335938; + setAttr ".sh_sm_cl_tb[5].sh_sm_cl_tbcv" -type "float3" 0.050000001 0.047200002 0.047200002 ; + setAttr ".sh_sm_cl_tb[6].sh_sm_cl_tbp" 0.055480379611253738; + setAttr ".sh_sm_cl_tb[6].sh_sm_cl_tbcv" -type "float3" 0.0049999999 0.0049999999 + 0.0049999999 ; + setAttr ".sh_sm_cl_tb[7].sh_sm_cl_tbp" 1; + setAttr ".sh_sm_cl_tb[7].sh_sm_cl_tbcv" -type "float3" 0.1 0.1 0.1 ; + setAttr ".sh_sm_cl_tb[8].sh_sm_cl_tbp" 0.40869599580764771; + setAttr ".sh_sm_cl_tb[8].sh_sm_cl_tbcv" -type "float3" 0.071999997 0.042911995 0.042911995 ; + setAttr ".sh_sm_cl_tb[9].sh_sm_cl_tbp" 0.53991901874542236; + setAttr -s 2 ".sh_sm_op_tb[0:1]" 0 0.60000002 1 1 1 1; + setAttr -s 256 ".sh_fi_cl_ar"; + setAttr ".sh_fi_cl_ar[0:165]" -type "float3" 0.0238485 0.0124322 0 0.036115613 + 0.014763151 0 0.048382722 0.017094102 0 0.060649835 0.019425053 0 0.072916947 0.021756005 + 0 0.085184053 0.024086956 0 0.097451173 0.026417907 0 0.10971828 0.028748859 0 0.12198539 + 0.03107981 0 0.13425249 0.033410762 0 0.14651962 0.035741709 0 0.15878671 0.038072661 + 0 0.17105384 0.040403616 0 0.39117163 0.15758282 0 0.62866086 0.28436068 0 0.7891016 + 0.37145385 0 0.55210286 0.25384155 0 0.31510413 0.13622926 0 0.12898064 0.043691345 + 0 0.78714347 0.36726856 0 0.93238676 0.44000885 0 0.83245438 0.39284912 0 0.73252201 + 0.34568936 0 0.63258958 0.29852957 0 0.53265703 0.25136974 0 0.4327246 0.20420995 + 0 0.33279222 0.15705019 0 0.23285985 0.10989045 0 0.13292748 0.062730692 0 0.032995045 + 0.015570912 0 0.064706072 0.030535875 0 0.16130736 0.076123632 0 0.25790864 0.12171139 + 0 0.35450995 0.16729915 0 0.45111123 0.21288691 0 0.5477125 0.25847468 0 0.64431381 + 0.30406243 0 0.74091512 0.3496502 0 0.83751637 0.39523795 0 0.93411767 0.4408257 + 0 0.99605381 0.47204477 0 0.98364425 0.47244754 0 0.97123468 0.47285026 0 0.95882517 + 0.47325307 0 0.94641554 0.47365576 0 0.93400604 0.47405857 0 0.92159647 0.47446132 + 0 0.90918696 0.47486407 0 0.89677733 0.47526684 0 0.88436776 0.47566962 0 0.8719582 + 0.47607234 0 0.85954869 0.47647512 0 0.84713912 0.47687787 0 0.83472955 0.47728065 + 0 0.81105697 0.46474656 0 0.78556037 0.45011747 0 0.76006383 0.43548837 0 0.73456722 + 0.42085928 0 0.70907068 0.40623021 0 0.68357402 0.39160112 0 0.65807748 0.37697202 + 0 0.63258088 0.36234292 0 0.60708433 0.3477138 0 0.58158773 0.3330847 0 0.55609125 + 0.31845564 0 0.53059459 0.30382654 0 0.5050981 0.28919747 0 0.47960141 0.27456835 + 0 0.4541049 0.25993928 0 0.42860827 0.24531016 0 0.40311176 0.23068109 0 0.37761515 + 0.216052 0 0.35211858 0.20142291 0 0.32662201 0.1867938 0 0.30112544 0.17216471 0 + 0.27562886 0.15753561 0 0.25013226 0.14290653 0 0.22463569 0.12827742 0 0.1991391 + 0.11364834 0 0.17364253 0.099019237 0 0.14814596 0.084390149 0 0.12264937 0.069761053 + 0 0.097152792 0.055131961 0 0.071656205 0.040502865 0 0.046159633 0.025873771 0 0.020663053 + 0.011244675 0 0.0067089759 0.0032128561 0 0.0083775446 0.0041103745 0 0.010046112 + 0.0050078928 0 0.01171468 0.0059054112 0 0.013383249 0.0068029296 0 0.015051816 0.0077004479 + 0 0.016720384 0.0085979663 0 0.018388953 0.0094954837 0 0.02005752 0.010393002 0 + 0.021726089 0.011290521 0 0.023394668 0.012188046 0 0.025063237 0.013085565 0 0.026731806 + 0.013983083 0 0.028400373 0.0148806 0 0.030068943 0.015778119 0 0.03173751 0.016675638 + 0 0.033406079 0.017573155 0 0.035074644 0.018470673 0 0.036743216 0.019368192 0 0.038411781 + 0.020265711 0 0.04008035 0.021163229 0 0.041748915 0.022060746 0 0.043417487 0.022958266 + 0 0.073562413 0.042356618 0 0.11898087 0.07167805 0 0.16439933 0.10099947 0 0.20981777 + 0.13032091 0 0.25523624 0.15964234 0 0.30065468 0.18896377 0 0.34607315 0.21828519 + 0 0.39149159 0.24760662 0 0.43691003 0.27692807 0 0.48232847 0.30624944 0 0.52774692 + 0.33557087 0 0.57316536 0.3648923 0 0.61858386 0.39421377 0 0.6640023 0.4235352 0 + 0.70942074 0.4528566 0 0.75483924 0.48217803 0 0.80025768 0.51149946 0 0.84567612 + 0.5408209 0 0.89109457 0.57014233 0 0.93651301 0.59946376 0 0.98193145 0.62878513 + 0 0.97609413 0.62513942 0 0.93639493 0.5997141 0 0.89669579 0.57428879 0 0.85699666 + 0.54886347 0 0.81729752 0.52343816 0 0.77759838 0.49801284 0 0.73789918 0.4725875 + 0 0.69820011 0.44716221 0 0.65850091 0.42173687 0 0.61880177 0.39631155 0 0.57910264 + 0.37088624 0 0.5394035 0.34546095 0 0.49970436 0.32003564 0 0.46000516 0.29461029 + 0 0.42030603 0.26918498 0 0.38060689 0.24375966 0 0.34090775 0.21833435 0 0.30120862 + 0.19290905 0 0.26150948 0.16748373 0 0.22181028 0.14205839 0 0.18211114 0.11663307 + 0 0.14241201 0.091207765 0 0.10271287 0.06578245 0 0.063013732 0.040357143 0 0.023314595 + 0.014931832 0 0.0077166138 0.0049456037 0.0024693164 0.026413644 0.016928593 0.0084523661 + 0.045110676 0.028911583 0.014435416 0.063807704 0.040894572 0.020418465 0.082504734 + 0.05287756 0.026401514 0.10120177 0.064860553 0.032384563 0.1198988 0.076843537 0.038367614 + 0.13859583 0.088826537 0.044350665 0.15729286 0.10080952 0.050333712 0.1759899 0.11279251 + 0.056316767 0.19468692 0.1247755 0.062299814; + setAttr ".sh_fi_cl_ar[166:255]" 0.21338396 0.13675849 0.068282865 0.23208098 + 0.14874148 0.074265912 0.25077802 0.16072448 0.080248967 0.26947504 0.17270745 0.086232014 + 0.28817207 0.18469045 0.092215061 0.30686912 0.19667345 0.098198116 0.32556614 0.20865643 + 0.10418116 0.34426317 0.22063942 0.11016421 0.36296019 0.2326224 0.11614726 0.38165721 + 0.24460539 0.1221303 0.40035427 0.2565884 0.12811336 0.41905129 0.26857138 0.13409641 + 0.43774831 0.28055435 0.14007945 0.45644534 0.29253736 0.14606251 0.47514239 0.30452034 + 0.15204556 0.49383941 0.31650335 0.1580286 0.51253647 0.32848635 0.16401167 0.53123349 + 0.34046933 0.16999471 0.54993051 0.35245231 0.17597777 0.56862754 0.36443529 0.18196081 + 0.58732456 0.37641829 0.18794386 0.60602158 0.38840127 0.1939269 0.62471861 0.40038425 + 0.19990996 0.64341563 0.41236722 0.20589299 0.66211271 0.42435026 0.21187606 0.68080974 + 0.43633324 0.2178591 0.69950706 0.44831643 0.22384225 0.71820408 0.4602994 0.2298253 + 0.7369011 0.47228238 0.23580834 0.75559813 0.48426539 0.2417914 0.77429515 0.49624836 + 0.24777444 0.79299217 0.50823134 0.25375748 0.8116892 0.52021432 0.25974053 0.83038622 + 0.5321973 0.26572359 0.8490833 0.54418033 0.27170664 0.86778033 0.55616331 0.2776897 + 0.88647735 0.56814629 0.28367275 0.90517437 0.58012927 0.2896558 0.9238714 0.5921123 + 0.29563883 0.94256842 0.60409528 0.30162188 0.96126544 0.61607826 0.30760494 0.97996247 + 0.62806123 0.31358799 0.99865955 0.64004427 0.31957105 0.95542723 0.61216331 0.30540872 + 0.90741205 0.58120364 0.28969055 0.85939693 0.55024397 0.27397236 0.81138176 0.51928431 + 0.2582542 0.76336652 0.48832461 0.24253601 0.7153514 0.45736501 0.22681785 0.66733617 + 0.42640531 0.21109965 0.61932099 0.39544564 0.19538148 0.57130587 0.36448598 0.17966332 + 0.52329063 0.33352625 0.16394512 0.47527546 0.30256662 0.14822695 0.42726031 0.27160695 + 0.13250877 0.37924513 0.2406473 0.1167906 0.33122995 0.20968762 0.10107242 0.28321481 + 0.17872797 0.085354254 0.23519957 0.14776826 0.069636054 0.18718441 0.1168086 0.053917885 + 0.13916925 0.085848935 0.038199712 0.091154084 0.054889273 0.022481536 0.043138914 + 0.023929613 0.0067633628 0.0224785 0.010608 0 0.0224785 0.010608 0 0.0224785 0.010608 + 0 0.0224785 0.010608 0 0.0224785 0.010608 0 0.0224785 0.010608 0 0.0224785 0.010608 + 0 0.0224785 0.010608 0 0.0224785 0.010608 0 0.0224785 0.010608 0 0.0224785 0.010608 + 0 0.0224785 0.010608 0 0.0224785 0.010608 0 0.0224785 0.010608 0 0.0224785 0.010608 + 0 0.0224785 0.010608 0 0.0224785 0.010608 0 0.0224785 0.010608 0 0.0224785 0.010608 + 0 0.0224785 0.010608 0 0.0224785 0.010608 0 0.0224785 0.010608 0 0.0224785 0.010608 + 0 0.0224785 0.010608 0 0.0224785 0.010608 0 0.0224785 0.010608 0 0.0224785 0.010608 + 0; + setAttr -s 256 ".sh_fi_op_ar[0:255]" 0.31491712 0.33056411 0.34621111 + 0.3618581 0.37750506 0.39315209 0.40879908 0.42444608 0.44009304 0.45574003 0.47138703 + 0.48703402 0.50268102 0.51832801 0.53397501 0.549622 0.56526899 0.58091599 0.59656298 + 0.61220998 0.62785697 0.64350396 0.6591509 0.67479789 0.69044495 0.706092 0.72173893 + 0.73738593 0.75303292 0.73488015 0.71414471 0.6934092 0.6726737 0.6519382 0.6312027 + 0.6104672 0.58973175 0.56899625 0.54826075 0.52752531 0.5067898 0.48605436 0.46531883 + 0.44458339 0.42384788 0.40311238 0.40070453 0.40087801 0.40105149 0.40122494 0.40139845 + 0.40157187 0.40174538 0.40191883 0.40209231 0.40226579 0.40243927 0.40261272 0.4027862 + 0.40295967 0.40313315 0.4033066 0.40348011 0.40365356 0.40382704 0.40400049 0.40417397 + 0.40434745 0.40452093 0.40469441 0.40486783 0.40504134 0.40521485 0.40538827 0.40556175 + 0.40573522 0.4059087 0.40608215 0.40625563 0.40642908 0.40660259 0.40677607 0.40694952 + 0.40712297 0.40729648 0.40746996 0.40764338 0.40781689 0.40799037 0.40816382 0.4083373 + 0.40851077 0.40868425 0.4088577 0.40903115 0.40920466 0.40937811 0.40955159 0.4097251 + 0.40989852 0.410072 0.41024548 0.41041896 0.41059244 0.41076589 0.41093937 0.41111284 + 0.41128632 0.41145977 0.41163325 0.41180673 0.41198018 0.41215366 0.41232714 0.41250062 + 0.4126741 0.41284755 0.41302103 0.41319454 0.41336799 0.41354144 0.41371492 0.41388839 + 0.41406187 0.41423532 0.4144088 0.41458228 0.41475576 0.41492921 0.41510269 0.41527617 + 0.41544965 0.41562313 0.41579658 0.41597006 0.41614354 0.41631699 0.41649047 0.41666394 + 0.41683742 0.4170109 0.41718435 0.41735783 0.41753131 0.41770476 0.41787824 0.41805172 + 0.41822517 0.41839865 0.41857213 0.41874558 0.41891906 0.41909254 0.41926605 0.41943949 + 0.41961297 0.41978645 0.4199599 0.42013338 0.42030686 0.42048031 0.42065379 0.42082727 + 0.42100072 0.4211742 0.42134768 0.42152113 0.42169461 0.42186809 0.42204159 0.42221504 + 0.42238852 0.422562 0.42273545 0.42290893 0.42308241 0.42325586 0.42342934 0.42360282 + 0.42377627 0.42394975 0.42412323 0.42429668 0.42447016 0.42464364 0.42481709 0.42499056 + 0.42516407 0.42533755 0.425511 0.42568448 0.42585796 0.42603144 0.42620489 0.42637837 + 0.42655185 0.4267253 0.42689878 0.42707226 0.42724571 0.42741919 0.42759266 0.42776614 + 0.42793959 0.42811307 0.42258105 0.41373724 0.4048934 0.39604959 0.38720575 0.37836191 + 0.3695181 0.36067426 0.35183042 0.34298661 0.33414277 0.32529894 0.3164551 0.30761129 + 0.29876745 0.28992364 0.28107977 0.27223599 0.26339212 0.25454831 0.24570447 0.23686066 + 0.22801681 0.21917301 0.21032916 0.20148532 0.1926415 0.18379767 0.17495385 0.16611001 + 0.15726618 0.14842236 0.13957852 0.1307347 0.12189087 0.11304704 0.10420322 0.095359385 + 0.086515561 0.077671729 0.068827905 0.059984073 0.051140245 0.042296417 0.033452589 + 0.024608759 0.015764931 0.0069211028 0 0 0; + setAttr -s 256 ".sh_sm_cl_ar"; + setAttr ".sh_sm_cl_ar[0:165]" -type "float3" 0.033 0.02957955 0.025574999 + 0.031020852 0.027842171 0.024120679 0.029041702 0.026104793 0.022666356 0.027062552 + 0.024367414 0.021212036 0.025083402 0.022630036 0.019757714 0.023104256 0.020892659 + 0.018303394 0.021125106 0.019155281 0.016849073 0.019145958 0.017417902 0.015394753 + 0.017166808 0.015680524 0.013940431 0.015187661 0.013943148 0.012486111 0.013208512 + 0.012205769 0.01103179 0.011229363 0.010468391 0.009577469 0.0092502125 0.0087310113 + 0.0081231473 0.0072710649 0.0069936342 0.006668827 0.0052919155 0.0052562556 0.0052145058 + 0.0056045055 0.0055668917 0.0055668917 0.0063136001 0.0062318649 0.0062318649 0.0070226938 + 0.0068968376 0.0068968376 0.0077317883 0.0075618103 0.0075618103 0.008440882 0.008226783 + 0.008226783 0.009149977 0.0088917557 0.0088917557 0.0098590711 0.0095567293 0.0095567293 + 0.010568164 0.010221701 0.010221701 0.011277258 0.010886675 0.010886675 0.011986354 + 0.011551648 0.011551648 0.012695448 0.012216622 0.012216622 0.013404544 0.012881594 + 0.012881594 0.014113638 0.013546567 0.013546567 0.014822731 0.014211539 0.014211539 + 0.015531826 0.014876512 0.014876512 0.016240921 0.015541486 0.015541486 0.016950015 + 0.016206458 0.016206458 0.017659109 0.016871432 0.016871432 0.018368203 0.017536405 + 0.017536405 0.019077297 0.018201377 0.018201377 0.019786393 0.018866351 0.018866351 + 0.020495486 0.019531323 0.019531323 0.02120458 0.020196294 0.020196294 0.021913674 + 0.020861268 0.020861268 0.022622768 0.02152624 0.02152624 0.023331862 0.022191213 + 0.022191213 0.024040956 0.022856185 0.022856185 0.02475005 0.023521159 0.023521159 + 0.025459144 0.024186132 0.024186132 0.02616824 0.024851104 0.024851104 0.026877334 + 0.025516078 0.025516078 0.027586427 0.02618105 0.02618105 0.028295521 0.026846025 + 0.026846025 0.029004617 0.027510997 0.027510997 0.029713713 0.028175971 0.028175971 + 0.030422807 0.028840942 0.028840942 0.031131903 0.029505918 0.029505918 0.031840995 + 0.03017089 0.03017089 0.032550089 0.030835863 0.030835863 0.033259183 0.031500835 + 0.031500835 0.033968281 0.03216581 0.03216581 0.034677371 0.032830782 0.032830782 + 0.035386469 0.033495758 0.033495758 0.03609556 0.034160726 0.034160726 0.036804654 + 0.034825698 0.034825698 0.037513748 0.035490673 0.035490673 0.038222842 0.036155645 + 0.036155645 0.03893194 0.036820617 0.036820617 0.03964103 0.037485588 0.037485588 + 0.040350128 0.038150564 0.038150564 0.041059218 0.038815536 0.038815536 0.041768316 + 0.039480511 0.039480511 0.042477407 0.040145479 0.040145479 0.043186501 0.040810455 + 0.040810455 0.043895595 0.041475426 0.041475426 0.044604689 0.042140398 0.042140398 + 0.045313787 0.042805374 0.042805374 0.046022881 0.043470345 0.043470345 0.046731975 + 0.044135317 0.044135317 0.047441069 0.044800293 0.044800293 0.048150163 0.045465264 + 0.045465264 0.048859257 0.046130236 0.046130236 0.049568348 0.046795208 0.046795208 + 0.050323498 0.047136948 0.047136948 0.051150292 0.046975799 0.046975799 0.051977091 + 0.046814647 0.046814647 0.052803885 0.046653498 0.046653498 0.05363068 0.046492349 + 0.046492349 0.054457478 0.046331197 0.046331197 0.055284269 0.046170045 0.046170045 + 0.056111068 0.0460089 0.0460089 0.056937866 0.045847747 0.045847747 0.057764657 0.045686595 + 0.045686595 0.058591455 0.045525447 0.045525447 0.059418246 0.045364294 0.045364294 + 0.060245048 0.045203149 0.045203149 0.061071843 0.045041993 0.045041993 0.061898638 + 0.044880845 0.044880845 0.062725432 0.044719696 0.044719696 0.063552231 0.044558547 + 0.044558547 0.064379029 0.044397391 0.044397391 0.065205827 0.044236243 0.044236243 + 0.066032626 0.044075094 0.044075094 0.066859417 0.043913942 0.043913942 0.067686215 + 0.043752793 0.043752793 0.068513013 0.043591641 0.043591641 0.069339812 0.043430492 + 0.043430492 0.070166603 0.04326934 0.04326934 0.070993394 0.043108188 0.043108188 + 0.071820192 0.042947043 0.042947043 0.070316225 0.041908469 0.041908469 0.068164527 + 0.040626053 0.040626053 0.066012822 0.03934364 0.03934364 0.063861117 0.038061224 + 0.038061224 0.061709411 0.036778808 0.036778808 0.059557714 0.035496395 0.035496395 + 0.057406008 0.034213979 0.034213979 0.055254307 0.032931563 0.032931563 0.053102605 + 0.03164915 0.03164915 0.0509509 0.030366736 0.030366736 0.048799198 0.029084321 0.029084321 + 0.046647497 0.027801907 0.027801907 0.044495795 0.026519492 0.026519492 0.042344093 + 0.025237078 0.025237078 0.040192388 0.023954663 0.023954663 0.038040686 0.022672249 + 0.022672249 0.035888985 0.021389833 0.021389833 0.033737283 0.020107418 0.020107418 + 0.031585582 0.018825004 0.018825004 0.029433878 0.017542589 0.017542589 0.027282177 + 0.016260175 0.016260175 0.025130473 0.014977762 0.014977762 0.022978771 0.013695347 + 0.013695347 0.020827064 0.01241293 0.01241293 0.018675363 0.011130515 0.011130515 + 0.016523659 0.0098481011 0.0098481011 0.014371958 0.0085656857 0.0085656857 0.012220255 + 0.0072832718 0.0072832718 0.010068553 0.0060008573 0.0060008573 0.007916851 0.0047184429 + 0.0047184429 0.0057651484 0.0034360283 0.0034360283 0.0036134461 0.0021536136 0.0021536136 + 0.0014617437 0.00087119924 0.00087119924 0.00065442116 0.00065442116 0.00065442116 + 0.0026952957 0.0026952957 0.0026952957 0.0047361702 0.0047361702 0.0047361702 0.0067770453 + 0.0067770453 0.0067770453 0.0088179195 0.0088179195 0.0088179195 0.010858795 0.010858795 + 0.010858795 0.012899669 0.012899669 0.012899669 0.014940544 0.014940544 0.014940544 + 0.016981419 0.016981419 0.016981419 0.019022292 0.019022292 0.019022292 0.021063168 + 0.021063168 0.021063168 0.023104042 0.023104042 0.023104042 0.025144918 0.025144918 + 0.025144918 0.027185792 0.027185792 0.027185792 0.029226664 0.029226664 0.029226664 + 0.031267539 0.031267539 0.031267539 0.033308413 0.033308413 0.033308413 0.035349291 + 0.035349291 0.035349291 0.037390165 0.037390165 0.037390165 0.039431039 0.039431039 + 0.039431039 0.041471913 0.041471913 0.041471913 0.043512788 0.043512788 0.043512788 + 0.045553662 0.045553662 0.045553662 0.047594536 0.047594536 0.047594536 0.04963541 + 0.04963541 0.04963541 0.051676285 0.051676285 0.051676285 0.053717162 0.053717162 + 0.053717162 0.055758037 0.055758037 0.055758037; + setAttr ".sh_sm_cl_ar[166:255]" 0.057798911 0.057798911 0.057798911 0.059839785 + 0.059839785 0.059839785 0.061880659 0.061880659 0.061880659 0.063921534 0.063921534 + 0.063921534 0.065962411 0.065962411 0.065962411 0.068003282 0.068003282 0.068003282 + 0.070044152 0.070044152 0.070044152 0.07208503 0.07208503 0.07208503 0.074125908 + 0.074125908 0.074125908 0.076166779 0.076166779 0.076166779 0.078207657 0.078207657 + 0.078207657 0.080248527 0.080248527 0.080248527 0.082289405 0.082289405 0.082289405 + 0.084330283 0.084330283 0.084330283 0.086371154 0.086371154 0.086371154 0.088412032 + 0.088412032 0.088412032 0.090452902 0.090452902 0.090452902 0.09249378 0.09249378 + 0.09249378 0.094534658 0.094534658 0.094534658 0.096575528 0.096575528 0.096575528 + 0.098616406 0.098616406 0.098616406 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 + 0.1 0.1 0.1 0.099999994 0.099999994 0.099999994 0.1 0.1 0.1 0.10000001 0.10000001 + 0.10000001 0.1 0.1 0.1 0.1 0.1 0.1 0.099999994 0.099999994 0.099999994 0.1 0.1 0.1 + 0.1 0.1 0.1 0.1 0.1 0.1 0.10000001 0.10000001 0.10000001 0.10000001 0.10000001 0.10000001 + 0.1 0.1 0.1 0.1 0.1 0.1 0.099999994 0.099999994 0.099999994 0.1 0.1 0.1 0.10000001 + 0.10000001 0.10000001 0.1 0.1 0.1 0.10000001 0.10000001 0.10000001 0.099999994 0.099999994 + 0.099999994 0.1 0.1 0.1 0.099999994 0.099999994 0.099999994 0.099999994 0.099999994 + 0.099999994 0.10000001 0.10000001 0.10000001 0.099999994 0.099999994 0.099999994 + 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.10000001 0.10000001 0.10000001 0.1 0.1 0.1 + 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 + 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.10000001 0.10000001 0.10000001 + 0.10000001 0.10000001 0.10000001 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 + 0.1 0.1 0.1 0.10000001 0.10000001 0.10000001 0.10000001 0.10000001 0.10000001 0.1 + 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 + 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 + 0.1 0.1; + setAttr -s 256 ".sh_sm_op_ar[0:255]" 0.60000002 0.60156864 0.60313725 + 0.60470593 0.60627455 0.60784316 0.60941178 0.61098039 0.61254907 0.61411768 0.6156863 + 0.61725491 0.61882353 0.6203922 0.62196082 0.62352943 0.62509805 0.62666667 0.62823534 + 0.62980396 0.63137257 0.63294119 0.6345098 0.63607848 0.63764709 0.63921571 0.64078432 + 0.64235294 0.64392161 0.64549023 0.64705884 0.64862746 0.65019608 0.65176475 0.65333337 + 0.65490198 0.6564706 0.65803921 0.65960789 0.6611765 0.66274512 0.66431373 0.66588235 + 0.66745102 0.66901964 0.67058825 0.67215687 0.67372555 0.67529416 0.67686272 0.67843139 + 0.68000001 0.68156868 0.6831373 0.68470591 0.68627453 0.6878432 0.68941176 0.69098043 + 0.69254899 0.69411767 0.69568628 0.69725496 0.69882357 0.70039219 0.7019608 0.70352948 + 0.70509803 0.70666671 0.70823526 0.70980394 0.71137255 0.71294123 0.71450984 0.71607846 + 0.71764708 0.71921575 0.72078431 0.72235298 0.72392154 0.72549021 0.72705883 0.7286275 + 0.73019612 0.73176473 0.73333335 0.73490202 0.73647058 0.73803926 0.73960781 0.74117649 + 0.7427451 0.74431378 0.74588239 0.74745101 0.74901962 0.7505883 0.75215685 0.75372553 + 0.75529414 0.75686276 0.75843143 0.75999999 0.76156867 0.76313728 0.7647059 0.76627457 + 0.76784313 0.7694118 0.77098042 0.77254903 0.77411771 0.77568626 0.77725494 0.77882355 + 0.78039217 0.78196084 0.7835294 0.78509808 0.78666669 0.78823531 0.78980398 0.79137254 + 0.79294121 0.79450983 0.79607844 0.79764712 0.79921567 0.80078435 0.80235296 0.80392158 + 0.80549026 0.80705881 0.80862749 0.8101961 0.81176472 0.81333339 0.81490195 0.81647062 + 0.81803924 0.81960785 0.82117653 0.82274508 0.82431376 0.82588238 0.82745099 0.82901967 + 0.83058822 0.8321569 0.83372551 0.83529413 0.83686274 0.83843136 0.84000003 0.84156865 + 0.84313726 0.84470588 0.8462745 0.84784317 0.84941179 0.8509804 0.85254902 0.85411763 + 0.85568631 0.85725492 0.85882354 0.86039215 0.86196077 0.86352944 0.86509806 0.86666667 + 0.86823529 0.86980391 0.87137258 0.8729412 0.87450981 0.87607843 0.87764704 0.87921572 + 0.88078433 0.88235295 0.88392156 0.88549018 0.88705885 0.88862747 0.89019608 0.8917647 + 0.89333332 0.89490199 0.89647061 0.89803922 0.89960784 0.90117651 0.90274513 0.90431374 + 0.90588236 0.90745103 0.90901965 0.91058826 0.91215688 0.9137255 0.91529417 0.91686279 + 0.9184314 0.92000002 0.92156863 0.92313731 0.92470592 0.92627454 0.92784315 0.92941177 + 0.93098044 0.93254906 0.93411767 0.93568629 0.93725491 0.93882358 0.9403922 0.94196081 + 0.94352943 0.94509804 0.94666672 0.94823533 0.94980395 0.95137256 0.95294118 0.95450985 + 0.95607847 0.95764709 0.9592157 0.96078432 0.96235299 0.96392161 0.96549022 0.96705884 + 0.96862745 0.97019613 0.97176474 0.97333336 0.97490197 0.97647059 0.97803926 0.97960788 + 0.9811765 0.98274511 0.98431373 0.9858824 0.98745102 0.98901963 0.99058825 0.99215686 + 0.99372554 0.99529415 0.99686277 0.99843138 1; + setAttr ".popath" -type "string" "x:/IG/proj/TEST/seq/KTY/004/fxExpFire/data/fumePreview.avi"; +instanceable -a 0; +createNode transform -n "ffxMRVol1" -p "fumeFX_A"; + setAttr ".ovdt" 2; + setAttr ".ove" yes; + setAttr -l on ".t"; + setAttr -l on ".r"; + setAttr -l on ".s"; +createNode renderBox -n "ffxMRVolShape1" -p "ffxMRVol1"; + setAttr -k off ".v"; + setAttr ".rt" 1; + setAttr ".vf" 0; +createNode transform -n "ffxWarpsHandle1" -p "fumeFX_A"; +createNode ffxWarpsHandle -n "ffxWarpsHandleShape1" -p "ffxWarpsHandle1"; + setAttr -k off ".v"; + setAttr ".tw" yes; + setAttr ".covm[0]" 0 1 1; + setAttr ".cdvm[0]" 0 1 1; +createNode transform -n "ffxParticleSource_A"; + setAttr ".t" -type "double3" -29.549781577880157 24.641267899004838 0 ; +createNode ffxParticleSource -n "ffxParticleSource_AProxy" -p "ffxParticleSource_A"; + setAttr -k off ".v"; + setAttr ".rdea" yes; + setAttr ".rdsv" 0.44999998807907104; + setAttr ".rdaf[1]" 1 1 1; + setAttr -s 2 ".vbaf[0:1]" 0 0.0099999998 1 1 1 1; + setAttr -s 2 ".fbaf[0:1]" 0 0.0099999998 1 1 1 1; + setAttr -s 2 ".tbaf[0:1]" 0 0.0099999998 1 1 1 1; + setAttr ".sbsv" 7.5; + setAttr -s 2 ".sbaf[0:1]" 0 0.0099999998 1 1 1 1; + setAttr -s 2 ".cbaf"; + setAttr ".cbaf[0].cbafcv" -type "float3" 1 1 1 ; + setAttr ".cbaf[1].cbafp" 1; + setAttr ".cbaf[1].cbafcv" -type "float3" 1 1 1 ; + setAttr ".is" 6; + setAttr ".rd" 0.75; + setAttr ".vamt" 0.60000002384185791; + setAttr ".tamt" 330; + setAttr ".samt" 6.5; + setAttr ".sv" 20; + setAttr ".rdv" 20; + setAttr -s 2 ".rdf[0:1]" 0 1 1 1 0.0099999998 1; +instanceable -a 0; +createNode transform -n "allCamera:EXP001"; + addAttr -ci true -sn "resWidth" -ln "resWidth" -at "long"; + addAttr -ci true -sn "resHeight" -ln "resHeight" -at "long"; + setAttr ".resWidth" 1024; + setAttr ".resHeight" 1024; +createNode transform -n "allCamera:frame_1_128" -p "allCamera:EXP001"; +createNode transform -n "allCamera:cam" -p "allCamera:EXP001"; +createNode camera -n "allCamera:camShape" -p "allCamera:cam"; + setAttr -k off ".v"; + setAttr ".cap" -type "double2" 1.4173 0.9449 ; + setAttr ".ff" 0; + setAttr ".ovr" 1.3; + setAttr ".coi" 99.250589942850468; + setAttr ".imn" -type "string" "cam1"; + setAttr ".den" -type "string" "cam1_depth"; + setAttr ".man" -type "string" "cam1_mask"; + setAttr ".dr" yes; + setAttr ".dst" yes; +createNode transform -n "taiki:all"; +createNode transform -n "taiki:taiki" -p "taiki:all"; + setAttr ".t" -type "double3" 0 24.641267899004838 0 ; +createNode mesh -n "taiki:taikiShape" -p "taiki:taiki"; + setAttr -k off ".v"; + setAttr ".vir" yes; + setAttr ".vif" yes; + setAttr ".pv" -type "double2" 0.5 0.80669501423835754 ; + setAttr ".uvst[0].uvsn" -type "string" "map1"; + setAttr -s 2796 ".uvst[0].uvsp"; + setAttr ".uvst[0].uvsp[0:249]" -type "float2" 0.708004 0.70800298 0.50000101 + 0.79416001 0.50000101 0.74268597 0.671606 0.67160499 0.29199901 0.70800298 0.32839701 + 0.67160499 0.205842 0.5 0.25731599 0.5 0.29199901 0.29199699 0.32839701 0.32839501 + 0.50000101 0.20584001 0.50000101 0.257314 0.708004 0.29199699 0.671606 0.32839501 + 0.79416198 0.5 0.742688 0.5 0.50000101 0.5 0.026961001 0.100332 0.026961001 0.018568 + 0.124577 0.018568 0.124577 0.100332 0.026961001 0.97916299 0.026961001 0.89739901 + 0.124577 0.89739901 0.124577 0.97916299 0.026961001 0.817931 0.026961001 0.74423403 + 0.124577 0.74423403 0.124577 0.817931 0.026961001 0.67053699 0.124577 0.67053699 + 0.026961001 0.582232 0.124577 0.582232 0.026961001 0.49886501 0.026961001 0.41549799 + 0.124577 0.41549799 0.124577 0.49886501 0.026961001 0.32719299 0.026961001 0.253497 + 0.124577 0.253497 0.124577 0.32719299 0.026961001 0.1798 0.124577 0.1798 0.95586097 + 0.56197703 0.89550102 0.58697999 0.89550102 0.56137198 0.93791902 0.54380202 0.83514202 + 0.561979 0.85308403 0.54380202 0.81014001 0.50161898 0.83551401 0.50138497 0.83514202 + 0.44126001 0.85308403 0.458967 0.89550102 0.41625801 0.89550102 0.44139701 0.95586002 + 0.441259 0.93791902 0.45896599 0.98086298 0.50161701 0.95548898 0.50138301 0.89550102 + 0.50134701 0.95525098 0.74331498 0.89550102 0.76806498 0.89550102 0.75043499 0.94294399 + 0.73078299 0.83575302 0.74331599 0.848059 0.730784 0.81100398 0.68356699 0.828408 + 0.68334198 0.83575302 0.62381798 0.848059 0.63590002 0.89550102 0.599069 0.89550102 + 0.61624902 0.95525002 0.62381798 0.94294298 0.63589901 0.97999901 0.68356502 0.96259397 + 0.68334103 0.89550102 0.68330097 0.95525098 0.37830999 0.89550102 0.40305999 0.89550102 + 0.38543001 0.94294298 0.365778 0.83575302 0.37831101 0.848059 0.36577901 0.81100398 + 0.318562 0.828408 0.31833699 0.83575302 0.25881299 0.848059 0.270895 0.89550102 0.234064 + 0.89550102 0.25124401 0.95525002 0.25881201 0.94294298 0.27089399 0.97999901 0.31856 + 0.96259397 0.31833601 0.89550102 0.31829599 0.127886 0.476886 0.128489 0.41718301 + 0.15161499 0.41411901 0.14964999 0.47040999 0.33458999 0.13846301 0.34006 0.16773599 + 0.30664501 0.173186 0.29356301 0.14166699 0.5 0.155931 0.424519 0.15526301 0.43130401 + 0.101426 0.5 0.094815999 0.111361 0.48251501 0.102062 0.42235899 0.080747999 0.48688301 + 0.068604998 0.43252099 0.25099999 0.119172 0.26966599 0.17471001 0.25099999 0.17469899 + 0.28833199 0.174721 0.27737999 0.138539 0.29356301 0.14166699 0.30664501 0.173186 + 0.068360001 0.48776099 0.054026 0.43677801 0.36816299 0.131908 0.37394699 0.16391 + 0.34006 0.16773599 0.33458999 0.13846301 0.5 0.056798 0.45440301 0.059316002 0.5 + 0.011954 0.034193002 0.39894 0.032203998 0.40503299 0.0079840003 0.40735799 0.0086399997 + 0.40076801 0.050276998 0.42316699 0.043949001 0.42493501 0.199058 0.220339 0.182172 + 0.225721 0.17738099 0.20158701 0.196183 0.198746 0.168281 0.22684699 0.166591 0.20274401 + 0.13582601 0.227791 0.13719299 0.203187 0.14638101 0.20308299 0.146883 0.228788 0.13804901 + 0.16204301 0.16119801 0.164297 0.13115001 0.170432 0.170056 0.16281299 0.191037 0.15559 + 0.082892001 0.16384999 0.084097996 0.15753099 0.092050001 0.15956099 0.090631999 + 0.165041 0.074979 0.223042 0.076378003 0.19604599 0.085346997 0.19499101 0.082730003 + 0.223286 0.048976 0.19863801 0.062799998 0.16593499 0.059675999 0.15799101 0.129384 + 0.20242 0.12575001 0.175473 0.037879001 0.198476 0.103261 0.16828001 0.104489 0.16285001 + 0.097934999 0.224255 0.099609002 0.195107 0.12629201 0.22772101 0.116496 0.25560099 + 0.088707998 0.25867599 0.097318999 0.240601 0.123023 0.241402 0.082787998 0.239784 + 0.073940001 0.252471 0.074643001 0.238268 0.089760996 0.24047001 0.080983996 0.25672999 + 0.098728001 0.161212 0.097251996 0.166614 0.093433 0.194747 0.091108002 0.223727 + 0.066207998 0.39591199 0.047215 0.43793499 0.101855 0.39829299 0.127918 0.40432301 + 0.055488002 0.48614901 0.148147 0.366734 0.149389 0.29113299 0.17093299 0.292317 + 0.18201301 0.367304 0.214828 0.235964 0.189915 0.244197 0.186037 0.237304 0.20777901 + 0.229232 0.225324 0.248767 0.193222 0.25962901 0.168909 0.243186 0.16905101 0.235789 + 0.195078 0.27157301 0.22822499 0.26069599 0.2307 0.27202299 0.194374 0.28147599 0.19356 + 0.29224801 0.196684 0.366844 0.234218 0.29558399 0.22845399 0.36175099 0.15096401 + 0.40522501 0.146035 0.252103 0.145013 0.26328099 0.133367 0.26365101 0.13402399 0.250882 + 0.114945 0.262862 0.13326 0.27113101 0.14605799 0.27175301 0.12922101 0.36596301 + 0.133678 0.29458499 0.191487 0.42065799 0.218934 0.41485101 0.193426 0.444143 0.133154 + 0.27860999 0.14822499 0.28181499 0.18085299 0.45779201 0.17816401 0.41919899 0.169994 + 0.271752 0.1708 0.285743 0.169194 0.262389 0.145413 0.242578 0.062880002 0.298915 + 0.048976 0.29442099 0.053799 0.27731201 0.067992002 0.28025901 0.102325 0.363967 + 0.018817 0.36411199 0.042776 0.36465299 0.111448 0.29982099 0.055528 0.26204801 0.071592003 + 0.26034501 0.058398001 0.235558 0.054083999 0.240989 0.050055001 0.232288 0.056023002 + 0.252065 0.079916999 0.30081999 0.069752999 0.36534101 0.055018999 0.36490101 0.069825999 + 0.30026299 0.050854001 0.401007 0.085974 0.265643 0.078914002 0.26165 0.084572002 + 0.28337801 0.113685 0.28260601 0.074845001 0.28259301 0.041311 0.221645; + setAttr ".uvst[0].uvsp[250:499]" 0.052565999 0.22379901 0.035239998 0.39707801 + 0.0087479996 0.399165 0.134304 0.241409 0.40514201 0.12055 0.41822299 0.110988 0.18085399 + 0.45779201 0.193426 0.444143 0.20021901 0.44859901 0.185307 0.464872 0.151049 0.083989002 + 0.16054 0.08422 0.16061001 0.091020003 0.149489 0.090202004 0.12819999 0.10383 0.1077 + 0.10638 0.10653 0.09973 0.12710001 0.096500002 0.16038001 0.097089998 0.17214 0.095720001 + 0.17133 0.099339999 0.15092801 0.119863 0.13403 0.12074 0.13423 0.10118 0.149435 + 0.096280999 0.13441999 0.092749998 0.159531 0.1182 0.17327 0.1147 0.1234 0.084279999 + 0.13352001 0.08585 0.10705 0.092649996 0.12807 0.12158 0.1098 0.12358 0.094439998 + 0.10606 0.076289997 0.103 0.075230002 0.092820004 0.094149999 0.1008 0.098269999 + 0.10024 0.099420004 0.1064 0.093560003 0.12298 0.099090002 0.12348 0.10416 0.10605 + 0.10545 0.1236 0.10308 0.09984 0.094070002 0.050560001 0.099569999 0.049855001 0.097000003 + 0.069399998 0.092479996 0.070370004 0.176265 0.07068 0.17498 0.086860001 0.16590001 + 0.067460001 0.15416899 0.064400002 0.13672499 0.065485001 0.11823 0.07745 0.12272 + 0.060024999 0.125835 0.061790001 0.12151 0.079680003 0.088349998 0.071419999 0.088610001 + 0.050889999 0.083230004 0.074589998 0.081694998 0.052864999 0.105675 0.050285 0.10188 + 0.068899997 0.111465 0.052354999 0.10587 0.069870003 0.095660001 0.030750001 0.095550001 + 0.02421 0.098459996 0.0232 0.10214 0.030309999 0.10667 0.087379999 0.10658 0.083999999 + 0.095710002 0.081820004 0.09426 0.085040003 0.093489997 0.08969 0.078939997 0.077880003 + 0.11014 0.071620002 0.11535 0.074929997 0.10667 0.081119999 0.10585 0.076289997 0.098250002 + 0.09144 0.09832 0.086860001 0.10273 0.092629999 0.10251 0.087729998 0.097379997 0.079070002 + 0.1 0.081150003 0.099129997 0.083849996 0.10334 0.080940001 0.10275 0.084559999 0.1006 + 0.077069998 0.098410003 0.077660002 0.1036 0.076339997 0.18961 0.04183 0.18413 0.038860001 + 0.19017 0.031380001 0.19208001 0.033640001 0.17952 0.035300002 0.18793 0.03035 0.14636 + 0.027519999 0.14838 0.02685 0.14805999 0.032469999 0.14501999 0.032109998 0.14997 + 0.02743 0.15058 0.031950001 0.13790999 0.02867 0.13926999 0.02898 0.14108001 0.03184 + 0.1383 0.032219999 0.13661 0.02915 0.13590001 0.031810001 0.17357001 0.044100001 + 0.17719001 0.04733 0.17126 0.050700001 0.079400003 0.022329999 0.085170001 0.021081001 + 0.087849997 0.02674 0.081069998 0.02785 0.091240004 0.01626 0.094169997 0.01425 0.096780002 + 0.02018 0.16546001 0.04727 0.171336 0.043294001 0.0977 0.020400001 0.092749998 0.023940001 + 0.088869996 0.03036 0.089230001 0.01863 0.17310999 0.040580001 0.17336001 0.04022 + 0.080159999 0.03114 0.17558999 0.035259999 0.177701 0.038011 0.18194 0.041979998 + 0.18708999 0.044810001 0.18155999 0.050330002 0.1894 0.046670001 0.18440001 0.052409999 + 0.17755 0.054499999 0.18117 0.057459999 0.082477003 0.017426001 0.077440001 0.018610001 + 0.193849 0.039198998 0.193556 0.032972001 0.19462 0.03249 0.194956 0.036033999 0.18802001 + 0.028525 0.18796299 0.029571 0.17738 0.03176 0.180939 0.029614 0.091499999 0.01078 + 0.088610001 0.01247 0.17738 0.03176 0.095509999 0.01349 0.095760003 0.0051000002 + 0.096639998 0.0055399998 0.09725 0.01302 0.086340003 0.01471 0.080119997 0.00728 + 0.078359999 0.00997 0.08258 0.00599 0.19099499 0.030439001 0.16237999 0.040199999 + 0.15729 0.044810001 0.15989099 0.038844999 0.16686 0.04411 0.16145 0.037039999 0.16162001 + 0.037020002 0.10811 0.023940001 0.10678 0.02351 0.10727 0.021779999 0.10771 0.022430001 + 0.10947 0.03167 0.10204 0.023870001 0.10196 0.018510001 0.10485 0.01784 0.1069 0.0165 + 0.099550001 0.01791 0.10774 0.01859 0.10923 0.01859 0.16543999 0.035659999 0.16267 + 0.03469 0.1646 0.029209999 0.16695 0.030540001 0.10411 0.01173 0.10614 0.01121 0.097800002 + 0.01749 0.17338 0.038989998 0.17262 0.038449999 0.10089 0.01271 0.16904999 0.037020002 + 0.17400999 0.032820001 0.17415 0.025830001 0.17452 0.02541 0.17583001 0.03311 0.17037 + 0.02437 0.17072 0.024700001 0.10029 0.00465 0.10094 0.0038000001 0.098520003 0.0054100002 + 0.17039999 0.03184 0.098190002 0.00367 0.17249 0.024870001 0.17253999 0.02441 0.15344 + 0.0394 0.157233 0.040273 0.14892 0.04487 0.15158001 0.039407 0.15200999 0.037919998 + 0.15244 0.037519999 0.11564 0.02696 0.11625 0.024879999 0.11641 0.024940001 0.11671 + 0.027589999 0.11666 0.022779999 0.11825 0.02372 0.11177 0.01918 0.11097 0.025560001 + 0.1147 0.01905 0.16080999 0.034230001 0.16249999 0.033969998 0.11631 0.01877 0.1577 + 0.034389999 0.15457 0.033750001 0.15457 0.031169999 0.15782 0.031539999 0.16119 0.03115 + 0.10858 0.016209999 0.11178 0.016589999 0.11486 0.01636 0.16291 0.03111 0.10724 0.01616 + 0.11675 0.01646 0.15291999 0.033459999 0.15282001 0.030889999 0.15184 0.031649999 + 0.15152 0.035349999 0.15057001 0.035399999 0.11866 0.020059999 0.11659 0.019540001 + 0.15662999 0.024250001 0.15854 0.023949999 0.10912 0.0096500004 0.11075 0.0097500002 + 0.11256 0.0094499998 0.11269 0.0087000001 0.15620001 0.023530001 0.16041 0.024630001 + 0.16114999 0.023700001 0.10821 0.0089699998 0.15859 0.022919999 0.11045 0.0081099998 + 0.13992999 0.045120001; + setAttr ".uvst[0].uvsp[500:749]" 0.14196999 0.038600001 0.14474501 0.040185999 + 0.12485 0.029619999 0.12519 0.029379999 0.12552001 0.03077 0.12297 0.032000002 0.12257 + 0.039489999 0.11706 0.034839999 0.116355 0.055555001 0.14885999 0.041540001 0.14322001 + 0.037470002 0.143566 0.037501998 0.14813 0.035969999 0.14503001 0.035500001 0.14343999 + 0.035440002 0.12335 0.024800001 0.12515999 0.02489 0.12063 0.02437 0.11882 0.03067 + 0.12139 0.02083 0.12424 0.02111 0.1237 0.01667 0.12614 0.02134 0.12324 0.017240001 + 0.1434 0.031629998 0.14598 0.02706 0.12013 0.01646 0.11962 0.01565 0.15041 0.02695 + 0.12158 0.01729 0.14831001 0.026419999 0.12159 0.01567 0.12721001 0.042599998 0.12987 + 0.0361 0.13214 0.037349999 0.13016 0.043900002 0.1274 0.034079999 0.1247 0.04115 + 0.13437 0.038249999 0.13891999 0.039620001 0.13348 0.04465 0.13856 0.035039999 0.14147 + 0.03461 0.13534001 0.03427 0.13345 0.03365 0.13175 0.032930002 0.13434 0.03114 0.1332 + 0.03036 0.12784 0.02891 0.12971 0.03131 0.13162 0.029270001 0.1301 0.0273 0.14300001 + 0.034230001 0.12699001 0.02712 0.12929 0.02572 0.13313 0.02754 0.13409001 0.02813 + 0.14232001 0.031339999 0.13299 0.025830001 0.13282999 0.026550001 0.13943 0.02833 + 0.13478 0.02802 0.13631999 0.02847 0.13406999 0.02674 0.13785 0.028100001 0.079580002 + 0.12182 0.17921001 0.070289999 0.17725 0.083120003 0.120025 0.05804 0.25512201 0.854577 + 0.28090799 0.83529598 0.34790501 0.95466501 0.34489799 0.992989 0.34947401 0.912269 + 0.299086 0.81742501 0.31659999 0.80131102 0.35404599 0.867621 0.288614 0.76835901 + 0.311526 0.76030701 0.25 0.77787298 0.26958799 0.77324897 0.33688301 0.78190702 0.339582 + 0.75 0.34780401 0.75519103 0.34829399 0.77804297 0.35982001 0.80046099 0.375312 0.77194202 + 0.37980801 0.79049301 0.359099 0.73512697 0.366539 0.73890102 0.25 0.71837902 0.268022 + 0.71668899 0.341167 0.707928 0.363199 0.706074 0.35898399 0.80895197 0.38981801 0.86517102 + 0.40667701 0.909904 0.431797 0.94637603 0.45893201 0.97854799 0.28653601 0.60175699 + 0.25099999 0.60268599 0.25099999 0.553029 0.30159801 0.55289602 0.25099999 0.51370001 + 0.284872 0.51289397 0.5 0.73697603 0.5 0.74835497 0.49473101 0.748941 0.48387301 + 0.73583901 0.489732 0.804492 0.47621101 0.76963598 0.49201301 0.78716898 0.41726601 + 0.71065903 0.39215899 0.71113998 0.418863 0.68333501 0.438503 0.68910801 0.47477901 + 0.65965903 0.47826701 0.668612 0.48760399 0.83349597 0.5 0.805718 0.5 0.83335698 + 0.44758099 0.80474901 0.468656 0.80462098 0.465639 0.83085698 0.44367301 0.82821798 + 0.49269199 0.77761197 0.5 0.77885598 0.446778 0.874053 0.41959801 0.85054302 0.5 + 0.893224 0.474709 0.88780099 0.41079599 0.78007698 0.443082 0.770657 0.400922 0.65758198 + 0.46623799 0.62544203 0.46888101 0.63751501 0.40595701 0.66579401 0.5 0.63271099 + 0.5 0.62040102 0.489674 0.71673799 0.5 0.71776801 0.47395799 0.57857001 0.5 0.575652 + 0.462165 0.77014703 0.5 0.78902298 0.5 0.65607202 0.5 0.66636097 0.076396003 0.73531199 + 0.084756002 0.83408803 0.075267002 0.82950902 0.060575001 0.74194902 0.049194001 + 0.66275901 0.057323001 0.66013199 0.058074001 0.670237 0.049965002 0.67622501 0.046471 + 0.623496 0.052829999 0.62215197 0.058433998 0.67809099 0.049472999 0.68450499 0.053263001 + 0.74484199 0.069145001 0.65670598 0.069870003 0.66387701 0.070793003 0.67154402 0.15911999 + 0.68100899 0.166005 0.68066299 0.158898 0.74305803 0.14845 0.74251199 0.106324 0.65926301 + 0.102697 0.61998498 0.119377 0.62396401 0.119222 0.65988898 0.090002999 0.65647697 + 0.079630002 0.619111 0.106216 0.67260599 0.090865999 0.66491598 0.119794 0.68308598 + 0.115073 0.73929101 0.104847 0.73738801 0.107127 0.68123698 0.15036701 0.68117899 + 0.13857201 0.74167001 0.20296501 0.67588699 0.188605 0.67491698 0.189579 0.66285801 + 0.20362601 0.66251802 0.147195 0.626531 0.151667 0.65643299 0.166945 0.62741399 0.16737901 + 0.66000301 0.17697801 0.67461699 0.167587 0.67613202 0.162404 0.67202801 0.152927 + 0.668616 0.194783 0.74415803 0.186536 0.74483001 0.188655 0.68420398 0.20135 0.68414599 + 0.171277 0.74575502 0.177095 0.68164003 0.19063 0.626095 0.204209 0.62344402 0.063816004 + 0.61940497 0.119627 0.672566 0.091986001 0.67648202 0.093838997 0.735349 0.16793901 + 0.85045201 0.16769899 0.85608703 0.15672299 0.85990101 0.154659 0.853854 0.145711 + 0.85559398 0.149114 0.86228102 0.1664 0.88219303 0.177314 0.87698299 0.18688001 0.88971198 + 0.17626899 0.89829499 0.14738201 0.88907802 0.15756799 0.88582999 0.165767 0.90540302 + 0.15202799 0.910676 0.142841 0.911964 0.13639 0.91839701 0.13877399 0.89306802 0.197715 + 0.91422701 0.19817001 0.905487 0.200683 0.90822703 0.14365201 0.93121803 0.138826 + 0.92145199 0.18498699 0.92990202 0.18458 0.930408 0.18198 0.92744899 0.184029 0.92614597 + 0.189055 0.91837198 0.20194601 0.93838102 0.196373 0.942168 0.199192 0.91812098 0.208969 + 0.935238 0.20724399 0.93582201 0.196227 0.91546202 0.215718 0.92150199 0.211807 0.92559999 + 0.20365 0.90232801 0.20575 0.90572703 0.206205 0.902089 0.20784099 0.90537202 0.193312 + 0.884794 0.196391 0.88300401 0.182732 0.85969901 0.187618 0.86901802 0.18492401 0.87188202 + 0.179176 0.86182499; + setAttr ".uvst[0].uvsp[750:999]" 0.170441 0.86621499 0.113864 0.87817699 0.129398 + 0.879143 0.129483 0.89534903 0.114599 0.89387703 0.173584 0.92499 0.18787301 0.91624999 + 0.127483 0.91164899 0.12881701 0.86476398 0.14119101 0.864546 0.138972 0.87759799 + 0.127178 0.92231798 0.118791 0.92304301 0.117325 0.91125 0.138521 0.92829001 0.13579901 + 0.92671299 0.098196998 0.94202602 0.096577004 0.93993199 0.099159002 0.93282801 0.099945001 + 0.93614799 0.101754 0.93579602 0.101304 0.93809402 0.194611 0.94363898 0.200307 0.94692701 + 0.19777501 0.94859898 0.205336 0.94334197 0.21008401 0.94126999 0.212106 0.94035 + 0.20317701 0.95132101 0.201157 0.95254999 0.21288 0.94569099 0.208415 0.94822198 + 0.214368 0.94477302 0.207692 0.95817298 0.20595901 0.95926702 0.212522 0.955338 0.21680599 + 0.95292997 0.218189 0.95210701 0.20989799 0.96168798 0.208243 0.96261197 0.214745 + 0.95912802 0.21885499 0.95647502 0.22026999 0.95535898 0.22605599 0.97215301 0.22295199 + 0.96356601 0.224686 0.96300697 0.226813 0.97206801 0.224308 0.97601002 0.223795 0.97515899 + 0.219638 0.97639298 0.220053 0.97584599 0.21346401 0.96962398 0.21474101 0.96836102 + 0.212579 0.96542102 0.21094599 0.96625298 0.21728 0.96322501 0.218586 0.96530002 + 0.22123501 0.96046102 0.22254699 0.95898902 0.16494399 0.93455899 0.167493 0.93313998 + 0.167694 0.93790102 0.167229 0.93836403 0.15165199 0.94247597 0.149675 0.94440401 + 0.148479 0.94098401 0.150511 0.93910301 0.158079 0.93784302 0.157196 0.93383098 0.168378 + 0.95667398 0.162513 0.95800698 0.154001 0.96032399 0.15614299 0.95972598 0.170551 + 0.95623302 0.157278 0.964145 0.154928 0.96501797 0.163385 0.96232802 0.169118 0.96101397 + 0.171331 0.960756 0.158271 0.96833599 0.15621801 0.96887302 0.164415 0.966842 0.170241 + 0.96532601 0.17195299 0.96485901 0.15987401 0.975227 0.158053 0.97570699 0.165898 + 0.973638 0.171472 0.97235501 0.17303 0.97200203 0.160713 0.97908199 0.15893599 0.97960001 + 0.16674601 0.977516 0.172244 0.976403 0.17386299 0.97614002 0.173365 0.993747 0.173806 + 0.98508298 0.17554501 0.98514098 0.174226 0.99424303 0.166769 0.99568999 0.161477 + 0.98757899 0.16285899 0.98698097 0.167284 0.99487901 0.170766 0.99637198 0.170571 + 0.99531901 0.16837101 0.98408997 0.161645 0.98318201 0.160065 0.98385298 0.167592 + 0.98153698 0.17316601 0.98092997 0.17489301 0.98065501 0.1893 0.95101398 0.183586 + 0.95336199 0.174806 0.929039 0.17733 0.95577002 0.175016 0.95643198 0.191431 0.950082 + 0.17941099 0.96099198 0.177215 0.96197599 0.18565901 0.95864302 0.19104899 0.95655698 + 0.193482 0.95545602 0.184939 0.97360301 0.186821 0.97791398 0.184846 0.97850698 0.182932 + 0.97426301 0.190603 0.97149903 0.19225 0.97578502 0.195709 0.96940601 0.197294 0.973827 + 0.19897901 0.97306001 0.197437 0.96868002 0.181427 0.96604103 0.179272 0.966757 0.187622 + 0.963853 0.193158 0.96140301 0.194931 0.96049201 0.19451401 0.99430799 0.188493 0.98711503 + 0.19018701 0.98659903 0.194791 0.99361402 0.199094 0.99322701 0.19950999 0.99442297 + 0.20230199 0.99057198 0.203086 0.99078703 0.200821 0.98234099 0.20238601 0.98170298 + 0.188512 0.98246503 0.194043 0.98038203 0.19511899 0.98259997 0.199111 0.97819 0.186719 + 0.98301798 0.20074099 0.97727603 0.209993 0.92723101 0.199518 0.91767299 0.218685 + 0.91789502 0.219441 0.91584098 0.21479701 0.92736101 0.212993 0.92954999 0.218027 + 0.92362797 0.220924 0.92044002 0.22238401 0.91891402 0.21703801 0.92967999 0.215665 + 0.931288 0.220322 0.92556202 0.223646 0.92216003 0.22463199 0.92095 0.222601 0.93419999 + 0.22105999 0.93505502 0.226299 0.93074399 0.229165 0.92686498 0.22975001 0.92563498 + 0.22459599 0.93599701 0.223456 0.93703502 0.227953 0.93241602 0.23110899 0.92876601 + 0.23203699 0.927854 0.240146 0.94226402 0.236534 0.93541598 0.237451 0.93439901 0.24078301 + 0.942083 0.239857 0.94504601 0.23913801 0.944552 0.23680601 0.94668502 0.236845 0.94610798 + 0.230188 0.94281 0.231038 0.94176197 0.232299 0.93681902 0.229479 0.93392599 0.233274 + 0.93110901 0.23453601 0.930641 0.226228 0.93949598 0.226998 0.93808401 0.127406 0.93696499 + 0.120426 0.93711001 0.120256 0.93483502 0.126873 0.93298799 0.135208 0.93502802 0.135418 + 0.93730402 0.138557 0.937361 0.138217 0.93512797 0.13484301 0.95838702 0.13573 0.95041502 + 0.13813999 0.950589 0.13661601 0.959113 0.128893 0.962506 0.128952 0.96385598 0.122769 + 0.95831001 0.121826 0.95047897 0.12809099 0.94947797 0.12792601 0.94651699 0.13592701 + 0.94666201 0.121816 0.94682002 0.121042 0.94180799 0.127884 0.94177997 0.135801 0.942083 + 0.13905799 0.94222999 0.138676 0.94668901 0.119866 0.95080602 0.119359 0.94703603 + 0.121816 0.94682002 0.121189 0.95842898 0.14495701 0.875875 0.151894 0.87354201 0.102663 + 0.94003999 0.10435 0.93876398 0.104872 0.94067401 0.102803 0.94090497 0.089212999 + 0.85166597 0.10009 0.85436302 0.099225 0.860659 0.088738002 0.85734397 0.106657 0.87695998 + 0.096276 0.878425 0.105694 0.86207801 0.107309 0.85506803 0.116683 0.85639799 0.115965 + 0.86446702 0.073407002 0.84662801 0.079002999 0.84849298 0.078143999 0.85329503 0.07209 + 0.85127902 0.074072003 0.86446398 0.084062003 0.86947399 0.068902001 0.86129802 0.108468 + 0.89461201 0.101152 0.89617598 0.069939002 0.93711197 0.080362 0.91954798 0.084806003 + 0.92556602 0.076081 0.940018; + setAttr ".uvst[0].uvsp[1000:1249]" 0.055716999 0.92547601 0.072131999 0.90794498 + 0.079218999 0.94669002 0.073535003 0.94431198 0.068046004 0.94135302 0.058013 0.93673301 + 0.057842001 0.93403101 0.061585002 0.937163 0.058256 0.937271 0.04947 0.924568 0.046312999 + 0.91872197 0.045894001 0.91259199 0.074824996 0.94753498 0.075260997 0.94762802 0.086864002 + 0.94450903 0.093994997 0.94703501 0.092439003 0.95111197 0.085423 0.94891 0.052933998 + 0.92883801 0.043494001 0.914563 0.042578999 0.90636897 0.040729001 0.908952 0.055041 + 0.88790101 0.062325001 0.89656001 0.066022001 0.87493902 0.062212002 0.872069 0.073991001 + 0.882581 0.081325002 0.89050901 0.052338 0.88480699 0.045788001 0.92276901 0.037811998 + 0.93660903 0.036860999 0.93537498 0.048898 0.94578201 0.048014998 0.94511598 0.041246001 + 0.90340298 0.039652001 0.906129 0.034712002 0.925511 0.031868 0.92120397 0.028750001 + 0.91544598 0.101578 0.91877198 0.091609001 0.93581402 0.091614 0.90198803 0.112513 + 0.912233 0.108445 0.91389799 0.114599 0.89387703 0.117325 0.91125 0.115048 0.92373103 + 0.111729 0.924559 0.118791 0.92304301 0.045708999 0.92069697 0.039822001 0.945687 + 0.042748 0.94179398 0.045857001 0.94899398 0.034139 0.94126701 0.037351999 0.94920802 + 0.041947 0.952245 0.031833 0.94532299 0.036630001 0.95850998 0.032710999 0.95609301 + 0.027512001 0.95246702 0.030985 0.95878899 0.034334999 0.961703 0.025214 0.95534003 + 0.027983001 0.96311098 0.022768 0.95913202 0.031312998 0.96529502 0.028508 0.96898198 + 0.02341 0.974684 0.019317999 0.973813 0.025008 0.96698397 0.016692 0.97009599 0.020305 + 0.96308798 0.046654999 0.949148 0.033085998 0.94013202 0.042856 0.952797 0.030692 + 0.94458199 0.037370998 0.95898598 0.026391 0.95167702 0.034885999 0.962152 0.024101 + 0.95472801 0.016373999 0.97052097 0.018847 0.97448802 0.023009 0.97513598 0.021454999 + 0.957995 0.018958 0.96170503 0.032225002 0.96564502 0.029788001 0.96909201 0.074767001 + 0.95906299 0.072828002 0.958372 0.094883002 0.95185602 0.096449003 0.947905 0.088151999 + 0.96389002 0.081435002 0.96166903 0.086714 0.9677 0.080216996 0.96574801 0.073415004 + 0.96357298 0.085167997 0.97128701 0.079154998 0.96934903 0.07265 0.96748 0.082672 + 0.97803199 0.077026002 0.97611398 0.071382999 0.97451502 0.081859 0.98191702 0.075882003 + 0.97996598 0.070013002 0.97835302 0.073298998 0.98774201 0.078682996 0.98960203 0.074325003 + 0.99687099 0.070678003 0.996535 0.067299999 0.99483198 0.067868002 0.98696101 0.080316998 + 0.98588097 0.074735999 0.98381901 0.068885997 0.98261797 0.090305001 0.96462899 0.088521004 + 0.968373 0.071696997 0.96283901 0.087181002 0.97206497 0.070781998 0.96682203 0.084679 + 0.978692 0.069541998 0.97392702 0.083687998 0.98252499 0.068346001 0.97795898 0.074221 + 0.99759001 0.070421003 0.99780101 0.067244999 0.99587399 0.080586001 0.99030101 0.082185999 + 0.98659402 0.067106001 0.98234701 0.066147998 0.98668802 0.069500998 0.95880699 0.067569003 + 0.957838 0.054405998 0.95166099 0.052797001 0.95105702 0.058777001 0.96048498 0.061395999 + 0.95490301 0.064873002 0.96314901 0.05192 0.95702398 0.051197998 0.97615302 0.053052001 + 0.97232902 0.058015998 0.97486699 0.056097001 0.97883499 0.045715999 0.97393298 0.047612 + 0.96995401 0.056740001 0.96473002 0.062252998 0.96739697 0.050776001 0.96197402 0.051860999 + 0.98714399 0.047063001 0.984622 0.049355999 0.980012 0.054106999 0.98308998 0.043802001 + 0.978019 0.041685998 0.98236197 0.047313001 0.99356401 0.043099001 0.99239397 0.039342001 + 0.98989999 0.066946998 0.96419603 0.0504 0.95628601 0.057509001 0.98006803 0.059599999 + 0.97570902 0.046169002 0.96936601 0.044174999 0.97350299 0.063929997 0.96848297 0.049082 + 0.961303 0.04259 0.99346101 0.046913002 0.99400598 0.039159998 0.99033701 0.053365 + 0.98830199 0.055511001 0.98440599 0.042102002 0.97749001 0.040178999 0.98191899 0.028252 + 0.92334503 0.031291001 0.92753601 0.025184 0.91766602 0.025986001 0.92447001 0.028667999 + 0.92861801 0.022668 0.91928601 0.022600001 0.93139601 0.020358 0.92761803 0.017111 + 0.92298698 0.017642001 0.929295 0.019924 0.93317598 0.014492 0.92470503 0.011376 + 0.92721403 0.014054 0.93208301 0.010255 0.934632 0.0078299996 0.93016601 0.016493 + 0.93522501 0.012445 0.937751 0.006664 0.94062698 0.0043279999 0.93833202 0.0033559999 + 0.93554997 0.028068 0.91386902 0.032157 0.92844403 0.035507001 0.926705 0.024564 + 0.91614503 0.029113 0.929627 0.022051999 0.91788399 0.023122 0.93229401 0.016251 + 0.92167699 0.020439999 0.93389797 0.013609 0.92338598 0.010699 0.92575502 0.0072889999 + 0.929115 0.01289 0.93849897 0.017298 0.935817 0.0060000001 0.94085097 0.0030139999 + 0.93595999 0.11079 0.93894303 0.110083 0.936189 0.115013 0.93521899 0.115644 0.93792498 + 0.117907 0.93757302 0.117582 0.935229 0.116573 0.94272202 0.112167 0.94404203 0.105976 + 0.94576401 0.117249 0.94757402 0.118769 0.94223601 0.113016 0.94849902 0.107056 0.95000499 + 0.118021 0.95130903 0.113946 0.95208699 0.108104 0.95347899 0.120099 0.959117 0.116349 + 0.96103799 0.110317 0.95948601 0.103921 0.94603002 0.106365 0.95394403 0.109453 0.96099502 + 0.117097 0.96392602 0.121042 0.94180799 0.105119 0.95052499 0.120426 0.93711001 0.120256 + 0.93483502 0.092041999 0.87420601 0.085219003 0.89363301 0.181035 0.84540802 0.18070699 + 0.85042 0.10583 0.92747998 0.0036319999 0.93878001 0.129813 0.856471 0.160511 0.87040901 + 0.145711 0.85559398 0.148104 0.83515102 0.15667 0.83393002 0.154659 0.853854 0.107309 + 0.85506803 0.10009 0.85436302 0.096547 0.83719099; + setAttr ".uvst[0].uvsp[1250:1499]" 0.104758 0.83908802 0.113543 0.840186 0.12633599 + 0.83885098 0.129813 0.856471 0.116683 0.85639799 0.182769 0.82109898 0.181035 0.84540802 + 0.16793901 0.85045201 0.174411 0.83075303 0.070846997 0.82511002 0.079002999 0.84849298 + 0.073407002 0.84662801 0.089212999 0.85166597 0.135847 0.836891 0.137045 0.856583 + 0.137045 0.856583 0.448493 0.53891897 0.49309099 0.536304 0.43079999 0.58338702 0.5 + 0.51463997 0.455542 0.50899601 0.40466899 0.37459999 0.440552 0.35821 0.44804701 + 0.43360299 0.416778 0.44255799 0.38488799 0.51627302 0.38018399 0.51559597 0.38848001 + 0.48485801 0.43463901 0.26182601 0.5 0.25973099 0.5 0.33173099 0.43832001 0.328219 + 0.32704201 0.30178601 0.35991499 0.29888901 0.37030399 0.38490799 0.33708 0.38794899 + 0.396777 0.45412001 0.37910101 0.40700001 0.105855 0.526968 0.110295 0.53736299 0.079706997 + 0.53676498 0.079031996 0.53163201 0.31940299 0.39412501 0.30877599 0.30609199 0.052990999 + 0.53213698 0.053619001 0.536677 0.043683998 0.536672 0.043593999 0.532722 0.40021399 + 0.35100999 0.25099999 0.46149501 0.280781 0.46108401 0.284872 0.51289397 0.25099999 + 0.51370001 0.5 0.43915999 0.5 0.36367899 0.27968001 0.44675401 0.25099999 0.448668 + 0.071411997 0.53469402 0.053619001 0.536677 0.052990999 0.53213698 0.069528997 0.52920598 + 0.390847 0.27828899 0.31060499 0.53540802 0.295697 0.51177001 0.29930499 0.51139599 + 0.31360701 0.52957898 0.098390996 0.571356 0.089048997 0.55405998 0.104343 0.55435902 + 0.077453002 0.55766499 0.057158999 0.559214 0.055388998 0.54794502 0.074432001 0.54618001 + 0.115361 0.58231097 0.13975599 0.56675297 0.14121 0.58938998 0.120328 0.562038 0.16216099 + 0.58150601 0.15799201 0.561589 0.17920899 0.55396903 0.187878 0.57041198 0.040465001 + 0.55882001 0.044888001 0.55918598 0.201924 0.55882698 0.044286001 0.54792899 0.040293001 + 0.54743099 0.295697 0.51177001 0.293697 0.45967501 0.29800299 0.45920601 0.29930499 + 0.51139599 0.20220201 0.54743499 0.25099999 0.339647 0.26479 0.332764 0.27858001 + 0.43242401 0.25099999 0.43584001 0.079706997 0.53676498 0.071411997 0.53469402 0.069528997 + 0.52920598 0.079031996 0.53163201 0.42852199 0.20355099 0.38148001 0.205568 0.37394699 + 0.16391 0.5 0.199909 0.349527 0.212871 0.34006 0.16773599 0.317004 0.215624 0.30664501 + 0.173186 0.29814899 0.218059 0.274575 0.22558101 0.26966599 0.17471001 0.28833199 + 0.174721 0.28678301 0.319428 0.29899201 0.413275 0.28898099 0.44487301 0.29208201 + 0.44424599 0.47728699 0.76076698 0.43662801 0.75565702 0.443223 0.70998502 0.4594 + 0.75734502 0.12843999 0.064465001 0.37176999 0.707569 0.219897 0.404066 0.192729 + 0.40838301 0.178913 0.407897 0.40514201 0.12055 0.424519 0.15526301 0.37394699 0.16391 + 0.36816299 0.131908 0.19462 0.03249 0.19159 0.029759999 0.40630999 0.76308697 0.290252 + 0.43641701 0.29208201 0.44424599 0.28898099 0.44487301 0.289617 0.44064501 0.5 0.53803998 + 0.45440301 0.059316002 0.193426 0.444143 0.21949001 0.426296 0.20021901 0.44859901 + 0.25099999 0.23310401 0.25099999 0.17469899 0.28588101 0.44549999 0.27968001 0.44675401 + 0.27858001 0.43242401 0.28350201 0.43050599 0.27968001 0.44675401 0.28588101 0.44549999 + 0.28939199 0.460145 0.280781 0.46108401 0.284872 0.51289397 0.29208899 0.51214498 + 0.30159801 0.55289602 0.284872 0.51289397 0.29208899 0.51214498 0.307603 0.541237 + 0.39899901 0.51830298 0.38959101 0.516949 0.27737999 0.138539 0.28833199 0.174721 + 0.42888701 0.51051599 0.289693 0.713193 0.31482199 0.71056098 0.38633499 0.53995401 + 0.42016801 0.54090798 0.391458 0.58829302 0.358311 0.593503 0.32185599 0.59969902 + 0.34502199 0.55883998 0.365201 0.52581 0.37048399 0.52934599 0.34240699 0.54087198 + 0.341535 0.53488201 0.34240699 0.54087198 0.341535 0.53488201 0.37048399 0.52934599 + 0.365201 0.52581 0.38018399 0.51559597 0.38488799 0.51627302 0.34502199 0.55883998 + 0.343279 0.54686099 0.38633499 0.53995401 0.34502199 0.55883998 0.343279 0.54686099 + 0.37576801 0.53288198 0.39899901 0.51830298 0.38633499 0.53995401 0.37576801 0.53288198 + 0.38959101 0.516949 0.101416 0.516572 0.078357004 0.52649999 0.067644998 0.523718 + 0.078357004 0.52649999 0.052361999 0.52759701 0.067644998 0.523718 0.052361999 0.52759701 + 0.043503001 0.52877098 0.110295 0.53736299 0.125295 0.54176402 0.079706997 0.53676498 + 0.071411997 0.53469402 0.040121 0.53604198 0.17054 0.53752601 0.202481 0.53604299 + 0.153824 0.54167199 0.138302 0.54411697 0.288423 0.42858699 0.872114 0.476886 0.85035002 + 0.47040999 0.84838498 0.41411901 0.87151098 0.41718301 0.66540998 0.13846301 0.70643699 + 0.14166699 0.69335502 0.173186 0.65994 0.16773599 0.56869602 0.101426 0.575481 0.15526301 + 0.89793801 0.42235899 0.88863897 0.48251501 0.93139499 0.43252099 0.91925198 0.48688301 + 0.74900001 0.119172 0.74900001 0.17469899 0.73033398 0.17471001 0.71166801 0.174721 + 0.69335502 0.173186 0.70643699 0.14166699 0.72262001 0.138539 0.93164003 0.48776099 + 0.94597399 0.43677801 0.63183701 0.131908 0.66540998 0.13846301 0.65994 0.16773599 + 0.62605298 0.16391 0.54559702 0.059316002 0.96580702 0.39894 0.99136001 0.40076801 + 0.99201602 0.40735799 0.96779603 0.40503299 0.95605099 0.42493501 0.94972301 0.42316699 + 0.800942 0.220339 0.80381697 0.198746 0.82261902 0.20158701 0.817828 0.225721 0.83340901 + 0.20274401 0.83171898 0.22684699 0.86417401 0.227791 0.85311699 0.228788 0.85361898 + 0.20308299; + setAttr ".uvst[0].uvsp[1500:1749]" 0.86280698 0.203187 0.86195099 0.16204301 + 0.83880198 0.164297 0.86884999 0.170432 0.82994401 0.16281299 0.808963 0.15559 0.917108 + 0.16384999 0.90936798 0.165041 0.90794998 0.15956099 0.91590202 0.15753099 0.92502099 + 0.223042 0.91727 0.223286 0.914653 0.19499101 0.92362201 0.19604599 0.93720001 0.16593499 + 0.951024 0.19863801 0.94032401 0.15799101 0.87424999 0.175473 0.87061602 0.20242 + 0.96212101 0.198476 0.89551097 0.16285001 0.89673901 0.16828001 0.90206498 0.224255 + 0.87370801 0.22772101 0.90039098 0.195107 0.88350397 0.25560099 0.87697703 0.241402 + 0.90268099 0.240601 0.91129202 0.25867599 0.91721201 0.239784 0.92535698 0.238268 + 0.92606002 0.252471 0.91023898 0.24047001 0.919016 0.25672999 0.90274799 0.166614 + 0.901272 0.161212 0.90656698 0.194747 0.90889198 0.223727 0.933792 0.39591199 0.95278502 + 0.43793499 0.89814502 0.39829299 0.872082 0.40432301 0.94451201 0.48614901 0.85185301 + 0.366734 0.81798702 0.367304 0.82906699 0.292317 0.85061097 0.29113299 0.78517199 + 0.235964 0.79222101 0.229232 0.813963 0.237304 0.810085 0.244197 0.80677801 0.25962901 + 0.77467602 0.248767 0.83094901 0.235789 0.83109099 0.243186 0.80492198 0.27157301 + 0.80562598 0.28147599 0.76929998 0.27202299 0.77177501 0.26069599 0.803316 0.366844 + 0.80644 0.29224801 0.77154601 0.36175099 0.765782 0.29558399 0.84903598 0.40522501 + 0.85396498 0.252103 0.86597598 0.250882 0.866633 0.26365101 0.85498703 0.26328099 + 0.88505501 0.262862 0.86673999 0.27113101 0.85394198 0.27175301 0.86632198 0.29458499 + 0.87077898 0.36596301 0.80851299 0.42065799 0.80657399 0.444143 0.781066 0.41485101 + 0.86684602 0.27860999 0.85177499 0.28181499 0.81914699 0.45779201 0.82183599 0.41919899 + 0.830006 0.271752 0.82920003 0.285743 0.83080602 0.262389 0.85458702 0.242578 0.93712002 + 0.298915 0.93200803 0.28025901 0.94620103 0.27731201 0.951024 0.29442099 0.89767498 + 0.363967 0.98118299 0.36411199 0.95722401 0.36465299 0.88855201 0.29982099 0.92840803 + 0.26034501 0.94447201 0.26204801 0.94160199 0.235558 0.94994497 0.232288 0.945916 + 0.240989 0.943977 0.252065 0.92008299 0.30081999 0.93024701 0.36534101 0.94498098 + 0.36490101 0.93017399 0.30026299 0.94914597 0.401007 0.91402602 0.265643 0.92108601 + 0.26165 0.91542798 0.28337801 0.88631499 0.28260601 0.92515498 0.28259301 0.95868897 + 0.221645 0.94743401 0.22379901 0.99125201 0.399165 0.96476001 0.39707801 0.86569601 + 0.241409 0.58177698 0.110988 0.59485799 0.12055 0.81914598 0.45779201 0.81469297 + 0.464872 0.79978102 0.44859901 0.80657399 0.444143 0.84895098 0.083989002 0.85051101 + 0.090202004 0.83938998 0.091020003 0.83946002 0.08422 0.87180001 0.10383 0.87290001 + 0.096500002 0.89346999 0.09973 0.89230001 0.10638 0.83961999 0.097089998 0.82867002 + 0.099339999 0.82786 0.095720001 0.84907198 0.119863 0.85056502 0.096280999 0.86576998 + 0.10118 0.86597002 0.12074 0.86558002 0.092749998 0.840469 0.1182 0.82673001 0.1147 + 0.87660003 0.084279999 0.86647999 0.08585 0.89295 0.092649996 0.89020002 0.12358 + 0.87193 0.12158 0.90556002 0.10606 0.90584999 0.1008 0.92477 0.092820004 0.92370999 + 0.103 0.90173 0.10024 0.90057999 0.1064 0.90644002 0.12298 0.90091002 0.12348 0.89455003 + 0.1236 0.89583999 0.10605 0.89692003 0.09984 0.90592998 0.050560001 0.90752 0.070370004 + 0.903 0.069399998 0.90043002 0.049855001 0.823735 0.07068 0.83410001 0.067460001 + 0.82502002 0.086860001 0.84583098 0.064400002 0.86327499 0.065485001 0.88177001 0.07745 + 0.87848997 0.079680003 0.874165 0.061790001 0.87728 0.060024999 0.91139001 0.050889999 + 0.91165 0.071419999 0.91830498 0.052864999 0.91676998 0.074589998 0.89811999 0.068899997 + 0.89432502 0.050285 0.89412999 0.069870003 0.88853502 0.052354999 0.90434003 0.030750001 + 0.89785999 0.030309999 0.90153998 0.0232 0.90445 0.02421 0.89332998 0.087379999 0.89341998 + 0.083999999 0.90574002 0.085040003 0.90429002 0.081820004 0.90651 0.08969 0.92106003 + 0.077880003 0.88985997 0.071620002 0.89415002 0.076289997 0.89332998 0.081119999 + 0.88464999 0.074929997 0.90175003 0.09144 0.90167999 0.086860001 0.89727002 0.092629999 + 0.89749002 0.087729998 0.90262002 0.079070002 0.90087003 0.083849996 0.89999998 0.081150003 + 0.89725 0.084559999 0.89665997 0.080940001 0.90158999 0.077660002 0.8994 0.077069998 + 0.89639997 0.076339997 0.81039 0.04183 0.80791998 0.033640001 0.80983001 0.031380001 + 0.81586999 0.038860001 0.82047999 0.035300002 0.81207001 0.03035 0.85364002 0.027519999 + 0.85497999 0.032109998 0.85193998 0.032469999 0.85162002 0.02685 0.84942001 0.031950001 + 0.85003 0.02743 0.86208999 0.02867 0.8617 0.032219999 0.85891998 0.03184 0.86072999 + 0.02898 0.86339003 0.02915 0.86409998 0.031810001 0.82643002 0.044100001 0.82874 + 0.050700001 0.82280999 0.04733 0.9206 0.022329999 0.91892999 0.02785 0.91215003 0.02674 + 0.91483003 0.021081001 0.90322 0.02018 0.90583003 0.01425 0.90876001 0.01626 0.83454001 + 0.04727 0.828664 0.043294001 0.9023 0.020400001 0.91113001 0.03036 0.90724999 0.023940001 + 0.91077 0.01863 0.82664001 0.04022 0.82688999 0.040580001 0.91983998 0.03114 0.822299 + 0.038011 0.82441002 0.035259999 0.81844002 0.050330002 0.81291002 0.044810001 0.81805998 + 0.041979998 0.81559998 0.052409999 0.81059998 0.046670001 0.82244998 0.054499999 + 0.81883001 0.057459999 0.91752303 0.017426001 0.92255998 0.018610001 0.80615097 0.039198998 + 0.805044 0.036033999; + setAttr ".uvst[0].uvsp[1750:1999]" 0.80537999 0.03249 0.80644399 0.032972001 + 0.81198001 0.028525 0.81906098 0.029614 0.82261997 0.03176 0.81203699 0.029571 0.90850002 + 0.01078 0.91139001 0.01247 0.82261997 0.03176 0.90448999 0.01349 0.90275002 0.01302 + 0.90336001 0.0055399998 0.90424001 0.0051000002 0.91365999 0.01471 0.91987997 0.00728 + 0.92163998 0.00997 0.91742003 0.00599 0.80900502 0.030439001 0.83762002 0.040199999 + 0.84010899 0.038844999 0.84271002 0.044810001 0.83314002 0.04411 0.83837998 0.037020002 + 0.83854997 0.037039999 0.89188999 0.023940001 0.89229 0.022430001 0.89273 0.021779999 + 0.89322001 0.02351 0.89052999 0.03167 0.89796001 0.023870001 0.89515001 0.01784 0.89804 + 0.018510001 0.89310002 0.0165 0.90044999 0.01791 0.89077002 0.01859 0.89226002 0.01859 + 0.83455998 0.035659999 0.83732998 0.03469 0.83305001 0.030540001 0.83539999 0.029209999 + 0.89385998 0.01121 0.89589 0.01173 0.90219998 0.01749 0.82661998 0.038989998 0.82738 + 0.038449999 0.89911002 0.01271 0.83095002 0.037020002 0.82599002 0.032820001 0.82416999 + 0.03311 0.82547998 0.02541 0.82585001 0.025830001 0.82928002 0.024700001 0.82963002 + 0.02437 0.89906001 0.0038000001 0.89971 0.00465 0.90148002 0.0054100002 0.82959998 + 0.03184 0.90180999 0.00367 0.82745999 0.02441 0.82751 0.024870001 0.84656 0.0394 + 0.842767 0.040273 0.85108 0.04487 0.84842002 0.039407 0.84755999 0.037519999 0.84798998 + 0.037919998 0.88436002 0.02696 0.88328999 0.027589999 0.88358998 0.024940001 0.88375002 + 0.024879999 0.88174999 0.02372 0.88334 0.022779999 0.88902998 0.025560001 0.88823003 + 0.01918 0.88529998 0.01905 0.83749998 0.033969998 0.83919001 0.034230001 0.88369 + 0.01877 0.8423 0.034389999 0.84543002 0.033750001 0.84543002 0.031169999 0.84218001 + 0.031539999 0.83881003 0.03115 0.89142001 0.016209999 0.88822001 0.016589999 0.88514 + 0.01636 0.83709002 0.03111 0.89275998 0.01616 0.88325 0.01646 0.84718001 0.030889999 + 0.84707999 0.033459999 0.84816003 0.031649999 0.84943002 0.035399999 0.84847999 0.035349999 + 0.88134003 0.020059999 0.88340998 0.019540001 0.84337002 0.024250001 0.84145999 0.023949999 + 0.88924998 0.0097500002 0.89087999 0.0096500004 0.88744003 0.0094499998 0.88731003 + 0.0087000001 0.84380001 0.023530001 0.83959001 0.024630001 0.83885002 0.023700001 + 0.89178997 0.0089699998 0.84140998 0.022919999 0.88954997 0.0081099998 0.86006999 + 0.045120001 0.85525501 0.040185999 0.85803002 0.038600001 0.87515002 0.029619999 + 0.87703001 0.032000002 0.87448001 0.03077 0.87480998 0.029379999 0.87743002 0.039489999 + 0.88293999 0.034839999 0.883645 0.055555001 0.85114002 0.041540001 0.85643399 0.037501998 + 0.85677999 0.037470002 0.85187 0.035969999 0.85496998 0.035500001 0.85655999 0.035440002 + 0.87664998 0.024800001 0.87484002 0.02489 0.88117999 0.03067 0.87936997 0.02437 0.87861001 + 0.02083 0.87576002 0.02111 0.87629998 0.01667 0.87676001 0.017240001 0.87386 0.02134 + 0.85402 0.02706 0.85659999 0.031629998 0.87987 0.01646 0.88037997 0.01565 0.84959 + 0.02695 0.87842 0.01729 0.85168999 0.026419999 0.87840998 0.01567 0.87278998 0.042599998 + 0.86984003 0.043900002 0.86786002 0.037349999 0.87013 0.0361 0.87529999 0.04115 0.87260002 + 0.034079999 0.86562997 0.038249999 0.86651999 0.04465 0.86107999 0.039620001 0.85852998 + 0.03461 0.86144 0.035039999 0.86466002 0.03427 0.86655003 0.03365 0.86825001 0.032930002 + 0.86566001 0.03114 0.86680001 0.03036 0.87028998 0.03131 0.87216002 0.02891 0.86838001 + 0.029270001 0.86989999 0.0273 0.85699999 0.034230001 0.87300998 0.02712 0.87071002 + 0.02572 0.86590999 0.02813 0.86686999 0.02754 0.85768002 0.031339999 0.86716998 0.026550001 + 0.86701 0.025830001 0.86057001 0.02833 0.86522001 0.02802 0.86368001 0.02847 0.86593002 + 0.02674 0.86215001 0.028100001 0.92041999 0.12182 0.82274997 0.083120003 0.82078999 + 0.070289999 0.87997502 0.05804 0.74487799 0.854577 0.65510201 0.992989 0.65209502 + 0.95466501 0.71909201 0.83529598 0.65052599 0.912269 0.64595401 0.867621 0.68339998 + 0.80131102 0.70091403 0.81742501 0.688474 0.76030701 0.71138602 0.76835901 0.73041201 + 0.77324897 0.75 0.77787298 0.66311699 0.78190702 0.65170598 0.77804297 0.65219599 + 0.75519103 0.66041797 0.75 0.64017999 0.80046099 0.62019199 0.79049301 0.62468803 + 0.77194202 0.633461 0.73890102 0.64090103 0.73512697 0.731978 0.71668899 0.75 0.71837902 + 0.65883303 0.707928 0.636801 0.706074 0.64101601 0.80895197 0.61018199 0.86517102 + 0.59332299 0.909904 0.54106802 0.97854799 0.56820297 0.94637603 0.71346402 0.60175699 + 0.69840199 0.55289602 0.74900001 0.553029 0.74900001 0.60268599 0.74900001 0.51370001 + 0.715128 0.51289397 0.51612699 0.73583901 0.50526899 0.748941 0.51026797 0.804492 + 0.50798702 0.78716898 0.52378899 0.76963598 0.58273399 0.71065903 0.56149697 0.68910801 + 0.581137 0.68333501 0.60784101 0.71113998 0.52173299 0.668612 0.52522099 0.65965903 + 0.51239598 0.83349597 0.55241901 0.80474901 0.55632699 0.82821798 0.534361 0.83085698 + 0.531344 0.80462098 0.50730801 0.77761197 0.58040202 0.85054302 0.553222 0.874053 + 0.52529103 0.88780099 0.55691803 0.770657 0.58920401 0.78007698 0.599078 0.65758198 + 0.59404302 0.66579401 0.53111899 0.63751501 0.53376198 0.62544203 0.51032603 0.71673799 + 0.52604198 0.57857001 0.537835 0.77014703 0.92360401 0.73531199 0.93942499 0.74194902 + 0.92473298 0.82950902 0.91524398 0.83408803 0.95080602 0.66275901 0.95003498 0.67622501 + 0.941926 0.670237; + setAttr ".uvst[0].uvsp[2000:2249]" 0.94267702 0.66013199 0.953529 0.623496 0.94717002 + 0.62215197 0.95052701 0.68450499 0.94156599 0.67809099 0.94673699 0.74484199 0.93013 + 0.66387701 0.93085498 0.65670598 0.92920703 0.67154402 0.84087998 0.68100899 0.85154998 + 0.74251199 0.841102 0.74305803 0.83399498 0.68066299 0.89367598 0.65926301 0.88077801 + 0.65988898 0.88062298 0.62396401 0.89730299 0.61998498 0.92036998 0.619111 0.90999699 + 0.65647697 0.89378399 0.67260599 0.90913397 0.66491598 0.88020599 0.68308598 0.89287299 + 0.68123698 0.89515299 0.73738801 0.88492697 0.73929101 0.84963298 0.68117899 0.86142802 + 0.74167001 0.79703498 0.67588699 0.79637402 0.66251802 0.81042099 0.66285801 0.81139499 + 0.67491698 0.848333 0.65643299 0.85280502 0.626531 0.83262098 0.66000301 0.83305502 + 0.62741399 0.83241302 0.67613202 0.82302201 0.67461699 0.84707302 0.668616 0.837596 + 0.67202801 0.80521703 0.74415803 0.79865003 0.68414599 0.81134498 0.68420398 0.81346399 + 0.74483001 0.822905 0.68164003 0.82872301 0.74575502 0.80936998 0.626095 0.79579097 + 0.62344402 0.93618399 0.61940497 0.880373 0.672566 0.90616101 0.735349 0.908014 0.67648202 + 0.83206099 0.85045201 0.84534103 0.853854 0.84327698 0.85990101 0.83230102 0.85608703 + 0.854289 0.85559398 0.85088599 0.86228102 0.83359998 0.88219303 0.82373101 0.89829499 + 0.81312001 0.88971198 0.82268602 0.87698299 0.85261798 0.88907802 0.84797198 0.910676 + 0.83423299 0.90540302 0.84243202 0.88582999 0.85715902 0.911964 0.86122602 0.89306802 + 0.86361003 0.91839701 0.80228502 0.91422701 0.799317 0.90822703 0.80182999 0.905487 + 0.85634798 0.93121803 0.86117399 0.92145199 0.81501299 0.92990202 0.81597102 0.92614597 + 0.81801999 0.92744899 0.81541997 0.930408 0.81094497 0.91837198 0.80362701 0.942168 + 0.79805398 0.93838102 0.80080801 0.91812098 0.80377299 0.91546202 0.79275602 0.93582201 + 0.791031 0.935238 0.78819299 0.92559999 0.78428203 0.92150199 0.79425001 0.90572703 + 0.79635 0.90232801 0.79215902 0.90537202 0.79379499 0.902089 0.80668801 0.884794 + 0.80360901 0.88300401 0.81726801 0.85969901 0.82082403 0.86182499 0.81507599 0.87188202 + 0.81238198 0.86901802 0.82955903 0.86621499 0.886136 0.87817699 0.88540101 0.89387703 + 0.87051702 0.89534903 0.87060201 0.879143 0.81212699 0.91624999 0.82641602 0.92499 + 0.87251699 0.91164899 0.87118298 0.86476398 0.86102802 0.87759799 0.85880899 0.864546 + 0.88267499 0.91125 0.88120902 0.92304301 0.87282199 0.92231798 0.86420101 0.92671299 + 0.86147898 0.92829001 0.90180302 0.94202602 0.90005499 0.93614799 0.900841 0.93282801 + 0.90342301 0.93993199 0.89869601 0.93809402 0.89824599 0.93579602 0.80538899 0.94363898 + 0.80222499 0.94859898 0.79969299 0.94692701 0.79466403 0.94334197 0.78991598 0.94126999 + 0.78789401 0.94035 0.79884303 0.95254999 0.79682302 0.95132101 0.79158503 0.94822198 + 0.78711998 0.94569099 0.78563201 0.94477302 0.79404098 0.95926702 0.79230797 0.95817298 + 0.78747803 0.955338 0.78319401 0.95292997 0.781811 0.95210701 0.79175699 0.96261197 + 0.79010201 0.96168798 0.78525501 0.95912802 0.78114498 0.95647502 0.77973002 0.95535898 + 0.77394402 0.97215301 0.77318698 0.97206801 0.77531397 0.96300697 0.77704799 0.96356601 + 0.776205 0.97515899 0.77569199 0.97601002 0.77994698 0.97584599 0.78036201 0.97639298 + 0.78525901 0.96836102 0.78653598 0.96962398 0.78905398 0.96625298 0.78742099 0.96542102 + 0.78141397 0.96530002 0.78272003 0.96322501 0.77876502 0.96046102 0.77745301 0.95898902 + 0.83505601 0.93455899 0.832771 0.93836403 0.83230603 0.93790102 0.83250701 0.93313998 + 0.84834802 0.94247597 0.84948897 0.93910301 0.85152102 0.94098401 0.85032499 0.94440401 + 0.84192097 0.93784302 0.84280401 0.93383098 0.83748698 0.95800698 0.831622 0.95667398 + 0.845999 0.96032399 0.84385699 0.95972598 0.829449 0.95623302 0.84507197 0.96501797 + 0.842722 0.964145 0.83661503 0.96232802 0.83088201 0.96101397 0.82866901 0.960756 + 0.84378201 0.96887302 0.84172899 0.96833599 0.835585 0.966842 0.829759 0.96532601 + 0.82804698 0.96485901 0.84194702 0.97570699 0.84012598 0.975227 0.83410197 0.973638 + 0.82852799 0.97235501 0.82696998 0.97200203 0.84106398 0.97960001 0.83928698 0.97908199 + 0.83325398 0.977516 0.82775599 0.976403 0.82613701 0.97614002 0.826635 0.993747 0.82577401 + 0.99424303 0.82445502 0.98514098 0.82619399 0.98508298 0.83323097 0.99568999 0.83271599 + 0.99487901 0.83714098 0.98698097 0.83852297 0.98757899 0.829234 0.99637198 0.82942897 + 0.99531901 0.83162898 0.98408997 0.839935 0.98385298 0.838355 0.98318201 0.83240801 + 0.98153698 0.82683402 0.98092997 0.82510698 0.98065501 0.825194 0.929039 0.816414 + 0.95336199 0.8107 0.95101398 0.82266998 0.95577002 0.82498401 0.95643198 0.80856901 + 0.950082 0.82278502 0.96197599 0.82058901 0.96099198 0.81434101 0.95864302 0.80895102 + 0.95655698 0.80651802 0.95545602 0.81506097 0.97360301 0.81706798 0.97426301 0.81515402 + 0.97850698 0.81317902 0.97791398 0.80939698 0.97149903 0.80774999 0.97578502 0.80429101 + 0.96940601 0.802706 0.973827 0.80102098 0.97306001 0.80256301 0.96868002 0.820728 + 0.966757 0.818573 0.96604103 0.81237799 0.963853 0.80684203 0.96140301 0.80506903 + 0.96049201 0.80548602 0.99430799 0.80520898 0.99361402 0.80981302 0.98659903 0.81150699 + 0.98711503 0.80049002 0.99442297 0.800906 0.99322701 0.79691398 0.99078703 0.79769802 + 0.99057198 0.79761398 0.98170298 0.79917902 0.98234099 0.81148797 0.98246503 0.80488098 + 0.98259997 0.80595702 0.98038203 0.80088902 0.97819 0.813281 0.98301798 0.79925901 + 0.97727603 0.790007 0.92723101 0.80048198 0.91767299; + setAttr ".uvst[0].uvsp[2250:2499]" 0.78131503 0.91789502 0.780559 0.91584098 + 0.78700697 0.92954999 0.78520298 0.92736101 0.781973 0.92362797 0.77907598 0.92044002 + 0.77761602 0.91891402 0.78433502 0.931288 0.78296202 0.92967999 0.77967799 0.92556202 + 0.77635401 0.92216003 0.77536798 0.92095 0.77894002 0.93505502 0.777399 0.93419999 + 0.77370101 0.93074399 0.77083498 0.92686498 0.77025002 0.92563498 0.77654397 0.93703502 + 0.77540398 0.93599701 0.77204698 0.93241602 0.76889098 0.92876601 0.76796299 0.927854 + 0.75985402 0.94226402 0.75921702 0.942083 0.76254898 0.93439901 0.763466 0.93541598 + 0.76086199 0.944552 0.76014298 0.94504601 0.76315498 0.94610798 0.76319402 0.94668502 + 0.76896203 0.94176197 0.76981199 0.94281 0.76672602 0.93110901 0.77052099 0.93392599 + 0.76770103 0.93681902 0.76546401 0.930641 0.773772 0.93949598 0.77300203 0.93808401 + 0.872594 0.93696499 0.87312698 0.93298799 0.87974399 0.93483502 0.879574 0.93711001 + 0.864582 0.93730402 0.86479199 0.93502802 0.86144298 0.937361 0.86178303 0.93512797 + 0.86515701 0.95838702 0.86338401 0.959113 0.86185998 0.950589 0.86426997 0.95041502 + 0.87110698 0.962506 0.87104797 0.96385598 0.87190902 0.94947797 0.87817401 0.95047897 + 0.877231 0.95831001 0.87207401 0.94651699 0.86407298 0.94666201 0.87818402 0.94682002 + 0.87211603 0.94177997 0.87895799 0.94180799 0.86419898 0.942083 0.86132401 0.94668901 + 0.86094201 0.94222999 0.87818402 0.94682002 0.88064098 0.94703603 0.88013399 0.95080602 + 0.878811 0.95842898 0.85504299 0.875875 0.84810603 0.87354201 0.89733702 0.94003999 + 0.89719701 0.94090497 0.89512801 0.94067401 0.89565003 0.93876398 0.91078699 0.85166597 + 0.91126198 0.85734397 0.90077502 0.860659 0.89990997 0.85436302 0.89334297 0.87695998 + 0.894306 0.86207801 0.90372401 0.878425 0.89269102 0.85506803 0.88403499 0.86446702 + 0.88331699 0.85639799 0.92659301 0.84662801 0.92790997 0.85127902 0.92185599 0.85329503 + 0.92099702 0.84849298 0.925928 0.86446398 0.91593802 0.86947399 0.93109798 0.86129802 + 0.891532 0.89461201 0.898848 0.89617598 0.93006098 0.93711197 0.92391902 0.940018 + 0.91519397 0.92556602 0.91963798 0.91954798 0.92786801 0.90794498 0.94428301 0.92547601 + 0.92078102 0.94669002 0.92646497 0.94431198 0.93195403 0.94135302 0.94198698 0.93673301 + 0.94174403 0.937271 0.93841499 0.937163 0.94215798 0.93403101 0.95410597 0.91259199 + 0.95368701 0.91872197 0.95052999 0.924568 0.92517501 0.94753498 0.924739 0.94762802 + 0.91313601 0.94450903 0.91457701 0.94891 0.907561 0.95111197 0.90600502 0.94703501 + 0.94706601 0.92883801 0.95650601 0.914563 0.957421 0.90636897 0.95927101 0.908952 + 0.937675 0.89656001 0.94495898 0.88790101 0.93778801 0.872069 0.93397802 0.87493902 + 0.926009 0.882581 0.91867501 0.89050901 0.947662 0.88480699 0.95421201 0.92276901 + 0.963139 0.93537498 0.96218801 0.93660903 0.95110202 0.94578201 0.951985 0.94511598 + 0.958754 0.90340298 0.96034801 0.906129 0.96813202 0.92120397 0.96528798 0.925511 + 0.97125 0.91544598 0.898422 0.91877198 0.90838599 0.90198803 0.908391 0.93581402 + 0.88748699 0.912233 0.89155501 0.91389799 0.88540101 0.89387703 0.88267499 0.91125 + 0.88495201 0.92373103 0.88827097 0.924559 0.88120902 0.92304301 0.95429099 0.92069697 + 0.96017802 0.945687 0.95414299 0.94899398 0.95725203 0.94179398 0.96586102 0.94126701 + 0.96264797 0.94920802 0.95805299 0.952245 0.96816701 0.94532299 0.96728897 0.95609301 + 0.96337003 0.95850998 0.97248799 0.95246702 0.969015 0.95878899 0.96566498 0.961703 + 0.97478598 0.95534003 0.97723198 0.95913202 0.97201699 0.96311098 0.968687 0.96529502 + 0.97149199 0.96898198 0.97499198 0.96698397 0.98068202 0.973813 0.97658998 0.974684 + 0.97969502 0.96308798 0.98330802 0.97009599 0.953345 0.949148 0.966914 0.94013202 + 0.95714402 0.952797 0.96930802 0.94458199 0.96262902 0.95898598 0.97360897 0.95167702 + 0.965114 0.962152 0.97589898 0.95472801 0.98362601 0.97052097 0.98115301 0.97448802 + 0.976991 0.97513598 0.97854501 0.957995 0.98104203 0.96170503 0.96777499 0.96564502 + 0.97021198 0.96909201 0.92717201 0.958372 0.92523301 0.95906299 0.90511698 0.95185602 + 0.90355098 0.947905 0.91856498 0.96166903 0.91184801 0.96389002 0.919783 0.96574801 + 0.91328597 0.9677 0.92658502 0.96357298 0.92084497 0.96934903 0.914832 0.97128701 + 0.92734998 0.96748 0.92297399 0.97611398 0.917328 0.97803199 0.928617 0.97451502 + 0.92411798 0.97996598 0.91814101 0.98191702 0.92998701 0.97835302 0.92670101 0.98774201 + 0.929322 0.996535 0.92567497 0.99687099 0.92131698 0.98960203 0.93213201 0.98696101 + 0.93269998 0.99483198 0.925264 0.98381901 0.91968298 0.98588097 0.93111402 0.98261797 + 0.90969503 0.96462899 0.911479 0.968373 0.928303 0.96283901 0.91281903 0.97206497 + 0.92921799 0.96682203 0.91532099 0.978692 0.93045801 0.97392702 0.91631198 0.98252499 + 0.93165398 0.97795898 0.92957902 0.99780101 0.92577899 0.99759001 0.93275499 0.99587399 + 0.91941398 0.99030101 0.91781402 0.98659402 0.93289399 0.98234701 0.93385202 0.98668802 + 0.93049902 0.95880699 0.93243098 0.957838 0.94720298 0.95105702 0.94559401 0.95166099 + 0.94122303 0.96048498 0.93512702 0.96314901 0.938604 0.95490301 0.94808 0.95702398 + 0.94880199 0.97615302 0.94390303 0.97883499 0.941984 0.97486699 0.94694799 0.97232902 + 0.95238799 0.96995401 0.95428401 0.97393298 0.94326001 0.96473002 0.937747 0.96739697 + 0.949224 0.96197402 0.94813901 0.98714399 0.94589299 0.98308998 0.95064402 0.980012 + 0.95293701 0.984622 0.95619798 0.978019 0.958314 0.98236197 0.95690101 0.99239397; + setAttr ".uvst[0].uvsp[2500:2749]" 0.95268703 0.99356401 0.96065801 0.98989999 + 0.93305302 0.96419603 0.94959998 0.95628601 0.94249099 0.98006803 0.9404 0.97570902 + 0.95383102 0.96936601 0.95582497 0.97350299 0.93607002 0.96848297 0.95091802 0.961303 + 0.95740998 0.99346101 0.95308697 0.99400598 0.96083999 0.99033701 0.94663501 0.98830199 + 0.944489 0.98440599 0.95789802 0.97749001 0.95982099 0.98191899 0.97174799 0.92334503 + 0.96870899 0.92753601 0.97481602 0.91766602 0.97401398 0.92447001 0.97133201 0.92861801 + 0.977332 0.91928601 0.97964197 0.92761803 0.9774 0.93139601 0.982889 0.92298698 0.98235798 + 0.929295 0.98007601 0.93317598 0.98550802 0.92470503 0.98862398 0.92721403 0.99216998 + 0.93016601 0.98974502 0.934632 0.985946 0.93208301 0.98755503 0.937751 0.98350698 + 0.93522501 0.99567199 0.93833202 0.99333602 0.94062698 0.99664402 0.93554997 0.97193199 + 0.91386902 0.967843 0.92844403 0.96449298 0.926705 0.97543597 0.91614503 0.97088701 + 0.929627 0.97794801 0.91788399 0.97687799 0.93229401 0.98374897 0.92167699 0.97956002 + 0.93389797 0.98639101 0.92338598 0.98930103 0.92575502 0.99271101 0.929115 0.98711002 + 0.93849897 0.98270202 0.935817 0.99400002 0.94085097 0.99698597 0.93595999 0.88920999 + 0.93894303 0.88435602 0.93792498 0.884987 0.93521899 0.88991702 0.936189 0.88209301 + 0.93757302 0.88241798 0.935229 0.887833 0.94404203 0.88342702 0.94272202 0.89402401 + 0.94576401 0.88123101 0.94223601 0.88275099 0.94757402 0.88698399 0.94849902 0.89294398 + 0.95000499 0.88605398 0.95208699 0.88197899 0.95130903 0.89189601 0.95347899 0.88365102 + 0.96103799 0.87990099 0.959117 0.88968301 0.95948601 0.896079 0.94603002 0.89363497 + 0.95394403 0.89054698 0.96099502 0.88290298 0.96392602 0.87895799 0.94180799 0.89488101 + 0.95052499 0.879574 0.93711001 0.87974399 0.93483502 0.90795797 0.87420601 0.91478097 + 0.89363301 0.81929302 0.85042 0.81896502 0.84540802 0.89416999 0.92747998 0.99636799 + 0.93878001 0.87018698 0.856471 0.83948898 0.87040901 0.854289 0.85559398 0.84534103 + 0.853854 0.84333003 0.83393002 0.85189599 0.83515102 0.89269102 0.85506803 0.89524198 + 0.83908802 0.90345299 0.83719099 0.89990997 0.85436302 0.88645703 0.840186 0.88331699 + 0.85639799 0.87018698 0.856471 0.87366402 0.83885098 0.817231 0.82109898 0.825589 + 0.83075303 0.83206099 0.85045201 0.81896502 0.84540802 0.92915303 0.82511002 0.92659301 + 0.84662801 0.92099702 0.84849298 0.91078699 0.85166597 0.86415303 0.836891 0.86295497 + 0.856583 0.86295497 0.856583 0.551507 0.53891897 0.56919998 0.58338702 0.50690901 + 0.536304 0.54445797 0.50899601 0.59533101 0.37459999 0.58322197 0.44255799 0.55195302 + 0.43360299 0.559448 0.35821 0.61511201 0.51627302 0.61151999 0.48485801 0.61981601 + 0.51559597 0.56536102 0.26182601 0.56168002 0.328219 0.67295802 0.30178601 0.66292 + 0.38794899 0.62969601 0.38490799 0.64008498 0.29888901 0.62089902 0.40700001 0.60322303 + 0.45412001 0.89414501 0.526968 0.920968 0.53163201 0.92029297 0.53676498 0.889705 + 0.53736299 0.68059701 0.39412501 0.69122398 0.30609199 0.94700903 0.53213698 0.956406 + 0.532722 0.95631599 0.536672 0.94638097 0.536677 0.59978598 0.35100999 0.74900001 + 0.46149501 0.74900001 0.51370001 0.715128 0.51289397 0.71921903 0.46108401 0.72031999 + 0.44675401 0.74900001 0.448668 0.92858797 0.53469402 0.930471 0.52920598 0.94700903 + 0.53213698 0.94638097 0.536677 0.60915297 0.27828899 0.68939501 0.53540802 0.68639302 + 0.52957898 0.70069498 0.51139599 0.70430303 0.51177001 0.901609 0.571356 0.895657 + 0.55435902 0.91095102 0.55405998 0.92254698 0.55766499 0.92556798 0.54618001 0.94461101 + 0.54794502 0.94284099 0.559214 0.88463902 0.58231097 0.86024398 0.56675297 0.87967199 + 0.562038 0.85878998 0.58938998 0.83783901 0.58150601 0.81212199 0.57041198 0.82079101 + 0.55396903 0.84200799 0.561589 0.959535 0.55882001 0.95511198 0.55918598 0.79807597 + 0.55882698 0.95571399 0.54792899 0.95970702 0.54743099 0.70430303 0.51177001 0.70069498 + 0.51139599 0.70199698 0.45920601 0.706303 0.45967501 0.79779798 0.54743499 0.74900001 + 0.339647 0.74900001 0.43584001 0.72141999 0.43242401 0.73521 0.332764 0.92029297 + 0.53676498 0.920968 0.53163201 0.930471 0.52920598 0.92858797 0.53469402 0.62605298 + 0.16391 0.61852002 0.205568 0.57147801 0.20355099 0.65994 0.16773599 0.650473 0.212871 + 0.69335502 0.173186 0.68299598 0.215624 0.70185101 0.218059 0.71166801 0.174721 0.73033398 + 0.17471001 0.725425 0.22558101 0.71321702 0.319428 0.70100802 0.413275 0.71101898 + 0.44487301 0.70791799 0.44424599 0.52271301 0.76076698 0.56337202 0.75565702 0.5406 + 0.75734502 0.556777 0.70998502 0.87155998 0.064465001 0.62822998 0.707569 0.807271 + 0.40838301 0.78010303 0.404066 0.821087 0.407897 0.59485799 0.12055 0.63183701 0.131908 + 0.62605298 0.16391 0.575481 0.15526301 0.80537999 0.03249 0.80840999 0.029759999 + 0.59368998 0.76308697 0.70974803 0.43641701 0.710383 0.44064501 0.71101898 0.44487301 + 0.70791799 0.44424599 0.54559702 0.059316002 0.80657399 0.444143 0.79978102 0.44859901 + 0.78051001 0.426296 0.74900001 0.17469899 0.74900001 0.23310401 0.71411902 0.44549999 + 0.71649802 0.43050599 0.72141999 0.43242401 0.72031999 0.44675401 0.72031999 0.44675401 + 0.71921903 0.46108401 0.71060801 0.460145 0.71411902 0.44549999 0.715128 0.51289397 + 0.70791101 0.51214498 0.69840199 0.55289602 0.692397 0.541237 0.70791101 0.51214498 + 0.715128 0.51289397 0.60100102 0.51830298 0.61040902 0.516949 0.71166801 0.174721 + 0.72262001 0.138539 0.57111299 0.51051599; + setAttr ".uvst[0].uvsp[2750:2795]" 0.710307 0.713193 0.68517798 0.71056098 0.61366498 + 0.53995401 0.641689 0.593503 0.60854203 0.58829302 0.57983202 0.54090798 0.67814398 + 0.59969902 0.65497798 0.55883998 0.634799 0.52581 0.65846503 0.53488201 0.65759301 + 0.54087198 0.62951601 0.52934599 0.65759301 0.54087198 0.65846503 0.53488201 0.62951601 + 0.52934599 0.61511201 0.51627302 0.61981601 0.51559597 0.634799 0.52581 0.65497798 + 0.55883998 0.656721 0.54686099 0.61366498 0.53995401 0.62423199 0.53288198 0.656721 + 0.54686099 0.65497798 0.55883998 0.60100102 0.51830298 0.61040902 0.516949 0.62423199 + 0.53288198 0.61366498 0.53995401 0.89858401 0.516572 0.92164302 0.52649999 0.92164302 + 0.52649999 0.93235499 0.523718 0.93235499 0.523718 0.94763798 0.52759701 0.94763798 + 0.52759701 0.95649701 0.52877098 0.889705 0.53736299 0.87470502 0.54176402 0.92029297 + 0.53676498 0.92858797 0.53469402 0.95987898 0.53604198 0.79751903 0.53604299 0.82946002 + 0.53752601 0.84617603 0.54167199 0.86169797 0.54411697 0.711577 0.42858699; + setAttr ".cuvs" -type "string" "map1"; + setAttr ".dcc" -type "string" "Ambient+Diffuse"; + setAttr ".sdt" 0; + setAttr ".ugsdt" no; + setAttr -s 2226 ".vt"; + setAttr ".vt[0:165]" 2.59383035 8.83124447 0.37452728 2.5957675 8.92690563 0.30317232 + 2.57264829 9.046378136 0.31192374 2.53801537 9.11967659 0.39565355 2.51215601 9.10386276 0.50531542 + 2.51021791 9.0082006454 0.57666934 2.53333688 8.88872814 0.56791896 2.56797099 8.81542873 0.48418817 + 2.63957906 8.84161472 0.38791561 2.64151621 8.93727684 0.31656164 2.618397 9.056749344 0.32531309 + 2.58376384 9.1300478 0.40904287 2.55790472 9.11423397 0.51870471 2.55596662 9.0185709 0.59005868 + 2.57908559 8.8990984 0.58130729 2.6137197 8.82579994 0.49757746 2.59874201 8.97792339 0.45330966 + 2.38341522 8.93663692 0.69789374 2.56420374 8.88153267 0.46591395 2.54669499 8.78147984 0.1759012 + 2.44572306 8.74734116 0.11299402 2.32563353 8.73136902 0.11120428 2.1672442 8.79154968 0.34973955 + 2.16235495 8.88652515 0.63319683 2.26332688 8.92066479 0.69610399 2.36635756 9.10989285 0.64747661 + 2.54714584 9.054788589 0.41549778 2.52963614 8.95473576 0.12548406 2.42866421 8.92059708 0.062577859 + 2.30857587 8.90462494 0.060788125 2.1501863 8.9648056 0.2993224 2.1452961 9.059782028 0.58278066 + 2.24626803 9.093919754 0.64568681 2.59964919 8.82821465 0.29437602 2.58259034 9.0014705658 0.24395885 + 2.47833061 9.10054398 0.57726985 2.49538946 8.92728901 0.62768698 2.23311472 8.75843811 0.2265722 + 2.21605659 8.93169498 0.17615506 2.15147543 8.83601761 0.48756844 2.13441634 9.0092725754 0.43715131 + 2.59774327 8.84582806 0.50246823 2.58320618 8.84454155 0.50417209 2.57208323 8.84001064 0.4949578 + 2.5708921 8.83488941 0.48022306 2.58032846 8.83217525 0.46859813 2.59486675 8.83346176 0.46689332 + 2.60598874 8.83799267 0.47610751 2.60718083 8.84311581 0.4908433 2.60093355 8.81343269 0.5118944 + 2.58639526 8.81214714 0.51359916 2.57527351 8.80761623 0.50438488 2.57408118 8.80249405 0.48964912 + 2.58351874 8.79978085 0.47802517 2.59805584 8.8010664 0.47632042 2.60917902 8.80559635 0.48553461 + 2.61037111 8.81072044 0.50027037 2.59222627 8.80660725 0.4949598 2.61319304 8.83396053 0.44494981 + 2.60061908 8.83070087 0.44669461 2.59045482 8.82880497 0.43829468 2.58865428 8.82938576 0.42467201 + 2.5962708 8.83210278 0.41380569 2.60884428 8.83536339 0.41206089 2.61900949 8.83725739 0.42046082 + 2.62081003 8.83667564 0.43408349 2.61825514 8.80751324 0.4432264 2.60568166 8.80425358 0.44497126 + 2.59551668 8.80235958 0.43657133 2.59371614 8.80293941 0.42294869 2.60133266 8.80565548 0.41208237 + 2.6139071 8.80891514 0.41033757 2.62407112 8.81081009 0.4187375 2.6258719 8.81022835 0.43236014 + 2.6097939 8.80658436 0.42765394 2.57846332 8.87578487 0.5500831 2.56549358 8.8765583 0.55065435 + 2.55572414 8.87063122 0.54342806 2.55488157 8.86147881 0.53263789 2.56345701 8.85445976 0.52460414 + 2.57642841 8.85368824 0.52403289 2.58619642 8.85961533 0.53125823 2.58703899 8.86876774 0.54204935 + 2.57810211 8.85449123 0.56569862 2.56513119 8.85526466 0.56626981 2.55536366 8.84933758 0.55904442 + 2.55452108 8.84018517 0.54825336 2.56309652 8.83316708 0.54021955 2.57606602 8.83239555 0.53964835 + 2.58583403 8.83832169 0.5468747 2.5866766 8.84747505 0.55766481 2.5705986 8.84383011 0.55295962 + 0.0022468525 8.0062322617 0.78026897 0.0023183245 8.049283981 0.23885716 0.0021085571 10.43730259 -0.45813784 + 0.0022359635 9.048955917 1.2901473 0.0021629143 9.84497261 1.3394177 0.0020536981 8.22111797 -0.45257586 + 0.0022618084 8.7673254 -0.65210658 0.00064479292 15.24143887 -0.35785595 2.8885874e-005 16.72198868 0.72269619 + 1.3877788e-017 16.79142761 0.066035375 0.00099389628 14.36218071 -0.66548657 0.00055243744 15.46344852 1.23071778 + 0.0007566312 14.97259617 1.14040565 0.00036421439 15.91590977 1.3055191 0.00017047569 16.38162804 1.14781761 + 0.0009506151 14.50628757 0.9803946 0.00087916484 14.67804337 0.59551716 0.00082276302 14.81362534 1.12432146 + 0.00092017639 14.57945824 0.77365065 0.00073431031 15.026252747 1.32971132 0.00086087757 14.68193817 -0.54129642 + 0.0010601042 14.20302677 0.48536479 0.00051240256 15.55968666 1.29802334 0.0012661414 13.70774364 0.6489132 + 0.0012232369 13.81087971 0.49466977 0.0011088751 14.085788727 -0.79307908 0.0013108294 13.65933895 -0.95499378 + 0.0017356111 12.57920742 1.23889887 0.0017610993 10.64888573 1.30644774 0.0017610993 12.28007412 1.17075419 + 0.0016787146 12.71597862 -0.97025031 0.0017610993 10.95499134 -0.45164806 0.00045699877 15.69286919 -0.43354088 + 0.0021914402 9.53412437 -0.6098904 0.0015042343 13.13540363 -0.97968584 0.0022857881 8.50601578 1.18069005 + 0.00092581601 14.5659008 1.053489208 0.00020162975 16.3067379 -0.37127864 0.000610905 15.32290077 1.26040888 + 0.0014774017 13.19990444 0.93164963 0.0017610993 11.4622879 1.28830099 0.0017610993 11.89213181 -0.79078853 + -1.19926679 9.44057369 0.85058862 -1.26843488 9.725173 0.46005344 -1.026540279 10.12021065 0.55849099 + -1.13452303 10.29289913 0.011660585 -1.21824861 9.81996632 -0.13244937 -0.65856993 9.025680542 1.1859864 + -0.71979398 9.90525913 -0.62350476 -0.76237458 10.36813545 -0.41885775 -0.4349992 8.50985241 1.099225998 + -0.48860332 8.40227032 1.021452427 -1.047198772 5.055290699 0.91470408 -0.58972269 6.56577444 1.00012969971 + -0.37470412 6.70466042 -0.33676684 -0.59667063 5.39145327 -0.17922124 -0.23489109 6.57868576 0.68717533 + -1.34507263 6.75812864 -0.32516041 -0.68326843 5.056622028 -0.12532592 -0.43383682 4.98088455 0.45348287 + -0.48568279 4.50136852 0.32720739 -0.43512729 5.3087368 0.5353663 -0.76498485 4.23869658 0.55590755 + -1.016611099 4.056600094 0.57428712 -1.05142653 4.71261692 0.87092775 -0.72932315 4.50055695 0.66361207 + -1.28612411 4.51645088 0.57087654 -1.044807553 4.49410772 0.80437762 -0.72016037 4.99873018 0.77778858 + -0.72037059 4.72340918 0.72749203 -1.28597903 4.73046255 0.63829839 -1.033116698 4.22999477 0.69122893 + -1.27002311 4.261343 0.45626307 -1.39232588 8.60801506 -0.49237469; + setAttr ".vt[166:331]" -1.37452447 7.63160133 -0.41859341 -0.23410217 7.6067338 -0.3910948 + -0.76847637 8.61514378 -0.95580208 -1.25180721 4.096190453 0.39733109 -1.17487729 5.016149521 -0.01802407 + -1.20077443 4.80670309 -0.03784322 -1.37757874 4.98947239 0.34218591 -1.36276996 4.56104088 0.25904962 + -1.27363575 5.023901463 0.688371 -0.70905054 5.24067974 0.82030392 -1.49296129 6.68545485 0.32372355 + -1.53376949 7.59602404 0.30945134 -1.031125784 5.23818731 0.90893811 -1.22408903 2.34691501 -0.0032865 + -0.79031777 2.28096676 -0.61056447 -0.74971282 2.83318663 -0.67238939 -0.71861702 4.3878355 -0.31533226 + -0.67703348 2.27547884 -0.49832213 -0.61756176 2.81690645 -0.53972805 -0.60146093 4.12754202 0.21418753 + -0.5239585 2.86754465 -0.25117224 -0.64612067 2.32036877 -0.17353874 -1.29729676 2.30691576 -0.27643701 + -1.41092956 2.92996359 -0.46621227 -0.75447214 4.69034243 -0.1666792 -0.72756201 4.85128307 -0.13192374 + -1.37284136 4.3496356 -0.11986991 -1.23041046 4.60536528 -0.081621341 -0.48023364 4.26464939 0.031067546 + -0.60996783 4.35581827 -0.20912074 -0.60622555 4.65550756 -0.057585943 -0.78707248 7.63884115 -0.60409188 + -0.83357203 6.75025272 -0.43085667 -1.29050946 5.2594099 0.70555258 -1.36976779 5.31007814 0.35318831 + -1.19151902 5.35084677 -0.088195696 -0.97675979 4.6772747 -0.18272647 -0.94446063 4.84755373 -0.1510634 + -0.90951109 5.060671806 -0.14914483 -0.86174595 5.39057255 -0.22091641 -1.078785181 4.38958883 -0.34663996 + -0.86789614 4.39214849 -0.40280503 -0.96816689 2.85341692 -0.73102576 -0.9707365 2.2778945 -0.64763999 + -1.21747565 2.87602186 -0.65180063 -1.16365933 2.31095362 -0.58549136 -0.7946195 4.073348045 0.45780241 + -0.57055479 4.25431871 0.23974851 -1.0036851168 6.5726161 1.086196899 -1.42063618 6.62983608 0.82524604 + -1.37764215 4.20850182 0.11470345 -1.29290617 3.88456964 0.31296575 -1.43615592 3.95606375 -0.02784922 + -1.44063604 3.99542189 -0.33171642 -1.19726372 4.0041685104 -0.52294517 -0.95453858 3.98949051 -0.61383021 + -0.72879755 3.98603559 -0.55135638 -0.56926692 3.97214007 -0.41988975 -0.43541762 3.92874169 -0.10921481 + -0.63283563 3.86896825 0.15536378 -1.35640073 4.32088232 0.17225116 -1.32528782 3.41982102 0.19487125 + -1.49615645 3.45965505 -0.16684151 -1.49704802 3.49452972 -0.44712326 -1.25008953 3.48590541 -0.6455164 + -0.96677655 3.47074223 -0.74945325 -0.71569383 3.47561193 -0.68152088 -0.54354823 3.47507381 -0.54579264 + -0.42655754 3.4838047 -0.20470451 -0.64960492 3.4342351 0.045684628 -0.78157109 8.88504696 1.0059819221 + -0.098981105 8.7403841 -0.83119941 -0.13199605 8.04360199 -0.65010005 -0.15226959 7.95512056 0.79861635 + -0.1089086 7.9134717 0.16993824 -0.22049622 6.64402866 0.095297001 -0.13094711 7.51218939 0.79127306 + -0.097385645 7.55606461 0.15563983 -0.4708274 5.37305593 0.013280397 -0.53746647 5.034420013 -0.0061148601 + -0.58109921 4.80918074 -0.018971009 -0.45092878 4.73197317 0.39991471 -0.70330608 9.86446095 1.18046188 + -0.4613212 10.39655685 -0.52140051 -0.28793874 9.79662323 -0.7000556 -0.78192109 3.83414316 0.37847075 + -0.79773247 3.39661956 0.26410827 -0.80618078 2.34875631 0.051276751 -1.015160322 3.81356597 0.50682884 + -1.029509306 3.37960768 0.38839412 -1.004953742 2.35915136 0.18021324 -1.39289343 0.3052952 -0.38145363 + -1.40244067 0.16569246 -0.36696449 -1.36111212 0.061525773 -0.33490536 -0.71544671 0.17504212 -0.098732375 + -0.71263373 0.43141672 -0.11477288 -1.36122906 0.43493533 -0.380597 -0.72202152 0.67965037 -0.19754 + -1.19711232 1.80679166 -0.037682749 -0.69614011 1.82504809 -0.19963038 -0.85038418 1.84501112 -0.59127951 + -0.76514161 0.47889659 -0.79452103 -0.75223643 0.31138417 -0.80518723 -1.64573336 0.20905112 0.92735738 + -1.68606806 0.20408314 0.91205716 -1.7651453 0.21450996 0.77635425 -1.77577043 0.16879067 0.88430649 + -1.7783612 0.12831703 1.018275142 -1.77106631 0.091895834 1.080555916 -1.54825318 0.21719125 1.0097482204 + -1.53388655 0.22122818 1.02356708 -1.54853153 0.18428603 1.1686877 -1.55945635 0.15903354 1.2538383 + -1.39141357 0.24646007 1.0731709 -1.41190696 0.19661787 1.18679142 -1.42534316 0.16174491 1.27982926 + -1.3646239 0.25664532 1.08508575 -1.17315972 0.27831477 1.13034689 -1.23872864 0.22385962 1.35456991 + -0.95924288 0.12368433 1.36995339 -0.91124445 0.10795514 1.023348331 -1.7818234 0.15296176 0.77377474 + -1.78624332 0.13451345 0.88036114 -1.76588011 0.055832244 1.07626915 -1.77057207 0.10496953 0.76035142 + -1.76513779 0.09847308 0.88243926 -1.74429142 0.032005057 1.064168811 -1.67049277 0.071663737 0.92621374 + -1.68030179 0.055023305 1.071125984 -1.39664125 0.076323956 1.065768361 -1.43597758 0.11712426 1.1917851 + -1.43913352 0.094220348 1.26774645 -1.51496065 0.064458936 1.025422096 -1.5385952 0.10639141 1.16348052 + -1.55448949 0.085413143 1.2405777 -1.54498374 0.065662451 0.9948951 -1.72842932 0.044453789 1.12242901 + -1.34534323 0.076244868 1.081296086 -1.14946795 0.084531128 1.12930822 -1.21846199 0.057701144 1.33105528 + -1.1858151 0.16028778 1.13241887 -1.25835526 0.12847865 1.32972956 -1.20891201 0.27457955 1.11618066 + -1.21178603 0.16565119 1.13631785 -1.39264822 0.12969679 1.091916919 -1.67106175 0.15287922 0.9176414 + -1.67417896 0.1072932 1.091039181 -1.21182191 0.079951711 1.11465454 -1.086720347 0.081605703 1.49747849 + -1.21056795 0.088570662 1.47554564 -1.010619402 0.054759391 1.35264671 -1.52968311 0.13655859 1.030358911 + -1.37692714 0.12986785 1.097320914 -0.85527444 0.20513967 1.047137856 -0.98953605 0.21984759 1.3871007 + -1.091319323 0.15274684 1.51745212 -1.20969677 0.15565594 1.49597001 -1.68567336 0.1306106 1.0989151 + -1.6875304 0.061879948 1.13631964 -1.68975425 0.07536801 1.14350343 -1.6998086 0.090854779 1.14382446 + -1.73811042 0.075582065 1.13266909 -1.73672819 0.055108409 1.12930036 -1.55357575 0.098657906 1.3680048 + -1.54685628 0.11913759 1.35954964 -1.47241771 0.12149736 1.3736887; + setAttr ".vt[332:497]" -1.46882379 0.10299318 1.37826502 -1.47096837 0.082970843 1.3792336 + -1.55060792 0.079032741 1.36523366 -1.4190551 0.14387773 1.19279218 -1.5457499 0.13869399 1.024660826 + -1.62881649 0.074399173 0.9402706 -1.64516914 0.15080057 0.9307996 -1.43190312 0.12350037 1.27429307 + -1.56408751 0.12050015 1.23975945 -1.55361271 0.12965637 1.16436338 -1.40272105 0.13322398 1.2035774 + -1.42149925 0.10784167 1.30926073 -1.27697396 0.12876233 1.33361459 -1.24609542 0.16555578 1.2334832 + -1.41574979 0.086655341 1.41673088 -1.33923674 0.086296871 1.43275118 -1.33582628 0.11028567 1.43214226 + -1.34083736 0.13028049 1.42888021 -1.4132179 0.12821989 1.42020988 -1.42074418 0.1079345 1.42306328 + -1.41396761 0.059038777 1.30117309 -1.39236236 0.11480489 1.21752834 -1.28093231 0.084258609 1.32486987 + -1.25844383 0.11631961 1.23865962 -1.28160429 0.17297378 1.34108448 -1.24652779 0.19594905 1.23935354 + -1.41237342 0.17390823 1.32173467 -1.39998639 0.21372938 1.21721518 -1.67034245 0.16258565 1.096064329 + -1.67431903 0.14103656 1.16876721 -1.56277645 0.1614062 1.11658919 -1.56727672 0.14388031 1.18799365 + -1.56032491 0.10684273 1.098922968 -1.56519222 0.055299256 1.16908932 -1.66101921 0.11031318 1.079317689 + -1.67137969 0.067590676 1.14713192 -1.66498923 0.079332761 1.25835681 -1.66273224 0.098314054 1.25710464 + -1.60127449 0.10029557 1.27667749 -1.59589005 0.078752495 1.28039622 -1.5963521 0.063106686 1.26762474 + -1.66038299 0.057709742 1.24828553 -1.55223238 0.12474773 1.10851562 -1.55521965 0.10718746 1.17995071 + -1.67798948 0.10942343 1.1565758 -1.67401302 0.12561856 1.082476497 -0.64917523 0.45649388 -0.67325652 + -0.63233775 0.30276522 -0.66960168 -0.74056661 1.83222532 -0.48098049 -1.06482935 1.8350184 -0.58373266 + -0.93349695 1.8413111 -0.62675554 -0.90561932 0.48160538 -0.8254829 -0.90632927 0.31592575 -0.84770441 + -0.92834294 0.057818919 -0.75607961 -0.78795928 0.05824187 -0.69582975 -0.95098263 0.0010409701 -0.64245301 + -1.11830711 0.26238272 1.37768745 -1.15523231 0.075916469 1.49356103 -1.12178588 0.032607675 1.33962405 + -1.15580201 0.16205353 1.51719832 -1.26339221 0.37849349 1.0056051016 -1.42490792 0.34379762 0.96181494 + -1.4578197 0.29506263 1.046851754 -1.48547506 0.2327528 1.18310845 -1.49957705 0.20364559 1.27134085 + -1.49025834 0.090228945 1.17161882 -1.4932549 0.050391458 1.24270129 -1.27740192 0.34688982 1.07748723 + -1.51495969 0.12706709 1.38151991 -1.51468134 0.099061087 1.3836261 -1.51247406 0.066039845 1.37739086 + -1.37664127 0.075812452 1.43581986 -1.37757993 0.11042149 1.44165874 -1.37533212 0.13621216 1.43616819 + -1.34465814 0.046573706 1.30237091 -1.32279277 0.09462525 1.22769153 -1.34411502 0.22316244 1.34592068 + -1.31561136 0.27243724 1.24055839 -1.60008514 0.30221847 0.88890553 -1.61175954 0.27472138 0.97168666 + -1.62235141 0.20781147 1.12027037 -1.62114358 0.17220697 1.18781424 -1.61325407 0.075291499 1.088164926 + -1.61132336 0.032886203 1.15802932 -1.62986016 0.10078299 1.27794099 -1.63110662 0.075668037 1.28133428 + -1.62776911 0.048473559 1.26373363 -1.71217084 0.27304074 0.81689477 -1.73020518 0.23896727 0.91104567 + -1.74155223 0.18051815 1.044327378 -1.72407758 0.078944191 0.89203799 -1.70363963 0.029892873 1.062970161 + -1.70607924 0.046166226 1.12365401 -1.71079063 0.063667186 1.14644337 -1.7221607 0.085701123 1.14707947 + -1.73358703 0.1288165 1.099842668 -1.048671246 0.47524649 -0.78393525 -1.086405039 0.3138445 -0.8101564 + -1.095468402 0.15310189 -0.80328417 -1.07762301 0.06126013 -0.76049227 -1.038097858 0.40242556 1.051813841 + -0.70041633 0.28392577 -0.082851999 -0.65469897 0.15482722 -0.62314087 -0.75550491 0.14938559 -0.75791276 + -0.91813087 0.14799979 -0.81565225 -0.70718193 0.059633657 -0.55761909 -0.84166759 0.003388701 -0.58563316 + -0.77788734 0.0060880324 -0.4905434 -1.063170671 0.057402838 1.13723755 -0.93659949 0.096299 1.14209282 + -0.87908781 0.18732665 1.13857973 -0.90992236 0.27833024 1.15134251 -1.058546782 0.37120187 1.1448772 + -1.042798996 0.035137653 0.98979914 -1.27442753 0.07353694 1.10050237 -1.44764829 0.058498051 1.048199296 + -0.89258134 0.30039084 1.054158926 -1.40134811 0.029370196 0.89338636 -1.59044659 0.054573704 0.96746564 + -1.55881369 0.026576305 0.83890712 -1.22574317 0.032236304 0.94252813 -1.6439724 0.024844088 0.79916376 + -1.34856641 0.6303128 0.070633501 -1.28396845 1.81671631 -0.30664989 -1.096570015 0.31765023 1.30719054 + -1.23192143 0.25841278 1.27126741 -1.24148631 0.15795468 1.25403953 -1.20917106 0.099202931 1.24294186 + -1.094448566 0.066933885 1.2518791 -0.98588765 0.090803199 1.27272773 -0.92632282 0.15145735 1.29083943 + -0.95089686 0.24497372 1.30935788 -0.87250292 0.64293087 0.31176773 -0.84988165 1.0021990538 0.019138001 + -0.74691278 0.96713775 -0.23478702 -0.80482918 1.0047805309 -0.56493324 -0.88175708 1.018072605 -0.65497863 + -1.038116336 0.74103004 -0.72521228 -0.93292248 0.74616313 -0.732669 -0.82643157 0.7351079 -0.70664215 + -0.72377336 0.71558326 -0.6181035 -1.28309977 0.70139539 -0.39559799 -1.26816702 0.76833802 -0.077118121 + -0.94709551 1.022724271 -0.66410226 -1.046890974 1.02291429 -0.6284976 -1.26218796 0.99183065 -0.36714825 + -1.20753276 1.015466928 -0.094831623 -0.83960599 0.78274935 0.082590371 -1.062051415 -0.0001290269 -0.64358175 + -1.27076626 0.0053805322 -0.28668937 -1.16948652 0.0074110487 -0.24078426 -1.026850343 0.010022695 -0.18765688 + -0.90125453 0.012268127 -0.14340463 -0.79295468 0.067937113 -0.1190175 -1.71515715 0.042718135 0.77632451 + -1.77953291 0.096281812 1.0024988651 -1.75933766 0.072384991 0.9906776 -1.71811688 0.056054037 0.99227446 + -1.680619 0.0706416 1.0018994808 -1.67114556 0.13067423 1.034397006 -1.67932546 0.16477434 1.045571685 + -1.10611284 0.68236858 0.28632975 -1.029324889 0.83708417 0.083398871 -1.0071296692 1.030024409 0.052681122 + -0.99383897 1.83120668 0.11490849 -0.82241994 1.82139289 0.040872127; + setAttr ".vt[498:663]" -0.24065836 15.22966385 -0.30574942 -0.64857626 15.3692503 0.17625031 + -0.77612662 15.78343296 0.30130538 -0.59382087 15.26827431 0.32525456 -0.4871344 15.068079948 0.15175632 + -0.55493045 15.33718109 0.1741066 -0.63454276 16.20087624 0.56575841 -0.24989946 16.69621468 0.70997655 + -0.44403267 15.14034176 -0.080664694 -0.66510797 15.77148628 0.27958596 -0.27383843 16.75072289 0.079248533 + -0.65987426 16.23870277 0.18488862 -0.62767118 15.64702606 0.41107613 -0.84950703 14.24668407 -0.55806112 + -0.92668819 14.15943718 -0.17188852 -0.054293334 15.45932484 1.20453727 -0.43211475 15.58750916 1.075014591 + -0.12007548 14.82025433 1.085306048 -0.11251266 14.99105263 1.10948431 -0.56218368 16.099069595 0.80639106 + -0.19947684 16.36986732 1.12949991 -0.48107034 15.84601402 1.055336833 -0.16247301 15.91368866 1.29799879 + -0.5652777 15.56540966 0.64835483 -0.13082312 15.55892658 1.28508735 -0.11004733 15.4428978 1.14520895 + -0.54302931 15.024586678 0.3210772 -0.49380997 15.034637451 0.27410343 -0.062375825 15.041158676 1.29462731 + -0.50567013 14.94906616 0.52390248 -0.32255644 14.6332798 -0.43131524 -0.50961703 14.44976521 -0.03834866 + -0.44290537 14.35839844 0.18513794 -0.30112413 14.26523495 0.32797244 -0.14546569 14.53156376 0.93686497 + -0.148351 14.60122776 0.73042983 -0.14003204 14.69508839 0.5482589 -0.13984288 14.20965576 0.45513856 + -2.25591922 10.031908035 -0.41467819 -2.10601401 11.4140625 -0.95002484 -1.9184165 12.081455231 -0.90251732 + -1.96050429 11.22274208 -0.8609395 -2.14138651 11.21227074 -0.95116913 -2.16465497 10.056437492 -0.394335 + -2.16456389 11.050236702 -0.88904113 -1.99256289 11.057920456 -0.81390268 -1.90262282 11.40665245 -0.8671279 + -2.19265532 12.071493149 -0.11839794 -1.57981586 12.040805817 -0.41869703 -2.32800293 12.12273979 -0.70375651 + -2.30476403 11.23779011 -0.91400266 -2.47499371 11.37358379 -0.60811764 -2.41603565 11.38724327 -0.39963487 + -2.56319308 10.15404129 -0.15599111 -2.39978433 10.051441193 -0.38215545 -2.50010061 10.10084629 -0.26460528 + -2.55590296 10.22798347 -0.00025413939 -2.13347411 12.097424507 -0.88452917 -1.71785498 11.47437382 -0.54972243 + -1.81318796 11.46612835 -0.29462749 -2.41021395 11.26754379 -0.8158887 -2.46961665 11.31261826 -0.71677679 + -1.9504323 12.044260979 -0.0038687538 -2.49181175 10.28914356 0.1245018 -2.28128242 10.31170177 0.21756397 + -2.12510037 10.28634548 0.18000595 -1.94916618 10.15480518 -0.2243939 -2.26642537 11.47678566 -0.91694844 + -1.7394768 11.26701832 -0.5828886 -2.42050838 11.58430767 -0.74886113 -2.38561487 11.56328583 -0.43716359 + -2.33439517 11.070815086 -0.83453292 -2.44684339 11.11052799 -0.74422711 -2.52745533 11.1398716 -0.6330626 + -2.51216507 11.18231487 -0.47948346 -2.44789886 11.20515442 -0.28492016 -2.03991127 11.1378088 -0.15050864 + -1.74142301 11.11095715 -0.56915265 -1.99887133 10.24879742 0.070884056 -1.85650253 11.10686874 -0.27382344 + -1.85051239 11.28812122 -0.30542248 -2.02392292 11.41172028 -0.17531885 -2.033223152 11.28166294 -0.18997061 + -2.20883465 11.47760677 -0.20442225 -2.21504974 11.33219147 -0.21327229 -2.22991323 11.17456627 -0.15790874 + -1.70064116 12.054386139 -0.14161858 -1.68512297 12.042677879 -0.7743665 -2.33280945 12.090650558 -0.39308912 + -2.32695746 8.9342947 0.79683763 -2.52978992 8.65649128 0.18784642 -2.41815042 8.65119648 0.14159361 + -2.69827056 8.36244678 0.85075319 -2.67001581 8.23154068 0.47344193 -2.66538382 7.96555138 0.52476323 + -2.70446086 8.26244164 0.64217865 -2.70674109 8.02531147 0.72164649 -2.52054596 7.90620852 0.41490415 + -2.53950882 7.89170456 0.46993572 -2.47793961 7.86318064 0.46208647 -2.47808409 7.8737874 0.4565376 + -2.64839888 8.01557827 0.89159292 -2.60853791 7.89847803 0.64819229 -2.53172541 7.90481091 0.3201372 + -2.45399237 7.89757347 0.24062154 -2.38834405 7.89934969 0.24660781 -2.40449667 7.96227026 0.22134359 + -2.50542617 8.23556423 0.19857505 -2.41530442 8.23192406 0.1589959 -2.6403811 7.99604464 0.86137348 + -2.62845421 8.14792061 1.092717648 -2.64225268 7.89386368 0.54260784 -2.69531465 7.95231867 0.75078702 + -2.70708942 8.13586044 0.96846551 -2.62059498 8.40397549 0.98860657 -2.26556611 8.829319 0.96164834 + -2.56394625 8.14013195 1.12135339 -2.25623441 8.68856335 1.11312723 -2.61328459 7.90008783 0.6677866 + -2.49414086 7.71306896 0.71976411 -2.46803713 7.72167063 0.73098207 -2.51137018 7.67955112 0.62801635 + -2.44052935 7.67322159 0.55228657 -2.38958979 7.6779027 0.55350411 -2.44600153 7.67362165 0.75538158 + -2.37353396 7.63933754 0.5648306 -2.47125506 7.66378117 0.74288023 -2.49195957 7.62491703 0.64755374 + -2.43431711 7.62085199 0.75345457 -2.4137876 7.64472151 0.76344085 -2.43612957 7.58099413 0.67085838 + -2.38122725 7.58802509 0.59068465 -2.34638596 7.61522532 0.58393896 -2.33026814 7.52382374 0.79344547 + -2.30892682 7.54407978 0.80385089 -2.33338022 7.49128342 0.72044498 -2.28679538 7.49435377 0.65018833 + -2.25832033 7.51028967 0.64084965 -2.27471781 7.51412153 0.81834555 -2.23116612 7.48410749 0.65741408 + -2.29347515 7.4906354 0.80971313 -2.30251694 7.44893312 0.74404919 -2.25375724 7.46514034 0.67357779 + -2.050377846 7.40214014 0.76919597 -2.041353226 7.40432215 0.76534104 -2.032284498 7.40127087 0.82386726 + -2.047884703 7.38994169 0.82229292 -2.064009666 7.41856003 0.86883187 -2.068291426 7.41358423 0.85765415 + -2.15472984 7.41975164 0.70789456 -2.19322324 7.44956255 0.84486556 -2.19906139 7.41665459 0.77819359 + -2.25937843 7.477777 0.82531112 -2.24817252 7.5012536 0.83576012 -2.25255942 7.43793631 0.75814605 + -2.21811533 7.44519472 0.68325162 -2.20197201 7.46530581 0.66589278 -2.17531896 7.46676064 0.85764825 + -2.13182998 7.43525743 0.69572914 -2.41773295 7.62415648 0.56514663 -2.53435183 7.80760431 1.22245097 + -2.49244714 7.8279376 1.2315414 -2.57984638 7.76806641 1.14296961 -2.53969955 7.73791838 1.05308497 + -2.48981285 7.74077272 1.032576561 -2.47987413 7.78148937 1.2581985; + setAttr ".vt[664:829]" -2.48516321 7.70254898 1.05403471 -2.51320052 7.75486183 1.25273347 + -2.55257726 7.70397806 1.17664754 -2.51979733 7.690557 1.086217642 -2.47227931 7.72292185 1.2645781 + -2.44382262 7.75169754 1.26636028 -2.50547767 7.6728735 1.19198859 -2.48626781 7.66223431 1.10239661 + -2.45778275 7.68354321 1.070983648 -2.38758183 7.65722656 1.28953719 -2.36195636 7.67714357 1.28789735 + -2.42064834 7.6094141 1.22257078 -2.40026832 7.59969568 1.13641703 -2.37262774 7.61594057 1.11461616 + -2.31797791 7.64619923 1.29895067 -2.33499742 7.58907413 1.13006008 -2.33438873 7.62579632 1.29859102 + -2.37027764 7.56890917 1.24182808 -2.34912491 7.57445955 1.15184844 -2.11240435 7.545084 1.18022692 + -2.1091063 7.55274963 1.16981637 -2.10736108 7.57293367 1.26512527 -2.098496914 7.58457518 1.26270282 + -2.082760334 7.56321669 1.21766269 -2.095882177 7.55310202 1.22849798 -2.20701075 7.60743618 1.29423881 + -2.19904304 7.62642717 1.29020786 -2.20753288 7.56573343 1.13397908 -2.21900868 7.55022573 1.15083218 + -2.24484873 7.55760241 1.23109162 -2.28085852 7.6144805 1.30124533 -2.26563358 7.6414628 1.29870963 + -2.30579019 7.5645752 1.23730278 -2.29722118 7.56324434 1.14981151 -2.28629446 7.58225107 1.12926936 + -2.52836943 7.68805981 0.9686439 -2.48859882 7.70318365 0.98532355 -2.56071091 7.65040064 0.88098419 + -2.50501299 7.63618469 0.80365741 -2.45311999 7.64179564 0.78433353 -2.47559857 7.67284632 1.00076413155 + -2.44748211 7.61085987 0.79321402 -2.50900245 7.6493907 0.98589832 -2.5414958 7.60418606 0.90206558 + -2.48561406 7.59715223 0.81329203 -2.33488464 7.54325294 1.039505959 -2.31582975 7.56596375 1.04468894 + -2.29857373 7.54905844 1.047738433 -2.35648274 7.49400711 0.97043788 -2.32312942 7.49135542 0.87943375 + -2.28415537 7.49639368 0.87357438 -2.29940271 7.50955153 0.86445141 -2.46256065 7.63120651 0.99545562 + -2.43717957 7.65722418 1.0021475554 -2.48765922 7.58013725 0.91851485 -2.44604826 7.57877874 0.82963765 + -2.41500568 7.59821892 0.80583507 -2.31286931 7.52176666 1.049516439 -2.325073 7.46716642 0.98338342 + -2.30120397 7.47027254 0.89294505 -2.049658775 7.50072622 1.051000834 -2.040341854 7.50619984 1.048935175 + -2.01876688 7.47821999 1.0063639879 -2.037326813 7.46682596 1.0081644058 -2.032666206 7.47004604 0.95010245 + -2.043893337 7.46702957 0.95057487 -2.15937948 7.46412086 0.9105652 -2.18952417 7.46052217 0.9989078 + -2.16964316 7.51531601 1.0691998 -2.26525068 7.52568722 1.057424307 -2.27470112 7.46371698 0.99025285 + -2.25418472 7.47389936 0.89475656 -2.25783515 7.5516057 1.056042671 -2.16056681 7.53779697 1.072206974 + -2.14767075 7.48143673 0.89472967 -2.24507642 7.49419069 0.87772578 -2.42722869 7.75815916 0.44287661 + -2.40153265 7.77239418 0.46434641 -2.43535233 7.7367816 0.36768025 -2.37841511 7.75616741 0.30521697 + -2.33371115 7.77380323 0.30267161 -2.38186598 7.72986507 0.47088 -2.31432772 7.73062658 0.31252465 + -2.39920068 7.71119261 0.45459974 -2.39726186 7.68338823 0.38435802 -2.35165215 7.70555449 0.32029122 + -2.35762978 7.68052387 0.46899974 -2.34635091 7.70387602 0.48354816 -2.35079312 7.65507841 0.40260029 + -2.31222105 7.67618275 0.3414081 -2.28302336 7.70589161 0.32899919 -2.29110169 7.65078783 0.4917686 + -2.28382921 7.62277651 0.43100047 -2.2493186 7.64056921 0.36956075 -2.2232039 7.67070818 0.36091703 + -2.27670932 7.68026304 0.504412 -2.24517703 7.66201735 0.5180493 -2.19314122 7.64636421 0.37819466 + -2.020064116 7.63222361 0.50281101 -2.015137196 7.64761543 0.50159961 -2.018835306 7.65062571 0.5414111 + -2.024831057 7.63209248 0.5422017 -2.047397852 7.65315914 0.57349885 -2.049603462 7.64030504 0.57138729 + -2.11316395 7.63350439 0.43311465 -2.15178132 7.61981726 0.41594058 -2.10453606 7.65558147 0.42188603 + -2.14429379 7.65173054 0.40133891 -2.20305896 7.6648016 0.53316528 -2.15526843 7.65975809 0.5504179 + -2.1610465 7.63225412 0.5376904 -2.19808865 7.62425327 0.52510983 -2.14195061 7.6011095 0.49187472 + -2.17934632 7.59824991 0.47544098 -2.19078827 8.37172413 1.32204151 -2.398844 8.25822926 1.27517164 + -2.39234734 8.21929646 1.24038267 -2.34985065 8.35956478 1.36432433 -2.27652144 8.017726898 1.40951002 + -2.26868582 8.010873795 1.39575064 -2.1547575 8.094281197 1.4670099 -2.20191956 8.011926651 1.45331109 + -2.22488642 8.031200409 1.47548211 -2.29865575 8.22184944 1.40994644 -2.28147793 8.17342377 1.43262231 + -2.31787109 8.2801199 1.38871455 -2.1721344 8.31182194 1.35383487 -2.15713072 8.24650097 1.38254285 + -2.34859848 8.13317585 1.32015502 -2.37329626 8.19425106 1.29359138 -2.34336805 8.11225224 1.29580283 + -2.36523175 8.16444206 1.25971723 -2.32286286 8.071572304 1.32999325 -2.32624459 8.086352348 1.3500787 + -2.26183844 8.88318729 0.70091861 -2.26988459 8.75745106 0.51896536 -2.31216311 8.67046738 0.17531145 + -2.23806381 8.68568039 0.29524693 -2.43480563 8.060657501 0.99161869 -2.47550631 7.95702219 0.93164754 + -2.4509573 7.9931922 1.02809298 -2.42943788 8.02742672 0.87588757 -2.41423845 7.98620415 0.76240021 + -2.43275332 7.90719938 0.7993753 -2.47090745 7.91914654 0.87808347 -2.4646368 7.88256788 0.72237778 + -2.44433546 7.88858366 0.67519253 -2.37585759 7.89713812 0.46779162 -2.40970588 7.87549257 0.51984608 + -2.38427258 7.98228884 0.5791592 -2.40587807 7.88348341 0.60236615 -2.32420993 7.92117643 0.3933844 + -2.32806492 7.99025297 0.37728462 -2.32792807 7.9708662 0.27691317 -2.31757784 7.90798759 0.3011727 + -2.37818289 8.19993687 0.69263774 -2.3805542 8.19748688 0.82534063 -2.27078724 8.21204376 0.31636438 + -2.31407619 8.22408295 0.19548184 -2.5064137 8.11510563 1.11579871 -2.19444585 8.6901226 0.79682004 + -2.20811701 8.52935696 1.014959455 -2.21266818 8.77626991 0.87295055 -2.21840668 8.60650063 1.052739978 + -2.33189559 7.72483492 0.66134554 -2.41057897 7.72879219 0.7388339; + setAttr ".vt[830:995]" -2.36021852 7.69025993 0.56695938 -2.40743232 7.69097281 0.75126165 + -2.34297991 7.6618247 0.57885373 -2.31668735 7.6834898 0.68081385 -2.37784719 7.66880894 0.75826412 + -2.31800032 7.64489794 0.59915292 -2.22900128 7.57866049 0.73316962 -2.27679348 7.56692457 0.7986089 + -2.22290969 7.54282618 0.65269798 -2.25135994 7.53843498 0.81217349 -2.21081972 7.51257944 0.66269839 + -2.33763337 7.69540119 0.66917503 -2.17569423 7.49891663 0.67082065 -2.16674137 7.55919981 0.75067884 + -2.2161994 7.53550053 0.8295747 -2.082775116 7.52169037 0.78227818 -2.13844824 7.50036478 0.85299432 + -2.10021925 7.46750879 0.70044088 -2.21795321 7.54969215 0.74352026 -2.40009761 7.79758453 1.1250273 + -2.44692707 7.83303022 1.21940291 -2.44165587 7.74951077 1.031624436 -2.45403481 7.79773951 1.24087739 + -2.45125675 7.72510433 1.047435045 -2.38561606 7.77128887 1.14064431 -2.41439176 7.77421999 1.24529147 + -2.42037153 7.71238852 1.060968757 -2.31084299 7.6956377 1.17527342 -2.34032273 7.69413805 1.26903915 + -2.34234762 7.64166784 1.1129545 -2.31141257 7.66246939 1.28212392 -2.32826209 7.61159086 1.13523424 + -2.42540026 7.77206421 1.14254153 -2.18356061 7.65171528 1.26960135 -2.1791997 7.66173935 1.17849433 + -2.19454169 7.60081768 1.12657547 -2.2565794 7.67728758 1.18101931 -2.25710297 7.66546106 1.27661359 + -2.27254748 7.61642265 1.12261975 -2.30816722 7.66352558 1.19214344 -2.37811947 7.69636869 0.88271493 + -2.43125224 7.71495008 0.97745454 -2.4073391 7.65560961 0.78723264 -2.44241762 7.69340611 0.99237347 + -2.41653442 7.63295937 0.79239291 -2.25518894 7.59063816 0.93997562 -2.27869081 7.56792307 1.037188411 + -2.28785729 7.58918905 1.030304432 -2.27295017 7.53740025 0.86217642 -2.25972819 7.52228165 0.87221533 + -2.36264253 7.68318796 0.89237565 -2.40334058 7.68321323 0.98739433 -2.38166428 7.628582 0.8028478 + -2.14709568 7.56268311 1.051816583 -2.24261212 7.57999086 1.036764622 -2.22891307 7.53548288 0.86953443 + -2.13300657 7.51683474 0.88884556 -2.21945238 7.59311914 0.94148076 -2.12104177 7.58311081 0.95450377 + -2.25160456 7.56966591 0.94769931 -2.28756332 7.80704165 0.41049418 -2.35361242 7.79120731 0.47193217 + -2.30043983 7.79135704 0.32492304 -2.34550714 7.75920773 0.47620249 -2.29355049 7.74675179 0.33154795 + -2.27264977 7.76806307 0.41831926 -2.31836987 7.74143553 0.48632643 -2.26784062 7.73261642 0.34394142 + -2.20845938 7.72823811 0.44334501 -2.25540566 7.70559883 0.50090933 -2.21259546 7.6949873 0.37790975 + -2.23472047 7.6823082 0.50767493 -2.18731332 7.66745234 0.389377 -2.29383349 7.77264786 0.41119117 + -2.14571905 7.6778717 0.40441388 -2.10514641 7.67807722 0.42289773 -2.11921072 7.7181139 0.48469332 + -2.17159867 7.72242403 0.46113741 -2.15060472 7.68860054 0.54510885 -2.19540095 7.69558477 0.52779138 + -2.19984126 7.70123911 0.44837713 -2.17699504 8.33043671 1.25850165 -2.1762197 8.3534565 1.2901026 + -2.35219979 8.2108736 1.21751356 -2.12779331 8.22896767 1.35023987 -2.14281368 8.30139923 1.31378627 + -2.14184117 8.27056503 1.27729928 -2.12307835 8.1999836 1.31546354 -2.32776427 8.15429592 1.22875583 + -2.309196 8.1019907 1.26904571 -2.11906123 8.15093136 1.35220528 -2.12457299 8.17986488 1.38260543 + -2.28920627 8.057537079 1.31002116 -2.14377356 8.060009956 1.43368649 -2.13556337 8.083381653 1.44798768 + -2.25261211 8.0072546005 1.38875079 -2.3926785 7.68140364 0.89009809 -2.5967474 8.2351799 0.30624798 + -2.65529156 8.68273926 0.37168208 -2.67542076 8.71995163 0.49594885 -2.66285467 8.78713417 0.67208171 + -2.25247288 7.62763405 0.5056774 -2.23861885 7.59943628 0.45191634 -2.20938778 7.6178546 0.39000845 + -2.55928016 7.96299934 0.88908064 -2.56563735 7.96961498 0.89614785 -2.53738904 7.8706007 0.68848616 + -2.53710699 7.87060976 0.67628217 -2.47413278 7.95016146 0.22078899 -2.57290173 7.94931221 0.31158593 + -2.50226188 8.054711342 1.11974716 -2.55814624 8.083747864 1.13280642 -2.617522 8.087612152 1.1074388 + -2.69355917 8.064723969 1.0016492605 -2.30171204 8.19176388 0.51406687 -2.2472589 8.73063183 0.42333531 + -2.60810995 8.65439987 0.24965614 -2.10593843 7.6058526 1.26175213 -2.087260485 7.59425211 1.20333588 + -2.11221886 7.56357908 1.15988135 -2.45245361 8.6810112 1.129143 -2.43134809 8.3641243 1.075913787 + -2.48125219 8.40258598 1.066558003 -2.52820969 8.47487831 1.072818756 -2.49064469 8.81540775 0.97873026 + -2.045121431 7.5278039 1.045787811 -2.017217159 7.51693296 0.98933059 -2.036756992 7.49034977 0.93608212 + -2.053640842 7.43590164 0.8686111 -2.01507163 7.42828655 0.81961662 -2.026279449 7.41915941 0.75942683 + -2.018545628 7.66411209 0.49479097 -2.024721384 7.67563105 0.53351814 -2.05036211 7.66841269 0.56973267 + -2.645432 8.83130264 0.32867187 -2.57092309 8.79146767 0.20411314 -2.41928363 8.76507187 0.15185063 + -2.36089087 8.77125549 0.18520527 -2.29842973 8.80608463 0.30714238 -2.31167698 8.85306454 0.44770813 + -2.31721354 8.91443062 0.60274792 -2.37749195 8.96919537 0.70049977 -2.15264225 8.20083809 1.41129386 + -2.18365574 8.022350311 1.40333331 -2.1710186 8.094589233 1.31075728 -2.17494726 8.1439867 1.26719356 + -2.19028783 8.20393276 1.22316885 -2.22995377 8.26586246 1.21721089 -2.27454901 8.40694046 0.96276039 + -2.26831388 8.47390938 0.75721169 -2.28019261 8.48501492 0.60445172 -2.23614788 8.47010326 0.46433222 + -2.21386957 8.45594025 0.29884398 -2.29277349 8.46324253 0.17291734 -2.41179991 8.46515369 0.14164633 + -2.51647162 8.45777798 0.1908498 -2.61008406 8.45988369 0.28627682 -2.6708715 8.46963215 0.42000777 + -2.69282174 8.51207924 0.56245697 -2.67983627 8.58779049 0.75012791 -2.5862956 8.71382618 0.91457629 + -2.62655592 8.83177567 0.74557304 -2.64067149 8.93311977 0.61921966 -2.36284256 8.41262054 1.31189787 + -2.20898008 8.41377258 1.28349638 -2.18693256 8.38404942 1.24966145; + setAttr ".vt[996:1161]" -2.1809442 8.35301495 1.2188766 -2.23422265 8.28600216 1.18366873 + -2.36041379 8.23568344 1.1888485 -2.40280867 8.25444794 1.20745778 -2.41234112 8.29714489 1.23813295 + -2.55472851 8.85876465 0.16511399 -2.63939738 8.90927124 0.29812536 -2.30209947 8.87766457 0.27328587 + -2.3045373 8.99214935 0.57789767 -2.35283875 8.83546448 0.16335647 -2.40143847 8.833951 0.13294566 + -2.28344631 8.93493366 0.42109841 -2.36977434 9.029989243 0.66720951 -2.27960348 9.13998795 0.52327913 + -2.25856423 9.021714211 0.22680457 -2.24959898 9.078717232 0.38153487 -2.37457967 8.99038792 0.080469318 + -2.52270174 9.022769928 0.088983484 -2.61653447 9.089993477 0.20965223 -2.35968924 9.19122505 0.61035693 + -2.31965613 8.99536991 0.12105806 -2.61522603 9.19663239 0.49479282 -2.62756157 9.0097332001 0.58357537 + -2.52605128 8.90906334 0.81733322 -2.53237176 8.97275543 0.70266736 -2.54841709 9.03887558 0.6672368 + -2.53980923 9.21921253 0.59154665 -0.77471268 13.75494576 0.45399049 -1.070301771 13.7273531 0.33277729 + -0.38384348 13.74255371 0.60003924 -0.30676073 13.836092 0.43829268 -0.663481 13.83743763 0.29209363 + -0.96537185 13.82090187 0.13243999 -0.80009091 14.022947311 -0.78394771 -1.30909276 12.5443306 -0.60095531 + -1.40700924 12.50159645 -0.2215119 -1.12110543 12.26210403 0.74943775 -0.68242908 13.60438156 -0.98269093 + -1.40368032 12.5305357 0.2495912 -1.96361613 13.68395233 -0.56458873 -2.032382488 13.63870049 -0.19675262 + -1.46045828 12.88046837 -0.58254844 -1.63001001 12.91728687 -0.78462517 -1.47370136 12.81397057 -0.23338951 + -2.21870184 12.71028042 -0.67336023 -1.9313904 12.79607296 0.17009214 -1.42713594 12.82779121 0.45827115 + -1.97201002 12.86836529 -0.81631845 -1.76406515 13.60364342 -0.7182945 -1.41611755 13.076757431 -0.23359172 + -1.32359207 13.30494499 0.44416133 -1.53370893 13.42260742 -0.73648357 -1.42361975 13.10314178 -0.58365208 + -1.74409842 13.43239212 0.23950133 -1.49173641 13.19186592 0.25430381 -2.18895912 12.68298435 -0.03553357 + -2.28276587 12.70767307 -0.3190769 -1.4496423 13.12038231 0.082570709 -1.61265218 12.8475914 0.055573031 + -1.96827686 13.54897404 0.070359968 -0.97647595 10.71192169 0.63878596 -1.062952995 10.75070572 0.1276101 + -0.84700876 10.77582264 -0.32022876 -0.63941777 10.6592474 1.14812267 -0.66179776 12.54990101 1.20364356 + -1.1677959 12.59675694 0.86473513 -0.49252516 12.68757153 -0.96209669 -0.62206388 10.82671642 -0.48245335 + -0.6635114 12.22486782 1.13015342 -2.37627053 8.22799778 0.99375212 -2.47720456 8.26344109 1.094510198 + -2.53787231 8.29483414 1.066030741 -1.37204218 4.77504396 0.30520287 -0.31036866 14.75404739 0.46096042 + -0.32150799 14.69697094 0.57255757 -0.31818238 14.64941406 0.76068747 -0.41634691 14.86025238 0.84129953 + -0.46255174 15.47357845 0.93640858 -0.94953138 0.53782803 0.609182 -1.24784994 0.53967106 0.57272863 + -1.49381459 0.47372571 0.36107138 -1.58840525 0.33449095 0.17805725 -1.59216976 0.25003368 0.13634776 + -1.57759213 0.14060329 0.1330245 -1.55754781 0.065680504 0.15553036 -1.47370756 0.013618652 0.19449237 + -1.3716532 0.015402446 0.228571 -1.21572936 0.018135304 0.28093538 -1.052459717 0.020955848 0.33388075 + -0.90553916 0.093348652 0.38234964 -0.78427863 0.22074163 0.43695748 -0.78546339 0.29302958 0.48004249 + -0.81347561 0.40446469 0.53096837 -2.46868253 8.38004971 1.14446163 -2.44090271 8.33914948 1.13098049 + -2.40212083 8.30863285 1.078383088 -2.25630903 8.36145687 1.066422343 -2.19969392 8.45424652 1.10287201 + -2.20604086 8.49868774 1.14943159 -2.23407793 8.54581738 1.2064724 -2.40819669 8.54294491 1.22997928 + -0.25631201 15.6686697 -0.39350063 -0.52333528 15.51026535 -0.12104277 -0.55932844 15.25364685 0.28494483 + -0.56404692 7.51263618 1.043949008 -0.97607458 7.53804398 1.12899184 -1.4465735 7.55644989 0.83189809 + -1.51411176 8.51521015 0.29952818 -1.4298867 8.45656204 0.79443449 -0.55226856 8.059742928 1.045358181 + -0.9539156 8.23951435 1.10769939 -2.62396836 9.13869953 0.3353748 -2.64589381 8.94976521 0.4214626 + -2.65519571 8.87133884 0.44961596 -1.080360532 0.11518574 1.50741851 -1.15378201 0.11436905 1.50427461 + -1.21529138 0.12019928 1.48556888 -0.57623178 13.13516045 -0.99981451 -0.10159411 13.83220768 0.49529573 + -0.19266145 10.42873669 -0.48355907 -0.32788053 10.89085388 -0.46522933 -0.9433865 12.62608719 -0.80701435 + -1.046620607 13.080767632 -0.89018905 -1.16930079 13.49607468 -0.87522334 -1.34276414 13.88356781 -0.73312151 + -1.44653225 14.057746887 -0.53043997 -1.47501683 13.98967743 -0.15286607 -1.4193064 13.81589699 0.056775033 + -1.35251856 13.62962246 0.22465652 -0.46395707 14.54793549 -0.25559613 -0.37139755 15.19937325 -0.25410026 + -0.42219925 15.62171936 -0.31548601 -0.49582654 16.62443542 0.11330778 -0.4704594 16.60032845 0.66704077 + -0.41693556 16.29612923 1.026978135 -0.3389529 15.89920998 1.22281444 -0.28429085 15.56566906 1.22065663 + -0.28691649 15.45867825 1.058277607 -0.28610459 14.84006977 0.95352054 -0.29638746 14.69559956 0.8800863 + -0.1311558 14.58813381 1.012080908 -0.27755111 16.27834129 -0.3512961 -0.48056638 16.14053535 -0.24254926 + -0.60731554 15.91001701 -0.078181177 -0.63422143 15.59236526 0.15670988 -0.72124064 15.58388329 0.15616067 + -0.61871725 15.51837158 0.38238794 -0.56183445 15.44569874 0.6157341 -0.46973783 15.33652687 0.95962447 + -0.28572273 15.31706238 1.068576813 -0.13002266 15.31656837 1.134758 -0.056362826 15.32353306 1.23200631 + -1.083186507 13.22800827 0.72296625 -0.58418071 13.19764328 0.90900499 -0.62729257 11.43884754 1.12309802 + -1.065110564 11.50035191 0.70917284 -1.23203027 11.60597801 0.18991897 -1.21743405 11.65394783 -0.25390083 + -1.012308478 11.70467091 -0.4960441 -0.65461785 11.78033638 -0.65890759 -0.2702657 11.86323357 -0.7705403 + -1.69913101 13.75435066 0.080481455 -1.58297086 13.56886673 0.24112701 -1.49031675 13.38838673 0.34368595 + -1.439098 12.96338654 0.37548509 -1.39279664 12.73374176 0.18484907; + setAttr ".vt[1162:1327]" -1.3921628 12.73749924 -0.20197077 -1.33869302 12.77767277 -0.57140231 + -1.24756503 13.11426067 -0.76187658 -1.38329005 13.48734379 -0.8046121 -1.58924782 13.78286076 -0.71838117 + -1.74021268 13.9019413 -0.54135412 -1.75976872 13.87557316 -0.15823759 -2.14951777 13.16989708 0.028508328 + -1.90396357 13.14706326 0.211943 -1.68457115 13.1087513 0.23161022 -1.56254876 13.074278831 0.088471726 + -1.48965907 13.023816109 -0.21996003 -1.39658964 13.12631702 -0.53045332 -1.58641303 13.23672676 -0.74091059 + -1.89335525 13.23176003 -0.76916832 -2.16276145 13.22267342 -0.61435187 -2.23164415 13.22933102 -0.2455028 + -1.21222949 12.91077995 -0.71523792 1.20393169 9.44025898 0.85121667 1.27283323 9.72514439 0.46017617 + 1.030815721 10.12021065 0.55849099 1.13876653 10.29289913 0.011660585 1.22257912 9.81996632 -0.13244937 + 0.66309524 9.025151253 1.18608224 0.72410876 9.90525913 -0.62350476 0.76660442 10.36813545 -0.41885775 + 0.43961188 8.50921917 1.099303365 0.49315798 8.40100574 1.021306634 1.03891933 5.054422855 0.88697958 + 0.58692837 6.56479836 0.98498112 0.3726218 6.71005774 -0.35092676 0.58985662 5.39427614 -0.20237339 + 0.23224264 6.57994652 0.67231494 1.34317458 6.76038885 -0.33885136 0.67504299 5.058180809 -0.15175079 + 0.42529187 4.98247433 0.42594153 0.47522289 4.50304937 0.2962217 0.4279466 5.3102355 0.51151764 + 0.75347686 4.23971844 0.52705276 1.0043781996 4.056382656 0.54827309 1.041778088 4.71236563 0.84025729 + 0.71884775 4.5022254 0.63284856 1.27570069 4.5169282 0.54013318 1.034293532 4.49405432 0.77360559 + 0.71166694 4.99971533 0.74955964 0.71077919 4.7253809 0.6971693 1.27640426 4.73079824 0.60820794 + 1.02156353 4.23025084 0.66264206 1.25859141 4.26112747 0.42735916 1.39573741 8.60988331 -0.49487698 + 1.37576973 7.63443136 -0.42611691 0.23679809 7.61134338 -0.39524314 0.77308756 8.61679649 -0.95550823 + 1.23972464 4.095407009 0.37089163 1.16646647 5.016129494 -0.04545575 1.19151771 4.8055644 -0.068218231 + 1.36903322 4.98824596 0.31443548 1.35252047 4.55985403 0.22791263 1.26522398 5.022899628 0.66050464 + 0.70154095 5.24078608 0.79540563 1.49064553 6.68411827 0.30955341 1.53493059 7.59433413 0.30190331 + 1.023600578 5.23672581 0.88407439 1.20537734 2.34184456 -0.0056892503 0.77142709 2.26977992 -0.61210799 + 0.73292994 2.82130003 -0.68114901 0.7077238 4.3834343 -0.34520954 0.6581105 2.26606226 -0.49982187 + 0.60070223 2.80711389 -0.54830563 0.58952945 4.12775946 0.18750575 0.50725937 2.86165833 -0.2604481 + 0.62733144 2.31508946 -0.175658 1.27846324 2.29820633 -0.27828148 1.39448667 2.91845703 -0.47614527 + 0.74477363 4.68912029 -0.1978538 0.71850383 4.8513546 -0.16113117 1.36174273 4.34491396 -0.1492247 + 1.2203449 4.60275602 -0.11301445 0.46885246 4.26418352 0.0025728571 0.59895188 4.3528986 -0.23869191 + 0.59639102 4.65466118 -0.089084551 0.78973609 7.64370012 -0.60853112 0.83169764 6.75467157 -0.44464999 + 1.28305185 5.25763559 0.68044674 1.36255252 5.30894804 0.32933486 1.18449557 5.35148096 -0.11173421 + 0.96699822 4.6754446 -0.21368361 0.93538117 4.84683895 -0.17999321 0.90130097 5.061037064 -0.17530383 + 0.85492778 5.39225864 -0.24407899 1.067870378 4.3843565 -0.37652901 0.85701066 4.38700962 -0.43274572 + 0.9514659 2.84007597 -0.74000758 0.95183754 2.26565027 -0.6491161 1.20085025 2.86284494 -0.66103625 + 1.14487743 2.298841 -0.58737522 0.78246224 4.073489666 0.43143767 0.55912137 4.25505686 0.21117592 + 1.00086283684 6.56979799 1.071010232 1.41802418 6.62678337 0.8105433 1.36598969 4.20544434 0.08716885 + 1.28001213 3.88267446 0.28996804 1.42349637 3.95087981 -0.051312156 1.42811775 3.98702836 -0.35552937 + 1.1848098 3.99521446 -0.54680133 0.94205618 3.98013258 -0.6374768 0.71632719 3.97777581 -0.57505488 + 0.55675399 3.96572471 -0.44351345 0.42272741 3.92606115 -0.13239941 0.61989915 3.86777282 0.13290767 + 1.34519732 4.31872654 0.14314574 1.31063545 3.41637707 0.17845625 1.48169041 3.45186734 -0.18369663 + 1.48274612 3.48345208 -0.46440452 1.23577547 3.47355556 -0.66268998 0.95241928 3.45802951 -0.7664659 + 0.70134962 3.46444678 -0.69864637 0.52918828 3.466043 -0.56295228 0.41219479 3.47912025 -0.22203389 + 0.6350255 3.43155289 0.029007999 0.78665447 8.883955 1.0073524714 0.10351342 8.74051571 -0.83118379 + 0.13623954 8.046209335 -0.65085334 0.15618011 7.95523453 0.79724932 0.11287121 7.91483641 0.16871667 + 0.21818677 6.64757252 0.080950901 0.13280129 7.51243973 0.78556478 0.099844702 7.55883217 0.15120623 + 0.46394295 5.37542725 -0.0099762464 0.52915782 5.036091805 -0.032660414 0.5718742 4.80943441 -0.049013048 + 0.44138283 4.73416996 0.36929616 0.70762843 9.86446095 1.18046188 0.4655458 10.39655685 -0.52140051 + 0.29227343 9.79662323 -0.7000556 0.76883346 3.8337431 0.35603225 0.78298897 3.3955245 0.24790761 + 0.78747171 2.34574485 0.048784748 1.0019823313 3.81331229 0.48470187 1.014687419 3.37912297 0.37243149 + 0.98626864 2.35708809 0.17760575 1.37488508 0.302203 -0.35502076 1.38555813 0.16242918 -0.34318638 + 1.34414923 0.057180189 -0.3151356 0.6869027 0.15893555 -0.10345125 0.68164086 0.4160744 -0.1127525 + 1.34149301 0.43139434 -0.35273087 0.69356972 0.66928709 -0.18465912 1.17634988 1.80141699 -0.033074126 + 0.67546999 1.81931686 -0.19529212 0.82983297 1.83391452 -0.58715475 0.76437473 0.47814524 -0.78976715 + 0.75412393 0.31077808 -0.80459309 1.5690093 0.18050267 0.96060652 1.61006498 0.17628002 0.94688386 + 1.69511855 0.19043261 0.81483412 1.70139742 0.14251947 0.92210567 1.69839549 0.099208951 1.055144072 + 1.68873572 0.061386507 1.1162585 1.46776545 0.18586695 1.039050341 1.45273137 0.18945776 1.052346706 + 1.4612174 0.14956266 1.19709897 1.46857131 0.12260288 1.28205264 1.30781507 0.21214847 1.096553445 + 1.32374549 0.1600935 1.20980477 1.33337379 0.12337313 1.30253112; + setAttr ".vt[1328:1493]" 1.28037727 0.221799 1.10756981 1.086762905 0.24051552 1.14533734 + 1.1427393 0.18194088 1.37082314 0.86412215 0.078583144 1.37246287 0.83218408 0.069803432 1.023941517 + 1.71268916 0.12912941 0.81160975 1.71248078 0.10844514 0.91785228 1.68421412 0.025372779 1.11097884 + 1.70267987 0.081324592 0.79669446 1.69176531 0.072152883 0.91827226 1.66350603 0.0015894331 1.097483635 + 1.59556377 0.04343595 0.95750284 1.59896791 0.023791866 1.10228825 1.31556368 0.042276271 1.085679889 + 1.34858775 0.080764949 1.21405983 1.34857023 0.056270674 1.28956449 1.43575644 0.032500222 1.050012231 + 1.45253038 0.071700707 1.18979526 1.46516263 0.049237795 1.2670027 1.46712565 0.034668282 1.020787239 + 1.64484286 0.012620586 1.15528965 1.26360989 0.041334942 1.099068284 1.065635324 0.04656855 1.13911092 + 1.12570369 0.016127139 1.34288788 1.10082889 0.12261061 1.14536548 1.16470599 0.087323293 1.34474993 + 1.12317359 0.23745428 1.13258338 1.12652791 0.12815543 1.15044904 1.30969501 0.095030144 1.11279178 + 1.59547818 0.12481735 0.95072865 1.59126925 0.075555414 1.12306082 1.128654 0.042948522 1.12695098 + 0.9861958 0.035094671 1.50419152 1.110829 0.043804742 1.48755252 0.91712326 0.010579755 1.35580289 + 1.44931078 0.10462482 1.057118177 1.29374075 0.094923548 1.11754382 0.77393579 0.16587041 1.047501802 + 0.89236575 0.17466214 1.39293182 0.9889636 0.1058335 1.52587748 1.10816431 0.11042321 1.50937498 + 1.60209334 0.098815233 1.13190877 1.603127 0.029321197 1.16785288 1.60484743 0.042674292 1.17541373 + 1.61467767 0.058253046 1.17648566 1.65364528 0.043619059 1.16659462 1.65268266 0.023209875 1.16272807 + 1.45826709 0.05973424 1.39452946 1.45167577 0.080319658 1.38625205 1.37663686 0.081607424 1.39735055 + 1.37307608 0.062974297 1.40137112 1.37543178 0.042958837 1.40199149 1.45567989 0.040143453 1.39121318 + 1.33129203 0.10731469 1.21494806 1.46559417 0.10704733 1.052136779 1.55325425 0.04543896 0.96988064 + 1.56903791 0.12218939 0.9627564 1.34067154 0.08532545 1.29644108 1.47433662 0.084431402 1.26734388 + 1.46719289 0.095094621 1.19180346 1.31461954 0.096263766 1.22481453 1.3288846 0.068814829 1.33059764 + 1.18312573 0.087716162 1.34940577 1.15637207 0.1263295 1.24891555 1.31851125 0.045268744 1.43724358 + 1.24134898 0.043777235 1.45007622 1.23766196 0.067736812 1.44984782 1.24255967 0.08784683 1.44723153 + 1.3152889 0.086719818 1.441517 1.32293785 0.06645678 1.44423747 1.32235694 0.020121977 1.32114851 + 1.3038708 0.077444091 1.23792112 1.18805099 0.043454003 1.33986735 1.16910493 0.077123433 1.25352585 + 1.18684137 0.13180125 1.35801923 1.15614426 0.15659125 1.25545788 1.31834805 0.1344997 1.3441155 + 1.31022978 0.17642361 1.24007189 1.58649695 0.13068368 1.12912273 1.58743083 0.1076216 1.20143628 + 1.47811854 0.12795512 1.14515364 1.47958279 0.10894805 1.21627891 1.47717631 0.073762164 1.12622118 + 1.47950256 0.020777896 1.19538569 1.57861841 0.078690596 1.11087453 1.58642602 0.034631316 1.17810965 + 1.57481694 0.043917358 1.28919435 1.57237554 0.062896065 1.28826332 1.51006222 0.063822776 1.30531633 + 1.50479031 0.042151619 1.30834031 1.50603592 0.026789499 1.29526246 1.57095289 0.02246885 1.27847481 + 1.46842468 0.091371439 1.13585758 1.46837687 0.072314501 1.20695055 1.59206021 0.076317072 1.18872428 + 1.59125805 0.094057016 1.11489964 0.643282 0.45195055 -0.67392325 0.62827277 0.29801646 -0.67430824 + 0.7199555 1.82286024 -0.47671312 1.044238329 1.82330728 -0.57945299 0.91293561 1.8295002 -0.6225704 + 0.90608692 0.48296532 -0.81482887 0.90994185 0.31782043 -0.84059501 0.93107498 0.058051884 -0.75377667 + 0.78807932 0.055733386 -0.69938838 0.94924015 -0.00091475592 -0.64058226 1.020888805 0.2187137 1.3897748 + 1.054890275 0.03019719 1.50298572 1.029056787 -0.010138905 1.34690678 1.053274035 0.11580727 1.52849019 + 1.18130481 0.34427217 1.026647091 1.34510171 0.31219137 0.98882794 1.37472832 0.2619864 1.074065089 + 1.39694309 0.19705543 1.20995092 1.40737998 0.16620912 1.29803014 1.40407932 0.054870285 1.19557631 + 1.40434301 0.013549879 1.26583278 1.19242775 0.31128016 1.098336697 1.41870689 0.087446235 1.40705073 + 1.41869295 0.059400693 1.40853477 1.41719747 0.026500653 1.40149796 1.27871132 0.033616059 1.45445824 + 1.27893722 0.068098724 1.46108103 1.27661097 0.0939762 1.4560647 1.25322342 0.0069201831 1.31920958 + 1.23416853 0.056334287 1.24475837 1.24842262 0.18251514 1.36652255 1.22411966 0.23374313 1.26117682 + 1.52396226 0.27399671 0.92233837 1.5322032 0.24485166 1.0049077272 1.5368675 0.17488135 1.15229976 + 1.53303933 0.13782573 1.21894145 1.53094912 0.042996664 1.11697769 1.5263797 -0.00091561553 1.18575799 + 1.53855479 0.064578421 1.30777073 1.53996813 0.039411023 1.31066513 1.53778672 0.012568147 1.29235661 + 1.63959491 0.24752951 0.85440952 1.65375495 0.21163096 0.9484545 1.65976357 0.15045586 1.080778122 + 1.65056014 0.052000739 0.92573953 1.62297773 -0.00091561553 1.094560266 1.62243748 0.014075131 1.15562654 + 1.62587821 0.031130781 1.1789645 1.6369257 0.053261865 1.18054819 1.64993978 0.09749566 1.13477612 + 1.047182322 0.47719193 -0.76755786 1.088149548 0.31679058 -0.79569525 1.098959208 0.15604191 -0.79194939 + 1.08036232 0.063125595 -0.75194085 0.95382261 0.3648825 1.064013124 0.6697619 0.26729047 -0.085845374 + 0.65039611 0.14935549 -0.63019252 0.75731677 0.14784765 -0.76075912 0.92243028 0.1493787 -0.81174099 + 0.70106184 0.053325478 -0.56464803 0.83741367 -0.00091475592 -0.58829397 0.76932579 -0.00091475592 -0.49589226 + 0.97941357 0.018388044 1.14287519 0.85224682 0.05586319 1.14334059 0.79378283 0.14634582 1.13943291 + 0.82283407 0.23736662 1.15543234 0.97040749 0.33188102 1.15713239 0.96607405 -0.00091561553 0.99428523 + 1.19192529 0.037484527 1.11526275 1.36754966 0.025358165 1.06985116; + setAttr ".vt[1494:1659]" 0.8096596 0.26132703 1.058126211 1.32873249 -0.00091561553 0.91267484 + 1.51393652 0.024640348 0.99502808 1.48855925 -0.00091561553 0.86470473 1.1510272 -0.00091561553 0.95456553 + 1.57546782 -0.00091561553 0.82848936 1.31109381 0.6199702 0.099262625 1.26327419 1.80771744 -0.30213135 + 1.00167799 0.27525437 1.31966269 1.13929391 0.21820134 1.28808749 1.15092671 0.11824182 1.2690922 + 1.1199069 0.059411865 1.25539577 1.0053079128 0.025778539 1.25888181 0.89559823 0.048072953 1.2757386 + 0.8344872 0.1077067 1.29268563 0.85698861 0.20105112 1.31422985 0.8273952 0.62691534 0.32697788 + 0.82605642 0.99872684 0.034048874 0.72298336 0.96087253 -0.21942112 0.78108037 0.99424458 -0.55001533 + 0.85806829 1.0061688423 -0.64021301 1.024424672 0.73633033 -0.70560789 0.91880131 0.74047387 -0.71576399 + 0.8115322 0.72857189 -0.69243038 0.70637727 0.70773715 -0.60644674 1.26016343 0.69512594 -0.37023962 + 1.23980105 0.76120031 -0.054602627 0.92342514 1.01049304 -0.64938474 1.023216009 1.010793805 -0.61377048 + 1.238289 0.98276383 -0.3503089 1.18376827 1.0094037056 -0.080029249 0.80954254 0.77601731 0.099962622 + 1.060262799 -0.00091475592 -0.63714522 1.25241673 -0.00091475592 -0.271929 1.14912057 -0.00091475592 -0.23021948 + 1.004171133 -0.00091475592 -0.18299051 0.87665486 -0.00091475592 -0.14393137 0.76663631 0.053096808 -0.12283687 + 1.64739311 0.018177427 0.80900663 1.70069766 0.067533933 1.038738728 1.68136978 0.043689549 1.025577903 + 1.64032781 0.026904693 1.025115013 1.60224092 0.040894795 1.033495784 1.59052241 0.10011332 1.066868186 + 1.59774625 0.13404839 1.079108596 1.064202547 0.6700815 0.30848473 1.0012345314 0.83166224 0.10193662 + 0.98340493 1.026443124 0.067257747 0.97315419 1.82839382 0.11916538 0.80170739 1.81822848 0.045235749 + 0.24195772 15.22966385 -0.30574942 0.64975953 15.3692503 0.17625031 0.77696526 15.78343296 0.30130538 + 0.59508812 15.26827431 0.32525456 0.48856822 15.068079948 0.15175632 0.55614036 15.33718109 0.1741066 + 0.63503408 16.20087624 0.56575841 0.24997868 16.69621468 0.70997655 0.44540641 15.14034176 -0.080664694 + 0.66595656 15.77148628 0.27958596 0.27387229 16.75072289 0.079248533 0.66033411 16.23870277 0.18488862 + 0.62862337 15.64702606 0.41107613 0.85487825 14.24641418 -0.55794013 0.9329775 14.15792656 -0.17190766 + 0.055401638 15.45932484 1.20453727 0.43311641 15.58750916 1.075014591 0.12171549 14.82025433 1.085306048 + 0.11401056 14.99105263 1.10948431 0.5627597 16.099069595 0.80639106 0.19982758 16.36986732 1.12949991 + 0.48185694 15.84601402 1.055336833 0.16320328 15.91368866 1.29799879 0.56629771 15.56540966 0.64835483 + 0.13184856 15.55892658 1.28508735 0.11116931 15.4428978 1.14520895 0.54449934 15.024586678 0.3210772 + 0.49527162 15.034637451 0.27410343 0.063832045 15.041158676 1.29462731 0.50720292 14.94906616 0.52390248 + 0.32431868 14.6332798 -0.43131524 0.51153195 14.44976521 -0.03834866 0.44502431 14.3584013 0.18513796 + 0.30324414 14.26520157 0.32797244 0.14734589 14.53156376 0.93686497 0.15017323 14.60122776 0.73042983 + 0.14177617 14.69508839 0.5482589 0.14195758 14.20965576 0.45513856 2.36031199 10.013544083 -0.36885402 + 2.28604579 11.41787624 -0.83215445 2.064279795 12.066934586 -0.83199525 2.13236761 11.22285175 -0.79354972 + 2.32981205 11.21992016 -0.8302778 2.26605392 10.033370018 -0.37771773 2.34427929 11.057483673 -0.77259135 + 2.15943766 11.058077812 -0.75009036 2.069601059 11.40353107 -0.80591774 2.17790985 12.058211327 -0.011919132 + 1.63991475 12.017400742 -0.42578274 2.4257021 12.11773205 -0.54649055 2.47812867 11.24799633 -0.74766505 + 2.56119084 11.37446404 -0.40087003 2.45154214 11.37515259 -0.21735168 2.57252765 10.122015 -0.013361268 + 2.48737812 10.034734726 -0.28929636 2.5466609 10.076881409 -0.14106983 2.51654553 10.18124294 0.13711098 + 2.27211428 12.08854866 -0.76657975 1.81652105 11.45838642 -0.54584026 1.85106182 11.43779755 -0.28525701 + 2.55451202 11.27661896 -0.62255758 2.58516097 11.31898499 -0.50867474 1.92065644 12.025392532 0.042997234 + 2.41609454 10.2291584 0.23837484 2.187814 10.23724365 0.25846905 2.051462173 10.21024799 0.17009164 + 1.99912393 10.10577106 -0.25406119 2.43170333 11.48265648 -0.75608349 1.85007179 11.25241089 -0.58628839 + 2.53804398 11.58791733 -0.55127585 2.4314754 11.55514908 -0.2612963 2.49365973 11.079717636 -0.67088526 + 2.57745957 11.11806774 -0.55020964 2.62535286 11.14412212 -0.41862869 2.56869125 11.17575359 -0.27339774 + 2.45427203 11.18317223 -0.10722602 2.031567335 11.096670151 -0.10621155 1.85659313 11.094105721 -0.59515989 + 1.96465135 10.1772604 0.023326775 1.88928533 11.072133064 -0.28107512 1.8898524 11.25790977 -0.29319414 + 2.024316549 11.37744808 -0.11967214 2.036547899 11.24494743 -0.13557371 2.20797801 11.44748306 -0.093522318 + 2.21540308 11.29978275 -0.10323452 2.21384668 11.13696194 -0.054367907 1.70841205 12.032687187 -0.13947149 + 1.81002748 12.021547318 -0.75517935 2.36888456 12.084700584 -0.24422695 2.11915469 8.83246422 0.69962293 + 2.52487421 8.58925056 0.20984069 2.43709326 8.5824728 0.12341703 2.45813966 8.26924229 0.88875353 + 2.56754041 8.15216064 0.52439898 2.55449986 7.88678217 0.56452203 2.53989434 8.17735767 0.69536483 + 2.52088451 7.93520832 0.76571703 2.45959353 7.83129263 0.40755579 2.46308351 7.8116641 0.46310487 + 2.4121449 7.7846899 0.43084827 2.40928555 7.79727554 0.42797387 2.40513754 7.91837072 0.89887094 + 2.46235871 7.80994463 0.65451932 2.50242972 7.82851553 0.32685578 2.4610846 7.81455517 0.22164823 + 2.39900374 7.81177855 0.19965687 2.42096758 7.8760891 0.18017879 2.5104723 8.16196156 0.20469899 + 2.44093704 8.15670872 0.13216163 2.40745735 7.90148926 0.86632383 2.31351757 8.043709755 1.080332041 + 2.53320146 7.8152709 0.57027495 2.49861169 7.85986519 0.78618032 2.43147731 8.035692215 0.99776995 + 2.33135748 8.30506039 0.99318099 1.99734545 8.77675438 0.81450266; + setAttr ".vt[1660:1825]" 2.24344563 8.036634445 1.07915926 1.91336346 8.67665577 0.95783055 + 2.45551467 7.81189585 0.67412823 2.36017632 7.62731647 0.66839725 2.33101702 7.63242722 0.66857255 + 2.41316462 7.60198832 0.5895564 2.37573433 7.59354639 0.4911668 2.32784104 7.59290123 0.47208643 + 2.3092792 7.5811758 0.68064028 2.31529427 7.55321407 0.47478479 2.33798742 7.57423592 0.67896777 + 2.39562273 7.54336786 0.59811938 2.30415654 7.52835321 0.67180026 2.27947092 7.55034351 0.6735549 + 2.3396194 7.49360609 0.59506583 2.31786013 7.50210094 0.49932337 2.28581142 7.5275445 0.48000619 + 2.20262313 7.4232235 0.66189826 2.17738366 7.44154072 0.66355109 2.23518276 7.39528751 0.59487092 + 2.21786761 7.39975405 0.51153219 2.19367266 7.41450644 0.49198869 2.14357829 7.40909719 0.66165572 + 2.16551566 7.38628006 0.49506944 2.16540217 7.38692284 0.66039431 2.20075893 7.34936476 0.60209769 + 2.18137932 7.36742163 0.51829213 1.96080673 7.2966342 0.51770568 1.95391273 7.29887056 0.51053184 + 1.92350614 7.29274702 0.56003708 1.93882632 7.28174734 0.5645594 1.93490469 7.3082428 0.61510706 + 1.94325185 7.30389786 0.60645306 2.079073429 7.31888247 0.5060491 2.061332226 7.34237385 0.64858752 + 2.093178034 7.3129344 0.58854753 2.12835884 7.37254047 0.65973699 2.11326385 7.39529753 0.66576934 + 2.14903355 7.33600807 0.59359461 2.14560223 7.34646845 0.51123023 2.13658333 7.36715984 0.4896405 + 2.03944397 7.35864067 0.65363002 2.062097549 7.33463049 0.48615167 2.35738158 7.54172421 0.49232507 + 2.16186619 7.7259922 1.13584089 2.12103558 7.74449587 1.12717378 2.23248768 7.6862998 1.081251502 + 2.22985625 7.66119957 0.98024911 2.19288135 7.667521 0.94003654 2.097034931 7.70157766 1.14291453 + 2.1777494 7.62833738 0.95509088 2.12904119 7.67398643 1.15097892 2.19294953 7.62400484 1.095996976 + 2.1970017 7.61426735 0.99875867 2.088177204 7.6426754 1.14412904 2.061268806 7.67145252 1.13497078 + 2.14563894 7.59443569 1.089550018 2.16107225 7.58612823 0.99908829 2.14636993 7.60828781 0.95922881 + 2.0010612011 7.57644558 1.13024032 1.9780407 7.59644508 1.11882699 2.056501865 7.53046417 1.080852389 + 2.069485426 7.52282858 0.99313748 2.052049637 7.53967667 0.96229362 1.93341684 7.56402683 1.11073363 + 2.010500669 7.51150417 0.96012682 1.95046186 7.54440308 1.11705542 2.0075078011 7.49045944 1.078668594 + 2.017516136 7.4970336 0.98619676 1.79201055 7.4385066 0.93411088 1.79106355 7.44578934 0.92282653 + 1.75728989 7.46468639 1.011202693 1.74812627 7.47514391 1.00537467 1.75019979 7.45244598 0.95851588 + 1.76055479 7.44395304 0.97365284 1.83692408 7.51097298 1.071065545 1.82808304 7.5288372 1.063702822 + 1.89249742 7.4712038 0.92190748 1.90021396 7.45710659 0.94239444 1.89867854 7.46687889 1.026582837 + 1.90297699 7.52705431 1.10255766 1.8857789 7.55192041 1.093786001 1.95288956 7.48129416 1.052892685 + 1.97198498 7.47972345 0.96746916 1.96542943 7.49738741 0.94353867 2.24723864 7.61684465 0.89968777 + 2.20536613 7.63371754 0.89842564 2.30904484 7.57924032 0.83211625 2.28773308 7.56945562 0.73706084 + 2.24835873 7.57816029 0.69737273 2.18506646 7.60258818 0.90553778 2.23689222 7.54577446 0.70170599 + 2.22163749 7.57913971 0.90526301 2.28295135 7.53504658 0.84084064 2.2647872 7.53120852 0.73571968 + 2.048218727 7.46485567 0.88438332 2.027499437 7.48657227 0.8818329 2.010012865 7.46827269 0.87739283 + 2.095659256 7.41849518 0.82865936 2.097610235 7.41688681 0.7313686 2.061560154 7.41963387 0.71023947 + 2.080015421 7.43444014 0.70830929 2.17687654 7.55955696 0.89524853 2.14990592 7.584167 0.89177537 + 2.22995758 7.51136589 0.83354461 2.22408271 7.5109334 0.73502588 2.20286655 7.52962351 0.70096338 + 2.025709867 7.44193888 0.88485473 2.065849304 7.39033556 0.82857448 2.074014425 7.3943367 0.73514223 + 1.78493428 7.38436413 0.79248196 1.77605093 7.38854027 0.7870611 1.774441 7.35924101 0.74021906 + 1.79296851 7.35051107 0.74885213 1.80688262 7.35489082 0.69271678 1.81764698 7.35346174 0.69725633 + 1.93819273 7.36795235 0.70116466 1.93818629 7.3657856 0.79483545 1.88793373 7.41492081 0.85217899 + 1.97870076 7.43886566 0.87521321 2.019462347 7.38108635 0.81716484 2.029609203 7.3913269 0.72004211 + 1.96794939 7.46362925 0.87055057 1.87481904 7.43577576 0.85116231 1.92955625 7.38393211 0.68169075 + 2.023268223 7.41064739 0.7003122 2.3637414 7.69829178 0.40749753 2.33154821 7.71215105 0.41474244 + 2.40092945 7.67374325 0.34449634 2.37244725 7.68710709 0.26121596 2.3320601 7.70215559 0.23829666 + 2.31127715 7.66904736 0.416015 2.31070089 7.65800238 0.24310957 2.33614802 7.65211582 0.41023108 + 2.36566687 7.62256527 0.34796011 2.34528303 7.63728094 0.2682994 2.30081797 7.61541367 0.40901458 + 2.27979636 7.63565826 0.41546026 2.32578206 7.58988094 0.34784222 2.30897307 7.60291004 0.27395621 + 2.28080416 7.62626457 0.24772537 2.23985052 7.57241344 0.40531415 2.26291275 7.54423666 0.34940147 + 2.25119591 7.55499363 0.27731445 2.22408175 7.57898903 0.25578693 2.21534324 7.59798861 0.40813464 + 2.18453169 7.57420158 0.40925756 2.19627261 7.54959345 0.26152721 2.011657715 7.467484 0.3094686 + 2.0013589859 7.47992563 0.3048718 1.9889847 7.48136711 0.34261596 2.0016698837 7.46644974 0.3475638 + 2.00046277046 7.49173403 0.38309777 2.0085644722 7.48086834 0.38331494 2.11419964 7.50642443 0.28181785 + 2.1586473 7.50876188 0.2825442 2.1014843 7.52434063 0.26589546 2.14386868 7.53632641 0.26299512 + 2.140661 7.56050587 0.40621704 2.096511126 7.53772259 0.40373442 2.11766934 7.5153966 0.39703143 + 2.15670753 7.52207994 0.40084988 2.13130474 7.48306942 0.35043305 2.16981936 7.49485159 0.35030237 + 1.72994435 8.38144493 1.098494887 1.9186548 8.24375916 1.17280257; + setAttr ".vt[1826:1991]" 1.92867208 8.20649815 1.13827419 1.83886194 8.34913158 1.22361016 + 1.7318207 8.013074875 1.17624044 1.73282933 8.0084276199 1.15954006 1.6060102 8.10223484 1.15672123 + 1.64706492 8.014917374 1.164837 1.65420389 8.029058456 1.19909978 1.76055479 8.21185017 1.21474171 + 1.73142874 8.16475487 1.21657228 1.79105175 8.26828957 1.21650696 1.69506609 8.3236084 1.10369813 + 1.66342771 8.25868893 1.10860252 1.84599292 8.12342834 1.16266561 1.88402903 8.18223953 1.16385579 + 1.85424018 8.10525417 1.13736427 1.89482927 8.15637493 1.12809241 1.8164326 8.065464973 1.14733136 + 1.80874491 8.078138351 1.16732788 2.093037128 8.77883053 0.58671457 2.16506648 8.66104507 0.42090216 + 2.32614994 8.59599686 0.11425356 2.2154038 8.60109901 0.19780466 2.17223024 7.97342539 0.8981055 + 2.22794867 7.87023926 0.85612732 2.16998529 7.90358639 0.93464214 2.20924497 7.94563103 0.78880286 + 2.23709035 7.90777349 0.67704672 2.23659706 7.82779598 0.71531552 2.24189115 7.83508873 0.80393702 + 2.29825115 7.79620028 0.65992361 2.3039546 7.78902292 0.61175096 2.30893517 7.81061172 0.39511555 + 2.32811546 7.78580904 0.45584008 2.27466369 7.86978149 0.50306869 2.29767036 7.78068924 0.53029829 + 2.28421545 7.83556747 0.30572852 2.29192352 7.90413761 0.28780389 2.33015776 7.88103867 0.1975342 + 2.31390214 7.81691742 0.21950699 2.22143674 8.10405636 0.61280668 2.17674351 8.097492218 0.73822367 + 2.25251436 8.1268177 0.22018559 2.33465433 8.14419365 0.12547527 2.19243503 8.014738083 1.048118711 + 1.98736024 8.61108875 0.64945567 1.89140868 8.50508022 0.86808228 1.97986555 8.71205616 0.71688068 + 1.89500999 8.5882988 0.89614481 2.23006201 7.6263113 0.54997033 2.27445984 7.63309288 0.65303069 + 2.29433179 7.60124588 0.47315866 2.27346945 7.59549427 0.66192997 2.27968311 7.57214212 0.47620678 + 2.21689939 7.58811426 0.5595578 2.24616456 7.57253599 0.65508395 2.2514441 7.55454016 0.48357227 + 2.12689114 7.47547531 0.5674848 2.14772654 7.46272612 0.64653891 2.15382171 7.44414091 0.48970592 + 2.12299466 7.43271494 0.64750326 2.14311457 7.41352034 0.49282718 2.23849654 7.59931517 0.55839843 + 2.10930395 7.40006113 0.48482648 2.0686059 7.45619678 0.55694634 2.085024834 7.4293313 0.64847261 + 1.98108232 7.41587925 0.54886782 2.006169796 7.39188385 0.63563627 2.030094862 7.36612654 0.47882825 + 2.11725616 7.44633961 0.57142854 2.078032494 7.72655869 0.98817235 2.084715128 7.75150919 1.096574545 + 2.15004992 7.67902279 0.9186635 2.080324411 7.71921539 1.11676013 2.14968371 7.65225887 0.93556392 + 2.053938866 7.6943574 0.99623382 2.041888237 7.69456196 1.10422683 2.11550999 7.6374464 0.93556672 + 1.97251534 7.61791182 0.9950189 1.96505713 7.61395931 1.093148589 2.024698496 7.56549311 0.9491291 + 1.93177569 7.58052492 1.092177868 2.00081133842 7.53375483 0.96200716 2.090817928 7.69733381 1.013480186 + 1.81642532 7.55216169 1.037855387 1.83893204 7.56239462 0.94998282 1.87772429 7.50441933 0.90894854 + 1.90848517 7.58738089 0.9780792 1.88126683 7.57484579 1.06897068 1.94984126 7.52960014 0.93109179 + 1.95898676 7.58366776 1.0066726208 2.14400697 7.63443661 0.75699729 2.15666056 7.64855814 0.86702108 + 2.20581985 7.59412432 0.68082708 2.1568284 7.62298536 0.88457739 2.20785666 7.5674901 0.6886881 + 2.0075335503 7.51144266 0.76129174 1.99265623 7.48566294 0.8596999 2.0055088997 7.50894928 0.85766917 + 2.054798126 7.46116638 0.69598877 2.036547899 7.44378328 0.69932443 2.11871576 7.60985041 0.76099223 + 2.12244511 7.60905743 0.86496353 2.17137027 7.55857992 0.68528241 1.86477482 7.45913744 0.82657981 + 1.95535469 7.490026 0.84636915 2.0040051937 7.44945145 0.68581253 1.91193235 7.41704941 0.67001259 + 1.96265066 7.50340509 0.74825442 1.86858165 7.47877979 0.72552127 1.99751878 7.48794317 0.76592195 + 2.24727201 7.73794508 0.31379598 2.2843051 7.72870445 0.39940986 2.29256153 7.71886635 0.24286962 + 2.27165985 7.69406462 0.4027614 2.28197527 7.67213535 0.25015813 2.22362351 7.68346643 0.31924069 + 2.24500275 7.66637707 0.40287587 2.25545096 7.64934492 0.25255239 2.16629457 7.63110876 0.3195565 + 2.19174004 7.61825991 0.39372134 2.20248938 7.60024977 0.26462901 2.17227077 7.59127188 0.39348552 + 2.17999911 7.56810808 0.26731625 2.24720669 7.69936275 0.32043886 2.13275313 7.56059933 0.26379263 + 2.091986895 7.54511929 0.26482469 2.064641237 7.58275509 0.32322332 2.11519742 7.60691786 0.32177711 + 2.082148314 7.56286812 0.39413843 2.12296796 7.58636951 0.3951965 2.15756035 7.60216141 0.32309765 + 1.74808288 8.3422451 1.036245823 1.7328459 8.36507416 1.063020468 1.90682995 8.20353413 1.095883012 + 1.65692103 8.24792957 1.062487364 1.69297135 8.32002544 1.052329063 1.71070135 8.29208279 1.018769383 + 1.67096317 8.22246265 1.028158307 1.88144076 8.15400314 1.07894063 1.84114861 8.10198593 1.093604088 + 1.64452755 8.17182064 1.049315929 1.63356686 8.1974411 1.080611229 1.79975915 8.057892799 1.10888767 + 1.61391163 8.072331429 1.11906755 1.60060453 8.095604897 1.12831604 1.72361767 8.0076789856 1.14359069 + 2.14890361 7.6140213 0.76949751 2.55777454 8.15997601 0.34039935 2.57764935 8.60929394 0.42991331 + 2.55234885 8.63929844 0.55447692 2.47662973 8.69547272 0.71657509 2.20734286 7.54348516 0.40427935 + 2.22464609 7.51418781 0.35217211 2.21552014 7.5258894 0.28176785 2.31975389 7.87249041 0.85443908 + 2.32432699 7.87757444 0.86407518 2.3789444 7.78632736 0.65964347 2.38900089 7.78199244 0.64981431 + 2.48480129 7.86937141 0.20924118 2.54242516 7.87422705 0.33361924 2.18286562 7.95761919 1.04397881 + 2.23096728 7.98170757 1.08290875 2.29595089 7.9834199 1.086011767 2.40541148 7.96159697 1.020627499 + 2.21140695 8.099415779 0.41627306 2.17810822 8.6387434 0.32211342; + setAttr ".vt[1992:2157]" 2.57666016 8.58649349 0.29752094 1.75245309 7.49715853 1.0060482025 + 1.75452757 7.48388624 0.94512916 1.79553628 7.45699692 0.91402596 2.083656788 8.64720631 1.066520929 + 2.082369566 8.29867458 1.026141167 2.13242221 8.33566952 1.037407756 2.17304564 8.40966606 1.061592102 + 2.19561505 8.7404747 0.93546724 1.77791703 7.41065454 0.78524858 1.772066 7.39781857 0.72266537 + 1.81182158 7.37596893 0.68050444 1.92484939 7.3254199 0.61141044 1.90833926 7.31968594 0.55026019 + 1.94177759 7.31375742 0.49955443 1.99958575 7.49672031 0.29829523 1.9860456 7.50691938 0.33516222 + 1.9977752 7.50703096 0.37927136 2.5769217 8.76407242 0.38975707 2.5514617 8.7337904 0.24250403 + 2.4288857 8.70300579 0.13526168 2.36298847 8.70323944 0.14458235 2.26191592 8.7238102 0.23657535 + 2.224576 8.758708 0.37523419 2.17415094 8.80803299 0.52455431 2.19424152 8.8573761 0.64134288 + 1.64126182 8.21205139 1.12345541 1.66086268 8.031516075 1.11469126 1.70635962 8.11158085 1.041209817 + 1.73655236 8.16307354 1.014558077 1.77645731 8.22317314 0.99640787 1.80956364 8.27306461 1.028599739 + 1.95927501 8.37060833 0.86683249 2.059145212 8.38459873 0.66124469 2.15188837 8.38930225 0.49884582 + 2.16031456 8.37851524 0.351127 2.19777513 8.37006283 0.18839711 2.31493735 8.38465977 0.10219509 + 2.43642497 8.39144802 0.11960617 2.51697516 8.38550186 0.20571737 2.57096934 8.38673878 0.33054262 + 2.58082461 8.39262009 0.47852021 2.55047131 8.42937851 0.62029856 2.47015071 8.49660015 0.79199183 + 2.32075071 8.61436558 0.91198099 2.41555166 8.73439789 0.77263576 2.46910429 8.83822823 0.66479486 + 1.88415253 8.40347576 1.18509924 1.76677918 8.41848469 1.077261329 1.76158464 8.38902569 1.036137462 + 1.76856327 8.35698128 1.006511569 1.82507157 8.28314018 1.0055801868 1.9257319 8.22069073 1.078356743 + 1.95460892 8.23625088 1.11740386 1.95171773 8.27950954 1.1488837 2.5444591 8.80494022 0.2040614 + 2.57628632 8.84575844 0.36334366 2.27145863 8.79918957 0.2113746 2.16548872 8.88121796 0.50412321 + 2.35779309 8.77138996 0.1249861 2.41333055 8.77560902 0.11473395 2.20144486 8.83965683 0.34609759 + 2.19430852 8.91290855 0.61448711 2.15009403 9.032530785 0.45393652 2.23680639 8.9448843 0.16138807 + 2.1732316 8.98478127 0.30600291 2.39531946 8.93527794 0.066684574 2.52847719 8.97435188 0.13245358 + 2.57180667 9.033509254 0.28488347 2.192662 9.078634262 0.56891388 2.33033466 8.93307114 0.084187433 + 2.46923041 9.10964775 0.55771852 2.46412897 8.91518307 0.63212866 2.29502153 8.80742073 0.80089259 + 2.33769512 8.86608219 0.70331657 2.36053133 8.93119812 0.6823554 2.36524725 9.11797523 0.62112367 + 0.77674991 13.75400734 0.45398888 1.071092963 13.72252178 0.33265331 0.38624901 13.74301815 0.60002935 + 0.30937406 13.83607578 0.43828803 0.66631025 13.83667183 0.29208735 0.96804661 13.81803703 0.13242421 + 0.80551654 14.025354385 -0.78324229 1.30624211 12.5441246 -0.60087663 1.40539217 12.50104618 -0.22133148 + 1.12455118 12.26206017 0.74944395 0.6844511 13.61013222 -0.98116452 1.40547049 12.53040314 0.24959615 + 1.98491693 13.66419315 -0.53947139 2.032367945 13.62514496 -0.16533019 1.51003861 12.84861374 -0.60289991 + 1.71079302 12.88578415 -0.77384156 1.48355114 12.79067135 -0.25395045 2.2892673 12.70070839 -0.56592524 + 1.88386214 12.79160404 0.21269965 1.42725265 12.82683945 0.45828784 2.058072805 12.84787273 -0.75449377 + 1.79088926 13.57951736 -0.71035331 1.41003847 13.065049171 -0.24947497 1.31556606 13.29976559 0.4433791 + 1.54730463 13.39888096 -0.74927473 1.42133343 13.088751793 -0.59855276 1.71069384 13.42432499 0.25216249 + 1.46718347 13.18249321 0.2493017 2.16145968 12.6807127 0.056893766 2.29952621 12.70200157 -0.20908445 + 1.43413365 13.11112976 0.073287733 1.58755243 12.83429241 0.05402863 1.94688582 13.54020882 0.10059192 + 0.97999811 10.71192169 0.63878596 1.066475272 10.75070572 0.1276101 0.85053098 10.77582264 -0.32022876 + 0.64293998 10.6592474 1.14812267 0.66504234 12.54983234 1.2036624 1.17069423 12.59638214 0.864793 + 0.49342054 12.69011116 -0.96158218 0.62558609 10.82671642 -0.48245335 0.66703361 12.22486782 1.13015342 + 2.11414456 8.12577343 0.89327228 2.16956854 8.15869713 1.027974844 2.21769428 8.20113468 1.040197253 + 1.36264348 4.77405119 0.27489069 0.31206375 14.75404739 0.46096042 0.32325059 14.69697094 0.57255757 + 0.31996453 14.64941406 0.76068747 0.41795364 14.86025238 0.84129953 0.46364823 15.47357845 0.93640858 + 0.88453066 0.5094893 0.62151951 1.18390107 0.51488197 0.59719098 1.43990171 0.45584226 0.39441675 + 1.54430342 0.32139659 0.21254538 1.5510534 0.23789874 0.16920488 1.53805041 0.12842192 0.16290662 + 1.51796293 0.052831173 0.18292925 1.4331001 -0.00091561553 0.21725024 1.3295716 -0.00091561553 0.24711138 + 1.17138135 -0.00091561553 0.2930305 1.0058252811 -0.00091561553 0.33922961 0.85591084 0.06889993 0.38314411 + 0.73064238 0.19383256 0.43544549 0.72893119 0.26518604 0.48009849 0.75315762 0.37578383 0.53454363 + 2.05269146 8.3516922 1.099716425 2.041057348 8.30483627 1.075307488 2.021178246 8.28352642 1.0080201626 + 1.90643716 8.35007477 0.92216772 1.84936559 8.4495945 0.91903639 1.83653212 8.49612427 0.9621287 + 1.83764136 8.54419231 1.026126385 1.9777447 8.52990532 1.14083338 0.25724614 15.6686697 -0.39350063 + 0.52440119 15.51026535 -0.12104277 0.56060791 15.25364685 0.28494483 0.56536531 7.51072979 1.037003517 + 0.97742754 7.5340848 1.12213933 1.44777143 7.55281305 0.82447916 1.51763916 8.51330376 0.29627627 + 1.43380439 8.4528389 0.79183424 0.55584639 8.057655334 1.043086529 0.9579888 8.23570156 1.10652745 + 2.53397512 9.069189072 0.40832716 2.53891897 8.87349033 0.48368144 2.54316998 8.79292965 0.50861174 + 0.97895712 0.068384998 1.51458645 1.052458048 0.068393596 1.51446223; + setAttr ".vt[2158:2225]" 1.11468387 0.075257979 1.49844623 0.57517529 13.14100742 -0.99861121 + 0.10402285 13.83220768 0.49529573 0.19688013 10.42873669 -0.48355907 0.33140272 10.89085388 -0.46522933 + 0.94250381 12.627491 -0.80679178 1.041543245 13.082061768 -0.88994098 1.16704488 13.49417591 -0.87474406 + 1.34872401 13.87493229 -0.73384964 1.4554714 14.046102524 -0.52919281 1.48007345 13.97735023 -0.15127115 + 1.41945505 13.80456448 0.058068465 1.34659576 13.62050533 0.22548962 0.4657903 14.54793549 -0.25559613 + 0.37272212 15.19937325 -0.25410026 0.42317244 15.62171936 -0.31548601 0.49596542 16.62443542 0.11330778 + 0.4706184 16.60032845 0.66704077 0.41734761 16.29612923 1.026978135 0.33969522 15.89920998 1.22281444 + 0.28531072 15.56566906 1.22065663 0.28802532 15.45867825 1.058277607 0.2877281 14.84006977 0.95352054 + 0.29813117 14.69559956 0.8800863 0.13298893 14.58813381 1.012080908 0.277978 16.27834129 -0.3512961 + 0.48110789 16.14053535 -0.24254926 0.6080488 15.91001701 -0.078181177 0.6352191 15.59236526 0.15670988 + 0.72224534 15.58388329 0.15616067 0.61977643 15.51837158 0.38238794 0.56295407 15.44569874 0.6157341 + 0.47094828 15.33652687 0.95962447 0.2869494 15.31706238 1.068576813 0.13124974 15.31656837 1.134758 + 0.057584103 15.32353306 1.23200631 1.081925511 13.22620201 0.72307736 0.58581507 13.19764423 0.9090156 + 0.63081473 11.43884754 1.12309802 1.068632722 11.50035191 0.70917284 1.23555243 11.60597801 0.18991897 + 1.22095633 11.65394783 -0.25390083 1.015830755 11.70467091 -0.4960441 0.65814 11.78033638 -0.65890759 + 0.27378789 11.86323357 -0.7705403 1.68814898 13.74210835 0.090414733 1.56221545 13.5593462 0.24625073 + 1.46722066 13.38139629 0.34132594 1.42310202 12.95831966 0.36827761 1.38071537 12.72755527 0.17464396 + 1.38477838 12.73019505 -0.21307436 1.33220363 12.7700634 -0.58143711 1.24390209 13.10765934 -0.77052492 + 1.38637805 13.47476959 -0.8116039 1.60280752 13.76541233 -0.71784103 1.75288999 13.88460732 -0.53190112 + 1.75988698 13.86080265 -0.14744635 2.12081337 13.16247082 0.088218488 1.85964203 13.13962746 0.23887132 + 1.64585412 13.097286224 0.23086295 1.53739405 13.061156273 0.075328499 1.49190664 13.0062255859 -0.24406725 + 1.4279381 13.095623016 -0.5679059 1.63955212 13.20402145 -0.75047755 1.9554981 13.20776081 -0.7330448 + 2.20664024 13.20668316 -0.54713988 2.23509717 13.21768951 -0.17654385 1.2077837 12.9069252 -0.72248197; + setAttr -s 4488 ".ed"; + setAttr ".ed[0:165]" 0 1 0 1 9 1 9 8 1 8 0 1 1 2 0 2 10 1 10 9 1 2 3 0 3 11 1 + 11 10 1 3 4 0 4 12 1 12 11 1 4 5 0 5 13 1 13 12 1 5 6 0 6 14 1 14 13 1 6 7 0 7 15 1 + 15 14 1 7 0 0 8 15 1 9 16 1 16 8 1 10 16 1 11 16 1 12 16 1 13 16 1 14 16 1 15 16 1 + 36 18 0 18 26 1 26 35 0 35 36 1 18 33 0 33 34 1 34 26 0 19 20 0 20 28 1 28 27 0 27 19 1 + 20 21 0 21 29 1 29 28 0 21 37 0 37 38 1 38 29 0 22 39 0 39 40 1 40 30 0 30 22 1 23 24 0 + 24 32 1 32 31 0 31 23 1 24 17 0 17 25 1 25 32 0 33 19 0 27 34 0 17 36 0 35 25 0 37 22 0 + 30 38 0 39 23 0 31 40 0 41 42 0 42 50 1 50 49 1 49 41 1 42 43 0 43 51 1 51 50 1 43 44 0 + 44 52 1 52 51 1 44 45 0 45 53 1 53 52 1 45 46 0 46 54 1 54 53 1 46 47 0 47 55 1 55 54 1 + 47 48 0 48 56 1 56 55 1 48 41 0 49 56 1 50 57 1 57 49 1 51 57 1 52 57 1 53 57 1 54 57 1 + 55 57 1 56 57 1 58 59 0 59 67 1 67 66 1 66 58 1 59 60 0 60 68 1 68 67 1 60 61 0 61 69 1 + 69 68 1 61 62 0 62 70 1 70 69 1 62 63 0 63 71 1 71 70 1 63 64 0 64 72 1 72 71 1 64 65 0 + 65 73 1 73 72 1 65 58 0 66 73 1 67 74 1 74 66 1 68 74 1 69 74 1 70 74 1 71 74 1 72 74 1 + 73 74 1 75 76 0 76 84 1 84 83 1 83 75 1 76 77 0 77 85 1 85 84 1 77 78 0 78 86 1 86 85 1 + 78 79 0 79 87 1 87 86 1 79 80 0 80 88 1 88 87 1 80 81 0 81 89 1 89 88 1 81 82 0 82 90 1 + 90 89 1 82 75 0 83 90 1 84 91 1 91 83 1 85 91 1 86 91 1 87 91 1 88 91 1 89 91 1 90 91 1 + 135 1103 1 1103 1104 1; + setAttr ".ed[166:331]" 1104 134 1 134 135 1 138 137 1 137 141 1 141 140 1 140 138 1 + 96 248 1 248 139 1 139 95 1 95 96 1 135 138 1 138 165 1 165 1103 1 140 168 1 168 165 1 + 125 1115 1 1115 94 1 94 125 1 249 250 1 250 140 1 141 249 1 250 237 1 237 168 1 135 136 1 + 136 137 1 127 142 1 142 92 1 92 127 1 240 93 1 93 92 1 92 239 1 239 240 1 240 238 1 + 238 97 1 97 93 1 225 251 1 251 252 1 252 235 1 235 225 1 251 254 1 254 255 1 255 252 1 + 218 228 1 228 227 1 227 217 1 217 218 1 179 256 1 256 255 1 255 227 1 227 179 1 228 188 1 + 188 179 1 256 253 1 253 252 1 253 187 1 187 235 1 254 217 1 184 183 1 183 180 1 180 181 1 + 181 184 1 223 233 1 233 232 1 232 222 1 222 223 1 181 232 1 233 184 1 233 234 1 234 186 1 + 186 184 1 186 187 1 187 183 1 228 229 1 229 189 1 189 188 1 234 235 1 189 210 1 210 211 1 + 211 188 1 220 230 1 230 229 1 229 219 1 219 220 1 218 219 1 193 202 1 202 206 1 206 192 1 + 192 193 1 230 210 1 182 196 1 196 195 1 195 182 1 207 190 1 190 196 1 182 207 1 202 190 1 + 207 206 1 180 209 1 209 208 1 208 181 1 208 231 1 231 232 1 231 221 1 221 222 1 231 230 1 + 220 221 1 208 210 1 209 211 1 238 197 1 197 168 1 237 238 1 237 98 1 98 97 1 197 166 1 + 166 165 1 177 1103 1 166 177 1 250 125 1 125 98 1 215 199 1 199 178 1 178 214 1 214 215 1 + 213 154 1 154 212 1 212 185 1 185 213 1 213 152 1 152 157 1 157 154 1 154 163 1 163 155 1 + 155 212 1 161 247 1 247 151 1 151 160 1 160 161 1 178 175 1 175 145 1 145 214 1 175 153 1 + 153 148 1 148 145 1 1102 1104 1 177 1102 1 164 158 1 158 173 1 173 226 1 226 164 1 + 171 193 1 193 173 1 173 1068 1 1068 171 1 158 162 1 162 1068 1 215 176 1 176 200 1 + 200 199 1 151 153 1 175 160 1 1105 239 1 239 143 1 143 1105 1 172 1068 1 162 174 1 + 174 172 1; + setAttr ".ed[332:497]" 236 134 1 1104 1106 1 1106 236 1 156 144 1 144 174 1 + 162 156 1 158 159 1 159 156 1 164 163 1 163 159 1 157 159 1 157 161 1 161 156 1 160 144 1 + 164 169 1 169 155 1 178 144 1 199 174 1 244 153 1 151 245 1 245 244 1 166 149 1 149 176 1 + 176 177 1 244 241 1 241 148 1 201 200 1 149 201 1 247 246 1 246 245 1 194 213 1 185 194 1 + 196 152 1 194 196 1 205 201 1 149 198 1 198 205 1 146 147 1 147 205 1 198 146 1 197 198 1 + 197 167 1 167 146 1 171 203 1 203 202 1 203 191 1 191 190 1 204 170 1 170 201 1 205 204 1 + 171 170 1 204 203 1 150 191 1 204 150 1 147 150 1 234 224 1 224 225 1 223 224 1 194 195 1 + 170 172 1 172 200 1 192 226 1 241 243 1 243 242 1 242 148 1 254 155 1 169 217 1 218 216 1 + 216 192 1 192 219 1 206 220 1 207 221 1 182 222 1 195 223 1 194 224 1 185 225 1 212 251 1 + 248 134 1 236 139 1 236 143 1 143 142 1 142 139 1 1106 1105 1 241 146 1 167 243 1 + 244 147 1 245 150 1 246 191 1 246 196 1 247 152 1 493 464 1 464 479 1 479 494 1 494 493 1 + 477 476 1 476 469 1 469 473 1 473 477 1 465 479 1 479 263 1 263 466 1 466 465 1 496 264 1 + 264 478 1 478 495 1 495 496 1 478 477 1 473 474 1 474 478 1 497 465 1 466 265 1 265 497 1 + 495 465 1 497 496 1 262 454 1 454 474 1 473 262 1 469 428 1 428 262 1 477 455 1 455 381 1 + 381 476 1 467 466 1 263 472 1 472 467 1 471 468 1 468 467 1 472 471 1 380 467 1 468 266 1 + 266 380 1 468 475 1 475 382 1 382 266 1 475 476 1 381 382 1 470 475 1 471 470 1 470 469 1 + 1085 1084 1 1084 484 1 484 485 1 485 1085 1 1088 261 1 261 464 1 464 1074 1 1074 1088 1 + 493 1075 1 1075 1074 1 493 454 1 454 1076 1 1076 1075 1 258 1079 1 1079 1078 1 1078 257 1 + 257 258 1 485 260 1 260 1086 1 1086 1085 1 260 433 1 433 1087 1 1087 1086 1 1084 1083 1 + 1083 483 1 483 484 1 1083 1082 1; + setAttr ".ed[498:663]" 1082 482 1 482 483 1 445 304 1 304 313 1 313 452 1 452 445 1 + 428 429 1 429 257 1 257 262 1 429 430 1 430 258 1 260 434 1 434 379 1 379 433 1 378 472 1 + 263 261 1 261 378 1 481 259 1 259 431 1 431 480 1 480 481 1 267 471 1 378 267 1 378 379 1 + 379 268 1 268 267 1 383 470 1 267 383 1 268 384 1 384 383 1 259 258 1 430 431 1 485 437 1 + 437 434 1 437 386 1 386 435 1 435 434 1 386 385 1 385 436 1 436 435 1 483 438 1 438 439 1 + 439 484 1 438 386 1 437 439 1 482 387 1 387 438 1 387 385 1 480 387 1 482 481 1 430 436 1 + 385 431 1 384 429 1 428 383 1 320 388 1 388 391 1 391 321 1 321 320 1 284 322 1 322 391 1 + 388 284 1 369 416 1 416 413 1 413 361 1 361 369 1 416 370 1 370 363 1 363 413 1 426 326 1 + 326 323 1 323 427 1 427 426 1 327 426 1 427 274 1 274 327 1 283 444 1 444 432 1 432 283 1 + 462 461 1 461 441 1 441 442 1 442 462 1 304 459 1 459 458 1 458 306 1 306 304 1 392 308 1 + 308 283 1 432 392 1 306 309 1 309 313 1 441 440 1 440 445 1 445 286 1 286 441 1 461 460 1 + 460 440 1 308 309 1 306 283 1 286 319 1 319 442 1 458 457 1 457 283 1 444 456 1 456 463 1 + 463 443 1 443 444 1 463 462 1 442 443 1 448 432 1 443 448 1 319 448 1 457 456 1 460 459 1 + 304 440 1 316 461 1 462 285 1 285 316 1 285 1110 1 1110 314 1 314 316 1 315 1112 1 + 1112 307 1 307 305 1 305 315 1 307 458 1 459 305 1 284 457 1 307 284 1 456 388 1 + 320 463 1 320 285 1 321 1110 1 1112 322 1 344 348 1 348 347 1 347 354 1 354 344 1 + 390 460 1 316 390 1 390 305 1 389 390 1 314 389 1 389 315 1 391 1111 1 1111 1110 1 + 1112 1111 1 282 392 1 392 393 1 393 279 1 279 282 1 392 399 1 399 308 1 282 399 1 + 279 310 1 310 318 1 318 282 1 295 303 1 303 318 1 310 295 1 449 452 1 452 303 1 295 449 1 + 446 407 1 407 353 1 353 303 1; + setAttr ".ed[664:829]" 303 446 1 353 342 1 342 318 1 313 355 1 355 407 1 446 313 1 + 310 335 1 335 296 1 296 295 1 359 282 1 342 359 1 342 343 1 343 358 1 358 359 1 353 352 1 + 352 343 1 309 345 1 345 355 1 308 357 1 357 345 1 407 406 1 406 352 1 355 354 1 354 406 1 + 399 409 1 409 357 1 359 409 1 356 349 1 349 348 1 344 356 1 343 351 1 351 350 1 350 358 1 + 352 346 1 346 351 1 345 344 1 357 356 1 406 403 1 403 346 1 347 403 1 409 408 1 408 356 1 + 358 408 1 403 404 1 404 351 1 348 404 1 349 405 1 405 404 1 405 350 1 408 405 1 276 394 1 + 394 393 1 393 276 1 394 279 1 410 275 1 275 276 1 393 410 1 275 336 1 336 317 1 317 276 1 + 298 317 1 336 301 1 301 298 1 336 374 1 374 364 1 364 301 1 296 397 1 397 447 1 447 295 1 + 397 299 1 299 298 1 298 447 1 279 280 1 280 335 1 299 341 1 341 317 1 395 394 1 276 277 1 + 277 395 1 278 396 1 396 395 1 277 278 1 395 280 1 396 281 1 281 280 1 297 398 1 398 397 1 + 296 297 1 398 300 1 300 299 1 281 339 1 339 335 1 339 297 1 300 340 1 340 341 1 277 341 1 + 340 278 1 375 374 1 374 362 1 362 363 1 363 375 1 365 364 1 375 365 1 330 400 1 400 396 1 + 278 330 1 297 333 1 333 402 1 402 398 1 402 334 1 334 300 1 329 340 1 334 329 1 329 330 1 + 331 332 1 332 339 1 281 331 1 332 333 1 400 331 1 400 401 1 401 332 1 329 401 1 402 401 1 + 419 270 1 270 269 1 269 410 1 410 419 1 338 311 1 311 293 1 293 337 1 337 338 1 453 451 1 + 451 337 1 293 453 1 1081 481 1 1082 1081 1 269 411 1 411 410 1 411 275 1 270 311 1 + 338 269 1 412 411 1 269 360 1 360 412 1 412 362 1 362 275 1 338 377 1 377 360 1 366 377 1 + 337 366 1 364 414 1 414 450 1 450 301 1 337 450 1 414 366 1 413 412 1 360 361 1 365 415 1 + 415 414 1 415 367 1 367 366 1 368 376 1 376 367 1 367 373 1 373 368 1 361 376 1; + setAttr ".ed[830:995]" 368 369 1 372 365 1 375 371 1 371 372 1 370 371 1 418 415 1 + 372 418 1 418 373 1 376 377 1 416 417 1 417 371 1 368 417 1 418 417 1 290 291 1 291 288 1 + 288 287 1 287 290 1 293 422 1 422 486 1 486 453 1 272 420 1 420 419 1 419 271 1 271 272 1 + 288 272 1 271 287 1 420 421 1 421 492 1 492 270 1 270 420 1 273 421 1 272 273 1 288 487 1 + 487 273 1 291 488 1 488 487 1 289 487 1 488 292 1 292 289 1 293 490 1 490 489 1 489 422 1 + 423 489 1 490 294 1 294 423 1 492 491 1 491 311 1 491 490 1 491 312 1 312 294 1 489 488 1 + 291 422 1 423 292 1 423 424 1 424 302 1 302 292 1 492 323 1 323 312 1 421 427 1 312 325 1 + 325 324 1 324 294 1 326 325 1 324 424 1 302 328 1 328 289 1 328 327 1 274 289 1 273 274 1 + 424 425 1 425 328 1 325 425 1 426 425 1 496 256 1 179 264 1 253 497 1 265 187 1 265 380 1 + 380 183 1 188 455 1 455 264 1 266 180 1 211 381 1 382 209 1 261 433 1 435 268 1 436 384 1 + 451 449 1 449 298 1 301 451 1 1088 1087 1 494 474 1 494 495 1 1081 1080 1 1080 259 1 + 290 486 1 129 1137 1 1137 508 1 508 101 1 101 129 1 1128 1138 1 1138 1139 1 1139 509 1 + 509 1128 1 1138 1127 1 1127 1098 1 1098 1139 1 129 124 1 124 1097 1 1097 1137 1 1140 503 1 + 503 499 1 499 1141 1 1141 1140 1 500 1141 1 1141 1142 1 1142 510 1 510 500 1 503 1099 1 + 1099 501 1 501 499 1 124 99 1 99 498 1 498 1097 1 1098 503 1 1140 1139 1 502 525 1 + 525 1099 1 503 502 1 507 510 1 510 504 1 504 509 1 509 507 1 1129 1128 1 504 1129 1 + 508 505 1 505 100 1 100 101 1 528 112 1 112 102 1 102 511 1 511 528 1 117 1029 1 + 1029 511 1 102 117 1 104 111 1 111 526 1 526 516 1 516 104 1 522 523 1 523 513 1 + 513 522 1 1072 527 1 527 1071 1 1071 1135 1 1135 1072 1 1071 532 1 532 1136 1 1136 1135 1 + 520 522 1 522 114 1 114 105 1 105 520 1 514 1132 1 1132 1131 1 1131 519 1; + setAttr ".ed[996:1161]" 519 514 1 1147 526 1 111 130 1 130 1147 1 1131 1130 1 + 1130 517 1 517 519 1 105 106 1 106 518 1 518 520 1 1130 1129 1 504 517 1 519 521 1 + 521 1073 1 1073 514 1 1069 534 1 534 533 1 533 1070 1 1070 1069 1 110 533 1 534 108 1 + 108 110 1 516 515 1 515 109 1 109 104 1 528 498 1 99 112 1 534 535 1 535 113 1 113 108 1 + 1073 1133 1 1133 1132 1 533 532 1 1071 1070 1 513 103 1 103 114 1 505 518 1 106 100 1 + 532 107 1 107 128 1 128 1136 1 110 107 1 564 1010 1 1010 1016 1 1016 541 1 541 564 1 + 537 544 1 544 539 1 539 540 1 540 537 1 538 585 1 585 544 1 537 538 1 539 543 1 543 542 1 + 542 540 1 543 541 1 541 536 1 536 542 1 544 556 1 556 566 1 566 539 1 575 564 1 543 575 1 + 566 575 1 572 571 1 571 551 1 551 554 1 554 572 1 579 560 1 560 545 1 545 581 1 581 579 1 + 579 557 1 557 584 1 584 560 1 580 578 1 578 557 1 579 580 1 583 562 1 562 563 1 563 574 1 + 574 583 1 573 561 1 561 562 1 583 573 1 540 548 1 548 565 1 565 537 1 545 586 1 586 568 1 + 568 581 1 586 547 1 547 567 1 567 568 1 567 558 1 558 559 1 559 567 1 567 549 1 549 550 1 + 550 568 1 536 552 1 552 569 1 569 542 1 573 572 1 554 561 1 552 553 1 553 570 1 570 569 1 + 567 565 1 548 558 1 555 565 1 547 555 1 555 538 1 571 570 1 553 551 1 557 556 1 556 546 1 + 546 584 1 581 582 1 582 580 1 575 577 1 577 576 1 576 564 1 563 576 1 577 574 1 578 566 1 + 569 548 1 570 558 1 571 559 1 549 559 1 572 549 1 573 550 1 585 546 1 550 582 1 574 580 1 + 582 583 1 578 577 1 1001 965 1 965 964 1 964 1002 1 1002 1001 1 1108 1002 1 964 1109 1 + 1109 1108 1 987 986 1 986 927 1 927 591 1 591 987 1 989 988 1 988 593 1 593 590 1 + 590 989 1 612 953 1 953 990 1 990 612 1 988 987 1 591 593 1 595 939 1 939 601 1 601 595 1 + 1067 952 1 952 953 1 612 1067 1 937 936 1 936 616 1; + setAttr ".ed[1162:1327]" 616 600 1 600 937 1 609 619 1 619 617 1 617 600 1 600 609 1 + 597 621 1 621 620 1 620 596 1 596 597 1 601 742 1 742 740 1 740 595 1 939 938 1 938 602 1 + 602 601 1 938 604 1 604 603 1 603 602 1 939 927 1 927 605 1 605 938 1 605 606 1 606 604 1 + 589 984 1 984 985 1 985 588 1 588 589 1 985 986 1 986 946 1 946 588 1 985 605 1 984 606 1 + 587 1019 1 1019 954 1 954 613 1 613 587 1 616 594 1 594 592 1 592 600 1 620 619 1 + 609 596 1 954 990 1 953 950 1 950 954 1 1020 992 1 992 991 1 991 1019 1 1019 1020 1 + 950 1096 1 1096 1095 1 1095 615 1 615 950 1 952 1090 1 1090 1089 1 1089 953 1 1067 1066 1 + 1066 951 1 951 952 1 951 1091 1 1091 1090 1 618 937 1 617 618 1 617 624 1 624 622 1 + 622 618 1 619 625 1 625 624 1 620 657 1 657 625 1 623 657 1 621 623 1 624 626 1 626 627 1 + 627 622 1 657 629 1 629 628 1 628 625 1 623 630 1 630 629 1 626 631 1 631 632 1 632 627 1 + 626 628 1 628 633 1 633 631 1 629 634 1 634 633 1 630 635 1 635 634 1 631 638 1 638 636 1 + 636 632 1 633 639 1 639 638 1 634 640 1 640 639 1 637 640 1 635 637 1 641 647 1 647 656 1 + 656 642 1 642 641 1 642 643 1 643 644 1 644 641 1 643 645 1 645 646 1 646 644 1 645 655 1 + 655 648 1 648 646 1 638 650 1 650 651 1 651 636 1 650 652 1 652 649 1 649 648 1 648 650 1 + 653 640 1 637 654 1 654 653 1 653 652 1 652 639 1 644 649 1 649 647 1 653 647 1 655 651 1 + 654 656 1 599 607 1 607 934 1 934 935 1 935 599 1 942 941 1 941 614 1 614 608 1 608 942 1 + 943 942 1 608 611 1 611 943 1 599 661 1 661 660 1 660 943 1 943 599 1 659 941 1 942 658 1 + 658 659 1 660 658 1 935 662 1 662 661 1 658 665 1 665 663 1 663 659 1 666 665 1 660 666 1 + 661 667 1 667 666 1 664 667 1 662 664 1 665 668 1 668 669 1 669 663 1 670 668 1 666 670 1 + 667 671 1 671 670 1; + setAttr ".ed[1328:1493]" 664 672 1 672 671 1 668 673 1 673 674 1 674 669 1 675 673 1 + 670 675 1 671 676 1 676 675 1 672 677 1 677 676 1 673 680 1 680 678 1 678 674 1 681 680 1 + 675 681 1 676 682 1 682 681 1 679 682 1 677 679 1 683 692 1 692 691 1 691 684 1 684 683 1 + 686 690 1 690 689 1 689 685 1 685 686 1 687 686 1 685 688 1 688 687 1 688 683 1 684 687 1 + 688 693 1 693 692 1 680 694 1 694 695 1 695 678 1 696 694 1 681 696 1 682 697 1 697 696 1 + 679 698 1 698 697 1 690 695 1 694 689 1 693 689 1 696 693 1 697 692 1 698 691 1 616 702 1 + 702 701 1 701 610 1 610 616 1 701 699 1 699 607 1 607 610 1 699 700 1 700 934 1 936 703 1 + 703 702 1 699 706 1 706 704 1 704 700 1 701 707 1 707 706 1 702 708 1 708 707 1 705 708 1 + 703 705 1 709 721 1 721 711 1 711 710 1 710 709 1 712 722 1 722 721 1 709 712 1 713 723 1 + 723 722 1 712 713 1 714 723 1 713 715 1 715 714 1 706 716 1 716 717 1 717 704 1 707 718 1 + 718 716 1 708 719 1 719 718 1 705 720 1 720 719 1 716 709 1 710 717 1 718 712 1 719 713 1 + 720 715 1 725 737 1 737 732 1 732 724 1 724 725 1 724 727 1 727 726 1 726 725 1 727 729 1 + 729 728 1 728 726 1 729 730 1 730 738 1 738 728 1 733 734 1 734 731 1 731 732 1 732 733 1 + 734 735 1 735 730 1 730 731 1 736 733 1 737 736 1 735 739 1 739 738 1 721 733 1 736 711 1 + 722 734 1 723 735 1 714 739 1 731 727 1 741 598 1 598 595 1 740 741 1 602 743 1 743 742 1 + 744 743 1 603 744 1 740 747 1 747 745 1 745 741 1 742 748 1 748 747 1 743 749 1 749 748 1 + 746 749 1 744 746 1 747 750 1 750 751 1 751 745 1 748 752 1 752 750 1 749 753 1 753 752 1 + 746 754 1 754 753 1 750 755 1 755 759 1 759 751 1 752 756 1 756 755 1 753 757 1 757 756 1 + 754 758 1 758 757 1 755 931 1 931 760 1 760 759 1 932 931 1 756 932 1; + setAttr ".ed[1494:1659]" 757 933 1 933 932 1 761 933 1 758 761 1 762 768 1 768 770 1 + 770 763 1 763 762 1 763 764 1 764 765 1 765 762 1 764 766 1 766 767 1 767 765 1 766 773 1 + 773 774 1 774 767 1 768 776 1 776 777 1 777 769 1 769 768 1 769 771 1 771 770 1 772 775 1 + 775 774 1 773 772 1 775 777 1 776 774 1 931 775 1 772 760 1 932 777 1 933 769 1 761 771 1 + 765 776 1 781 778 1 778 994 1 994 993 1 993 781 1 993 1000 1 1000 779 1 779 781 1 + 780 779 1 1000 999 1 999 780 1 782 797 1 797 796 1 796 783 1 783 782 1 786 782 1 + 783 785 1 785 786 1 786 784 1 784 972 1 972 788 1 788 786 1 787 792 1 792 797 1 797 788 1 + 788 787 1 791 790 1 790 789 1 789 787 1 787 791 1 789 793 1 793 792 1 793 795 1 795 794 1 + 794 792 1 794 796 1 972 791 1 972 921 1 921 914 1 914 791 1 784 924 1 924 921 1 781 789 1 + 790 778 1 779 793 1 780 795 1 785 924 1 930 929 1 929 988 1 989 930 1 999 998 1 998 913 1 + 913 780 1 1003 1007 1 1007 969 1 969 968 1 968 1003 1 798 799 1 799 969 1 969 970 1 + 970 798 1 1004 1008 1 1008 971 1 971 970 1 970 1004 1 1006 1005 1 1005 967 1 967 966 1 + 966 1006 1 800 967 1 967 968 1 968 801 1 801 800 1 800 589 1 589 966 1 826 824 1 + 824 799 1 798 826 1 806 819 1 819 820 1 820 805 1 805 806 1 806 813 1 813 944 1 944 819 1 + 803 808 1 808 805 1 805 803 1 808 807 1 807 806 1 806 808 1 937 810 1 810 809 1 809 936 1 + 813 812 1 812 811 1 811 816 1 816 813 1 806 809 1 810 813 1 934 808 1 803 935 1 802 823 1 + 823 940 1 940 804 1 804 802 1 810 814 1 814 813 1 815 816 1 811 815 1 817 816 1 815 818 1 + 818 817 1 817 822 1 822 821 1 821 816 1 800 983 1 983 984 1 982 981 1 981 944 1 944 821 1 + 821 982 1 983 822 1 822 606 1 983 982 1 597 812 1 812 830 1 830 621 1 618 829 1 829 810 1 + 604 817 1 818 603 1 811 891 1; + setAttr ".ed[1660:1825]" 891 890 1 890 815 1 890 892 1 892 818 1 978 1065 1 1065 820 1 + 820 979 1 979 978 1 827 825 1 825 824 1 826 827 1 978 951 1 1066 1065 1 613 826 1 + 798 587 1 613 615 1 615 827 1 1094 1093 1 1093 825 1 827 1094 1 1095 1094 1 598 811 1 + 597 598 1 841 828 1 828 829 1 829 831 1 831 841 1 841 832 1 832 830 1 830 828 1 833 841 1 + 831 834 1 834 833 1 833 835 1 835 832 1 834 837 1 837 836 1 836 833 1 836 838 1 838 835 1 + 848 836 1 837 839 1 839 848 1 848 840 1 840 838 1 848 843 1 843 842 1 842 840 1 844 843 1 + 839 844 1 846 958 1 958 959 1 959 845 1 845 846 1 959 960 1 960 847 1 847 845 1 622 831 1 + 832 623 1 627 834 1 835 630 1 632 837 1 838 635 1 636 839 1 840 637 1 642 960 1 959 643 1 + 958 645 1 654 842 1 842 847 1 847 656 1 651 844 1 846 655 1 843 845 1 844 846 1 803 851 1 + 851 662 1 941 940 1 823 614 1 940 850 1 850 849 1 849 804 1 850 852 1 852 862 1 862 849 1 + 862 853 1 853 851 1 851 849 1 852 855 1 855 854 1 854 862 1 854 856 1 856 853 1 855 858 1 + 858 857 1 857 854 1 857 859 1 859 856 1 858 860 1 860 869 1 869 857 1 869 861 1 861 859 1 + 864 863 1 863 947 1 947 948 1 948 864 1 948 949 1 949 865 1 865 864 1 860 867 1 867 866 1 + 866 869 1 866 868 1 868 861 1 867 863 1 864 866 1 865 868 1 659 850 1 663 852 1 853 664 1 + 669 855 1 856 672 1 674 858 1 859 677 1 678 860 1 861 679 1 947 686 1 687 948 1 684 949 1 + 863 690 1 695 867 1 868 698 1 865 691 1 700 871 1 871 808 1 809 872 1 872 703 1 926 870 1 + 870 871 1 871 873 1 873 926 1 926 874 1 874 872 1 872 870 1 889 875 1 875 877 1 877 876 1 + 876 889 1 889 879 1 879 878 1 878 875 1 880 926 1 873 881 1 881 880 1 880 882 1 882 874 1 + 881 877 1 875 880 1 878 882 1 883 888 1 888 887 1 887 884 1 884 883 1 885 887 1 888 886 1; + setAttr ".ed[1826:1991]" 886 885 1 887 889 1 876 884 1 885 879 1 883 955 1 955 956 1 + 956 888 1 956 957 1 957 886 1 704 873 1 874 705 1 711 876 1 877 710 1 715 878 1 879 714 1 + 717 881 1 882 720 1 726 956 1 955 725 1 728 957 1 737 883 1 884 736 1 885 739 1 738 886 1 + 903 890 1 891 893 1 893 903 1 903 894 1 894 892 1 895 903 1 893 896 1 896 895 1 895 897 1 + 897 894 1 896 899 1 899 898 1 898 895 1 898 900 1 900 897 1 910 898 1 899 901 1 901 910 1 + 910 902 1 902 900 1 904 907 1 907 906 1 906 905 1 905 904 1 907 909 1 909 908 1 908 906 1 + 908 963 1 963 962 1 962 906 1 962 961 1 961 905 1 907 910 1 901 909 1 904 902 1 892 744 1 + 745 893 1 891 741 1 894 746 1 751 896 1 897 754 1 759 899 1 900 758 1 760 901 1 902 761 1 + 771 904 1 905 770 1 773 908 1 909 772 1 766 963 1 961 763 1 977 997 1 997 996 1 996 911 1 + 911 977 1 977 913 1 998 997 1 912 911 1 996 995 1 995 912 1 911 916 1 916 976 1 976 977 1 + 976 918 1 918 913 1 914 917 1 917 916 1 916 915 1 915 914 1 917 975 1 975 976 1 975 919 1 + 919 918 1 917 920 1 920 974 1 974 975 1 921 920 1 974 922 1 922 919 1 920 923 1 923 973 1 + 973 974 1 924 923 1 973 925 1 925 922 1 918 795 1 796 922 1 925 783 1 973 785 1 915 790 1 + 919 794 1 915 912 1 912 778 1 995 994 1 969 945 1 945 801 1 592 591 1 939 592 1 930 991 1 + 992 930 1 801 982 1 608 612 1 612 590 1 590 611 1 611 599 1 593 594 1 594 611 1 945 981 1 + 596 595 1 981 980 1 980 819 1 945 799 1 799 980 1 1001 1006 1 966 965 1 1007 1004 1 + 1005 1003 1 978 825 1 1093 1092 1 1092 978 1 979 824 1 1089 1096 1 962 764 1 1008 1021 1 + 1021 1020 1 1020 971 1 587 971 1 979 980 1 987 928 1 928 946 1 929 928 1 989 990 1 + 990 991 1 1108 1107 1 1107 1014 1 1014 1002 1 1007 1011 1 1011 1009 1 1009 1004 1 + 1015 1022 1 1022 1021 1 1008 1015 1; + setAttr ".ed[1992:2157]" 1012 1006 1 1001 1013 1 1013 1012 1 1014 1013 1 1011 576 1 + 563 1009 1 1013 552 1 536 1012 1 1016 1012 1 1016 1005 1 1010 1003 1 1009 1015 1 + 1011 1010 1 1015 562 1 561 1022 1 553 1014 1 1107 551 1 554 1017 1 1017 1022 1 1017 1018 1 + 1018 1021 1 1018 992 1 1026 1114 1 1114 535 1 535 531 1 531 1026 1 115 1114 1 1026 1025 1 + 1025 115 1 1061 1060 1 1060 1149 1 1149 1148 1 1148 1061 1 1158 1049 1 1049 1159 1 + 1159 1158 1 1150 132 1 132 121 1 121 1064 1 1064 1150 1 1153 1152 1 1152 1034 1 1034 1031 1 + 1031 1153 1 1148 1046 1 1046 1042 1 1042 1061 1 1049 1050 1 1050 1160 1 1160 1159 1 + 1030 1154 1 1154 1153 1 1031 1030 1 1162 1045 1 1045 1048 1 1048 1163 1 1163 1162 1 + 1061 1032 1 1032 1064 1 1064 1060 1 118 1033 1 1033 1029 1 117 118 1 131 1149 1 1060 119 1 + 119 131 1 1113 1033 1 118 126 1 126 1113 1 1053 1045 1 1162 1161 1 1161 1053 1 1152 1151 1 + 1151 1032 1 1032 1034 1 1151 1150 1 1167 1166 1 1166 1044 1 1044 1035 1 1035 1167 1 + 1041 1171 1 1171 1170 1 1170 1041 1 1054 1039 1 1039 1173 1 1173 1172 1 1172 1054 1 + 584 1054 1 1054 1041 1 1041 560 1 1172 1171 1 1051 545 1 1041 1051 1 1178 1052 1 + 1052 1051 1 1051 1169 1 1169 1178 1 1040 1177 1 1177 1176 1 1176 1043 1 1043 1040 1 + 1038 1037 1 1037 585 1 538 1038 1 555 1043 1 1043 1038 1 547 1040 1 546 1039 1 1178 1177 1 + 1040 1052 1 1039 1037 1 1037 1174 1 1174 1173 1 1175 1174 1 1038 1175 1 1166 1165 1 + 1165 1047 1 1047 1044 1 121 119 1 1176 1175 1 1170 1169 1 133 1156 1 1156 1062 1 + 1062 122 1 122 133 1 1050 1053 1 1161 1160 1 248 1059 1 1059 1056 1 1056 136 1 136 248 1 + 96 120 1 120 1059 1 1056 1057 1 1057 137 1 1057 1058 1 1058 141 1 1063 1116 1 1116 1115 1 + 1115 249 1 249 1063 1 1042 1034 1 1155 1154 1 1030 1117 1 1117 1155 1 1164 1048 1 + 1048 1047 1 1165 1164 1 1058 1063 1 586 1052 1 812 814 1 814 828 1 809 807 1 807 870 1 + 803 804 1 1065 802 1 802 805 1 1066 823 1 1067 614 1 1092 1091 1 588 965 1 1147 1146 1 + 1146 516 1 1144 1072 1 1072 1134 1 1134 1145 1; + setAttr ".ed[2158:2323]" 1145 1144 1 1078 1077 1 1077 262 1 1080 1079 1 1077 1076 1 + 169 216 1 1070 524 1 524 525 1 525 1069 1 527 524 1 1069 531 1 226 216 1 240 243 1 + 167 238 1 392 1074 1 1075 392 1 410 1075 1 1076 410 1 1077 271 1 419 1076 1 1078 287 1 + 1079 290 1 1080 486 1 1081 453 1 1082 451 1 1083 449 1 1084 452 1 1085 445 1 1086 286 1 + 1087 319 1 1088 448 1 1074 432 1 1090 999 1 1000 1089 1 1091 998 1 1092 997 1 1093 996 1 + 1094 995 1 1095 994 1 1096 993 1 507 500 1 524 501 1 1075 393 1 451 450 1 449 447 1 + 452 446 1 242 1100 1 1100 145 1 1101 214 1 1100 1101 1 1101 1102 1 1102 215 1 239 242 1 + 1105 1100 1 1106 1101 1 1107 1017 1 1108 1018 1 1109 992 1 929 1109 1 964 928 1 965 946 1 + 594 607 1 594 610 1 592 609 1 592 596 1 1111 389 1 1142 1143 1 1143 521 1 521 510 1 + 1164 1179 1 1179 1163 1 1062 1113 1 126 122 1 1114 116 1 116 113 1 127 95 1 1116 123 1 + 123 94 1 1156 1155 1 1117 1062 1 1118 1113 1 1117 1118 1 1118 1119 1 1119 1033 1 + 1119 1120 1 1120 1029 1 1120 1121 1 1121 511 1 1024 1124 1 1124 1046 1 1046 1024 1 + 1097 1127 1 1138 1137 1 1128 508 1 1129 505 1 1130 518 1 1131 520 1 1132 522 1 1133 523 1 + 1146 1145 1 1134 516 1 1135 1134 1 515 1136 1 128 109 1 1144 1143 1 1143 527 1 501 1142 1 + 1140 507 1 1145 1133 1 1073 1144 1 1146 523 1 1147 513 1 130 103 1 510 517 1 525 531 1 + 1149 1025 1 1025 1023 1 1023 1148 1 131 115 1 1023 1024 1 120 132 1 1150 1059 1 1151 1056 1 + 1152 1057 1 1153 1058 1 1154 1063 1 1155 1116 1 1156 123 1 133 123 1 1126 506 1 506 1098 1 + 1127 1126 1 506 502 1 1028 1027 1 1027 530 1 530 529 1 529 1028 1 1125 528 1 511 512 1 + 512 1125 1 530 502 1 506 529 1 1125 529 1 1126 1125 1 530 531 1 1055 1157 1 1157 1168 1 + 1168 1036 1 1036 1055 1 1027 1026 1 1028 1024 1 1023 1027 1 1168 1167 1 1035 1036 1 + 1055 1049 1 1158 1157 1 1121 1122 1 1122 512 1 1028 512 1 1122 1123 1 1123 1028 1 + 1123 1124 1 1126 498 1 115 116 1 527 501 1 515 1134 1; + setAttr ".ed[2324:2489]" 1123 1157 1 1158 1124 1 1159 1046 1 1160 1042 1 1161 1034 1 + 1162 1031 1 1163 1030 1 1164 1118 1 1117 1179 1 1165 1119 1 1166 1120 1 1167 1121 1 + 1168 1122 1 1055 1169 1 1170 1049 1 1171 1050 1 1172 1053 1 1173 1045 1 1174 1048 1 + 1175 1047 1 1176 1044 1 1177 1035 1 1178 1036 1 1181 1180 1 1180 2150 1 2150 2149 1 + 2149 1181 1 1184 1186 1 1186 1187 1 1187 1183 1 1183 1184 1 95 1185 1 1185 1294 1 + 1294 96 1 2149 1211 1 1211 1184 1 1184 1181 1 1211 1214 1 1214 1186 1 94 2161 1 2161 125 1 + 1295 1187 1 1186 1296 1 1296 1295 1 1214 1283 1 1283 1296 1 1183 1182 1 1182 1181 1 + 92 1188 1 1188 127 1 1286 1285 1 1285 92 1 93 1286 1 97 1284 1 1284 1286 1 1271 1281 1 + 1281 1298 1 1298 1297 1 1297 1271 1 1298 1301 1 1301 1300 1 1300 1297 1 1264 1263 1 + 1263 1273 1 1273 1274 1 1274 1264 1 1225 1273 1 1273 1301 1 1301 1302 1 1302 1225 1 + 1225 1234 1 1234 1274 1 1298 1299 1 1299 1302 1 1281 1233 1 1233 1299 1 1263 1300 1 + 1230 1227 1 1227 1226 1 1226 1229 1 1229 1230 1 1269 1268 1 1268 1278 1 1278 1279 1 + 1279 1269 1 1230 1279 1 1278 1227 1 1230 1232 1 1232 1280 1 1280 1279 1 1229 1233 1 + 1233 1232 1 1234 1235 1 1235 1275 1 1275 1274 1 1281 1280 1 1234 1257 1 1257 1256 1 + 1256 1235 1 1266 1265 1 1265 1275 1 1275 1276 1 1276 1266 1 1265 1264 1 1239 1238 1 + 1238 1252 1 1252 1248 1 1248 1239 1 1256 1276 1 1228 1241 1 1241 1242 1 1242 1228 1 + 1253 1228 1 1242 1236 1 1236 1253 1 1252 1253 1 1236 1248 1 1227 1254 1 1254 1255 1 + 1255 1226 1 1278 1277 1 1277 1254 1 1268 1267 1 1267 1277 1 1267 1266 1 1276 1277 1 + 1256 1254 1 1257 1255 1 1284 1283 1 1214 1243 1 1243 1284 1 98 1283 1 1211 1212 1 + 1212 1243 1 1223 1212 1 2149 1223 1 125 1296 1 1261 1260 1 1260 1224 1 1224 1245 1 + 1245 1261 1 1259 1231 1 1231 1258 1 1258 1200 1 1200 1259 1 1200 1203 1 1203 1198 1 + 1198 1259 1 1258 1201 1 1201 1209 1 1209 1200 1 1207 1206 1 1206 1197 1 1197 1293 1 + 1293 1207 1 1260 1191 1 1191 1221 1 1221 1224 1 1191 1194 1 1194 1199 1 1199 1221 1 + 2148 1223 1 2150 2148 1 1210 1272 1 1272 1219 1 1219 1204 1; + setAttr ".ed[2490:2655]" 1204 1210 1 1217 2114 1 2114 1219 1 1219 1239 1 1239 1217 1 + 2114 1208 1 1208 1204 1 1245 1246 1 1246 1222 1 1222 1261 1 1206 1221 1 1199 1197 1 + 2151 1189 1 1189 1285 1 1285 2151 1 1218 1220 1 1220 1208 1 2114 1218 1 1282 2152 1 + 2152 2150 1 1180 1282 1 1202 1208 1 1220 1190 1 1190 1202 1 1202 1205 1 1205 1204 1 + 1205 1209 1 1209 1210 1 1205 1203 1 1202 1207 1 1207 1203 1 1190 1206 1 1201 1215 1 + 1215 1210 1 1190 1224 1 1220 1245 1 1290 1291 1 1291 1197 1 1199 1290 1 1223 1222 1 + 1222 1195 1 1195 1212 1 1194 1287 1 1287 1290 1 1247 1195 1 1246 1247 1 1291 1292 1 + 1292 1293 1 1240 1231 1 1259 1240 1 1242 1240 1 1198 1242 1 1251 1244 1 1244 1195 1 + 1247 1251 1 1192 1244 1 1251 1193 1 1193 1192 1 1244 1243 1 1192 1213 1 1213 1243 1 + 1248 1249 1 1249 1217 1 1236 1237 1 1237 1249 1 1250 1251 1 1247 1216 1 1216 1250 1 + 1249 1250 1 1216 1217 1 1196 1250 1 1237 1196 1 1196 1193 1 1271 1270 1 1270 1280 1 + 1270 1269 1 1241 1240 1 1246 1218 1 1218 1216 1 1272 1238 1 1194 1288 1 1288 1289 1 + 1289 1287 1 1263 1215 1 1201 1300 1 1265 1238 1 1238 1262 1 1262 1264 1 1266 1252 1 + 1267 1253 1 1268 1228 1 1269 1241 1 1270 1240 1 1271 1231 1 1297 1258 1 1185 1282 1 + 1180 1294 1 1185 1188 1 1188 1189 1 1189 1282 1 2151 2152 1 1289 1213 1 1192 1287 1 + 1193 1290 1 1196 1291 1 1237 1292 1 1242 1292 1 1198 1293 1 1539 1540 1 1540 1525 1 + 1525 1510 1 1510 1539 1 1523 1519 1 1519 1515 1 1515 1522 1 1522 1523 1 1511 1512 1 + 1512 1309 1 1309 1525 1 1525 1511 1 1542 1541 1 1541 1524 1 1524 1310 1 1310 1542 1 + 1524 1520 1 1520 1519 1 1523 1524 1 1543 1311 1 1311 1512 1 1511 1543 1 1542 1543 1 + 1511 1541 1 1308 1519 1 1520 1500 1 1500 1308 1 1308 1474 1 1474 1515 1 1522 1427 1 + 1427 1501 1 1501 1523 1 1513 1518 1 1518 1309 1 1512 1513 1 1517 1518 1 1513 1514 1 + 1514 1517 1 1426 1312 1 1312 1514 1 1513 1426 1 1312 1428 1 1428 1521 1 1521 1514 1 + 1428 1427 1 1522 1521 1 1516 1517 1 1521 1516 1 1515 1516 1 2131 1531 1 1531 1530 1 + 1530 2130 1 2130 2131 1 2134 2120 1 2120 1510 1 1510 1307 1 1307 2134 1 2120 2121 1; + setAttr ".ed[2656:2821]" 2121 1539 1 2121 2122 1 2122 1500 1 1500 1539 1 1304 1303 1 + 1303 2124 1 2124 2125 1 2125 1304 1 2131 2132 1 2132 1306 1 1306 1531 1 2132 2133 1 + 2133 1479 1 1479 1306 1 1530 1529 1 1529 2129 1 2129 2130 1 1529 1528 1 1528 2128 1 + 2128 2129 1 1491 1498 1 1498 1359 1 1359 1350 1 1350 1491 1 1308 1303 1 1303 1475 1 + 1475 1474 1 1304 1476 1 1476 1475 1 1479 1425 1 1425 1480 1 1480 1306 1 1424 1307 1 + 1307 1309 1 1518 1424 1 1527 1526 1 1526 1477 1 1477 1305 1 1305 1527 1 1313 1424 1 + 1517 1313 1 1313 1314 1 1314 1425 1 1425 1424 1 1429 1313 1 1516 1429 1 1429 1430 1 + 1430 1314 1 1477 1476 1 1304 1305 1 1480 1483 1 1483 1531 1 1480 1481 1 1481 1432 1 + 1432 1483 1 1481 1482 1 1482 1431 1 1431 1432 1 1530 1485 1 1485 1484 1 1484 1529 1 + 1485 1483 1 1432 1484 1 1484 1433 1 1433 1528 1 1431 1433 1 1527 1528 1 1433 1526 1 + 1477 1431 1 1482 1476 1 1429 1474 1 1475 1430 1 1366 1367 1 1367 1437 1 1437 1434 1 + 1434 1366 1 1330 1434 1 1437 1368 1 1368 1330 1 1415 1407 1 1407 1459 1 1459 1462 1 + 1462 1415 1 1459 1409 1 1409 1416 1 1416 1462 1 1472 1473 1 1473 1369 1 1369 1372 1 + 1372 1472 1 1373 1320 1 1320 1473 1 1472 1373 1 1329 1478 1 1478 1490 1 1490 1329 1 + 1508 1488 1 1488 1487 1 1487 1507 1 1507 1508 1 1350 1352 1 1352 1504 1 1504 1505 1 + 1505 1350 1 1438 1478 1 1329 1354 1 1354 1438 1 1359 1355 1 1355 1352 1 1487 1332 1 + 1332 1491 1 1491 1486 1 1486 1487 1 1486 1506 1 1506 1507 1 1329 1352 1 1355 1354 1 + 1488 1365 1 1365 1332 1 1329 1503 1 1503 1504 1 1490 1489 1 1489 1509 1 1509 1502 1 + 1502 1490 1 1489 1488 1 1508 1509 1 1494 1489 1 1478 1494 1 1494 1365 1 1502 1503 1 + 1486 1350 1 1505 1506 1 1362 1331 1 1331 1508 1 1507 1362 1 1362 1360 1 1360 2156 1 + 2156 1331 1 1361 1351 1 1351 1353 1 1353 2158 1 2158 1361 1 1351 1505 1 1504 1353 1 + 1330 1353 1 1503 1330 1 1509 1366 1 1434 1502 1 1331 1366 1 2156 1367 1 1368 2158 1 + 1390 1400 1 1400 1393 1 1393 1394 1 1394 1390 1 1436 1362 1 1506 1436 1 1351 1436 1 + 1435 1360 1 1436 1435 1 1361 1435 1 2156 2157 1 2157 1437 1 2157 2158 1 1328 1325 1; + setAttr ".ed[2822:2987]" 1325 1439 1 1439 1438 1 1438 1328 1 1354 1445 1 1445 1438 1 + 1445 1328 1 1328 1364 1 1364 1356 1 1356 1325 1 1341 1356 1 1364 1349 1 1349 1341 1 + 1495 1341 1 1349 1498 1 1498 1495 1 1492 1349 1 1349 1399 1 1399 1453 1 1453 1492 1 + 1364 1388 1 1388 1399 1 1359 1492 1 1453 1401 1 1401 1359 1 1341 1342 1 1342 1381 1 + 1381 1356 1 1405 1388 1 1328 1405 1 1405 1404 1 1404 1389 1 1389 1388 1 1389 1398 1 + 1398 1399 1 1401 1391 1 1391 1355 1 1391 1403 1 1403 1354 1 1398 1452 1 1452 1453 1 + 1452 1400 1 1400 1401 1 1403 1455 1 1455 1445 1 1455 1405 1 1402 1390 1 1394 1395 1 + 1395 1402 1 1404 1396 1 1396 1397 1 1397 1389 1 1397 1392 1 1392 1398 1 1390 1391 1 + 1402 1403 1 1392 1449 1 1449 1452 1 1449 1393 1 1402 1454 1 1454 1455 1 1454 1404 1 + 1397 1450 1 1450 1449 1 1450 1394 1 1450 1451 1 1451 1395 1 1396 1451 1 1451 1454 1 + 1322 1439 1 1439 1440 1 1440 1322 1 1325 1440 1 1456 1439 1 1322 1321 1 1321 1456 1 + 1322 1363 1 1363 1382 1 1382 1321 1 1344 1347 1 1347 1382 1 1363 1344 1 1347 1410 1 + 1410 1420 1 1420 1382 1 1341 1493 1 1493 1443 1 1443 1342 1 1493 1344 1 1344 1345 1 + 1345 1443 1 1381 1326 1 1326 1325 1 1363 1387 1 1387 1345 1 1441 1323 1 1323 1322 1 + 1440 1441 1 1324 1323 1 1441 1442 1 1442 1324 1 1326 1441 1 1326 1327 1 1327 1442 1 + 1343 1342 1 1443 1444 1 1444 1343 1 1345 1346 1 1346 1444 1 1381 1385 1 1385 1327 1 + 1343 1385 1 1387 1386 1 1386 1346 1 1324 1386 1 1387 1323 1 1421 1409 1 1409 1408 1 + 1408 1420 1 1420 1421 1 1411 1421 1 1410 1411 1 1376 1324 1 1442 1446 1 1446 1376 1 + 1444 1448 1 1448 1379 1 1379 1343 1 1346 1380 1 1380 1448 1 1375 1380 1 1386 1375 1 + 1376 1375 1 1377 1327 1 1385 1378 1 1378 1377 1 1379 1378 1 1377 1446 1 1378 1447 1 + 1447 1446 1 1447 1375 1 1447 1448 1 1465 1456 1 1456 1315 1 1315 1316 1 1316 1465 1 + 1384 1383 1 1383 1339 1 1339 1357 1 1357 1384 1 1499 1339 1 1383 1497 1 1497 1499 1 + 2127 2128 1 1527 2127 1 1456 1457 1 1457 1315 1 1321 1457 1 1315 1384 1 1357 1316 1 + 1458 1406 1 1406 1315 1 1457 1458 1 1321 1408 1 1408 1458 1 1406 1423 1 1423 1384 1; + setAttr ".ed[2988:3153]" 1412 1383 1 1423 1412 1 1347 1496 1 1496 1460 1 1460 1410 1 + 1412 1460 1 1496 1383 1 1407 1406 1 1458 1459 1 1460 1461 1 1461 1411 1 1412 1413 1 + 1413 1461 1 1414 1419 1 1419 1413 1 1413 1422 1 1422 1414 1 1415 1414 1 1422 1407 1 + 1418 1417 1 1417 1421 1 1411 1418 1 1417 1416 1 1464 1418 1 1461 1464 1 1419 1464 1 + 1423 1422 1 1417 1463 1 1463 1462 1 1463 1414 1 1463 1464 1 1336 1333 1 1333 1334 1 + 1334 1337 1 1337 1336 1 1499 1532 1 1532 1468 1 1468 1339 1 1318 1317 1 1317 1465 1 + 1465 1466 1 1466 1318 1 1333 1317 1 1318 1334 1 1466 1316 1 1316 1538 1 1538 1467 1 + 1467 1466 1 1319 1318 1 1467 1319 1 1319 1533 1 1533 1334 1 1533 1534 1 1534 1337 1 + 1335 1338 1 1338 1534 1 1533 1335 1 1468 1535 1 1535 1536 1 1536 1339 1 1469 1340 1 + 1340 1536 1 1535 1469 1 1357 1537 1 1537 1538 1 1536 1537 1 1340 1358 1 1358 1537 1 + 1468 1337 1 1534 1535 1 1338 1469 1 1338 1348 1 1348 1470 1 1470 1469 1 1358 1369 1 + 1369 1538 1 1473 1467 1 1340 1370 1 1370 1371 1 1371 1358 1 1371 1372 1 1470 1370 1 + 1335 1374 1 1374 1348 1 1335 1320 1 1373 1374 1 1320 1319 1 1374 1471 1 1471 1470 1 + 1471 1371 1 1471 1472 1 1310 1225 1 1302 1542 1 1233 1311 1 1543 1299 1 1229 1426 1 + 1426 1311 1 1310 1501 1 1501 1234 1 1226 1312 1 1427 1257 1 1255 1428 1 1479 1307 1 + 1314 1481 1 1430 1482 1 1497 1347 1 1344 1495 1 1495 1497 1 2133 2134 1 1520 1540 1 + 1541 1540 1 1305 2126 1 2126 2127 1 1532 1336 1 101 1554 1 1554 2183 1 2183 129 1 + 2174 1555 1 1555 2185 1 2185 2184 1 2184 2174 1 2185 2144 1 2144 2173 1 2173 2184 1 + 2183 2143 1 2143 124 1 2186 2187 1 2187 1545 1 1545 1549 1 1549 2186 1 1546 1556 1 + 1556 2188 1 2188 2187 1 2187 1546 1 1545 1547 1 1547 2145 1 2145 1549 1 2143 1544 1 + 1544 99 1 2185 2186 1 1549 2144 1 1548 1549 1 2145 1571 1 1571 1548 1 1553 1555 1 + 1555 1550 1 1550 1556 1 1556 1553 1 2175 1550 1 2174 2175 1 100 1551 1 1551 1554 1 + 1574 1557 1 1557 102 1 112 1574 1 1557 2075 1 2075 117 1 104 1562 1 1562 1572 1 1572 111 1 + 1568 1559 1 1559 1569 1 1569 1568 1 2118 2181 1 2181 2117 1 2117 1573 1; + setAttr ".ed[3154:3319]" 1573 2118 1 2181 2182 1 2182 1578 1 1578 2117 1 1566 105 1 + 114 1568 1 1568 1566 1 1560 1565 1 1565 2177 1 2177 2178 1 2178 1560 1 2193 130 1 + 1572 2193 1 1565 1563 1 1563 2176 1 2176 2177 1 1566 1564 1 1564 106 1 1563 1550 1 + 2175 2176 1 1560 2119 1 2119 1567 1 1567 1565 1 2115 2116 1 2116 1579 1 1579 1580 1 + 1580 2115 1 108 1580 1 1579 110 1 109 1561 1 1561 1562 1 1544 1574 1 113 1581 1 1581 1580 1 + 2178 2179 1 2179 2119 1 2116 2117 1 1578 1579 1 103 1559 1 1564 1551 1 2182 128 1 + 107 1578 1 1610 1587 1 1587 2062 1 2062 2056 1 2056 1610 1 1583 1586 1 1586 1585 1 + 1585 1590 1 1590 1583 1 1584 1583 1 1590 1631 1 1631 1584 1 1586 1588 1 1588 1589 1 + 1589 1585 1 1588 1582 1 1582 1587 1 1587 1589 1 1585 1612 1 1612 1602 1 1602 1590 1 + 1621 1589 1 1610 1621 1 1621 1612 1 1618 1600 1 1600 1597 1 1597 1617 1 1617 1618 1 + 1625 1627 1 1627 1591 1 1591 1606 1 1606 1625 1 1606 1630 1 1630 1603 1 1603 1625 1 + 1626 1625 1 1603 1624 1 1624 1626 1 1629 1620 1 1620 1609 1 1609 1608 1 1608 1629 1 + 1619 1629 1 1608 1607 1 1607 1619 1 1583 1611 1 1611 1594 1 1594 1586 1 1627 1614 1 + 1614 1632 1 1632 1591 1 1614 1613 1 1613 1593 1 1593 1632 1 1613 1605 1 1605 1604 1 + 1604 1613 1 1614 1596 1 1596 1595 1 1595 1613 1 1588 1615 1 1615 1598 1 1598 1582 1 + 1607 1600 1 1618 1619 1 1615 1616 1 1616 1599 1 1599 1598 1 1604 1594 1 1611 1613 1 + 1601 1593 1 1611 1601 1 1584 1601 1 1597 1599 1 1616 1617 1 1630 1592 1 1592 1602 1 + 1602 1603 1 1626 1628 1 1628 1627 1 1610 1622 1 1622 1623 1 1623 1621 1 1620 1623 1 + 1622 1609 1 1612 1624 1 1594 1615 1 1604 1616 1 1605 1617 1 1595 1618 1 1605 1595 1 + 1596 1619 1 1592 1631 1 1628 1596 1 1629 1628 1 1626 1620 1 1623 1624 1 2047 2048 1 + 2048 2010 1 2010 2011 1 2011 2047 1 2154 2155 1 2155 2010 1 2048 2154 1 2033 1637 1 + 1637 1973 1 1973 2032 1 2032 2033 1 2035 1636 1 1636 1639 1 1639 2034 1 2034 2035 1 + 1658 2036 1 2036 1999 1 1999 1658 1 1639 1637 1 2033 2034 1 1641 1647 1 1647 1985 1 + 1985 1641 1 2113 1658 1 1999 1998 1 1998 2113 1 1983 1646 1 1646 1662 1; + setAttr ".ed[3320:3485]" 1662 1982 1 1982 1983 1 1655 1646 1 1646 1663 1 1663 1665 1 + 1665 1655 1 1643 1642 1 1642 1666 1 1666 1667 1 1667 1643 1 1641 1786 1 1786 1788 1 + 1788 1647 1 1647 1648 1 1648 1984 1 1984 1985 1 1648 1649 1 1649 1650 1 1650 1984 1 + 1984 1651 1 1651 1973 1 1973 1985 1 1650 1652 1 1652 1651 1 1635 1634 1 1634 2031 1 + 2031 2030 1 2030 1635 1 1634 1992 1 1992 2032 1 2032 2031 1 1651 2031 1 1652 2030 1 + 1633 1659 1 1659 2000 1 2000 2065 1 2065 1633 1 1646 1638 1 1638 1640 1 1640 1662 1 + 1642 1655 1 1665 1666 1 2000 1996 1 1996 1999 1 2036 2000 1 2066 2065 1 2065 2037 1 + 2037 2038 1 2038 2066 1 1996 1661 1 1661 2141 1 2141 2142 1 2142 1996 1 1999 2135 1 + 2135 2136 1 2136 1998 1 1998 1997 1 1997 2112 1 2112 2113 1 2136 2137 1 2137 1997 1 + 1664 1663 1 1983 1664 1 1664 1668 1 1668 1670 1 1670 1663 1 1670 1671 1 1671 1665 1 + 1671 1703 1 1703 1666 1 1669 1667 1 1703 1669 1 1668 1673 1 1673 1672 1 1672 1670 1 + 1671 1674 1 1674 1675 1 1675 1703 1 1675 1676 1 1676 1669 1 1673 1678 1 1678 1677 1 + 1677 1672 1 1677 1679 1 1679 1674 1 1674 1672 1 1679 1680 1 1680 1675 1 1680 1681 1 + 1681 1676 1 1678 1682 1 1682 1684 1 1684 1677 1 1684 1685 1 1685 1679 1 1685 1686 1 + 1686 1680 1 1683 1681 1 1686 1683 1 1687 1688 1 1688 1702 1 1702 1693 1 1693 1687 1 + 1687 1690 1 1690 1689 1 1689 1688 1 1690 1692 1 1692 1691 1 1691 1689 1 1692 1694 1 + 1694 1701 1 1701 1691 1 1682 1697 1 1697 1696 1 1696 1684 1 1696 1694 1 1694 1695 1 + 1695 1698 1 1698 1696 1 1699 1700 1 1700 1683 1 1686 1699 1 1685 1698 1 1698 1699 1 + 1693 1695 1 1695 1690 1 1693 1699 1 1697 1701 1 1702 1700 1 1645 1981 1 1981 1980 1 + 1980 1653 1 1653 1645 1 1988 1654 1 1654 1660 1 1660 1987 1 1987 1988 1 1989 1657 1 + 1657 1654 1 1988 1989 1 1645 1989 1 1989 1706 1 1706 1707 1 1707 1645 1 1705 1704 1 + 1704 1988 1 1987 1705 1 1704 1706 1 1707 1708 1 1708 1981 1 1705 1709 1 1709 1711 1 + 1711 1704 1 1712 1706 1 1711 1712 1 1712 1713 1 1713 1707 1 1710 1708 1 1713 1710 1 + 1709 1715 1 1715 1714 1 1714 1711 1 1716 1712 1 1714 1716 1 1716 1717 1 1717 1713 1; + setAttr ".ed[3486:3651]" 1717 1718 1 1718 1710 1 1715 1720 1 1720 1719 1 1719 1714 1 + 1721 1716 1 1719 1721 1 1721 1722 1 1722 1717 1 1722 1723 1 1723 1718 1 1720 1724 1 + 1724 1726 1 1726 1719 1 1727 1721 1 1726 1727 1 1727 1728 1 1728 1722 1 1725 1723 1 + 1728 1725 1 1729 1730 1 1730 1737 1 1737 1738 1 1738 1729 1 1732 1731 1 1731 1735 1 + 1735 1736 1 1736 1732 1 1733 1734 1 1734 1731 1 1732 1733 1 1733 1730 1 1729 1734 1 + 1738 1739 1 1739 1734 1 1724 1741 1 1741 1740 1 1740 1726 1 1742 1727 1 1740 1742 1 + 1742 1743 1 1743 1728 1 1743 1744 1 1744 1725 1 1735 1740 1 1741 1736 1 1739 1742 1 + 1735 1739 1 1738 1743 1 1737 1744 1 1662 1656 1 1656 1747 1 1747 1748 1 1748 1662 1 + 1656 1653 1 1653 1745 1 1745 1747 1 1980 1746 1 1746 1745 1 1748 1749 1 1749 1982 1 + 1746 1750 1 1750 1752 1 1752 1745 1 1752 1753 1 1753 1747 1 1753 1754 1 1754 1748 1 + 1751 1749 1 1754 1751 1 1755 1756 1 1756 1757 1 1757 1767 1 1767 1755 1 1758 1755 1 + 1767 1768 1 1768 1758 1 1759 1758 1 1768 1769 1 1769 1759 1 1760 1761 1 1761 1759 1 + 1769 1760 1 1750 1763 1 1763 1762 1 1762 1752 1 1762 1764 1 1764 1753 1 1764 1765 1 + 1765 1754 1 1765 1766 1 1766 1751 1 1763 1756 1 1755 1762 1 1758 1764 1 1759 1765 1 + 1761 1766 1 1771 1770 1 1770 1778 1 1778 1783 1 1783 1771 1 1771 1772 1 1772 1773 1 + 1773 1770 1 1772 1774 1 1774 1775 1 1775 1773 1 1774 1784 1 1784 1776 1 1776 1775 1 + 1779 1778 1 1778 1777 1 1777 1780 1 1780 1779 1 1777 1776 1 1776 1781 1 1781 1780 1 + 1782 1783 1 1779 1782 1 1784 1785 1 1785 1781 1 1757 1782 1 1779 1767 1 1780 1768 1 + 1781 1769 1 1785 1760 1 1773 1777 1 1787 1786 1 1641 1644 1 1644 1787 1 1788 1789 1 + 1789 1648 1 1790 1649 1 1789 1790 1 1787 1791 1 1791 1793 1 1793 1786 1 1793 1794 1 + 1794 1788 1 1794 1795 1 1795 1789 1 1792 1790 1 1795 1792 1 1791 1797 1 1797 1796 1 + 1796 1793 1 1796 1798 1 1798 1794 1 1798 1799 1 1799 1795 1 1799 1800 1 1800 1792 1 + 1797 1805 1 1805 1801 1 1801 1796 1 1801 1802 1 1802 1798 1 1802 1803 1 1803 1799 1 + 1803 1804 1 1804 1800 1 1805 1806 1 1806 1977 1 1977 1801 1 1978 1802 1 1977 1978 1; + setAttr ".ed[3652:3817]" 1978 1979 1 1979 1803 1 1807 1804 1 1979 1807 1 1808 1809 1 + 1809 1816 1 1816 1814 1 1814 1808 1 1808 1811 1 1811 1810 1 1810 1809 1 1811 1813 1 + 1813 1812 1 1812 1810 1 1813 1820 1 1820 1819 1 1819 1812 1 1814 1815 1 1815 1823 1 + 1823 1822 1 1822 1814 1 1816 1817 1 1817 1815 1 1818 1819 1 1820 1821 1 1821 1818 1 + 1820 1822 1 1823 1821 1 1806 1818 1 1821 1977 1 1823 1978 1 1815 1979 1 1817 1807 1 + 1822 1811 1 1827 2039 1 2039 2040 1 2040 1824 1 1824 1827 1 1827 1825 1 1825 2046 1 + 2046 2039 1 1826 2045 1 2045 2046 1 1825 1826 1 1828 1829 1 1829 1842 1 1842 1843 1 + 1843 1828 1 1832 1831 1 1831 1829 1 1828 1832 1 1832 1834 1 1834 2018 1 2018 1830 1 + 1830 1832 1 1833 1834 1 1834 1843 1 1843 1838 1 1838 1833 1 1837 1833 1 1833 1835 1 + 1835 1836 1 1836 1837 1 1838 1839 1 1839 1835 1 1838 1840 1 1840 1841 1 1841 1839 1 + 1842 1840 1 1837 2018 1 1837 1960 1 1960 1967 1 1967 2018 1 1967 1970 1 1970 1830 1 + 1824 1836 1 1835 1827 1 1839 1825 1 1841 1826 1 1970 1831 1 1976 2035 1 2034 1975 1 + 1975 1976 1 1826 1959 1 1959 2044 1 2044 2045 1 2049 2014 1 2014 2015 1 2015 2053 1 + 2053 2049 1 1844 2016 1 2016 2015 1 2015 1845 1 1845 1844 1 2050 2016 1 2016 2017 1 + 2017 2054 1 2054 2050 1 2052 2012 1 2012 2013 1 2013 2051 1 2051 2052 1 1846 1847 1 + 1847 2014 1 2014 2013 1 2013 1846 1 2012 1635 1 1635 1846 1 1872 1844 1 1845 1870 1 + 1870 1872 1 1852 1851 1 1851 1866 1 1866 1865 1 1865 1852 1 1865 1990 1 1990 1859 1 + 1859 1852 1 1849 1851 1 1851 1854 1 1854 1849 1 1854 1852 1 1852 1853 1 1853 1854 1 + 1982 1855 1 1855 1856 1 1856 1983 1 1859 1862 1 1862 1857 1 1857 1858 1 1858 1859 1 + 1859 1856 1 1855 1852 1 1981 1849 1 1854 1980 1 1848 1850 1 1850 1986 1 1986 1869 1 + 1869 1848 1 1859 1860 1 1860 1856 1 1861 1857 1 1862 1861 1 1863 1864 1 1864 1861 1 + 1862 1863 1 1862 1867 1 1867 1868 1 1868 1863 1 2030 2029 1 2029 1846 1 2028 1867 1 + 1867 1990 1 1990 2027 1 2027 2028 1 1652 1868 1 1868 2029 1 2028 2029 1 1667 1876 1 + 1876 1858 1 1858 1643 1 1856 1875 1 1875 1664 1 1649 1864 1 1863 1650 1 1861 1936 1; + setAttr ".ed[3818:3983]" 1936 1937 1 1937 1857 1 1864 1938 1 1938 1936 1 2024 2025 1 + 2025 1866 1 1866 2111 1 2111 2024 1 1873 1872 1 1870 1871 1 1871 1873 1 2111 2112 1 + 1997 2024 1 1633 1844 1 1872 1659 1 1873 1661 1 1661 1659 1 2140 1873 1 1871 2139 1 + 2139 2140 1 2140 2141 1 1644 1643 1 1857 1644 1 1887 1877 1 1877 1875 1 1875 1874 1 + 1874 1887 1 1874 1876 1 1876 1878 1 1878 1887 1 1879 1880 1 1880 1877 1 1887 1879 1 + 1878 1881 1 1881 1879 1 1879 1882 1 1882 1883 1 1883 1880 1 1881 1884 1 1884 1882 1 + 1894 1885 1 1885 1883 1 1882 1894 1 1884 1886 1 1886 1894 1 1886 1888 1 1888 1889 1 + 1889 1894 1 1890 1885 1 1889 1890 1 1892 1891 1 1891 2005 1 2005 2004 1 2004 1892 1 + 1891 1893 1 1893 2006 1 2006 2005 1 1877 1668 1 1669 1878 1 1880 1673 1 1676 1881 1 + 1883 1678 1 1681 1884 1 1885 1682 1 1683 1886 1 1689 2005 1 2006 1688 1 1691 2004 1 + 1702 1893 1 1893 1888 1 1888 1700 1 1890 1697 1 1701 1892 1 1891 1889 1 1892 1890 1 + 1708 1897 1 1897 1849 1 1660 1869 1 1986 1987 1 1850 1895 1 1895 1896 1 1896 1986 1 + 1895 1908 1 1908 1898 1 1898 1896 1 1895 1897 1 1897 1899 1 1899 1908 1 1908 1900 1 + 1900 1901 1 1901 1898 1 1899 1902 1 1902 1900 1 1900 1903 1 1903 1904 1 1904 1901 1 + 1902 1905 1 1905 1903 1 1903 1915 1 1915 1906 1 1906 1904 1 1905 1907 1 1907 1915 1 + 1910 1994 1 1994 1993 1 1993 1909 1 1909 1910 1 1910 1911 1 1911 1995 1 1995 1994 1 + 1915 1912 1 1912 1913 1 1913 1906 1 1907 1914 1 1914 1912 1 1912 1910 1 1909 1913 1 + 1914 1911 1 1896 1705 1 1898 1709 1 1710 1899 1 1901 1715 1 1718 1902 1 1904 1720 1 + 1723 1905 1 1906 1724 1 1725 1907 1 1994 1733 1 1732 1993 1 1995 1730 1 1736 1909 1 + 1913 1741 1 1744 1914 1 1737 1911 1 1854 1917 1 1917 1746 1 1749 1918 1 1918 1855 1 + 1972 1919 1 1919 1917 1 1917 1916 1 1916 1972 1 1916 1918 1 1918 1920 1 1920 1972 1 + 1935 1922 1 1922 1923 1 1923 1921 1 1921 1935 1 1921 1924 1 1924 1925 1 1925 1935 1 + 1926 1927 1 1927 1919 1 1972 1926 1 1920 1928 1 1928 1926 1 1926 1921 1 1923 1927 1 + 1928 1924 1 1929 1930 1 1930 1933 1 1933 1934 1 1934 1929 1 1931 1932 1 1932 1934 1; + setAttr ".ed[3984:4149]" 1933 1931 1 1930 1922 1 1935 1933 1 1925 1931 1 1934 2002 1 + 2002 2001 1 2001 1929 1 1932 2003 1 2003 2002 1 1919 1750 1 1751 1920 1 1756 1923 1 + 1922 1757 1 1760 1925 1 1924 1761 1 1927 1763 1 1766 1928 1 1771 2001 1 2002 1772 1 + 2003 1774 1 1782 1930 1 1929 1783 1 1785 1931 1 1932 1784 1 1949 1939 1 1939 1937 1 + 1936 1949 1 1938 1940 1 1940 1949 1 1941 1942 1 1942 1939 1 1949 1941 1 1940 1943 1 + 1943 1941 1 1941 1944 1 1944 1945 1 1945 1942 1 1943 1946 1 1946 1944 1 1956 1947 1 + 1947 1945 1 1944 1956 1 1946 1948 1 1948 1956 1 1950 1951 1 1951 1952 1 1952 1953 1 + 1953 1950 1 1952 1954 1 1954 1955 1 1955 1953 1 1952 2008 1 2008 2009 1 2009 1954 1 + 1951 2007 1 2007 2008 1 1955 1947 1 1956 1953 1 1948 1950 1 1790 1938 1 1787 1937 1 + 1939 1791 1 1792 1940 1 1942 1797 1 1800 1943 1 1945 1805 1 1804 1946 1 1947 1806 1 + 1807 1948 1 1816 1951 1 1950 1817 1 1818 1955 1 1954 1819 1 2009 1812 1 1809 2007 1 + 2023 1957 1 1957 2042 1 2042 2043 1 2043 2023 1 2043 2044 1 1959 2023 1 1958 2041 1 + 2041 2042 1 1957 1958 1 2023 2022 1 2022 1962 1 1962 1957 1 1959 1964 1 1964 2022 1 + 1960 1961 1 1961 1962 1 1962 1963 1 1963 1960 1 2022 2021 1 2021 1963 1 1964 1965 1 + 1965 2021 1 2021 2020 1 2020 1966 1 1966 1963 1 1966 1967 1 1965 1968 1 1968 2020 1 + 2020 2019 1 2019 1969 1 1969 1966 1 1969 1970 1 1968 1971 1 1971 2019 1 1841 1964 1 + 1829 1971 1 1968 1842 1 1831 2019 1 1836 1961 1 1840 1965 1 1824 1958 1 1958 1961 1 + 2040 2041 1 1847 1991 1 1991 2015 1 1638 1985 1 1637 1638 1 1976 2038 1 2037 1976 1 + 2028 1847 1 1657 1636 1 1636 1658 1 1658 1654 1 1645 1657 1 1657 1640 1 1640 1639 1 + 2027 1991 1 1641 1642 1 1865 2026 1 2026 2027 1 2026 1845 1 1845 1991 1 2011 2012 1 + 2052 2047 1 2050 2053 1 2049 2051 1 2024 2138 1 2138 2139 1 1871 2024 1 1870 2025 1 + 2142 2135 1 1810 2008 1 2017 2066 1 2066 2067 1 2067 2054 1 2017 1633 1 2026 2025 1 + 1992 1974 1 1974 2033 1 1974 1975 1 2037 2036 1 2036 2035 1 2048 2060 1 2060 2153 1 + 2153 2154 1 2050 2055 1 2055 2057 1 2057 2053 1 2061 2054 1 2067 2068 1 2068 2061 1; + setAttr ".ed[4150:4315]" 2058 2059 1 2059 2047 1 2052 2058 1 2059 2060 1 2055 1609 1 + 1622 2057 1 2058 1582 1 1598 2059 1 2058 2062 1 2051 2062 1 2049 2056 1 2061 2055 1 + 2056 2057 1 2068 1607 1 1608 2061 1 1597 2153 1 2060 1599 1 2068 2063 1 2063 1600 1 + 2067 2064 1 2064 2063 1 2038 2064 1 2072 1577 1 1577 1581 1 1581 2160 1 2160 2072 1 + 115 2071 1 2071 2072 1 2160 115 1 2107 2194 1 2194 2195 1 2195 2106 1 2106 2107 1 + 2204 2205 1 2205 2095 1 2095 2204 1 2196 2110 1 2110 121 1 132 2196 1 2199 2077 1 + 2077 2080 1 2080 2198 1 2198 2199 1 2107 2088 1 2088 2092 1 2092 2194 1 2205 2206 1 + 2206 2096 1 2096 2095 1 2076 2077 1 2199 2200 1 2200 2076 1 2208 2209 1 2209 2094 1 + 2094 2091 1 2091 2208 1 2106 2110 1 2110 2078 1 2078 2107 1 2075 2079 1 2079 118 1 + 119 2106 1 2195 131 1 2159 126 1 2079 2159 1 2099 2207 1 2207 2208 1 2091 2099 1 + 2080 2078 1 2078 2197 1 2197 2198 1 2196 2197 1 2213 2081 1 2081 2090 1 2090 2212 1 + 2212 2213 1 2087 2216 1 2216 2217 1 2217 2087 1 2100 2218 1 2218 2219 1 2219 2085 1 + 2085 2100 1 1606 2087 1 2087 2100 1 2100 1630 1 2217 2218 1 2097 2087 1 1591 2097 1 + 2224 2215 1 2215 2097 1 2097 2098 1 2098 2224 1 2086 2089 1 2089 2222 1 2222 2223 1 + 2223 2086 1 2084 1584 1 1631 2083 1 2083 2084 1 2084 2089 1 2089 1601 1 2086 1593 1 + 2085 1592 1 2098 2086 1 2223 2224 1 2219 2220 1 2220 2083 1 2083 2085 1 2221 2084 1 + 2220 2221 1 2090 2093 1 2093 2211 1 2211 2212 1 2221 2222 1 2215 2216 1 122 2108 1 + 2108 2202 1 2202 133 1 2206 2207 1 2099 2096 1 1294 1182 1 1182 2102 1 2102 2105 1 + 2105 1294 1 2105 120 1 1183 2103 1 2103 2102 1 1187 2104 1 2104 2103 1 2109 1295 1 + 1295 2161 1 2161 2162 1 2162 2109 1 2080 2088 1 2201 2163 1 2163 2076 1 2200 2201 1 + 2210 2211 1 2093 2094 1 2094 2210 1 2109 2104 1 2098 1632 1 1874 1860 1 1860 1858 1 + 1916 1853 1 1853 1855 1 1850 1849 1 1851 1848 1 1848 2111 1 1869 2112 1 1660 2113 1 + 2137 2138 1 2011 1634 1 1562 2192 1 2192 2193 1 2190 2191 1 2191 2180 1 2180 2118 1 + 2118 2190 1 1308 2123 1 2123 2124 1 2125 2126 1 2122 2123 1 1262 1215 1 2115 1571 1; + setAttr ".ed[4316:4481]" 1571 1570 1 1570 2116 1 1570 1573 1 1577 2115 1 1262 1272 1 + 1284 1213 1 1289 1286 1 1438 2121 1 2120 1438 1 1456 2122 1 2121 1456 1 2122 1465 1 + 1317 2123 1 1333 2124 1 1336 2125 1 1532 2126 1 1499 2127 1 1497 2128 1 1495 2129 1 + 1498 2130 1 1491 2131 1 1332 2132 1 1365 2133 1 1494 2134 1 1478 2120 1 2135 2046 1 + 2045 2136 1 2044 2137 1 2043 2138 1 2042 2139 1 2041 2140 1 2040 2141 1 2039 2142 1 + 1546 1553 1 1547 1570 1 1439 2121 1 1496 1497 1 1493 1495 1 1492 1498 1 1191 2146 1 + 2146 1288 1 2147 2146 1 1260 2147 1 1261 2148 1 2148 2147 1 1288 1285 1 2146 2151 1 + 2147 2152 1 2063 2153 1 2064 2154 1 2038 2155 1 1974 2010 1 2155 1975 1 1992 2011 1 + 1653 1640 1 1656 1640 1 1655 1638 1 1642 1638 1 1435 2157 1 1556 1567 1 1567 2189 1 + 2189 2188 1 2209 2225 1 2225 2210 1 2159 2108 1 116 2160 1 123 2162 1 2108 2163 1 + 2201 2202 1 2164 2163 1 2159 2164 1 2079 2165 1 2165 2164 1 2075 2166 1 2166 2165 1 + 1557 2167 1 2167 2166 1 2070 2092 1 2092 2170 1 2170 2070 1 2183 2184 1 2173 2143 1 + 1554 2174 1 1551 2175 1 1564 2176 1 1566 2177 1 1568 2178 1 1569 2179 1 1562 2180 1 + 2191 2192 1 2180 2181 1 2182 1561 1 1573 2189 1 2189 2190 1 2188 1547 1 1553 2186 1 + 2190 2119 1 2179 2191 1 1569 2192 1 1559 2193 1 1563 1556 1 1577 1571 1 2194 2069 1 + 2069 2071 1 2071 2195 1 2070 2069 1 2105 2196 1 2102 2197 1 2103 2198 1 2104 2199 1 + 2109 2200 1 2162 2201 1 123 2202 1 2172 2173 1 2144 1552 1 1552 2172 1 1548 1552 1 + 2074 1575 1 1575 1576 1 1576 2073 1 2073 2074 1 2171 1558 1 1558 1557 1 1574 2171 1 + 1575 1552 1 1548 1576 1 2171 2172 1 1575 2171 1 1577 1576 1 2101 2082 1 2082 2214 1 + 2214 2203 1 2203 2101 1 2072 2073 1 2073 2069 1 2070 2074 1 2082 2081 1 2213 2214 1 + 2203 2204 1 2095 2101 1 1558 2168 1 2168 2167 1 2074 2169 1 2169 2168 1 1558 2074 1 + 2170 2169 1 1544 2172 1 1547 1573 1 2180 1561 1 2170 2204 1 2203 2169 1 2092 2205 1 + 2088 2206 1 2080 2207 1 2077 2208 1 2076 2209 1 2225 2163 1 2164 2210 1 2165 2211 1 + 2166 2212 1 2167 2213 1 2168 2214 1 2095 2216 1 2215 2101 1 2096 2217 1 2099 2218 1; + setAttr ".ed[4482:4487]" 2091 2219 1 2094 2220 1 2093 2221 1 2090 2222 1 2081 2223 1 + 2082 2224 1; + setAttr -s 2226 ".n"; + setAttr ".n[0:165]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[166:331]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[332:497]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[498:663]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[664:829]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[830:995]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[996:1161]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[1162:1327]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[1328:1493]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[1494:1659]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[1660:1825]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[1826:1991]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[1992:2157]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[2158:2225]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr -s 2268 -ch 8920 ".fc"; + setAttr ".fc[0:499]" -type "polyFaces" + f 4 0 1 2 3 + mu 0 4 0 1 2 3 + f 4 4 5 6 -2 + mu 0 4 1 4 5 2 + f 4 7 8 9 -6 + mu 0 4 4 6 7 5 + f 4 10 11 12 -9 + mu 0 4 6 8 9 7 + f 4 13 14 15 -12 + mu 0 4 8 10 11 9 + f 4 16 17 18 -15 + mu 0 4 10 12 13 11 + f 4 19 20 21 -18 + mu 0 4 12 14 15 13 + f 4 22 -4 23 -21 + mu 0 4 14 0 3 15 + f 3 -3 24 25 + mu 0 3 3 2 16 + f 3 -7 26 -25 + mu 0 3 2 5 16 + f 3 -10 27 -27 + mu 0 3 5 7 16 + f 3 -13 28 -28 + mu 0 3 7 9 16 + f 3 -16 29 -29 + mu 0 3 9 11 16 + f 3 -19 30 -30 + mu 0 3 11 13 16 + f 3 -22 31 -31 + mu 0 3 13 15 16 + f 3 -24 -26 -32 + mu 0 3 15 3 16 + f 4 32 33 34 35 + mu 0 4 17 18 19 20 + f 4 36 37 38 -34 + mu 0 4 21 22 23 24 + f 4 39 40 41 42 + mu 0 4 25 26 27 28 + f 4 43 44 45 -41 + mu 0 4 26 29 30 27 + f 4 46 47 48 -45 + mu 0 4 29 31 32 30 + f 4 49 50 51 52 + mu 0 4 33 34 35 36 + f 4 53 54 55 56 + mu 0 4 37 38 39 40 + f 4 57 58 59 -55 + mu 0 4 38 41 42 39 + f 4 60 -43 61 -38 + mu 0 4 22 25 28 23 + f 4 62 -36 63 -59 + mu 0 4 41 17 20 42 + f 4 64 -53 65 -48 + mu 0 4 31 33 36 32 + f 4 66 -57 67 -51 + mu 0 4 34 37 40 35 + f 4 68 69 70 71 + mu 0 4 43 44 45 46 + f 4 72 73 74 -70 + mu 0 4 44 47 48 45 + f 4 75 76 77 -74 + mu 0 4 47 49 50 48 + f 4 78 79 80 -77 + mu 0 4 49 51 52 50 + f 4 81 82 83 -80 + mu 0 4 51 53 54 52 + f 4 84 85 86 -83 + mu 0 4 53 55 56 54 + f 4 87 88 89 -86 + mu 0 4 55 57 58 56 + f 4 90 -72 91 -89 + mu 0 4 57 43 46 58 + f 3 -71 92 93 + mu 0 3 46 45 59 + f 3 -75 94 -93 + mu 0 3 45 48 59 + f 3 -78 95 -95 + mu 0 3 48 50 59 + f 3 -81 96 -96 + mu 0 3 50 52 59 + f 3 -84 97 -97 + mu 0 3 52 54 59 + f 3 -87 98 -98 + mu 0 3 54 56 59 + f 3 -90 99 -99 + mu 0 3 56 58 59 + f 3 -92 -94 -100 + mu 0 3 58 46 59 + f 4 100 101 102 103 + mu 0 4 60 61 62 63 + f 4 104 105 106 -102 + mu 0 4 61 64 65 62 + f 4 107 108 109 -106 + mu 0 4 64 66 67 65 + f 4 110 111 112 -109 + mu 0 4 66 68 69 67 + f 4 113 114 115 -112 + mu 0 4 68 70 71 69 + f 4 116 117 118 -115 + mu 0 4 70 72 73 71 + f 4 119 120 121 -118 + mu 0 4 72 74 75 73 + f 4 122 -104 123 -121 + mu 0 4 74 60 63 75 + f 3 -103 124 125 + mu 0 3 63 62 76 + f 3 -107 126 -125 + mu 0 3 62 65 76 + f 3 -110 127 -127 + mu 0 3 65 67 76 + f 3 -113 128 -128 + mu 0 3 67 69 76 + f 3 -116 129 -129 + mu 0 3 69 71 76 + f 3 -119 130 -130 + mu 0 3 71 73 76 + f 3 -122 131 -131 + mu 0 3 73 75 76 + f 3 -124 -126 -132 + mu 0 3 75 63 76 + f 4 132 133 134 135 + mu 0 4 77 78 79 80 + f 4 136 137 138 -134 + mu 0 4 78 81 82 79 + f 4 139 140 141 -138 + mu 0 4 81 83 84 82 + f 4 142 143 144 -141 + mu 0 4 83 85 86 84 + f 4 145 146 147 -144 + mu 0 4 85 87 88 86 + f 4 148 149 150 -147 + mu 0 4 87 89 90 88 + f 4 151 152 153 -150 + mu 0 4 89 91 92 90 + f 4 154 -136 155 -153 + mu 0 4 91 77 80 92 + f 3 -135 156 157 + mu 0 3 80 79 93 + f 3 -139 158 -157 + mu 0 3 79 82 93 + f 3 -142 159 -159 + mu 0 3 82 84 93 + f 3 -145 160 -160 + mu 0 3 84 86 93 + f 3 -148 161 -161 + mu 0 3 86 88 93 + f 3 -151 162 -162 + mu 0 3 88 90 93 + f 3 -154 163 -163 + mu 0 3 90 92 93 + f 3 -156 -158 -164 + mu 0 3 92 80 93 + f 4 164 165 166 167 + mu 0 4 94 95 96 97 + f 4 168 169 170 171 + mu 0 4 98 99 100 101 + f 4 172 173 174 175 + mu 0 4 102 103 104 105 + f 4 176 177 178 -165 + mu 0 4 94 106 107 95 + f 4 -172 179 180 -178 + mu 0 4 106 108 109 107 + f 3 181 182 183 + mu 0 3 110 111 112 + f 4 184 185 -171 186 + mu 0 4 113 114 115 116 + f 4 187 188 -180 -186 + mu 0 4 117 118 109 108 + f 4 189 190 -169 -177 + mu 0 4 119 120 121 122 + f 3 191 192 193 + mu 0 3 123 124 125 + f 4 194 195 196 197 + mu 0 4 126 127 128 129 + f 4 198 199 200 -195 + mu 0 4 126 130 131 127 + f 4 201 202 203 204 + mu 0 4 132 133 134 135 + f 4 205 206 207 -203 + mu 0 4 133 136 137 134 + f 4 208 209 210 211 + mu 0 4 138 139 140 141 + f 4 212 213 214 215 + mu 0 4 142 143 137 140 + f 4 -210 216 217 -216 + mu 0 4 140 139 144 142 + f 4 -208 -214 218 219 + mu 0 4 134 137 143 145 + f 4 -204 -220 220 221 + mu 0 4 135 134 145 146 + f 4 -211 -215 -207 222 + mu 0 4 141 140 137 136 + f 4 223 224 225 226 + mu 0 4 147 148 149 150 + f 4 227 228 229 230 + mu 0 4 151 152 153 154 + f 4 231 -229 232 -227 + mu 0 4 150 153 152 147 + f 4 233 234 235 -233 + mu 0 4 152 155 156 147 + f 4 -236 236 237 -224 + mu 0 4 147 156 157 148 + f 4 -217 238 239 240 + mu 0 4 144 139 158 159 + f 4 -237 -235 241 -222 + mu 0 4 157 156 155 160 + f 4 242 243 244 -241 + mu 0 4 159 161 162 144 + f 4 245 246 247 248 + mu 0 4 163 164 158 165 + f 4 -248 -239 -209 249 + mu 0 4 165 158 139 138 + f 4 250 251 252 253 + mu 0 4 166 167 168 169 + f 4 -247 254 -243 -240 + mu 0 4 158 164 161 159 + f 3 255 256 257 + mu 0 3 170 171 172 + f 4 258 259 -256 260 + mu 0 4 173 174 171 170 + f 4 -252 261 -259 262 + mu 0 4 168 167 174 173 + f 4 263 264 265 -226 + mu 0 4 149 175 176 150 + f 4 266 267 -232 -266 + mu 0 4 176 177 153 150 + f 4 -230 -268 268 269 + mu 0 4 154 153 177 178 + f 4 -269 270 -246 271 + mu 0 4 178 177 164 163 + f 4 272 -255 -271 -267 + mu 0 4 176 161 164 177 + f 4 -265 273 -244 -273 + mu 0 4 176 175 162 161 + f 4 274 275 -189 276 + mu 0 4 130 179 109 118 + f 4 -200 -277 277 278 + mu 0 4 131 130 118 180 + f 4 -181 -276 279 280 + mu 0 4 107 109 179 181 + f 4 281 -179 -281 282 + mu 0 4 182 95 107 181 + f 4 -188 283 284 -278 + mu 0 4 118 117 183 180 + f 4 285 286 287 288 + mu 0 4 184 185 186 187 + f 4 289 290 291 292 + mu 0 4 188 189 190 191 + f 4 293 294 295 -290 + mu 0 4 188 192 193 189 + f 4 296 297 298 -291 + mu 0 4 189 194 195 190 + f 4 299 300 301 302 + mu 0 4 196 197 198 199 + f 4 303 304 305 -288 + mu 0 4 186 200 201 187 + f 4 306 307 308 -305 + mu 0 4 200 202 203 201 + f 4 309 -166 -282 310 + mu 0 4 204 96 95 182 + f 4 311 312 313 314 + mu 0 4 205 206 207 208 + f 4 315 316 317 318 + mu 0 4 209 166 207 210 + f 4 319 320 -318 -313 + mu 0 4 206 211 210 207 + f 4 321 322 323 -286 + mu 0 4 184 212 213 185 + f 4 324 -307 325 -302 + mu 0 4 198 202 200 199 + f 3 326 327 328 + mu 0 3 214 215 216 + f 4 329 -321 330 331 + mu 0 4 217 210 211 218 + f 4 332 -167 333 334 + mu 0 4 219 97 96 220 + f 4 335 336 -331 337 + mu 0 4 221 222 218 211 + f 4 -338 -320 338 339 + mu 0 4 221 211 206 223 + f 4 -312 340 341 -339 + mu 0 4 206 205 194 223 + f 4 -296 342 -342 -297 + mu 0 4 189 193 223 194 + f 4 343 344 -340 -343 + mu 0 4 193 196 221 223 + f 4 345 -336 -345 -303 + mu 0 4 199 222 221 196 + f 4 346 347 -298 -341 + mu 0 4 205 224 195 194 + f 4 -304 348 -346 -326 + mu 0 4 200 186 222 199 + f 4 -287 349 -337 -349 + mu 0 4 186 185 218 222 + f 4 350 -325 351 352 + mu 0 4 225 226 227 228 + f 4 353 354 355 -283 + mu 0 4 181 229 212 182 + f 4 -308 -351 356 357 + mu 0 4 230 226 225 231 + f 4 358 -323 -355 359 + mu 0 4 232 213 212 229 + f 4 -352 -301 360 361 + mu 0 4 228 227 233 234 + f 3 362 -293 363 + mu 0 3 235 236 237 + f 4 364 -294 -363 365 + mu 0 4 171 238 236 235 + f 4 366 -360 367 368 + mu 0 4 239 232 229 240 + f 4 369 370 -369 371 + mu 0 4 241 242 239 240 + f 4 -354 -280 372 -368 + mu 0 4 229 181 179 240 + f 4 -373 373 374 -372 + mu 0 4 240 179 243 241 + f 4 -251 -316 375 376 + mu 0 4 167 166 209 244 + f 4 -262 -377 377 378 + mu 0 4 174 167 244 245 + f 4 379 380 -367 381 + mu 0 4 246 247 232 239 + f 4 -376 382 -380 383 + mu 0 4 244 209 247 246 + f 4 384 -378 -384 385 + mu 0 4 248 245 244 246 + f 4 386 -386 -382 -371 + mu 0 4 242 248 246 239 + f 4 -205 -242 387 388 + mu 0 4 249 160 155 250 + f 4 -388 -234 -228 389 + mu 0 4 250 155 152 151 + f 3 390 -257 -366 + mu 0 3 235 172 171 + f 4 391 392 -359 -381 + mu 0 4 247 217 213 232 + f 4 -319 -330 -392 -383 + mu 0 4 209 210 217 247 + f 4 -254 393 -314 -317 + mu 0 4 166 169 208 207 + f 4 -358 394 395 396 + mu 0 4 230 231 251 252 + f 4 -223 397 -348 398 + mu 0 4 141 136 195 224 + f 4 399 400 401 -250 + mu 0 4 138 253 169 165 + f 4 402 -249 -402 -253 + mu 0 4 168 163 165 169 + f 4 -263 403 -272 -403 + mu 0 4 168 173 178 163 + f 4 404 -270 -404 -261 + mu 0 4 170 154 178 173 + f 4 405 -231 -405 -258 + mu 0 4 172 151 154 170 + f 4 406 -390 -406 -391 + mu 0 4 235 250 151 172 + f 4 -389 -407 -364 407 + mu 0 4 249 250 235 237 + f 4 408 -202 -408 -292 + mu 0 4 190 133 132 191 + f 4 -398 -206 -409 -299 + mu 0 4 195 136 133 190 + f 4 -174 409 -333 410 + mu 0 4 104 103 254 255 + f 4 411 412 413 -411 + mu 0 4 256 257 258 259 + f 4 -335 414 -329 -412 + mu 0 4 219 220 214 216 + f 4 415 -375 416 -395 + mu 0 4 231 241 243 251 + f 4 417 -370 -416 -357 + mu 0 4 225 242 241 231 + f 4 418 -387 -418 -353 + mu 0 4 228 248 242 225 + f 4 419 -385 -419 -362 + mu 0 4 234 245 248 228 + f 4 -260 -379 -420 420 + mu 0 4 171 174 245 234 + f 4 421 -365 -421 -361 + mu 0 4 233 238 171 234 + f 4 -344 -295 -422 -300 + mu 0 4 196 193 192 197 + f 4 422 423 424 425 + mu 0 4 260 261 262 263 + f 4 426 427 428 429 + mu 0 4 264 265 266 267 + f 4 430 431 432 433 + mu 0 4 268 262 269 270 + f 4 434 435 436 437 + mu 0 4 271 272 273 274 + f 4 438 -430 439 440 + mu 0 4 273 264 267 275 + f 4 441 -434 442 443 + mu 0 4 276 268 270 277 + f 4 444 -442 445 -438 + mu 0 4 274 268 276 271 + f 4 446 447 -440 448 + mu 0 4 278 279 275 267 + f 4 449 450 -449 -429 + mu 0 4 266 280 278 267 + f 4 451 452 453 -427 + mu 0 4 264 281 282 265 + f 4 454 -433 455 456 + mu 0 4 283 284 285 286 + f 4 457 458 -457 459 + mu 0 4 287 288 283 286 + f 4 460 -459 461 462 + mu 0 4 289 283 288 290 + f 4 -462 463 464 465 + mu 0 4 290 288 291 292 + f 4 -465 466 -454 467 + mu 0 4 292 291 265 282 + f 4 468 -464 -458 469 + mu 0 4 293 291 288 287 + f 4 -467 -469 470 -428 + mu 0 4 265 291 293 266 + f 4 471 472 473 474 + mu 0 4 294 295 296 297 + f 4 475 476 477 478 + mu 0 4 298 299 261 300 + f 4 -478 -423 479 480 + mu 0 4 300 261 260 301 + f 4 -480 481 482 483 + mu 0 4 301 260 279 302 + f 4 484 485 486 487 + mu 0 4 303 304 305 306 + f 4 -475 488 489 490 + mu 0 4 294 297 307 308 + f 4 -490 491 492 493 + mu 0 4 308 307 309 310 + f 4 494 495 496 -473 + mu 0 4 295 311 312 296 + f 4 497 498 499 -496 + mu 0 4 311 313 314 312 + f 4 500 501 502 503 + mu 0 4 315 316 317 318 + f 4 504 505 506 -451 + mu 0 4 280 319 306 278 + f 4 507 508 -488 -506 + mu 0 4 319 320 303 306 + f 4 509 510 511 -492 + mu 0 4 307 321 322 309 + f 4 512 -456 513 514 + mu 0 4 323 286 285 324 + f 4 515 516 517 518 + mu 0 4 325 326 327 328 + f 4 519 -460 -513 520 + mu 0 4 329 287 286 323 + f 4 521 522 523 -521 + mu 0 4 323 322 330 329 + f 4 524 -470 -520 525 + mu 0 4 331 293 287 329 + f 4 -524 526 527 -526 + mu 0 4 329 330 332 331 + f 4 -517 528 -509 529 + mu 0 4 327 326 303 320 + f 4 -489 530 531 -510 + mu 0 4 307 297 333 321 + f 4 532 533 534 -532 + mu 0 4 333 334 335 321 + f 4 535 536 537 -534 + mu 0 4 334 336 337 335 + f 4 538 539 540 -497 + mu 0 4 312 338 339 296 + f 4 541 -533 542 -540 + mu 0 4 338 334 333 339 + f 4 543 544 -539 -500 + mu 0 4 314 340 338 312 + f 4 -536 -542 -545 545 + mu 0 4 336 334 338 340 + f 4 546 -544 547 -519 + mu 0 4 328 340 314 325 + f 4 548 -537 549 -530 + mu 0 4 320 337 336 327 + f 4 -528 550 -505 551 + mu 0 4 331 332 319 280 + f 4 -471 -525 -552 -450 + mu 0 4 266 293 331 280 + f 4 552 553 554 555 + mu 0 4 341 342 343 344 + f 4 556 557 -554 558 + mu 0 4 345 346 343 342 + f 4 559 560 561 562 + mu 0 4 347 348 349 350 + f 4 -561 563 564 565 + mu 0 4 349 348 351 352 + f 4 566 567 568 569 + mu 0 4 353 354 355 356 + f 4 570 -570 571 572 + mu 0 4 357 353 356 358 + f 3 573 574 575 + mu 0 3 359 360 361 + f 4 576 577 578 579 + mu 0 4 362 363 364 365 + f 4 580 581 582 583 + mu 0 4 316 366 367 368 + f 4 584 585 -576 586 + mu 0 4 369 370 359 361 + f 4 -584 587 588 -502 + mu 0 4 316 368 371 317 + f 4 589 590 591 592 + mu 0 4 364 372 315 373 + f 4 593 594 -590 -578 + mu 0 4 363 374 372 364 + f 4 595 -588 596 -586 + mu 0 4 370 375 376 359 + f 4 -579 -593 597 598 + mu 0 4 365 364 373 377 + f 4 -583 599 600 -597 + mu 0 4 376 378 379 359 + f 4 601 602 603 604 + mu 0 4 360 380 381 382 + f 4 605 -580 606 -604 + mu 0 4 381 383 384 382 + f 4 607 -575 -605 608 + mu 0 4 385 361 360 382 + f 4 -607 -599 609 -609 + mu 0 4 382 384 386 385 + f 4 -601 610 -602 -574 + mu 0 4 359 379 380 360 + f 4 611 -581 612 -595 + mu 0 4 374 366 316 372 + f 4 613 -577 614 615 + mu 0 4 387 363 362 388 + f 4 616 617 618 -616 + mu 0 4 389 390 391 392 + f 4 619 620 621 622 + mu 0 4 393 394 395 396 + f 4 623 -582 624 -622 + mu 0 4 397 367 366 398 + f 4 625 -600 -624 626 + mu 0 4 345 379 378 399 + f 4 627 -553 628 -603 + mu 0 4 380 342 341 381 + f 4 -615 -606 -629 629 + mu 0 4 389 383 381 341 + f 4 -556 630 -617 -630 + mu 0 4 341 344 390 389 + f 4 -557 -627 -621 631 + mu 0 4 346 345 399 394 + f 4 632 633 634 635 + mu 0 4 400 401 402 403 + f 4 -626 -559 -628 -611 + mu 0 4 379 345 342 380 + f 4 636 -594 -614 637 + mu 0 4 404 374 363 387 + f 4 -625 -612 -637 638 + mu 0 4 398 366 374 404 + f 4 639 -638 -619 640 + mu 0 4 405 404 387 406 + f 4 -623 -639 -640 641 + mu 0 4 407 398 404 405 + f 4 -631 -555 642 643 + mu 0 4 390 344 343 408 + f 4 -643 -558 -632 644 + mu 0 4 408 343 346 394 + f 4 645 646 647 648 + mu 0 4 409 369 410 411 + f 3 649 650 -585 + mu 0 3 369 412 370 + f 3 651 -650 -646 + mu 0 3 409 412 369 + f 4 652 653 654 -649 + mu 0 4 411 413 414 409 + f 4 655 656 -654 657 + mu 0 4 415 416 417 418 + f 4 658 659 -656 660 + mu 0 4 419 318 416 415 + f 4 661 662 663 664 + mu 0 4 420 421 422 416 + f 4 -664 665 666 -657 + mu 0 4 416 422 423 417 + f 4 667 668 -662 669 + mu 0 4 317 424 421 420 + f 4 670 671 672 -658 + mu 0 4 418 425 426 415 + f 4 673 -655 -667 674 + mu 0 4 427 409 414 428 + f 4 675 676 677 -675 + mu 0 4 428 429 430 427 + f 4 678 679 -676 -666 + mu 0 4 422 431 432 423 + f 4 -589 680 681 -668 + mu 0 4 317 371 433 424 + f 4 -681 -596 682 683 + mu 0 4 434 375 370 435 + f 4 684 685 -679 -663 + mu 0 4 421 436 431 422 + f 4 686 687 -685 -669 + mu 0 4 424 403 436 421 + f 4 688 689 -683 -651 + mu 0 4 412 437 435 370 + f 4 690 -689 -652 -674 + mu 0 4 427 437 412 409 + f 4 691 692 -633 693 + mu 0 4 438 439 440 441 + f 4 694 695 696 -677 + mu 0 4 429 442 443 430 + f 4 697 698 -695 -680 + mu 0 4 431 444 445 432 + f 4 -682 699 -636 -687 + mu 0 4 424 433 400 403 + f 4 -700 -684 700 -694 + mu 0 4 441 434 435 438 + f 4 -686 701 702 -698 + mu 0 4 431 436 446 444 + f 4 -702 -688 -635 703 + mu 0 4 446 436 403 402 + f 4 704 705 -701 -690 + mu 0 4 437 447 438 435 + f 4 706 -705 -691 -678 + mu 0 4 430 447 437 427 + f 4 707 708 -699 -703 + mu 0 4 446 448 445 444 + f 4 -634 709 -708 -704 + mu 0 4 402 401 448 446 + f 4 -693 710 711 -710 + mu 0 4 440 439 449 450 + f 4 -712 712 -696 -709 + mu 0 4 450 449 443 442 + f 4 -692 -706 713 -711 + mu 0 4 439 438 447 449 + f 4 -714 -707 -697 -713 + mu 0 4 449 447 430 443 + f 3 714 715 716 + mu 0 3 451 452 410 + f 3 -716 717 -648 + mu 0 3 410 452 411 + f 4 718 719 -717 720 + mu 0 4 453 454 451 410 + f 4 721 722 723 -720 + mu 0 4 454 455 456 451 + f 4 724 -723 725 726 + mu 0 4 457 458 459 460 + f 4 727 728 729 -726 + mu 0 4 459 461 462 460 + f 4 -673 730 731 732 + mu 0 4 415 426 463 464 + f 4 -732 733 734 735 + mu 0 4 464 463 465 457 + f 4 736 737 -671 -653 + mu 0 4 411 466 467 413 + f 4 -735 738 739 -725 + mu 0 4 457 465 468 458 + f 4 740 -715 741 742 + mu 0 4 469 452 451 470 + f 4 743 744 -743 745 + mu 0 4 471 472 469 470 + f 4 -741 746 -737 -718 + mu 0 4 452 469 466 411 + f 4 -747 -745 747 748 + mu 0 4 466 469 472 473 + f 4 749 750 -731 751 + mu 0 4 474 475 463 426 + f 4 -734 -751 752 753 + mu 0 4 465 463 475 476 + f 4 -749 754 755 -738 + mu 0 4 466 473 477 467 + f 4 -672 -756 756 -752 + mu 0 4 426 425 478 474 + f 4 -754 757 758 -739 + mu 0 4 465 476 479 468 + f 4 759 -759 760 -746 + mu 0 4 470 480 481 471 + f 4 -742 -724 -740 -760 + mu 0 4 470 451 456 480 + f 4 761 762 763 764 + mu 0 4 482 483 484 352 + f 4 765 -729 -762 766 + mu 0 4 485 462 461 486 + f 4 767 768 -744 769 + mu 0 4 487 488 472 471 + f 4 770 771 772 -750 + mu 0 4 474 489 490 475 + f 4 -773 773 774 -753 + mu 0 4 475 490 491 476 + f 4 775 -758 -775 776 + mu 0 4 492 479 476 491 + f 4 -761 -776 777 -770 + mu 0 4 471 481 493 487 + f 4 778 779 -755 780 + mu 0 4 494 495 477 473 + f 4 -780 781 -771 -757 + mu 0 4 478 496 489 474 + f 4 -769 782 -781 -748 + mu 0 4 472 488 494 473 + f 4 -779 -783 783 784 + mu 0 4 495 494 488 497 + f 4 -784 -768 -778 785 + mu 0 4 497 488 487 493 + f 4 -774 786 -786 -777 + mu 0 4 491 490 498 492 + f 4 -787 -772 -782 -785 + mu 0 4 498 490 489 496 + f 4 787 788 789 790 + mu 0 4 499 500 501 453 + f 4 791 792 793 794 + mu 0 4 502 503 504 505 + f 4 795 796 -794 797 + mu 0 4 506 507 505 504 + f 4 798 -548 -499 799 + mu 0 4 508 325 314 313 + f 3 800 801 -790 + mu 0 3 501 509 453 + f 3 -802 802 -719 + mu 0 3 453 509 454 + f 4 -789 803 -792 804 + mu 0 4 501 500 510 511 + f 4 805 -801 806 807 + mu 0 4 512 509 501 513 + f 4 -806 808 809 -803 + mu 0 4 509 512 484 454 + f 4 810 811 -807 -805 + mu 0 4 511 514 513 501 + f 4 812 -811 -795 813 + mu 0 4 515 516 502 505 + f 4 -810 -763 -728 -722 + mu 0 4 454 484 483 455 + f 4 -730 814 815 816 + mu 0 4 460 462 517 518 + f 4 -814 817 -816 818 + mu 0 4 515 505 518 517 + f 4 -562 819 -808 820 + mu 0 4 350 349 512 513 + f 4 -809 -820 -566 -764 + mu 0 4 484 512 349 352 + f 4 821 822 -815 -766 + mu 0 4 485 519 517 462 + f 4 823 824 -819 -823 + mu 0 4 519 520 515 517 + f 4 825 826 827 828 + mu 0 4 521 522 520 523 + f 4 -563 829 -826 830 + mu 0 4 347 350 524 525 + f 4 831 -767 832 833 + mu 0 4 526 485 486 527 + f 4 -833 -765 -565 834 + mu 0 4 528 482 352 351 + f 4 835 -822 -832 836 + mu 0 4 529 519 485 526 + f 4 -824 -836 837 -828 + mu 0 4 520 519 529 523 + f 4 838 -813 -825 -827 + mu 0 4 522 516 515 520 + f 4 -812 -839 -830 -821 + mu 0 4 513 514 524 350 + f 4 -835 -564 839 840 + mu 0 4 528 351 348 530 + f 4 -840 -560 -831 841 + mu 0 4 530 348 347 525 + f 4 -838 842 -842 -829 + mu 0 4 523 529 531 521 + f 4 -843 -837 -834 -841 + mu 0 4 531 529 526 527 + f 4 843 844 845 846 + mu 0 4 532 533 534 535 + f 4 -798 847 848 849 + mu 0 4 506 504 536 537 + f 4 850 851 852 853 + mu 0 4 538 539 499 540 + f 4 -846 854 -854 855 + mu 0 4 535 534 538 540 + f 4 856 857 858 859 + mu 0 4 539 541 542 500 + f 4 860 -857 -851 861 + mu 0 4 543 541 539 538 + f 4 862 863 -862 -855 + mu 0 4 534 544 543 538 + f 4 864 865 -863 -845 + mu 0 4 533 545 544 534 + f 4 866 -866 867 868 + mu 0 4 546 544 545 547 + f 4 869 870 871 -848 + mu 0 4 504 548 549 536 + f 4 872 -871 873 874 + mu 0 4 550 549 548 551 + f 4 875 876 -804 -859 + mu 0 4 542 552 510 500 + f 4 -877 877 -870 -793 + mu 0 4 503 553 548 504 + f 4 -874 -878 878 879 + mu 0 4 551 548 553 554 + f 4 880 -865 881 -872 + mu 0 4 549 545 533 536 + f 4 -868 -881 -873 882 + mu 0 4 547 545 549 550 + f 4 883 884 885 -883 + mu 0 4 550 555 556 547 + f 4 -879 -876 886 887 + mu 0 4 557 552 542 355 + f 4 -858 888 -569 -887 + mu 0 4 542 541 356 355 + f 4 889 890 891 -880 + mu 0 4 554 558 559 551 + f 4 -568 892 -890 -888 + mu 0 4 355 354 560 557 + f 4 -892 893 -884 -875 + mu 0 4 551 559 555 550 + f 4 894 895 -869 -886 + mu 0 4 556 561 546 547 + f 4 -896 896 -573 897 + mu 0 4 546 562 357 358 + f 4 898 -572 -889 -861 + mu 0 4 543 358 356 541 + f 4 899 900 -895 -885 + mu 0 4 555 563 561 556 + f 4 -891 901 -900 -894 + mu 0 4 559 558 563 555 + f 4 -893 -567 902 -902 + mu 0 4 560 354 353 564 + f 4 -903 -571 -897 -901 + mu 0 4 564 353 357 562 + f 4 903 -213 904 -435 + mu 0 4 271 143 142 272 + f 4 905 -444 906 -221 + mu 0 4 145 276 277 146 + f 4 -904 -446 -906 -219 + mu 0 4 143 271 276 145 + f 4 907 908 -238 -907 + mu 0 4 565 289 148 157 + f 4 909 910 -905 -218 + mu 0 4 144 281 272 142 + f 4 -909 -463 911 -225 + mu 0 4 148 289 290 149 + f 4 912 -453 -910 -245 + mu 0 4 162 282 281 144 + f 4 -466 913 -264 -912 + mu 0 4 290 292 175 149 + f 4 -913 -274 -914 -468 + mu 0 4 282 162 175 292 + f 4 -522 -515 914 -512 + mu 0 4 322 323 324 309 + f 4 -523 -511 -535 915 + mu 0 4 330 322 321 335 + f 4 -916 -538 916 -527 + mu 0 4 330 335 337 332 + f 4 -917 -549 -508 -551 + mu 0 4 332 337 320 319 + f 4 -543 -531 -474 -541 + mu 0 4 339 333 297 296 + f 4 -436 -911 -452 -439 + mu 0 4 273 272 281 264 + f 4 -461 -908 -443 -455 + mu 0 4 283 289 565 284 + f 4 917 918 -727 919 + mu 0 4 507 419 457 460 + f 4 -864 -867 -898 -899 + mu 0 4 543 544 546 358 + f 4 920 -493 -915 -476 + mu 0 4 298 566 567 299 + f 4 -426 921 -448 -482 + mu 0 4 260 263 275 279 + f 4 -441 -922 922 -437 + mu 0 4 273 275 263 274 + f 4 -431 -445 -923 -425 + mu 0 4 262 268 274 263 + f 4 -546 -547 -518 -550 + mu 0 4 336 340 328 327 + f 4 -799 923 924 -516 + mu 0 4 325 508 568 326 + f 4 -477 -514 -432 -424 + mu 0 4 261 299 269 262 + f 4 -882 -844 925 -849 + mu 0 4 536 533 532 537 + f 4 926 927 928 929 + mu 0 4 569 570 571 572 + f 4 930 931 932 933 + mu 0 4 573 574 575 576 + f 4 934 935 936 -932 + mu 0 4 574 577 578 575 + f 4 937 938 939 -927 + mu 0 4 569 579 580 570 + f 4 940 941 942 943 + mu 0 4 581 582 583 584 + f 4 944 945 946 947 + mu 0 4 585 584 586 587 + f 4 948 949 950 -942 + mu 0 4 582 588 589 583 + f 4 951 952 953 -939 + mu 0 4 579 590 591 580 + f 4 -937 954 -941 955 + mu 0 4 575 578 582 581 + f 4 956 957 -949 958 + mu 0 4 592 593 588 582 + f 4 959 960 961 962 + mu 0 4 594 587 595 576 + f 4 963 -934 -962 964 + mu 0 4 596 573 576 595 + f 4 -929 965 966 967 + mu 0 4 572 571 597 598 + f 4 968 969 970 971 + mu 0 4 599 600 601 602 + f 4 972 973 -971 974 + mu 0 4 603 604 602 601 + f 4 975 976 977 978 + mu 0 4 605 606 607 608 + f 3 979 980 981 + mu 0 3 609 610 611 + f 4 982 983 984 985 + mu 0 4 612 613 614 615 + f 4 -985 986 987 988 + mu 0 4 615 614 616 617 + f 4 989 990 991 992 + mu 0 4 618 609 619 620 + f 4 993 994 995 996 + mu 0 4 621 622 623 624 + f 4 997 -977 998 999 + mu 0 4 625 607 606 626 + f 4 -996 1000 1001 1002 + mu 0 4 624 623 627 628 + f 4 -993 1003 1004 1005 + mu 0 4 618 620 629 630 + f 4 1006 -965 1007 -1002 + mu 0 4 627 596 595 628 + f 4 1008 1009 1010 -997 + mu 0 4 624 631 632 621 + f 4 1011 1012 1013 1014 + mu 0 4 633 634 635 636 + f 4 1015 -1013 1016 1017 + mu 0 4 637 635 634 638 + f 4 1018 1019 1020 -979 + mu 0 4 608 639 640 605 + f 4 -969 1021 -953 1022 + mu 0 4 600 599 591 590 + f 4 1023 1024 1025 -1017 + mu 0 4 634 641 642 638 + f 4 1026 1027 -994 -1011 + mu 0 4 632 643 622 621 + f 4 1028 -987 1029 -1014 + mu 0 4 635 616 614 636 + f 4 1030 1031 -991 -982 + mu 0 4 611 644 619 609 + f 4 1032 -1005 1033 -967 + mu 0 4 597 630 629 598 + f 4 1034 1035 1036 -988 + mu 0 4 616 645 646 617 + f 4 1037 -1035 -1029 -1016 + mu 0 4 637 645 616 635 + f 4 1038 1039 1040 1041 + mu 0 4 647 648 649 650 + f 4 1042 1043 1044 1045 + mu 0 4 651 652 653 654 + f 4 1046 1047 -1043 1048 + mu 0 4 655 656 652 651 + f 4 -1045 1049 1050 1051 + mu 0 4 654 653 657 658 + f 4 -1051 1052 1053 1054 + mu 0 4 658 657 650 659 + f 4 1055 1056 1057 -1044 + mu 0 4 652 660 661 653 + f 4 1058 -1042 -1053 1059 + mu 0 4 662 647 650 657 + f 4 -1058 1060 -1060 -1050 + mu 0 4 653 661 662 657 + f 4 1061 1062 1063 1064 + mu 0 4 663 664 665 666 + f 4 1065 1066 1067 1068 + mu 0 4 667 668 669 670 + f 4 1069 1070 1071 -1066 + mu 0 4 667 671 672 668 + f 4 1072 1073 -1070 1074 + mu 0 4 673 674 671 667 + f 4 1075 1076 1077 1078 + mu 0 4 675 676 677 678 + f 4 1079 1080 -1076 1081 + mu 0 4 679 680 676 675 + f 4 1082 1083 1084 -1046 + mu 0 4 681 682 683 684 + f 4 -1068 1085 1086 1087 + mu 0 4 670 669 685 686 + f 4 1088 1089 1090 -1087 + mu 0 4 685 687 688 686 + f 3 1091 1092 1093 + mu 0 3 688 689 690 + f 4 -1091 1094 1095 1096 + mu 0 4 686 688 691 692 + f 4 1097 1098 1099 -1055 + mu 0 4 693 694 695 696 + f 4 1100 -1065 1101 -1080 + mu 0 4 679 663 666 680 + f 4 1102 1103 1104 -1099 + mu 0 4 694 697 698 695 + f 4 1105 -1084 1106 -1092 + mu 0 4 688 683 682 689 + f 4 1107 -1106 -1090 1108 + mu 0 4 699 683 688 687 + f 4 -1049 -1085 -1108 1109 + mu 0 4 700 684 683 699 + f 4 1110 -1104 1111 -1063 + mu 0 4 664 698 697 665 + f 4 1112 1113 1114 -1071 + mu 0 4 671 660 701 672 + f 4 -1069 1115 1116 -1075 + mu 0 4 667 670 702 673 + f 4 1117 1118 1119 -1059 + mu 0 4 662 703 704 647 + f 4 1120 -1119 1121 -1078 + mu 0 4 677 704 703 678 + f 4 -1113 -1074 1122 -1057 + mu 0 4 660 671 674 661; + setAttr ".fc[500:999]" + f 4 -1100 1123 -1083 -1052 + mu 0 4 696 695 682 681 + f 4 -1105 1124 -1107 -1124 + mu 0 4 695 698 689 682 + f 4 1125 -1093 -1125 -1111 + mu 0 4 664 690 689 698 + f 4 1126 -1126 -1062 1127 + mu 0 4 691 690 664 663 + f 4 -1096 -1128 -1101 1128 + mu 0 4 692 691 663 679 + f 4 1129 -1114 -1056 -1048 + mu 0 4 656 701 660 652 + f 4 -1116 -1088 -1097 1130 + mu 0 4 702 670 686 692 + f 4 1131 -1117 1132 -1079 + mu 0 4 678 673 702 675 + f 4 -1123 1133 -1118 -1061 + mu 0 4 661 674 703 662 + f 4 -1122 -1134 -1073 -1132 + mu 0 4 678 703 674 673 + f 4 1134 1135 1136 1137 + mu 0 4 705 706 707 708 + f 4 1138 -1137 1139 1140 + mu 0 4 709 708 707 710 + f 4 1141 1142 1143 1144 + mu 0 4 711 712 713 714 + f 4 1145 1146 1147 1148 + mu 0 4 715 716 717 718 + f 3 1149 1150 1151 + mu 0 3 719 720 721 + f 4 1152 -1145 1153 -1147 + mu 0 4 716 711 714 717 + f 3 1154 1155 1156 + mu 0 3 722 723 724 + f 4 1157 1158 -1150 1159 + mu 0 4 725 726 720 719 + f 4 1160 1161 1162 1163 + mu 0 4 727 728 729 730 + f 4 1164 1165 1166 1167 + mu 0 4 731 732 733 730 + f 4 1168 1169 1170 1171 + mu 0 4 734 735 736 737 + f 4 -1157 1172 1173 1174 + mu 0 4 722 724 738 739 + f 4 1175 1176 1177 -1156 + mu 0 4 723 740 741 724 + f 4 -1177 1178 1179 1180 + mu 0 4 741 740 742 743 + f 4 1181 1182 1183 -1176 + mu 0 4 723 713 744 740 + f 4 -1184 1184 1185 -1179 + mu 0 4 740 744 745 742 + f 4 1186 1187 1188 1189 + mu 0 4 746 747 748 749 + f 4 1190 1191 1192 -1189 + mu 0 4 748 712 750 749 + f 4 -1183 -1143 -1191 1193 + mu 0 4 744 713 712 748 + f 4 1194 -1185 -1194 -1188 + mu 0 4 747 745 744 748 + f 4 1195 1196 1197 1198 + mu 0 4 751 752 753 754 + f 4 -1163 1199 1200 1201 + mu 0 4 730 729 755 756 + f 4 -1171 1202 -1165 1203 + mu 0 4 737 736 732 731 + f 4 1204 -1151 1205 1206 + mu 0 4 753 721 720 757 + f 4 1207 1208 1209 1210 + mu 0 4 758 759 760 752 + f 4 1211 1212 1213 1214 + mu 0 4 757 761 762 763 + f 4 1215 1216 1217 -1159 + mu 0 4 726 764 765 720 + f 4 1218 1219 1220 -1158 + mu 0 4 766 767 768 769 + f 4 -1221 1221 1222 -1216 + mu 0 4 769 768 770 771 + f 4 1223 -1164 -1167 1224 + mu 0 4 772 727 730 733 + f 4 1225 1226 1227 -1225 + mu 0 4 733 773 774 772 + f 4 1228 1229 -1226 -1166 + mu 0 4 732 775 773 733 + f 4 1230 1231 -1229 -1203 + mu 0 4 736 776 775 732 + f 4 1232 -1231 -1170 1233 + mu 0 4 777 776 736 735 + f 4 -1227 1234 1235 1236 + mu 0 4 774 773 778 779 + f 4 1237 1238 1239 -1232 + mu 0 4 776 780 781 775 + f 4 -1238 -1233 1240 1241 + mu 0 4 780 776 777 782 + f 4 1242 1243 1244 -1236 + mu 0 4 778 783 784 779 + f 4 1245 1246 1247 -1243 + mu 0 4 778 781 785 783 + f 4 -1239 1248 1249 -1247 + mu 0 4 781 780 786 785 + f 4 1250 1251 -1249 -1242 + mu 0 4 782 787 786 780 + f 4 1252 1253 1254 -1244 + mu 0 4 783 788 789 784 + f 4 1255 1256 -1253 -1248 + mu 0 4 785 790 788 783 + f 4 1257 1258 -1256 -1250 + mu 0 4 786 791 790 785 + f 4 1259 -1258 -1252 1260 + mu 0 4 792 791 786 787 + f 4 -1240 -1246 -1235 -1230 + mu 0 4 775 781 778 773 + f 4 1261 1262 1263 1264 + mu 0 4 793 794 795 796 + f 4 1265 1266 1267 -1265 + mu 0 4 796 797 798 793 + f 4 1268 1269 1270 -1267 + mu 0 4 797 799 800 798 + f 4 1271 1272 1273 -1270 + mu 0 4 799 801 802 800 + f 4 -1254 1274 1275 1276 + mu 0 4 789 788 803 804 + f 4 1277 1278 1279 1280 + mu 0 4 803 805 806 802 + f 4 1281 -1260 1282 1283 + mu 0 4 807 791 792 808 + f 4 1284 1285 -1259 -1282 + mu 0 4 807 805 790 791 + f 4 -1286 -1278 -1275 -1257 + mu 0 4 790 805 803 788 + f 4 1286 1287 -1262 -1268 + mu 0 4 798 806 794 793 + f 4 -1280 -1287 -1271 -1274 + mu 0 4 802 806 798 800 + f 4 -1279 -1285 1288 -1288 + mu 0 4 806 805 807 794 + f 4 1289 -1276 -1281 -1273 + mu 0 4 801 804 803 802 + f 4 -1284 1290 -1263 -1289 + mu 0 4 807 808 795 794 + f 4 1291 1292 1293 1294 + mu 0 4 809 810 811 812 + f 4 1295 1296 1297 1298 + mu 0 4 813 814 815 816 + f 4 1299 -1299 1300 1301 + mu 0 4 817 813 816 818 + f 4 1302 1303 1304 1305 + mu 0 4 809 819 820 817 + f 4 1306 -1296 1307 1308 + mu 0 4 821 814 813 822 + f 4 1309 -1308 -1300 -1305 + mu 0 4 820 822 813 817 + f 4 -1303 -1295 1310 1311 + mu 0 4 819 809 812 823 + f 4 1312 1313 1314 -1309 + mu 0 4 822 824 825 821 + f 4 1315 -1313 -1310 1316 + mu 0 4 826 824 822 820 + f 4 -1304 1317 1318 -1317 + mu 0 4 820 819 827 826 + f 4 1319 -1318 -1312 1320 + mu 0 4 828 827 819 823 + f 4 -1314 1321 1322 1323 + mu 0 4 825 824 829 830 + f 4 1324 -1322 -1316 1325 + mu 0 4 831 829 824 826 + f 4 1326 1327 -1326 -1319 + mu 0 4 827 832 831 826 + f 4 -1327 -1320 1328 1329 + mu 0 4 832 827 828 833 + f 4 1330 1331 1332 -1323 + mu 0 4 829 834 835 830 + f 4 1333 -1331 -1325 1334 + mu 0 4 836 834 829 831 + f 4 -1328 1335 1336 -1335 + mu 0 4 831 832 837 836 + f 4 1337 1338 -1336 -1330 + mu 0 4 833 838 837 832 + f 4 1339 1340 1341 -1332 + mu 0 4 834 839 840 835 + f 4 1342 -1340 -1334 1343 + mu 0 4 841 839 834 836 + f 4 1344 1345 -1344 -1337 + mu 0 4 837 842 841 836 + f 4 1346 -1345 -1339 1347 + mu 0 4 843 842 837 838 + f 4 1348 1349 1350 1351 + mu 0 4 844 845 846 847 + f 4 1352 1353 1354 1355 + mu 0 4 848 849 850 851 + f 4 1356 -1356 1357 1358 + mu 0 4 852 848 851 853 + f 4 1359 -1352 1360 -1359 + mu 0 4 853 844 847 852 + f 4 -1360 1361 1362 -1349 + mu 0 4 844 853 854 845 + f 4 -1341 1363 1364 1365 + mu 0 4 840 839 855 856 + f 4 1366 -1364 -1343 1367 + mu 0 4 857 855 839 841 + f 4 1368 1369 -1368 -1346 + mu 0 4 842 858 857 841 + f 4 -1369 -1347 1370 1371 + mu 0 4 858 842 843 859 + f 4 -1354 1372 -1365 1373 + mu 0 4 850 849 856 855 + f 4 1374 -1374 -1367 1375 + mu 0 4 854 850 855 857 + f 4 -1370 1376 -1363 -1376 + mu 0 4 857 858 845 854 + f 4 -1350 -1377 -1372 1377 + mu 0 4 846 845 858 859 + f 4 -1358 -1355 -1375 -1362 + mu 0 4 853 851 850 854 + f 4 1378 1379 1380 1381 + mu 0 4 729 860 861 862 + f 4 -1381 1382 1383 1384 + mu 0 4 862 861 863 810 + f 4 -1384 1385 1386 -1293 + mu 0 4 810 863 864 811 + f 4 -1162 1387 1388 -1379 + mu 0 4 729 728 865 860 + f 4 1389 1390 1391 -1386 + mu 0 4 863 866 867 864 + f 4 1392 1393 -1390 -1383 + mu 0 4 861 868 866 863 + f 4 1394 1395 -1393 -1380 + mu 0 4 860 869 868 861 + f 4 1396 -1395 -1389 1397 + mu 0 4 870 869 860 865 + f 4 1398 1399 1400 1401 + mu 0 4 871 872 873 874 + f 4 1402 1403 -1399 1404 + mu 0 4 875 876 872 871 + f 4 1405 1406 -1403 1407 + mu 0 4 877 878 876 875 + f 4 1408 -1406 1409 1410 + mu 0 4 879 878 877 880 + f 4 -1391 1411 1412 1413 + mu 0 4 867 866 881 882 + f 4 1414 1415 -1412 -1394 + mu 0 4 868 883 881 866 + f 4 1416 1417 -1415 -1396 + mu 0 4 869 884 883 868 + f 4 -1417 -1397 1418 1419 + mu 0 4 884 869 870 885 + f 4 1420 -1402 1421 -1413 + mu 0 4 881 871 874 882 + f 4 -1416 1422 -1405 -1421 + mu 0 4 881 883 875 871 + f 4 -1418 1423 -1408 -1423 + mu 0 4 883 884 877 875 + f 4 1424 -1410 -1424 -1420 + mu 0 4 885 880 877 884 + f 4 1425 1426 1427 1428 + mu 0 4 886 887 888 889 + f 4 1429 1430 1431 -1429 + mu 0 4 889 890 891 886 + f 4 1432 1433 1434 -1431 + mu 0 4 890 892 893 891 + f 4 1435 1436 1437 -1434 + mu 0 4 892 894 895 893 + f 4 1438 1439 1440 1441 + mu 0 4 896 897 898 888 + f 4 1442 1443 1444 -1440 + mu 0 4 897 899 894 898 + f 4 1445 -1442 -1427 1446 + mu 0 4 900 896 888 887 + f 4 -1437 -1444 1447 1448 + mu 0 4 895 894 899 901 + f 4 -1400 1449 -1446 1450 + mu 0 4 873 872 896 900 + f 4 1451 -1439 -1450 -1404 + mu 0 4 876 897 896 872 + f 4 1452 -1443 -1452 -1407 + mu 0 4 878 899 897 876 + f 4 -1453 -1409 1453 -1448 + mu 0 4 899 878 879 901 + f 4 -1441 1454 -1430 -1428 + mu 0 4 888 898 890 889 + f 4 -1455 -1445 -1436 -1433 + mu 0 4 890 898 894 892 + f 4 1455 1456 -1175 1457 + mu 0 4 902 903 722 739 + f 4 1458 1459 -1173 -1178 + mu 0 4 741 904 738 724 + f 4 1460 -1459 -1181 1461 + mu 0 4 905 904 741 743 + f 4 1462 1463 1464 -1458 + mu 0 4 739 906 907 902 + f 4 1465 1466 -1463 -1174 + mu 0 4 738 908 906 739 + f 4 1467 1468 -1466 -1460 + mu 0 4 904 909 908 738 + f 4 1469 -1468 -1461 1470 + mu 0 4 910 909 904 905 + f 4 -1464 1471 1472 1473 + mu 0 4 907 906 911 912 + f 4 1474 1475 -1472 -1467 + mu 0 4 908 913 911 906 + f 4 1476 1477 -1475 -1469 + mu 0 4 909 914 913 908 + f 4 -1477 -1470 1478 1479 + mu 0 4 914 909 910 915 + f 4 1480 1481 1482 -1473 + mu 0 4 911 916 917 912 + f 4 -1476 1483 1484 -1481 + mu 0 4 911 913 918 916 + f 4 -1478 1485 1486 -1484 + mu 0 4 913 914 919 918 + f 4 1487 1488 -1486 -1480 + mu 0 4 915 920 919 914 + f 4 1489 1490 1491 -1482 + mu 0 4 916 921 922 917 + f 4 1492 -1490 -1485 1493 + mu 0 4 923 921 916 918 + f 4 1494 1495 -1494 -1487 + mu 0 4 919 924 923 918 + f 4 1496 -1495 -1489 1497 + mu 0 4 925 924 919 920 + f 4 1498 1499 1500 1501 + mu 0 4 926 927 928 929 + f 4 1502 1503 1504 -1502 + mu 0 4 929 930 931 926 + f 4 1505 1506 1507 -1504 + mu 0 4 930 932 933 931 + f 4 1508 1509 1510 -1507 + mu 0 4 932 934 935 933 + f 4 1511 1512 1513 1514 + mu 0 4 927 936 937 938 + f 4 1515 1516 -1500 -1515 + mu 0 4 938 939 928 927 + f 4 1517 1518 -1510 1519 + mu 0 4 940 941 935 934 + f 4 1520 -1513 1521 -1519 + mu 0 4 941 937 936 935 + f 4 -1491 1522 -1518 1523 + mu 0 4 922 921 941 940 + f 4 1524 -1521 -1523 -1493 + mu 0 4 923 937 941 921 + f 4 1525 -1514 -1525 -1496 + mu 0 4 924 938 937 923 + f 4 -1526 -1497 1526 -1516 + mu 0 4 938 924 925 939 + f 4 1527 -1512 -1499 -1505 + mu 0 4 931 936 927 926 + f 4 -1522 -1528 -1508 -1511 + mu 0 4 935 936 931 933 + f 4 1528 1529 1530 1531 + mu 0 4 942 943 944 945 + f 4 1532 1533 1534 -1532 + mu 0 4 945 946 947 942 + f 4 1535 -1534 1536 1537 + mu 0 4 948 947 946 949 + f 4 1538 1539 1540 1541 + mu 0 4 950 951 952 953 + f 4 1542 -1542 1543 1544 + mu 0 4 954 950 953 955 + f 4 1545 1546 1547 1548 + mu 0 4 954 956 957 958 + f 4 1549 1550 1551 1552 + mu 0 4 959 960 951 958 + f 4 1553 1554 1555 1556 + mu 0 4 961 962 963 959 + f 4 1557 1558 -1550 -1556 + mu 0 4 963 964 960 959 + f 4 1559 1560 1561 -1559 + mu 0 4 964 965 966 960 + f 4 -1540 -1551 -1562 1562 + mu 0 4 952 951 960 966 + f 4 -1557 -1553 -1548 1563 + mu 0 4 961 959 958 957 + f 4 1564 1565 1566 -1564 + mu 0 4 957 967 968 969 + f 4 -1547 1567 1568 -1565 + mu 0 4 957 956 970 967 + f 4 1569 -1555 1570 -1529 + mu 0 4 942 963 962 943 + f 4 -1535 1571 -1558 -1570 + mu 0 4 942 947 964 963 + f 4 -1560 -1572 -1536 1572 + mu 0 4 965 964 947 948 + f 4 -1546 -1545 1573 -1568 + mu 0 4 956 954 955 970 + f 4 -1552 -1539 -1543 -1549 + mu 0 4 958 951 950 954 + f 4 1574 1575 -1146 1576 + mu 0 4 971 972 716 715 + f 4 1577 1578 1579 -1538 + mu 0 4 973 974 975 976 + f 4 1580 1581 1582 1583 + mu 0 4 977 978 979 980 + f 4 1584 1585 1586 1587 + mu 0 4 981 982 979 983 + f 4 1588 1589 1590 1591 + mu 0 4 984 985 986 983 + f 4 1592 1593 1594 1595 + mu 0 4 987 988 989 990 + f 4 1596 1597 1598 1599 + mu 0 4 991 989 980 992 + f 4 -1595 -1597 1600 1601 + mu 0 4 990 989 991 993 + f 4 1602 1603 -1585 1604 + mu 0 4 994 995 982 981 + f 4 1605 1606 1607 1608 + mu 0 4 996 997 998 999 + f 4 1609 1610 1611 -1606 + mu 0 4 996 1000 1001 997 + f 3 1612 1613 1614 + mu 0 3 1002 1003 999 + f 3 1615 1616 1617 + mu 0 3 1003 1004 996 + f 4 1618 1619 1620 -1161 + mu 0 4 1005 1006 1007 1008 + f 4 1621 1622 1623 1624 + mu 0 4 1000 1009 1010 1011 + f 4 1625 -1620 1626 -1610 + mu 0 4 996 1007 1006 1000 + f 4 1627 -1613 1628 -1294 + mu 0 4 1012 1003 1002 1013 + f 4 1629 1630 1631 1632 + mu 0 4 1014 1015 1016 1017 + f 3 1633 1634 -1627 + mu 0 3 1006 1018 1000 + f 3 1635 -1624 1636 + mu 0 3 1019 1011 1010 + f 4 1637 -1636 1638 1639 + mu 0 4 1020 1011 1019 1021 + f 4 1640 1641 1642 -1638 + mu 0 4 1020 1022 1023 1011 + f 4 -1601 1643 1644 -1187 + mu 0 4 993 991 1024 1025 + f 4 1645 1646 1647 1648 + mu 0 4 1026 1027 1001 1023 + f 4 -1645 1649 1650 -1195 + mu 0 4 1025 1024 1022 1028 + f 4 1651 -1649 -1642 -1650 + mu 0 4 1024 1026 1023 1022 + f 4 1652 1653 1654 -1169 + mu 0 4 1029 1009 1030 1031 + f 4 1655 1656 -1619 -1224 + mu 0 4 1032 1033 1006 1005 + f 4 1657 -1640 1658 -1180 + mu 0 4 1034 1020 1021 1035 + f 4 1659 1660 1661 -1637 + mu 0 4 1010 1036 1037 1019 + f 4 -1662 1662 1663 -1639 + mu 0 4 1019 1037 1038 1021 + f 4 -1651 -1641 -1658 -1186 + mu 0 4 1028 1022 1020 1034 + f 4 -1648 -1611 -1625 -1643 + mu 0 4 1023 1001 1000 1011 + f 4 1664 1665 1666 1667 + mu 0 4 1039 1040 998 1041 + f 4 1668 1669 -1603 1670 + mu 0 4 1042 1043 995 994 + f 4 1671 -1220 1672 -1665 + mu 0 4 1039 768 767 1040 + f 4 1673 -1605 1674 -1199 + mu 0 4 1044 994 981 751 + f 4 1675 1676 -1671 -1674 + mu 0 4 1044 1045 1042 994 + f 4 1677 1678 -1669 1679 + mu 0 4 1046 1047 1043 1042 + f 4 -1214 1680 -1680 -1677 + mu 0 4 1045 1048 1046 1042 + f 4 1681 -1623 -1653 1682 + mu 0 4 1049 1010 1009 1029 + f 4 1683 1684 1685 1686 + mu 0 4 1050 1051 1033 1052 + f 4 -1684 1687 1688 1689 + mu 0 4 1051 1050 1053 1030 + f 4 1690 -1687 1691 1692 + mu 0 4 1054 1050 1052 1055 + f 4 -1691 1693 1694 -1688 + mu 0 4 1050 1054 1056 1053 + f 4 -1693 1695 1696 1697 + mu 0 4 1054 1055 1057 1058 + f 4 -1694 -1698 1698 1699 + mu 0 4 1056 1054 1058 1059 + f 4 1700 -1697 1701 1702 + mu 0 4 1060 1058 1057 1061 + f 4 -1701 1703 1704 -1699 + mu 0 4 1058 1060 1062 1059 + f 4 1705 1706 1707 -1704 + mu 0 4 1060 1063 1064 1062 + f 4 1708 -1706 -1703 1709 + mu 0 4 1065 1063 1060 1061 + f 4 1710 1711 1712 1713 + mu 0 4 1066 1067 1068 1069 + f 4 -1713 1714 1715 1716 + mu 0 4 1069 1068 1070 1071 + f 4 1717 -1686 -1656 -1228 + mu 0 4 1072 1052 1033 1032 + f 4 -1655 -1689 1718 -1234 + mu 0 4 1031 1030 1053 1073 + f 4 1719 -1692 -1718 -1237 + mu 0 4 1074 1055 1052 1072 + f 4 -1719 -1695 1720 -1241 + mu 0 4 1073 1053 1056 1075 + f 4 1721 -1696 -1720 -1245 + mu 0 4 1076 1057 1055 1074 + f 4 -1721 -1700 1722 -1251 + mu 0 4 1075 1056 1059 1077 + f 4 1723 -1702 -1722 -1255 + mu 0 4 1078 1061 1057 1076 + f 4 -1723 -1705 1724 -1261 + mu 0 4 1077 1059 1062 1079 + f 4 1725 -1715 1726 -1266 + mu 0 4 1080 1070 1068 1081 + f 4 -1727 -1712 1727 -1269 + mu 0 4 1081 1068 1067 1082 + f 4 1728 1729 1730 -1291 + mu 0 4 1083 1064 1071 1084 + f 4 1731 -1710 -1724 -1277 + mu 0 4 1085 1065 1061 1078 + f 4 -1728 -1711 1732 -1272 + mu 0 4 1082 1067 1066 1086 + f 4 -1731 -1716 -1726 -1264 + mu 0 4 1084 1071 1070 1080 + f 4 1733 -1717 -1730 -1707 + mu 0 4 1063 1069 1071 1064 + f 4 -1725 -1708 -1729 -1283 + mu 0 4 1079 1062 1064 1083 + f 4 1734 -1714 -1734 -1709 + mu 0 4 1065 1066 1069 1063 + f 4 -1733 -1735 -1732 -1290 + mu 0 4 1086 1066 1065 1085 + f 4 -1629 1735 1736 -1311 + mu 0 4 1013 1002 1087 1088 + f 4 1737 -1631 1738 -1297 + mu 0 4 1089 1016 1015 1090 + f 4 -1632 1739 1740 1741 + mu 0 4 1017 1016 1091 1092 + f 4 -1741 1742 1743 1744 + mu 0 4 1092 1091 1093 1094 + f 4 -1745 1745 1746 1747 + mu 0 4 1092 1094 1095 1087 + f 4 -1744 1748 1749 1750 + mu 0 4 1094 1093 1096 1097 + f 4 -1751 1751 1752 -1746 + mu 0 4 1094 1097 1098 1095 + f 4 -1750 1753 1754 1755 + mu 0 4 1097 1096 1099 1100 + f 4 -1752 -1756 1756 1757 + mu 0 4 1098 1097 1100 1101 + f 4 -1755 1758 1759 1760 + mu 0 4 1100 1099 1102 1103 + f 4 -1761 1761 1762 -1757 + mu 0 4 1100 1103 1104 1101 + f 4 1763 1764 1765 1766 + mu 0 4 1105 1106 1107 1108 + f 4 -1767 1767 1768 1769 + mu 0 4 1105 1108 1109 1110 + f 4 -1760 1770 1771 1772 + mu 0 4 1103 1102 1111 1112 + f 4 -1773 1773 1774 -1762 + mu 0 4 1103 1112 1113 1104 + f 4 -1772 1775 -1764 1776 + mu 0 4 1112 1111 1106 1105 + f 4 -1774 -1777 -1770 1777 + mu 0 4 1113 1112 1105 1110 + f 4 1778 -1740 -1738 -1307 + mu 0 4 1114 1091 1016 1089 + f 4 1779 -1743 -1779 -1315 + mu 0 4 1115 1093 1091 1114 + f 4 -1737 -1747 1780 -1321 + mu 0 4 1088 1087 1095 1116 + f 4 1781 -1749 -1780 -1324 + mu 0 4 1117 1096 1093 1115 + f 4 -1781 -1753 1782 -1329 + mu 0 4 1116 1095 1098 1118 + f 4 1783 -1754 -1782 -1333 + mu 0 4 1119 1099 1096 1117 + f 4 -1783 -1758 1784 -1338 + mu 0 4 1118 1098 1101 1120 + f 4 1785 -1759 -1784 -1342 + mu 0 4 1121 1102 1099 1119 + f 4 -1785 -1763 1786 -1348 + mu 0 4 1120 1101 1104 1122 + f 4 -1766 1787 -1357 1788 + mu 0 4 1108 1107 1123 1124 + f 4 1789 -1768 -1789 -1361 + mu 0 4 1125 1109 1108 1124 + f 4 -1788 -1765 1790 -1353 + mu 0 4 1123 1107 1106 1126 + f 4 1791 -1771 -1786 -1366 + mu 0 4 1127 1111 1102 1121 + f 4 -1787 -1775 1792 -1371 + mu 0 4 1122 1104 1113 1128 + f 4 -1791 -1776 -1792 -1373 + mu 0 4 1126 1106 1111 1127 + f 4 -1793 -1778 1793 -1378 + mu 0 4 1128 1113 1110 1129 + f 4 -1794 -1769 -1790 -1351 + mu 0 4 1129 1110 1109 1125 + f 4 1794 1795 -1628 -1387 + mu 0 4 1130 1131 1003 1012 + f 4 -1621 1796 1797 -1388 + mu 0 4 1008 1007 1132 1133 + f 4 1798 1799 1800 1801 + mu 0 4 1134 1135 1131 1136 + f 4 -1799 1802 1803 1804 + mu 0 4 1135 1134 1137 1132 + f 4 1805 1806 1807 1808 + mu 0 4 1138 1139 1140 1141 + f 4 -1806 1809 1810 1811 + mu 0 4 1139 1138 1142 1143 + f 4 1812 -1802 1813 1814 + mu 0 4 1144 1134 1136 1145 + f 4 -1813 1815 1816 -1803 + mu 0 4 1134 1144 1146 1137 + f 4 -1815 1817 -1807 1818 + mu 0 4 1144 1145 1140 1139 + f 4 -1816 -1819 -1812 1819 + mu 0 4 1146 1144 1139 1143 + f 4 1820 1821 1822 1823 + mu 0 4 1147 1148 1149 1150 + f 4 1824 -1822 1825 1826 + mu 0 4 1151 1149 1148 1152 + f 4 1827 -1809 1828 -1823 + mu 0 4 1149 1138 1141 1150 + f 4 -1828 -1825 1829 -1810 + mu 0 4 1138 1149 1151 1142 + f 4 1830 1831 1832 -1821 + mu 0 4 1147 1153 1154 1148 + f 4 -1833 1833 1834 -1826 + mu 0 4 1148 1154 1155 1152 + f 4 1835 -1801 -1795 -1392 + mu 0 4 1156 1136 1131 1130 + f 4 -1798 -1804 1836 -1398 + mu 0 4 1133 1132 1137 1157 + f 4 1837 -1808 1838 -1401 + mu 0 4 1158 1141 1140 1159 + f 4 1839 -1811 1840 -1411 + mu 0 4 1160 1143 1142 1161 + f 4 1841 -1814 -1836 -1414 + mu 0 4 1162 1145 1136 1156 + f 4 -1837 -1817 1842 -1419 + mu 0 4 1157 1137 1146 1163 + f 4 -1839 -1818 -1842 -1422 + mu 0 4 1159 1140 1145 1162 + f 4 -1843 -1820 -1840 -1425 + mu 0 4 1163 1146 1143 1160 + f 4 1843 -1832 1844 -1432 + mu 0 4 1164 1154 1153 1165 + f 4 1845 -1834 -1844 -1435 + mu 0 4 1166 1155 1154 1164 + f 4 1846 -1824 1847 -1447 + mu 0 4 1167 1147 1150 1168 + f 4 -1848 -1829 -1838 -1451 + mu 0 4 1168 1150 1141 1158 + f 4 -1841 -1830 1848 -1454 + mu 0 4 1161 1142 1151 1169 + f 4 -1845 -1831 -1847 -1426 + mu 0 4 1165 1153 1147 1167 + f 4 1849 -1835 -1846 -1438 + mu 0 4 1170 1152 1155 1166 + f 4 -1849 -1827 -1850 -1449 + mu 0 4 1169 1151 1152 1170 + f 4 1850 -1661 1851 1852 + mu 0 4 1171 1037 1036 1172 + f 4 -1851 1853 1854 -1663 + mu 0 4 1037 1171 1173 1038 + f 4 1855 -1853 1856 1857 + mu 0 4 1174 1171 1172 1175 + f 4 -1856 1858 1859 -1854 + mu 0 4 1171 1174 1176 1173 + f 4 -1858 1860 1861 1862 + mu 0 4 1174 1175 1177 1178 + f 4 -1859 -1863 1863 1864 + mu 0 4 1176 1174 1178 1179 + f 4 1865 -1862 1866 1867 + mu 0 4 1180 1178 1177 1181 + f 4 -1866 1868 1869 -1864 + mu 0 4 1178 1180 1182 1179 + f 4 1870 1871 1872 1873 + mu 0 4 1183 1184 1185 1186 + f 4 1874 1875 1876 -1872 + mu 0 4 1184 1187 1188 1185 + f 4 1877 1878 1879 -1877 + mu 0 4 1188 1189 1190 1185 + f 4 -1880 1880 1881 -1873 + mu 0 4 1185 1190 1191 1186 + f 4 1882 -1868 1883 -1875 + mu 0 4 1184 1180 1181 1187 + f 4 -1883 -1871 1884 -1869 + mu 0 4 1180 1184 1183 1182 + f 4 -1659 -1664 1885 -1462 + mu 0 4 1035 1021 1038 1192 + f 4 1886 -1852 1887 -1465 + mu 0 4 1193 1172 1036 1194 + f 4 -1886 -1855 1888 -1471 + mu 0 4 1192 1038 1173 1195 + f 4 1889 -1857 -1887 -1474 + mu 0 4 1196 1175 1172 1193 + f 4 -1889 -1860 1890 -1479 + mu 0 4 1195 1173 1176 1197 + f 4 1891 -1861 -1890 -1483 + mu 0 4 1198 1177 1175 1196 + f 4 -1891 -1865 1892 -1488 + mu 0 4 1197 1176 1179 1199 + f 4 1893 -1867 -1892 -1492 + mu 0 4 1200 1181 1177 1198 + f 4 -1893 -1870 1894 -1498 + mu 0 4 1199 1179 1182 1201 + f 4 1895 -1874 1896 -1517 + mu 0 4 1202 1183 1186 1203 + f 4 1897 -1876 1898 -1520 + mu 0 4 1204 1188 1187 1205 + f 4 1899 -1878 -1898 -1509 + mu 0 4 1206 1189 1188 1204 + f 4 -1897 -1882 1900 -1501 + mu 0 4 1203 1186 1191 1207 + f 4 -1899 -1884 -1894 -1524 + mu 0 4 1205 1187 1181 1200 + f 4 -1895 -1885 -1896 -1527 + mu 0 4 1201 1182 1183 1202 + f 4 1901 1902 1903 1904 + mu 0 4 1208 1209 1210 1211 + f 4 1905 -1579 1906 -1902 + mu 0 4 1208 975 974 1209 + f 4 1907 -1904 1908 1909 + mu 0 4 1212 1211 1210 1213 + f 4 -1905 1910 1911 1912 + mu 0 4 1208 1211 1214 1215 + f 4 1913 1914 -1906 -1913 + mu 0 4 1215 1216 975 1208 + f 4 1915 1916 1917 1918 + mu 0 4 968 1217 1214 1218 + f 4 -1912 -1917 1919 1920 + mu 0 4 1215 1214 1217 1219 + f 4 1921 1922 -1914 -1921 + mu 0 4 1219 1220 1216 1215 + f 4 -1920 1923 1924 1925 + mu 0 4 1219 1217 1221 1222 + f 4 1926 -1924 -1916 -1566 + mu 0 4 967 1221 1217 968 + f 4 1927 1928 -1922 -1926 + mu 0 4 1222 1223 1220 1219 + f 4 -1925 1929 1930 1931 + mu 0 4 1222 1221 1224 1225 + f 4 1932 -1930 -1927 -1569 + mu 0 4 970 1224 1221 967 + f 4 1933 1934 -1928 -1932 + mu 0 4 1225 1226 1223 1222 + f 4 -1580 -1915 1935 -1573 + mu 0 4 976 975 1216 1227 + f 4 1936 -1935 1937 -1541 + mu 0 4 1228 1223 1226 1229 + f 4 -1544 -1938 -1934 1938 + mu 0 4 1230 1229 1226 1225 + f 4 -1567 -1919 1939 -1554 + mu 0 4 969 968 1218 1231 + f 4 -1936 -1923 1940 -1561 + mu 0 4 1227 1216 1220 1232 + f 4 -1941 -1929 -1937 -1563 + mu 0 4 1232 1220 1223 1228 + f 4 -1940 1941 1942 -1571 + mu 0 4 1231 1218 1212 1233 + f 4 -1943 -1910 1943 -1530 + mu 0 4 1233 1212 1213 1234 + f 4 -1583 1944 1945 -1599 + mu 0 4 980 979 1235 992 + f 4 1946 -1144 -1182 1947 + mu 0 4 756 714 713 723 + f 3 1948 -1209 1949 + mu 0 3 971 760 759 + f 4 -1644 -1600 1950 -1652 + mu 0 4 1024 991 992 1026 + f 4 -1301 1951 1952 1953 + mu 0 4 818 816 719 718 + f 3 1954 -1306 -1302 + mu 0 3 818 809 817 + f 4 -1954 -1148 1955 1956 + mu 0 4 818 718 717 755 + f 4 -1951 -1946 1957 -1646 + mu 0 4 1026 992 1235 1027 + f 4 -1956 -1154 -1947 -1201 + mu 0 4 755 717 714 756 + f 4 -1457 -1683 -1172 1958 + mu 0 4 722 903 734 737 + f 4 1959 1960 -1612 -1647 + mu 0 4 1027 1236 997 1001 + f 4 -1958 1961 1962 -1960 + mu 0 4 1027 1235 982 1236 + f 4 -1939 -1931 -1933 -1574 + mu 0 4 1230 1225 1224 970 + f 4 1963 -1596 1964 -1135 + mu 0 4 705 1237 1238 706 + f 4 -1587 -1582 1965 -1592 + mu 0 4 983 979 978 984 + f 3 -1586 -1962 -1945 + mu 0 3 979 982 1235 + f 4 1966 -1584 -1598 -1594 + mu 0 4 988 977 980 989 + f 4 1967 -1679 1968 1969 + mu 0 4 1039 1043 1047 1239 + f 4 1970 -1670 -1968 -1668 + mu 0 4 1041 995 1043 1039 + f 4 -1198 -1207 -1215 -1676 + mu 0 4 754 753 757 763 + f 4 -1206 -1218 1971 -1212 + mu 0 4 757 720 765 761 + f 4 -1901 -1881 1972 -1503 + mu 0 4 1207 1191 1190 1240 + f 4 -1973 -1879 -1900 -1506 + mu 0 4 1240 1190 1189 1206 + f 4 1973 1974 1975 -1590 + mu 0 4 985 1241 758 986 + f 4 -1196 1976 -1976 -1211 + mu 0 4 752 751 986 758 + f 4 -1963 -1604 -1971 1977 + mu 0 4 1236 982 995 1041 + f 4 1978 1979 -1192 -1142 + mu 0 4 711 1242 750 712 + f 4 -1576 1980 -1979 -1153 + mu 0 4 716 972 1242 711 + f 4 1981 1982 -1949 -1577 + mu 0 4 715 721 760 971 + f 4 -1210 -1983 -1205 -1197 + mu 0 4 752 760 721 753 + f 4 1983 1984 1985 -1139 + mu 0 4 1243 1244 1245 1246 + f 4 -1966 1986 1987 1988 + mu 0 4 1247 1248 1249 1250 + f 4 1989 1990 -1974 1991 + mu 0 4 1251 1252 1253 1254 + f 4 1992 -1964 1993 1994 + mu 0 4 1255 1256 1257 1258 + f 4 -1138 -1986 1995 -1994 + mu 0 4 1257 1246 1245 1258 + f 4 -1988 1996 -1121 1997 + mu 0 4 1250 1249 704 677 + f 4 1998 -1098 1999 -1995 + mu 0 4 1258 694 693 1255 + f 4 -1054 -1041 2000 -2000 + mu 0 4 659 650 649 1259 + f 4 -2001 2001 -1593 -1993 + mu 0 4 1259 649 1260 1261 + f 4 2002 -1967 -2002 -1040 + mu 0 4 648 1262 1260 649 + f 4 2003 -1992 -1589 -1989 + mu 0 4 1250 1251 1254 1247 + f 4 -1120 -1997 2004 -1039 + mu 0 4 647 704 1249 648 + f 4 -2005 -1987 -1581 -2003 + mu 0 4 648 1249 1248 1262 + f 4 -1990 2005 -1081 2006 + mu 0 4 1252 1251 676 680 + f 4 -2006 -2004 -1998 -1077 + mu 0 4 676 1251 1250 677 + f 4 2007 -1985 2008 -1112 + mu 0 4 697 1245 1244 665 + f 4 -1996 -2008 -1103 -1999 + mu 0 4 1258 1245 697 694 + f 4 -1102 2009 2010 -2007 + mu 0 4 680 666 1263 1252 + f 4 -2011 2011 2012 -1991 + mu 0 4 1252 1263 1264 1253 + f 4 -2013 2013 -1208 -1975 + mu 0 4 1241 1265 759 758 + f 4 2014 2015 2016 2017 + mu 0 4 1266 1267 641 1268 + f 4 2018 -2015 2019 2020 + mu 0 4 1269 1267 1266 1270 + f 4 2021 2022 2023 2024 + mu 0 4 1271 1272 1273 1274 + f 3 2025 2026 2027 + mu 0 3 1275 1276 1277 + f 4 2028 2029 2030 2031 + mu 0 4 1278 1279 1280 1281 + f 4 2032 2033 2034 2035 + mu 0 4 1282 1283 1284 1285 + f 4 -2025 2036 2037 2038 + mu 0 4 1271 1274 1286 1287 + f 4 -2027 2039 2040 2041 + mu 0 4 1288 1289 1290 1291 + f 4 2042 2043 -2036 2044 + mu 0 4 1292 1293 1282 1285 + f 4 2045 2046 2047 2048 + mu 0 4 1294 1295 1296 1297 + f 4 2049 2050 2051 -2022 + mu 0 4 1271 1298 1281 1272 + f 4 2052 2053 -973 2054 + mu 0 4 1299 1300 1301 1302 + f 4 2055 -2023 2056 2057 + mu 0 4 1303 1273 1272 1304 + f 4 2058 -2053 2059 2060 + mu 0 4 1305 1300 1299 1306 + f 4 2061 -2046 2062 2063 + mu 0 4 1307 1308 1309 1310 + f 4 -2034 2064 2065 2066 + mu 0 4 1284 1283 1311 1298 + f 4 -2066 2067 -2032 -2051 + mu 0 4 1298 1311 1278 1281 + f 4 2068 2069 2070 2071 + mu 0 4 1312 1313 1314 1315 + f 3 2072 2073 2074 + mu 0 3 1316 1317 1318 + f 4 2075 2076 2077 2078 + mu 0 4 1319 1320 1321 1322 + f 4 -1072 2079 2080 2081 + mu 0 4 668 672 1319 1316 + f 4 -2081 -2079 2082 -2073 + mu 0 4 1316 1319 1322 1317 + f 4 2083 -1067 -2082 2084 + mu 0 4 1323 669 668 1316 + f 4 2085 2086 2087 2088 + mu 0 4 1324 1325 1323 1326 + f 4 2089 2090 2091 2092 + mu 0 4 1327 1328 1329 1330 + f 4 2093 2094 -1047 2095 + mu 0 4 1331 1332 656 655 + f 4 -1110 2096 2097 -2096 + mu 0 4 700 699 1330 1333 + f 4 -1109 2098 -2093 -2097 + mu 0 4 699 687 1327 1330 + f 4 -1115 2099 -2076 -2080 + mu 0 4 672 701 1320 1319 + f 4 2100 -2090 2101 -2086 + mu 0 4 1324 1328 1327 1325 + f 4 -2077 2102 2103 2104 + mu 0 4 1321 1320 1332 1334 + f 4 2105 -2104 -2094 2106 + mu 0 4 1335 1334 1332 1331 + f 4 2107 2108 2109 -2070 + mu 0 4 1336 1337 1338 1339 + f 4 -2057 -2052 -2031 2110 + mu 0 4 1304 1272 1281 1280 + f 4 -2092 2111 -2107 -2098 + mu 0 4 1330 1329 1340 1333 + f 4 2112 -2088 -2085 -2075 + mu 0 4 1318 1326 1323 1316 + f 4 2113 2114 2115 2116 + mu 0 4 1341 1342 1343 1344 + f 4 2117 -2064 2118 -2041 + mu 0 4 1345 1346 1347 1348 + f 4 2119 2120 2121 2122 + mu 0 4 103 1349 1350 1351 + f 4 2123 2124 -2120 -173 + mu 0 4 102 1352 1349 103 + f 4 2125 2126 -191 -2122 + mu 0 4 1350 1353 1354 1351 + f 4 -2127 2127 2128 -170 + mu 0 4 1354 1353 1355 1356 + f 4 2129 2130 2131 2132 + mu 0 4 1357 1358 1359 1360 + f 4 2133 -2067 -2050 -2039 + mu 0 4 1287 1284 1298 1271 + f 4 2134 -2043 2135 2136 + mu 0 4 1361 1293 1292 1362 + f 4 2137 2138 -2109 2139 + mu 0 4 1363 1364 1338 1337 + f 4 -187 -2129 2140 -2133 + mu 0 4 1360 1356 1355 1357 + f 4 -2102 -2099 -1089 2141 + mu 0 4 1325 1327 687 685 + f 4 -2103 -2100 -1130 -2095 + mu 0 4 1332 1320 701 656 + f 4 -1918 -1911 -1908 -1942 + mu 0 4 1218 1214 1211 1212 + f 4 -1888 -1660 -1682 -1456 + mu 0 4 1194 1036 1010 1049 + f 4 2142 2143 -1690 -1654 + mu 0 4 1009 1018 1051 1030 + f 4 2144 2145 -1805 -1797 + mu 0 4 1007 1004 1135 1132 + f 4 -1657 -1685 -2144 -1634 + mu 0 4 1006 1033 1051 1018 + f 4 2146 -1742 -1748 -1736 + mu 0 4 1002 1017 1092 1087 + f 4 -1796 -1800 -2146 -1616 + mu 0 4 1003 1131 1135 1004 + f 4 -1666 2147 2148 -1608 + mu 0 4 998 1040 1014 999 + f 4 -1673 2149 -1630 -2148 + mu 0 4 1040 767 1015 1014 + f 4 -1739 -2150 -1219 2150 + mu 0 4 1090 1015 767 766 + f 4 -2151 -1160 -1952 -1298 + mu 0 4 815 725 719 816 + f 4 2151 -1222 -1672 -1970 + mu 0 4 1239 770 768 1039 + f 4 -1978 -1667 -1607 -1961 + mu 0 4 1236 1041 998 997 + f 4 -1633 -2147 -1615 -2149 + mu 0 4 1014 1017 1002 999 + f 3 -1617 -2145 -1626 + mu 0 3 996 1004 1007 + f 3 -1635 -2143 -1622 + mu 0 3 1000 1018 1009 + f 4 -1965 -1602 -1190 2152 + mu 0 4 706 1238 746 749 + f 4 -978 -998 2153 2154 + mu 0 4 608 607 625 1365 + f 4 2155 2156 2157 2158 + mu 0 4 1366 612 1367 1368 + f 4 -487 2159 2160 -507 + mu 0 4 306 305 1369 278; + setAttr ".fc[1000:1499]" + f 4 -925 2161 -485 -529 + mu 0 4 326 568 304 303 + f 4 -447 -2161 2162 -483 + mu 0 4 279 278 1369 302 + f 4 -350 -324 -393 -332 + mu 0 4 218 185 213 217 + f 4 -400 -212 -399 2163 + mu 0 4 253 138 141 224 + f 4 -1086 -2084 -2087 -2142 + mu 0 4 685 669 1323 1325 + f 4 2164 2165 2166 -1015 + mu 0 4 636 1370 593 633 + f 4 2167 -2165 -1030 -984 + mu 0 4 613 1370 636 614 + f 4 -2017 -1024 -1012 2168 + mu 0 4 1268 641 634 633 + f 4 2169 -2164 -347 -315 + mu 0 4 208 253 224 205 + f 4 -199 2170 -417 2171 + mu 0 4 130 126 251 243 + f 3 2172 -481 2173 + mu 0 3 369 300 301 + f 3 2174 -484 2175 + mu 0 3 453 301 302 + f 4 2176 -853 2177 -2163 + mu 0 4 1369 540 499 302 + f 4 2178 -856 -2177 -2160 + mu 0 4 305 535 540 1369 + f 4 2179 -847 -2179 -486 + mu 0 4 304 532 535 305 + f 4 2180 -926 -2180 -2162 + mu 0 4 568 537 532 304 + f 4 2181 -850 -2181 -924 + mu 0 4 508 506 537 568 + f 4 -2182 -800 2182 -796 + mu 0 4 506 508 313 507 + f 4 -918 -2183 -498 2183 + mu 0 4 419 507 313 311 + f 4 -659 -2184 -495 2184 + mu 0 4 318 419 311 295 + f 4 -504 -2185 -472 2185 + mu 0 4 315 318 295 294 + f 4 -2186 -491 2186 -592 + mu 0 4 315 294 308 373 + f 4 -2187 -494 2187 -598 + mu 0 4 373 308 310 377 + f 4 -610 -2188 -921 2188 + mu 0 4 385 386 566 298 + f 4 -2189 -479 2189 -608 + mu 0 4 385 298 300 361 + f 4 2190 -1537 2191 -1217 + mu 0 4 764 949 946 765 + f 4 -1223 2192 -1578 -2191 + mu 0 4 771 770 974 973 + f 4 -1907 -2193 -2152 2193 + mu 0 4 1209 974 770 1239 + f 4 2194 -1903 -2194 -1969 + mu 0 4 1047 1210 1209 1239 + f 4 -1909 -2195 -1678 2195 + mu 0 4 1213 1210 1047 1046 + f 4 2196 -1944 -2196 -1681 + mu 0 4 1048 1234 1213 1046 + f 4 2197 -1531 -2197 -1213 + mu 0 4 761 945 944 762 + f 4 -1972 -2192 -1533 -2198 + mu 0 4 761 765 946 945 + f 3 -960 2198 -948 + mu 0 3 587 594 585 + f 4 -958 -2166 2199 -950 + mu 0 4 588 593 1370 589 + f 3 -587 -2190 -2173 + mu 0 3 369 361 300 + f 3 -2174 2200 -647 + mu 0 3 369 301 410 + f 3 -721 -2201 -2175 + mu 0 3 453 410 301 + f 3 -2176 -2178 -791 + mu 0 3 453 302 499 + f 3 -852 -860 -788 + mu 0 3 499 539 500 + f 3 2201 -818 -797 + mu 0 3 507 518 505 + f 3 -2202 -920 -817 + mu 0 3 518 507 460 + f 3 2202 -736 -919 + mu 0 3 419 464 457 + f 3 -2203 -661 -733 + mu 0 3 464 419 415 + f 3 2203 -665 -660 + mu 0 3 318 420 416 + f 3 -670 -2204 -503 + mu 0 3 317 420 318 + f 3 -591 -613 -501 + mu 0 3 315 372 316 + f 3 -401 -2170 -394 + mu 0 3 169 253 208 + f 4 -309 -397 2204 2205 + mu 0 4 201 203 1371 1372 + f 4 2206 -306 -2206 2207 + mu 0 4 1373 187 201 1372 + f 4 -289 -2207 2208 2209 + mu 0 4 184 187 1373 204 + f 4 -2210 -311 -356 -322 + mu 0 4 184 204 182 212 + f 4 -2171 -198 2210 -396 + mu 0 4 251 126 129 252 + f 4 -2205 -2211 -327 2211 + mu 0 4 1372 1371 215 214 + f 4 -2212 -415 2212 -2208 + mu 0 4 1372 214 220 1373 + f 4 -310 -2209 -2213 -334 + mu 0 4 96 204 1373 220 + f 3 -2172 -374 -275 + mu 0 3 130 243 179 + f 4 -410 -2123 -190 -168 + mu 0 4 1374 1375 1376 1377 + f 4 -1129 -1082 -1133 -1131 + mu 0 4 692 679 675 702 + f 4 -2010 -1064 -2009 2213 + mu 0 4 1263 666 665 1244 + f 4 -2012 -2214 -1984 2214 + mu 0 4 1264 1263 1244 1243 + f 4 2215 -2014 -2215 -1141 + mu 0 4 710 759 1265 709 + f 4 -1981 2216 -1140 2217 + mu 0 4 1242 972 710 707 + f 4 -1591 -1977 -1675 -1588 + mu 0 4 983 986 751 981 + f 3 -1614 -1618 -1609 + mu 0 3 999 1003 996 + f 4 -1953 -1152 -1982 -1149 + mu 0 4 718 719 721 715 + f 4 -1575 -1950 -2216 -2217 + mu 0 4 972 971 759 710 + f 4 2218 -1980 -2218 -1136 + mu 0 4 706 750 1242 707 + f 3 -2153 -1193 -2219 + mu 0 3 706 749 750 + f 4 -1957 2219 -1292 -1955 + mu 0 4 818 755 810 809 + f 3 2220 -1385 -2220 + mu 0 3 755 862 810 + f 3 -1382 -2221 -1200 + mu 0 3 729 862 755 + f 3 -1202 2221 -1168 + mu 0 3 730 756 731 + f 3 -1204 -2222 2222 + mu 0 3 737 731 756 + f 4 -1959 -2223 -1948 -1155 + mu 0 4 722 737 756 723 + f 3 -1095 -1094 -1127 + mu 0 3 691 688 690 + f 4 -618 -644 2223 -641 + mu 0 4 1378 390 408 1379 + f 4 -2224 -645 -620 -642 + mu 0 4 1379 408 394 393 + f 4 -947 2224 2225 2226 + mu 0 4 587 586 1380 631 + f 4 -2048 -2138 2227 2228 + mu 0 4 1381 1382 1383 1384 + f 4 2229 -2061 2230 -2116 + mu 0 4 1343 1305 1306 1344 + f 4 2231 2232 -1025 -2016 + mu 0 4 1267 1385 642 641 + f 4 2233 -175 -414 -192 + mu 0 4 123 105 104 1386 + f 4 -328 -197 -193 -413 + mu 0 4 1387 215 1388 1389 + f 4 2234 2235 -183 -2131 + mu 0 4 1358 1390 1391 1359 + f 4 2236 -2137 2237 -2115 + mu 0 4 1342 1361 1362 1343 + f 4 2238 -2230 -2238 2239 + mu 0 4 1392 1393 1394 1395 + f 4 -2239 2240 2241 -2059 + mu 0 4 1396 1397 1398 1399 + f 4 -2054 -2242 2242 2243 + mu 0 4 1400 1399 1398 1401 + f 4 -974 -2244 2244 2245 + mu 0 4 1402 1403 1404 1405 + f 3 2246 2247 2248 + mu 0 3 1406 1407 1286 + f 4 -284 -185 -2132 -182 + mu 0 4 110 1408 1409 111 + f 4 -940 2249 -935 2250 + mu 0 4 570 580 577 574 + f 4 -928 -2251 -931 2251 + mu 0 4 571 570 574 573 + f 4 -966 -2252 -964 2252 + mu 0 4 597 571 573 596 + f 4 -1033 -2253 -1007 2253 + mu 0 4 630 597 596 627 + f 4 2254 -1006 -2254 -1001 + mu 0 4 623 618 630 627 + f 4 2255 -990 -2255 -995 + mu 0 4 622 609 618 623 + f 4 -1028 2256 -980 -2256 + mu 0 4 622 643 610 609 + f 4 -2155 2257 -2158 2258 + mu 0 4 608 1365 1368 1367 + f 3 2259 -2157 -986 + mu 0 3 615 1367 612 + f 4 -1020 2260 -1037 2261 + mu 0 4 640 639 617 646 + f 4 -983 -2156 2262 2263 + mu 0 4 613 612 1366 1380 + f 4 -951 2264 -946 -943 + mu 0 4 583 589 586 584 + f 4 -963 -933 -956 2265 + mu 0 4 594 576 575 581 + f 4 -2199 -2266 -944 -945 + mu 0 4 585 594 581 584 + f 4 2266 -1027 2267 -2159 + mu 0 4 1368 643 632 1366 + f 4 -2267 -2258 2268 -2257 + mu 0 4 643 1368 1365 610 + f 4 -2269 -2154 2269 -981 + mu 0 4 610 1365 625 611 + f 4 2270 -1031 -2270 -1000 + mu 0 4 626 644 611 625 + f 4 -1010 -2226 -2263 -2268 + mu 0 4 632 631 1380 1366 + f 3 -1008 -961 2271 + mu 0 3 628 595 587 + f 3 -2167 2272 -2169 + mu 0 3 633 593 1268 + f 4 -2024 2273 2274 2275 + mu 0 4 1274 1273 1270 1410 + f 4 -2021 -2274 -2056 2276 + mu 0 4 1269 1270 1273 1303 + f 4 -2276 2277 -2249 -2037 + mu 0 4 1274 1410 1406 1286 + f 4 -2125 2278 -2029 2279 + mu 0 4 1349 1352 1279 1278 + f 4 2280 -2121 -2280 -2068 + mu 0 4 1311 1350 1349 1278 + f 4 2281 -2126 -2281 -2065 + mu 0 4 1283 1353 1350 1311 + f 4 -2128 -2282 -2033 2282 + mu 0 4 1355 1353 1283 1282 + f 4 2283 -2141 -2283 -2044 + mu 0 4 1293 1357 1355 1282 + f 4 -2130 -2284 -2135 2284 + mu 0 4 1358 1357 1293 1361 + f 4 -2235 -2285 -2237 2285 + mu 0 4 1390 1358 1361 1342 + f 3 -2286 -2114 2286 + mu 0 3 1390 1342 1341 + f 4 2287 2288 -936 2289 + mu 0 4 1411 1412 578 577 + f 4 2290 -959 -955 -2289 + mu 0 4 1412 592 582 578 + f 4 2291 2292 2293 2294 + mu 0 4 1413 1414 1415 1416 + f 4 2295 -972 2296 2297 + mu 0 4 1417 599 602 1418 + f 4 -2294 2298 -2291 2299 + mu 0 4 1416 1415 592 1412 + f 4 2300 -2300 -2288 2301 + mu 0 4 1417 1416 1412 1411 + f 4 -957 -2299 2302 -2273 + mu 0 4 593 592 1415 1268 + f 4 2303 2304 2305 2306 + mu 0 4 1419 1420 1421 1422 + f 4 2307 -2018 -2303 -2293 + mu 0 4 1414 1266 1268 1415 + f 4 2308 -2278 2309 -2292 + mu 0 4 1413 1406 1410 1414 + f 4 -2310 -2275 -2020 -2308 + mu 0 4 1414 1410 1270 1266 + f 4 2310 -2072 2311 -2306 + mu 0 4 1423 1312 1315 1424 + f 4 -2304 2312 -2026 2313 + mu 0 4 1425 1426 1427 1428 + f 4 -2297 -2246 2314 2315 + mu 0 4 1429 1402 1405 1430 + f 4 2316 -2316 2317 2318 + mu 0 4 1431 1432 1433 1434 + f 4 -2309 -2319 2319 -2247 + mu 0 4 1435 1436 1437 1438 + f 4 -2296 -2302 2320 -1022 + mu 0 4 599 1417 1411 591 + f 4 -2321 -2290 -2250 -954 + mu 0 4 591 1411 577 580 + f 4 -2301 -2298 -2317 -2295 + mu 0 4 1416 1417 1418 1413 + f 3 2321 -2232 -2019 + mu 0 3 1269 1385 1267 + f 3 2322 -2200 -2168 + mu 0 3 613 589 1370 + f 4 -989 -2261 2323 -2260 + mu 0 4 615 617 639 1367 + f 4 -2272 -2227 -1009 -1003 + mu 0 4 628 587 631 624 + f 4 -2264 -2225 -2265 -2323 + mu 0 4 613 1380 586 589 + f 3 -1019 -2259 -2324 + mu 0 3 639 608 1367 + f 4 2324 -2314 2325 -2320 + mu 0 4 1437 1425 1428 1438 + f 4 -2326 -2028 2326 -2248 + mu 0 4 1407 1275 1277 1286 + f 4 -2327 -2042 2327 -2038 + mu 0 4 1439 1288 1291 1440 + f 4 2328 -2134 -2328 -2119 + mu 0 4 1347 1441 1442 1348 + f 4 2329 -2035 -2329 -2063 + mu 0 4 1309 1443 1444 1310 + f 4 -2330 -2049 2330 -2045 + mu 0 4 1445 1294 1297 1446 + f 4 -2228 2331 -2240 2332 + mu 0 4 1384 1383 1392 1395 + f 4 -2332 -2140 2333 -2241 + mu 0 4 1397 1363 1337 1398 + f 4 -2243 -2334 -2108 2334 + mu 0 4 1401 1398 1337 1336 + f 4 -2245 -2335 -2069 2335 + mu 0 4 1405 1404 1313 1312 + f 4 -2315 -2336 -2311 2336 + mu 0 4 1430 1405 1312 1423 + f 4 -2325 -2318 -2337 -2305 + mu 0 4 1420 1434 1433 1421 + f 4 -2313 2337 -2113 2338 + mu 0 4 1447 1448 1326 1318 + f 4 2339 -2040 -2339 -2074 + mu 0 4 1317 1449 1447 1318 + f 4 2340 -2118 -2340 -2083 + mu 0 4 1322 1450 1449 1317 + f 4 2341 -2062 -2341 -2078 + mu 0 4 1321 1295 1450 1322 + f 4 -2342 -2105 2342 -2047 + mu 0 4 1295 1321 1334 1296 + f 4 -2139 -2343 -2106 2343 + mu 0 4 1451 1296 1334 1335 + f 4 2344 -2110 -2344 -2112 + mu 0 4 1329 1452 1453 1340 + f 4 2345 -2071 -2345 -2091 + mu 0 4 1328 1454 1452 1329 + f 4 -2312 -2346 -2101 2346 + mu 0 4 1455 1454 1328 1324 + f 4 -2307 -2347 -2089 -2338 + mu 0 4 1448 1455 1324 1326 + f 4 -2331 -2229 -2333 -2136 + mu 0 4 1456 1381 1384 1395 + f 4 2347 2348 2349 2350 + mu 0 4 1457 1458 1459 1460 + f 4 2351 2352 2353 2354 + mu 0 4 1461 1462 1463 1464 + f 4 -176 2355 2356 2357 + mu 0 4 102 105 1465 1466 + f 4 -2351 2358 2359 2360 + mu 0 4 1457 1460 1467 1468 + f 4 -2360 2361 2362 -2352 + mu 0 4 1468 1467 1469 1470 + f 3 -184 2363 2364 + mu 0 3 1471 1472 1473 + f 4 2365 -2353 2366 2367 + mu 0 4 1474 1475 1476 1477 + f 4 -2367 -2363 2368 2369 + mu 0 4 1478 1470 1469 1479 + f 4 -2361 -2355 2370 2371 + mu 0 4 1480 1481 1482 1483 + f 3 -194 2372 2373 + mu 0 3 123 125 1484 + f 4 2374 2375 -196 2376 + mu 0 4 1485 1486 1487 1488 + f 4 -2377 -201 2377 2378 + mu 0 4 1485 1488 1489 1490 + f 4 2379 2380 2381 2382 + mu 0 4 1491 1492 1493 1494 + f 4 -2382 2383 2384 2385 + mu 0 4 1494 1493 1495 1496 + f 4 2386 2387 2388 2389 + mu 0 4 1497 1498 1499 1500 + f 4 2390 2391 2392 2393 + mu 0 4 1501 1499 1495 1502 + f 4 -2391 2394 2395 -2389 + mu 0 4 1499 1501 1503 1500 + f 4 2396 2397 -2393 -2384 + mu 0 4 1493 1504 1502 1495 + f 4 2398 2399 -2397 -2381 + mu 0 4 1492 1505 1504 1493 + f 4 2400 -2385 -2392 -2388 + mu 0 4 1498 1496 1495 1499 + f 4 2401 2402 2403 2404 + mu 0 4 1506 1507 1508 1509 + f 4 2405 2406 2407 2408 + mu 0 4 1510 1511 1512 1513 + f 4 -2402 2409 -2408 2410 + mu 0 4 1507 1506 1513 1512 + f 4 -2410 2411 2412 2413 + mu 0 4 1513 1506 1514 1515 + f 4 -2405 2414 2415 -2412 + mu 0 4 1506 1509 1516 1514 + f 4 2416 2417 2418 -2396 + mu 0 4 1503 1517 1518 1500 + f 4 -2399 2419 -2413 -2416 + mu 0 4 1516 1519 1515 1514 + f 4 -2417 2420 2421 2422 + mu 0 4 1517 1503 1520 1521 + f 4 2423 2424 2425 2426 + mu 0 4 1522 1523 1518 1524 + f 4 2427 -2390 -2419 -2425 + mu 0 4 1523 1497 1500 1518 + f 4 2428 2429 2430 2431 + mu 0 4 1525 1526 1527 1528 + f 4 -2418 -2423 2432 -2426 + mu 0 4 1518 1517 1521 1524 + f 3 2433 2434 2435 + mu 0 3 1529 1530 1531 + f 4 2436 -2436 2437 2438 + mu 0 4 1532 1529 1531 1533 + f 4 2439 -2439 2440 -2431 + mu 0 4 1527 1532 1533 1528 + f 4 -2403 2441 2442 2443 + mu 0 4 1508 1507 1534 1535 + f 4 -2442 -2411 2444 2445 + mu 0 4 1534 1507 1512 1536 + f 4 2446 2447 -2445 -2407 + mu 0 4 1511 1537 1536 1512 + f 4 2448 -2427 2449 -2448 + mu 0 4 1537 1522 1524 1536 + f 4 -2446 -2450 -2433 2450 + mu 0 4 1534 1536 1524 1521 + f 4 -2451 -2422 2451 -2443 + mu 0 4 1534 1521 1520 1535 + f 4 2452 -2369 2453 2454 + mu 0 4 1490 1479 1469 1538 + f 4 -279 2455 -2453 -2378 + mu 0 4 1489 1539 1479 1490 + f 4 2456 2457 -2454 -2362 + mu 0 4 1467 1540 1538 1469 + f 4 2458 -2457 -2359 2459 + mu 0 4 1541 1540 1467 1460 + f 4 -2456 -285 2460 -2370 + mu 0 4 1479 1539 1542 1478 + f 4 2461 2462 2463 2464 + mu 0 4 1543 1544 1545 1546 + f 4 2465 2466 2467 2468 + mu 0 4 1547 1548 1549 1550 + f 4 -2469 2469 2470 2471 + mu 0 4 1547 1550 1551 1552 + f 4 -2468 2472 2473 2474 + mu 0 4 1550 1549 1553 1554 + f 4 2475 2476 2477 2478 + mu 0 4 1555 1556 1557 1558 + f 4 -2463 2479 2480 2481 + mu 0 4 1545 1544 1559 1560 + f 4 -2481 2482 2483 2484 + mu 0 4 1560 1559 1561 1562 + f 4 2485 -2460 -2350 2486 + mu 0 4 1563 1541 1460 1459 + f 4 2487 2488 2489 2490 + mu 0 4 1564 1565 1566 1567 + f 4 2491 2492 2493 2494 + mu 0 4 1568 1569 1566 1525 + f 4 -2490 -2493 2495 2496 + mu 0 4 1567 1566 1569 1570 + f 4 -2465 2497 2498 2499 + mu 0 4 1543 1546 1571 1572 + f 4 -2477 2500 -2485 2501 + mu 0 4 1557 1556 1560 1562 + f 3 2502 2503 2504 + mu 0 3 1573 1574 1575 + f 4 2505 2506 -2496 2507 + mu 0 4 1576 1577 1570 1569 + f 4 2508 2509 -2349 2510 + mu 0 4 1578 1579 1459 1458 + f 4 2511 -2507 2512 2513 + mu 0 4 1580 1570 1577 1581 + f 4 2514 2515 -2497 -2512 + mu 0 4 1580 1582 1567 1570 + f 4 -2516 2516 2517 -2491 + mu 0 4 1567 1582 1554 1564 + f 4 -2475 -2517 2518 -2470 + mu 0 4 1550 1554 1582 1551 + f 4 -2519 -2515 2519 2520 + mu 0 4 1551 1582 1580 1555 + f 4 -2476 -2520 -2514 2521 + mu 0 4 1556 1555 1580 1581 + f 4 -2518 -2474 2522 2523 + mu 0 4 1564 1554 1553 1583 + f 4 -2501 -2522 2524 -2482 + mu 0 4 1560 1556 1581 1545 + f 4 -2525 -2513 2525 -2464 + mu 0 4 1545 1581 1577 1546 + f 4 2526 2527 -2502 2528 + mu 0 4 1584 1585 1586 1587 + f 4 -2459 2529 2530 2531 + mu 0 4 1540 1541 1572 1588 + f 4 2532 2533 -2529 -2484 + mu 0 4 1589 1590 1584 1587 + f 4 2534 -2531 -2499 2535 + mu 0 4 1591 1588 1572 1571 + f 4 2536 2537 -2478 -2528 + mu 0 4 1585 1592 1593 1586 + f 3 2538 -2466 2539 + mu 0 3 1594 1595 1596 + f 4 2540 -2540 -2472 2541 + mu 0 4 1531 1594 1596 1597 + f 4 2542 2543 -2535 2544 + mu 0 4 1598 1599 1588 1591 + f 4 2545 -2543 2546 2547 + mu 0 4 1600 1599 1598 1601 + f 4 -2544 2548 -2458 -2532 + mu 0 4 1588 1599 1538 1540 + f 4 -2546 2549 2550 -2549 + mu 0 4 1599 1600 1602 1538 + f 4 2551 2552 -2495 -2432 + mu 0 4 1528 1603 1568 1525 + f 4 2553 2554 -2552 -2441 + mu 0 4 1533 1604 1603 1528 + f 4 2555 -2545 2556 2557 + mu 0 4 1605 1598 1591 1606 + f 4 2558 -2558 2559 -2553 + mu 0 4 1603 1605 1606 1568 + f 4 2560 -2559 -2555 2561 + mu 0 4 1607 1605 1603 1604 + f 4 -2547 -2556 -2561 2562 + mu 0 4 1601 1598 1605 1607 + f 4 2563 2564 -2420 -2380 + mu 0 4 1608 1609 1515 1519 + f 4 2565 -2409 -2414 -2565 + mu 0 4 1609 1510 1513 1515 + f 3 -2541 -2435 2566 + mu 0 3 1594 1531 1530 + f 4 -2557 -2536 2567 2568 + mu 0 4 1606 1591 1571 1576 + f 4 -2560 -2569 -2508 -2492 + mu 0 4 1568 1606 1576 1569 + f 4 -2494 -2489 2569 -2429 + mu 0 4 1525 1566 1565 1526 + f 4 2570 2571 2572 -2533 + mu 0 4 1589 1610 1611 1590 + f 4 2573 -2523 2574 -2401 + mu 0 4 1498 1583 1553 1496 + f 4 -2428 2575 2576 2577 + mu 0 4 1497 1523 1526 1612 + f 4 -2430 -2576 -2424 2578 + mu 0 4 1527 1526 1523 1522 + f 4 -2579 -2449 2579 -2440 + mu 0 4 1527 1522 1537 1532 + f 4 -2437 -2580 -2447 2580 + mu 0 4 1529 1532 1537 1511 + f 4 -2434 -2581 -2406 2581 + mu 0 4 1530 1529 1511 1510 + f 4 -2567 -2582 -2566 2582 + mu 0 4 1594 1530 1510 1609 + f 4 2583 -2539 -2583 -2564 + mu 0 4 1608 1595 1594 1609 + f 4 -2467 -2584 -2383 2584 + mu 0 4 1549 1548 1491 1494 + f 4 -2473 -2585 -2386 -2575 + mu 0 4 1553 1549 1494 1496 + f 4 2585 -2511 2586 -2357 + mu 0 4 1465 1613 1614 1466 + f 4 -2586 2587 2588 2589 + mu 0 4 1615 1616 1617 1618 + f 4 -2590 -2503 2590 -2509 + mu 0 4 1578 1574 1573 1579 + f 4 -2573 2591 -2550 2592 + mu 0 4 1590 1611 1602 1600 + f 4 -2534 -2593 -2548 2593 + mu 0 4 1584 1590 1600 1601 + f 4 -2527 -2594 -2563 2594 + mu 0 4 1585 1584 1601 1607 + f 4 -2537 -2595 -2562 2595 + mu 0 4 1592 1585 1607 1604 + f 4 2596 -2596 -2554 -2438 + mu 0 4 1531 1592 1604 1533 + f 4 -2538 -2597 -2542 2597 + mu 0 4 1593 1592 1531 1597 + f 4 -2479 -2598 -2471 -2521 + mu 0 4 1555 1558 1552 1551 + f 4 2598 2599 2600 2601 + mu 0 4 1619 1620 1621 1622 + f 4 2602 2603 2604 2605 + mu 0 4 1623 1624 1625 1626 + f 4 2606 2607 2608 2609 + mu 0 4 1627 1628 1629 1621 + f 4 2610 2611 2612 2613 + mu 0 4 1630 1631 1632 1633 + f 4 2614 2615 -2603 2616 + mu 0 4 1632 1634 1624 1623 + f 4 2617 2618 -2607 2619 + mu 0 4 1635 1636 1628 1627 + f 4 -2611 2620 -2620 2621 + mu 0 4 1631 1630 1635 1627 + f 4 2622 -2616 2623 2624 + mu 0 4 1637 1624 1634 1638 + f 4 -2604 -2623 2625 2626 + mu 0 4 1625 1624 1637 1639 + f 4 -2606 2627 2628 2629 + mu 0 4 1623 1626 1640 1641 + f 4 2630 2631 -2608 2632 + mu 0 4 1642 1643 1644 1645 + f 4 2633 -2631 2634 2635 + mu 0 4 1646 1643 1642 1647 + f 4 2636 2637 -2635 2638 + mu 0 4 1648 1649 1647 1642 + f 4 2639 2640 2641 -2638 + mu 0 4 1649 1650 1651 1647 + f 4 2642 -2628 2643 -2641 + mu 0 4 1650 1640 1626 1651 + f 4 2644 -2636 -2642 2645 + mu 0 4 1652 1646 1647 1651 + f 4 -2605 2646 -2646 -2644 + mu 0 4 1626 1625 1652 1651 + f 4 2647 2648 2649 2650 + mu 0 4 1653 1654 1655 1656 + f 4 2651 2652 2653 2654 + mu 0 4 1657 1658 1622 1659 + f 4 2655 2656 -2602 -2653 + mu 0 4 1658 1660 1619 1622 + f 4 2657 2658 2659 -2657 + mu 0 4 1660 1661 1638 1619 + f 4 2660 2661 2662 2663 + mu 0 4 1662 1663 1664 1665 + f 4 2664 2665 2666 -2648 + mu 0 4 1653 1666 1667 1654 + f 4 2667 2668 2669 -2666 + mu 0 4 1666 1668 1669 1667 + f 4 -2650 2670 2671 2672 + mu 0 4 1656 1655 1670 1671 + f 4 -2672 2673 2674 2675 + mu 0 4 1671 1670 1672 1673 + f 4 2676 2677 2678 2679 + mu 0 4 1674 1675 1676 1677 + f 4 -2626 2680 2681 2682 + mu 0 4 1639 1637 1663 1678 + f 4 -2682 -2661 2683 2684 + mu 0 4 1678 1663 1662 1679 + f 4 -2670 2685 2686 2687 + mu 0 4 1667 1669 1680 1681 + f 4 2688 2689 -2632 2690 + mu 0 4 1682 1683 1644 1643 + f 4 2691 2692 2693 2694 + mu 0 4 1684 1685 1686 1687 + f 4 2695 -2691 -2634 2696 + mu 0 4 1688 1682 1643 1646 + f 4 -2696 2697 2698 2699 + mu 0 4 1682 1688 1689 1680 + f 4 2700 -2697 -2645 2701 + mu 0 4 1690 1688 1646 1652 + f 4 -2701 2702 2703 -2698 + mu 0 4 1688 1690 1691 1689 + f 4 2704 -2684 2705 -2694 + mu 0 4 1686 1679 1662 1687 + f 4 -2688 2706 2707 -2667 + mu 0 4 1667 1681 1692 1654 + f 4 -2707 2708 2709 2710 + mu 0 4 1692 1681 1693 1694 + f 4 -2710 2711 2712 2713 + mu 0 4 1694 1693 1695 1696 + f 4 -2671 2714 2715 2716 + mu 0 4 1670 1655 1697 1698 + f 4 -2716 2717 -2711 2718 + mu 0 4 1698 1697 1692 1694 + f 4 -2674 -2717 2719 2720 + mu 0 4 1672 1670 1698 1699 + f 4 2721 -2720 -2719 -2714 + mu 0 4 1696 1699 1698 1694 + f 4 -2692 2722 -2721 2723 + mu 0 4 1685 1684 1672 1699 + f 4 -2705 2724 -2713 2725 + mu 0 4 1679 1686 1696 1695 + f 4 2726 -2683 2727 -2703 + mu 0 4 1690 1639 1678 1691 + f 4 -2627 -2727 -2702 -2647 + mu 0 4 1625 1639 1690 1652 + f 4 2728 2729 2730 2731 + mu 0 4 1700 1701 1702 1703 + f 4 2732 -2731 2733 2734 + mu 0 4 1704 1703 1702 1705 + f 4 2735 2736 2737 2738 + mu 0 4 1706 1707 1708 1709 + f 4 2739 2740 2741 -2738 + mu 0 4 1708 1710 1711 1709 + f 4 2742 2743 2744 2745 + mu 0 4 1712 1713 1714 1715 + f 4 2746 2747 -2743 2748 + mu 0 4 1716 1717 1713 1712 + f 3 2749 2750 2751 + mu 0 3 1718 1719 1720 + f 4 2752 2753 2754 2755 + mu 0 4 1721 1722 1723 1724 + f 4 2756 2757 2758 2759 + mu 0 4 1677 1725 1726 1727 + f 4 2760 -2750 2761 2762 + mu 0 4 1728 1719 1718 1729 + f 4 -2679 2763 2764 -2757 + mu 0 4 1677 1676 1730 1725 + f 4 2765 2766 2767 2768 + mu 0 4 1723 1731 1674 1732 + f 4 -2755 -2769 2769 2770 + mu 0 4 1724 1723 1732 1733 + f 4 -2762 2771 -2765 2772 + mu 0 4 1729 1718 1734 1735 + f 4 2773 2774 -2766 -2754 + mu 0 4 1722 1736 1731 1723 + f 4 -2772 2775 2776 -2758 + mu 0 4 1734 1718 1737 1738 + f 4 2777 2778 2779 2780 + mu 0 4 1720 1739 1740 1741 + f 4 -2779 2781 -2753 2782 + mu 0 4 1740 1739 1742 1743 + f 4 2783 -2778 -2751 2784 + mu 0 4 1744 1739 1720 1719 + f 4 -2784 2785 -2774 -2782 + mu 0 4 1739 1744 1745 1742 + f 4 -2752 -2781 2786 -2776 + mu 0 4 1718 1720 1741 1737 + f 4 -2770 2787 -2760 2788 + mu 0 4 1733 1732 1677 1727 + f 4 2789 2790 -2756 2791 + mu 0 4 1746 1747 1721 1724 + f 4 -2790 2792 2793 2794 + mu 0 4 1748 1749 1750 1751 + f 4 2795 2796 2797 2798 + mu 0 4 1752 1753 1754 1755 + f 4 -2797 2799 -2759 2800 + mu 0 4 1756 1757 1727 1726 + f 4 2801 -2801 -2777 2802 + mu 0 4 1704 1758 1738 1737 + f 4 -2780 2803 -2732 2804 + mu 0 4 1741 1740 1700 1703 + f 4 2805 -2804 -2783 -2791 + mu 0 4 1748 1700 1740 1743 + f 4 -2806 -2795 2806 -2729 + mu 0 4 1700 1748 1751 1701 + f 4 2807 -2798 -2802 -2735 + mu 0 4 1705 1755 1758 1704 + f 4 2808 2809 2810 2811 + mu 0 4 1759 1760 1761 1762 + f 4 -2787 -2805 -2733 -2803 + mu 0 4 1737 1741 1703 1704 + f 4 2812 -2792 -2771 2813 + mu 0 4 1763 1746 1724 1733 + f 4 2814 -2814 -2789 -2800 + mu 0 4 1757 1763 1733 1727 + f 4 2815 -2793 -2813 2816 + mu 0 4 1764 1765 1746 1763 + f 4 2817 -2817 -2815 -2796 + mu 0 4 1766 1764 1763 1757 + f 4 2818 2819 -2730 -2807 + mu 0 4 1751 1767 1702 1701 + f 4 2820 -2808 -2734 -2820 + mu 0 4 1767 1755 1705 1702 + f 4 2821 2822 2823 2824 + mu 0 4 1768 1769 1770 1728 + f 3 -2763 2825 2826 + mu 0 3 1728 1729 1771 + f 3 -2825 -2827 2827 + mu 0 3 1768 1728 1771 + f 4 -2822 2828 2829 2830 + mu 0 4 1769 1768 1772 1773 + f 4 2831 -2830 2832 2833 + mu 0 4 1774 1775 1776 1777 + f 4 2834 -2834 2835 2836 + mu 0 4 1778 1774 1777 1675 + f 4 2837 2838 2839 2840 + mu 0 4 1779 1777 1780 1781 + f 4 -2833 2841 2842 -2839 + mu 0 4 1777 1776 1782 1780 + f 4 2843 -2841 2844 2845 + mu 0 4 1676 1779 1781 1783 + f 4 -2832 2846 2847 2848 + mu 0 4 1775 1774 1784 1785 + f 4 2849 -2842 -2829 2850 + mu 0 4 1786 1787 1772 1768 + f 4 -2850 2851 2852 2853 + mu 0 4 1787 1786 1788 1789 + f 4 -2843 -2854 2854 2855 + mu 0 4 1780 1782 1790 1791 + f 4 -2846 2856 2857 -2764 + mu 0 4 1676 1783 1792 1730 + f 4 2858 2859 -2773 -2858 + mu 0 4 1793 1794 1729 1735 + f 4 -2840 -2856 2860 2861 + mu 0 4 1781 1780 1791 1795 + f 4 -2845 -2862 2862 2863 + mu 0 4 1783 1781 1795 1760 + f 4 -2826 -2860 2864 2865 + mu 0 4 1771 1729 1794 1796 + f 4 -2851 -2828 -2866 2866 + mu 0 4 1786 1768 1771 1796 + f 4 2867 -2812 2868 2869 + mu 0 4 1797 1798 1799 1800 + f 4 -2853 2870 2871 2872 + mu 0 4 1789 1788 1801 1802 + f 4 -2855 -2873 2873 2874 + mu 0 4 1791 1790 1803 1804 + f 4 -2864 -2809 2875 -2857 + mu 0 4 1783 1760 1759 1792 + f 4 -2868 2876 -2859 -2876 + mu 0 4 1798 1797 1794 1793 + f 4 -2875 2877 2878 -2861 + mu 0 4 1791 1804 1805 1795 + f 4 2879 -2810 -2863 -2879 + mu 0 4 1805 1761 1760 1795 + f 4 -2865 -2877 2880 2881 + mu 0 4 1796 1794 1797 1806 + f 4 -2852 -2867 -2882 2882 + mu 0 4 1788 1786 1796 1806 + f 4 -2878 -2874 2883 2884 + mu 0 4 1805 1804 1803 1807 + f 4 -2880 -2885 2885 -2811 + mu 0 4 1761 1805 1807 1762 + f 4 -2886 2886 2887 -2869 + mu 0 4 1799 1808 1809 1800 + f 4 -2884 -2872 2888 -2887 + mu 0 4 1808 1802 1801 1809 + f 4 -2888 2889 -2881 -2870 + mu 0 4 1800 1809 1806 1797 + f 4 -2889 -2871 -2883 -2890 + mu 0 4 1809 1801 1788 1806 + f 3 2890 2891 2892 + mu 0 3 1810 1770 1811 + f 3 -2823 2893 -2892 + mu 0 3 1770 1769 1811 + f 4 2894 -2891 2895 2896 + mu 0 4 1812 1770 1810 1813 + f 4 -2896 2897 2898 2899 + mu 0 4 1813 1810 1814 1815 + f 4 2900 2901 -2899 2902 + mu 0 4 1816 1817 1818 1819 + f 4 -2902 2903 2904 2905 + mu 0 4 1818 1817 1820 1821 + f 4 2906 2907 2908 -2847 + mu 0 4 1774 1822 1823 1784 + f 4 2909 2910 2911 -2908 + mu 0 4 1822 1816 1824 1823 + f 4 -2831 -2849 2912 2913 + mu 0 4 1769 1773 1825 1826 + f 4 -2903 2914 2915 -2911 + mu 0 4 1816 1819 1827 1824 + f 4 2916 2917 -2893 2918 + mu 0 4 1828 1829 1810 1811 + f 4 2919 -2917 2920 2921 + mu 0 4 1830 1829 1828 1831 + f 4 -2894 -2914 2922 -2919 + mu 0 4 1811 1769 1826 1828 + f 4 2923 2924 -2921 -2923 + mu 0 4 1826 1832 1831 1828 + f 4 2925 -2909 2926 2927 + mu 0 4 1833 1784 1823 1834 + f 4 2928 2929 -2927 -2912 + mu 0 4 1824 1835 1834 1823 + f 4 -2913 2930 2931 -2924 + mu 0 4 1826 1825 1836 1832 + f 4 -2926 2932 -2931 -2848 + mu 0 4 1784 1833 1837 1785 + f 4 -2916 2933 2934 -2929 + mu 0 4 1824 1827 1838 1835 + f 4 -2920 2935 -2934 2936 + mu 0 4 1829 1830 1839 1840 + f 4 -2937 -2915 -2898 -2918 + mu 0 4 1829 1840 1814 1810 + f 4 2937 2938 2939 2940 + mu 0 4 1841 1710 1842 1843 + f 4 2941 -2941 -2905 2942 + mu 0 4 1844 1845 1821 1820 + f 4 2943 -2922 2944 2945 + mu 0 4 1846 1830 1831 1847 + f 4 -2928 2946 2947 2948 + mu 0 4 1833 1834 1848 1849 + f 4 -2930 2949 2950 -2947 + mu 0 4 1834 1835 1850 1848 + f 4 2951 -2950 -2935 2952 + mu 0 4 1851 1850 1835 1838 + f 4 -2944 2953 -2953 -2936 + mu 0 4 1830 1846 1852 1839 + f 4 2954 -2932 2955 2956 + mu 0 4 1853 1832 1836 1854 + f 4 -2933 -2949 2957 -2956 + mu 0 4 1837 1833 1849 1855 + f 4 -2925 -2955 2958 -2945 + mu 0 4 1831 1832 1853 1847 + f 4 2959 2960 -2959 -2957 + mu 0 4 1854 1856 1847 1853 + f 4 2961 -2954 -2946 -2961 + mu 0 4 1856 1852 1846 1847 + f 4 -2952 -2962 2962 -2951 + mu 0 4 1850 1851 1857 1848 + f 4 -2960 -2958 -2948 -2963 + mu 0 4 1857 1855 1849 1848 + f 4 2963 2964 2965 2966 + mu 0 4 1858 1812 1859 1860 + f 4 2967 2968 2969 2970 + mu 0 4 1861 1862 1863 1864 + f 4 2971 -2969 2972 2973 + mu 0 4 1865 1863 1862 1866 + f 4 2974 -2675 -2723 2975 + mu 0 4 1867 1673 1672 1684 + f 3 -2965 2976 2977 + mu 0 3 1859 1812 1868 + f 3 -2897 2978 -2977 + mu 0 3 1812 1813 1868 + f 4 2979 -2971 2980 -2966 + mu 0 4 1859 1869 1870 1860 + f 4 2981 2982 -2978 2983 + mu 0 4 1871 1872 1859 1868 + f 4 -2979 2984 2985 -2984 + mu 0 4 1868 1813 1842 1871 + f 4 -2980 -2983 2986 2987 + mu 0 4 1869 1859 1872 1873 + f 4 2988 -2968 -2988 2989 + mu 0 4 1874 1862 1861 1875 + f 4 -2900 -2906 -2940 -2985 + mu 0 4 1813 1815 1843 1842 + f 4 2990 2991 2992 -2904 + mu 0 4 1817 1876 1877 1820 + f 4 2993 -2992 2994 -2989 + mu 0 4 1874 1877 1876 1862 + f 4 2995 -2982 2996 -2737 + mu 0 4 1707 1872 1871 1708 + f 4 -2939 -2740 -2997 -2986 + mu 0 4 1842 1710 1708 1871 + f 4 -2943 -2993 2997 2998 + mu 0 4 1844 1820 1877 1878 + f 4 -2998 -2994 2999 3000 + mu 0 4 1878 1877 1874 1879 + f 4 3001 3002 3003 3004 + mu 0 4 1880 1881 1879 1882 + f 4 3005 -3005 3006 -2736 + mu 0 4 1706 1883 1884 1707 + f 4 3007 3008 -2942 3009 + mu 0 4 1885 1886 1845 1844 + f 4 3010 -2741 -2938 -3009 + mu 0 4 1887 1711 1710 1841 + f 4 3011 -3010 -2999 3012 + mu 0 4 1888 1885 1844 1878 + f 4 -3003 3013 -3013 -3001 + mu 0 4 1879 1881 1888 1878 + f 4 -3004 -3000 -2990 3014 + mu 0 4 1882 1879 1874 1875 + f 4 -2996 -3007 -3015 -2987 + mu 0 4 1872 1707 1884 1873 + f 4 3015 3016 -2742 -3011 + mu 0 4 1887 1889 1709 1711 + f 4 3017 -3006 -2739 -3017 + mu 0 4 1889 1883 1706 1709 + f 4 -3002 -3018 3018 -3014 + mu 0 4 1881 1880 1890 1888 + f 4 -3016 -3008 -3012 -3019 + mu 0 4 1890 1886 1885 1888 + f 4 3019 3020 3021 3022 + mu 0 4 1891 1892 1893 1894 + f 4 3023 3024 3025 -2972 + mu 0 4 1865 1895 1896 1863 + f 4 3026 3027 3028 3029 + mu 0 4 1897 1898 1858 1899 + f 4 3030 -3027 3031 -3021 + mu 0 4 1892 1898 1897 1893 + f 4 3032 3033 3034 3035 + mu 0 4 1899 1860 1900 1901 + f 4 3036 -3030 -3036 3037 + mu 0 4 1902 1897 1899 1901 + f 4 -3032 -3037 3038 3039 + mu 0 4 1893 1897 1902 1903 + f 4 -3022 -3040 3040 3041 + mu 0 4 1894 1893 1903 1904 + f 4 3042 3043 -3041 3044 + mu 0 4 1905 1906 1904 1903 + f 4 -3026 3045 3046 3047 + mu 0 4 1863 1896 1907 1908 + f 4 3048 3049 -3047 3050 + mu 0 4 1909 1910 1908 1907 + f 4 -3034 -2981 3051 3052 + mu 0 4 1900 1860 1870 1911 + f 4 -2970 -3048 3053 -3052 + mu 0 4 1864 1863 1908 1912 + f 4 3054 3055 -3054 -3050 + mu 0 4 1910 1913 1912 1908 + f 4 -3046 3056 -3042 3057 + mu 0 4 1907 1896 1894 1904 + f 4 3058 -3051 -3058 -3044 + mu 0 4 1906 1909 1907 1904 + f 4 -3059 3059 3060 3061 + mu 0 4 1909 1906 1914 1915 + f 4 3062 3063 -3053 -3056 + mu 0 4 1916 1714 1900 1911 + f 4 -3064 -2744 3064 -3035 + mu 0 4 1900 1714 1713 1901 + f 4 -3055 3065 3066 3067 + mu 0 4 1913 1910 1917 1918 + f 4 -3063 -3068 3068 -2745 + mu 0 4 1714 1916 1919 1715 + f 4 -3049 -3062 3069 -3066 + mu 0 4 1910 1909 1915 1917 + f 4 -3060 -3043 3070 3071 + mu 0 4 1914 1906 1905 1920 + f 4 3072 -2747 3073 -3071 + mu 0 4 1905 1717 1716 1921 + f 4 -3038 -3065 -2748 3074 + mu 0 4 1902 1901 1713 1717 + f 4 -3061 -3072 3075 3076 + mu 0 4 1915 1914 1920 1922 + f 4 -3070 -3077 3077 -3067 + mu 0 4 1917 1915 1922 1918; + setAttr ".fc[1500:1999]" + f 4 -3078 3078 -2746 -3069 + mu 0 4 1919 1923 1712 1715 + f 4 -3076 -3074 -2749 -3079 + mu 0 4 1923 1921 1716 1712 + f 4 -2614 3079 -2394 3080 + mu 0 4 1630 1633 1501 1502 + f 4 -2400 3081 -2618 3082 + mu 0 4 1504 1505 1636 1635 + f 4 -2398 -3083 -2621 -3081 + mu 0 4 1502 1504 1635 1630 + f 4 -3082 -2415 3083 3084 + mu 0 4 1924 1516 1509 1648 + f 4 -2395 -3080 3085 3086 + mu 0 4 1503 1501 1633 1641 + f 4 -2404 3087 -2637 -3084 + mu 0 4 1509 1508 1649 1648 + f 4 -2421 -3087 -2629 3088 + mu 0 4 1520 1503 1641 1640 + f 4 -3088 -2444 3089 -2640 + mu 0 4 1649 1508 1535 1650 + f 4 -2643 -3090 -2452 -3089 + mu 0 4 1640 1650 1535 1520 + f 4 -2686 3090 -2689 -2700 + mu 0 4 1680 1669 1683 1682 + f 4 3091 -2709 -2687 -2699 + mu 0 4 1689 1693 1681 1680 + f 4 -2704 3092 -2712 -3092 + mu 0 4 1689 1691 1695 1693 + f 4 -2728 -2685 -2726 -3093 + mu 0 4 1691 1678 1679 1695 + f 4 -2715 -2649 -2708 -2718 + mu 0 4 1697 1655 1654 1692 + f 4 -2617 -2630 -3086 -2613 + mu 0 4 1632 1623 1641 1633 + f 4 -2633 -2619 -3085 -2639 + mu 0 4 1642 1645 1924 1648 + f 4 3093 -2901 3094 3095 + mu 0 4 1866 1817 1816 1778 + f 4 -3075 -3073 -3045 -3039 + mu 0 4 1902 1717 1905 1903 + f 4 -2655 -3091 -2669 3096 + mu 0 4 1657 1659 1925 1926 + f 4 -2660 -2624 3097 -2599 + mu 0 4 1619 1638 1634 1620 + f 4 -2612 3098 -3098 -2615 + mu 0 4 1632 1631 1620 1634 + f 4 -2600 -3099 -2622 -2610 + mu 0 4 1621 1620 1631 1627 + f 4 -2725 -2693 -2724 -2722 + mu 0 4 1696 1686 1685 1699 + f 4 -2695 3099 3100 -2976 + mu 0 4 1684 1687 1927 1867 + f 4 -2601 -2609 -2690 -2654 + mu 0 4 1622 1621 1629 1659 + f 4 -3025 3101 -3023 -3057 + mu 0 4 1896 1895 1891 1894 + f 4 -930 3102 3103 3104 + mu 0 4 1928 1929 1930 1931 + f 4 3105 3106 3107 3108 + mu 0 4 1932 1933 1934 1935 + f 4 -3108 3109 3110 3111 + mu 0 4 1935 1934 1936 1937 + f 4 -3105 3112 3113 -938 + mu 0 4 1928 1931 1938 1939 + f 4 3114 3115 3116 3117 + mu 0 4 1940 1941 1942 1943 + f 4 3118 3119 3120 3121 + mu 0 4 1944 1945 1946 1941 + f 4 -3117 3122 3123 3124 + mu 0 4 1943 1942 1947 1948 + f 4 -3114 3125 3126 -952 + mu 0 4 1939 1938 1949 1950 + f 4 3127 -3118 3128 -3110 + mu 0 4 1934 1940 1943 1936 + f 4 3129 -3125 3130 3131 + mu 0 4 1951 1943 1948 1952 + f 4 3132 3133 3134 3135 + mu 0 4 1953 1933 1954 1945 + f 4 3136 -3134 -3106 3137 + mu 0 4 1955 1954 1933 1932 + f 4 -968 3138 3139 -3103 + mu 0 4 1929 1956 1957 1930 + f 4 3140 3141 -970 3142 + mu 0 4 1958 1959 1960 1961 + f 4 -975 -3142 3143 3144 + mu 0 4 1962 1960 1959 1963 + f 4 3145 3146 3147 -976 + mu 0 4 605 1964 1965 606 + f 3 3148 3149 3150 + mu 0 3 1966 1967 1968 + f 4 3151 3152 3153 3154 + mu 0 4 1969 1970 1971 1972 + f 4 3155 3156 3157 -3153 + mu 0 4 1970 1973 1974 1971 + f 4 3158 -992 3159 3160 + mu 0 4 1975 620 619 1966 + f 4 3161 3162 3163 3164 + mu 0 4 1976 1977 1978 1979 + f 4 3165 -999 -3148 3166 + mu 0 4 1980 626 606 1965 + f 4 3167 3168 3169 -3163 + mu 0 4 1977 1981 1982 1978 + f 4 3170 3171 -1004 -3159 + mu 0 4 1975 1983 629 620 + f 4 -3169 3172 -3137 3173 + mu 0 4 1982 1981 1954 1955 + f 4 -3162 3174 3175 3176 + mu 0 4 1977 1976 1984 1985 + f 4 3177 3178 3179 3180 + mu 0 4 1986 1987 1988 1989 + f 4 -1018 3181 -3180 3182 + mu 0 4 637 638 1989 1988 + f 4 -3146 -1021 3183 3184 + mu 0 4 1964 605 640 1990 + f 4 -1023 -3127 3185 -3143 + mu 0 4 1961 1950 1949 1958 + f 4 -3182 -1026 3186 3187 + mu 0 4 1989 638 642 1991 + f 4 -3175 -3165 3188 3189 + mu 0 4 1984 1976 1979 1992 + f 4 -3179 3190 -3158 3191 + mu 0 4 1988 1987 1971 1974 + f 4 -3149 -3160 -1032 3192 + mu 0 4 1967 1966 619 644 + f 4 -3139 -1034 -3172 3193 + mu 0 4 1957 1956 629 1983 + f 4 -3157 3194 -1036 3195 + mu 0 4 1974 1973 646 645 + f 4 -3183 -3192 -3196 -1038 + mu 0 4 637 1988 1974 645 + f 4 3196 3197 3198 3199 + mu 0 4 1993 1994 1995 1996 + f 4 3200 3201 3202 3203 + mu 0 4 1997 1998 1999 2000 + f 4 3204 -3204 3205 3206 + mu 0 4 2001 1997 2000 2002 + f 4 3207 3208 3209 -3202 + mu 0 4 1998 2003 2004 1999 + f 4 3210 3211 3212 -3209 + mu 0 4 2003 2005 1994 2004 + f 4 -3203 3213 3214 3215 + mu 0 4 2000 1999 2006 2007 + f 4 3216 -3213 -3197 3217 + mu 0 4 2008 2004 1994 1993 + f 4 -3210 -3217 3218 -3214 + mu 0 4 1999 2004 2008 2006 + f 4 3219 3220 3221 3222 + mu 0 4 2009 2010 2011 2012 + f 4 3223 3224 3225 3226 + mu 0 4 2013 2014 2015 2016 + f 4 -3227 3227 3228 3229 + mu 0 4 2013 2016 2017 2018 + f 4 3230 -3230 3231 3232 + mu 0 4 2019 2013 2018 2020 + f 4 3233 3234 3235 3236 + mu 0 4 2021 2022 2023 2024 + f 4 3237 -3237 3238 3239 + mu 0 4 2025 2021 2024 2026 + f 4 -3201 3240 3241 3242 + mu 0 4 2027 2028 2029 2030 + f 4 3243 3244 3245 -3225 + mu 0 4 2014 2031 2032 2015 + f 4 -3245 3246 3247 3248 + mu 0 4 2032 2031 2033 2034 + f 3 3249 3250 3251 + mu 0 3 2033 2035 2036 + f 4 3252 3253 3254 -3247 + mu 0 4 2031 2037 2038 2033 + f 4 -3211 3255 3256 3257 + mu 0 4 2039 2040 2041 2042 + f 4 -3240 3258 -3220 3259 + mu 0 4 2025 2026 2010 2009 + f 4 -3257 3260 3261 3262 + mu 0 4 2042 2041 2043 2044 + f 4 -3252 3263 -3242 3264 + mu 0 4 2033 2036 2030 2029 + f 4 3265 -3248 -3265 3266 + mu 0 4 2045 2034 2033 2029 + f 4 3267 -3267 -3241 -3205 + mu 0 4 2046 2045 2029 2028 + f 4 -3222 3268 -3262 3269 + mu 0 4 2012 2011 2044 2043 + f 4 -3229 3270 3271 3272 + mu 0 4 2018 2017 2047 2007 + f 4 -3231 3273 3274 -3224 + mu 0 4 2013 2019 2048 2014 + f 4 -3218 3275 3276 3277 + mu 0 4 2008 1993 2049 2050 + f 4 -3235 3278 -3277 3279 + mu 0 4 2023 2022 2050 2049 + f 4 -3215 3280 -3232 -3273 + mu 0 4 2007 2006 2020 2018 + f 4 -3208 -3243 3281 -3256 + mu 0 4 2040 2027 2030 2041 + f 4 -3282 -3264 3282 -3261 + mu 0 4 2041 2030 2036 2043 + f 4 -3270 -3283 -3251 3283 + mu 0 4 2012 2043 2036 2035 + f 4 3284 -3223 -3284 3285 + mu 0 4 2038 2009 2012 2035 + f 4 3286 -3260 -3285 -3254 + mu 0 4 2037 2025 2009 2038 + f 4 -3206 -3216 -3272 3287 + mu 0 4 2002 2000 2007 2047 + f 4 3288 -3253 -3244 -3275 + mu 0 4 2048 2037 2031 2014 + f 4 -3234 3289 -3274 3290 + mu 0 4 2022 2021 2048 2019 + f 4 -3219 -3278 3291 -3281 + mu 0 4 2006 2008 2050 2020 + f 4 -3291 -3233 -3292 -3279 + mu 0 4 2022 2019 2020 2050 + f 4 3292 3293 3294 3295 + mu 0 4 2051 2052 2053 2054 + f 4 3296 3297 -3294 3298 + mu 0 4 2055 2056 2053 2052 + f 4 3299 3300 3301 3302 + mu 0 4 2057 2058 2059 2060 + f 4 3303 3304 3305 3306 + mu 0 4 2061 2062 2063 2064 + f 3 3307 3308 3309 + mu 0 3 2065 2066 2067 + f 4 -3306 3310 -3300 3311 + mu 0 4 2064 2063 2058 2057 + f 3 3312 3313 3314 + mu 0 3 2068 2069 2070 + f 4 3315 -3310 3316 3317 + mu 0 4 2071 2065 2067 2072 + f 4 3318 3319 3320 3321 + mu 0 4 2073 2074 2075 2076 + f 4 3322 3323 3324 3325 + mu 0 4 2077 2074 2078 2079 + f 4 3326 3327 3328 3329 + mu 0 4 2080 2081 2082 2083 + f 4 3330 3331 3332 -3313 + mu 0 4 2068 2084 2085 2069 + f 4 -3314 3333 3334 3335 + mu 0 4 2070 2069 2086 2087 + f 4 3336 3337 3338 -3335 + mu 0 4 2086 2088 2089 2087 + f 4 -3336 3339 3340 3341 + mu 0 4 2070 2087 2090 2059 + f 4 -3339 3342 3343 -3340 + mu 0 4 2087 2089 2091 2090 + f 4 3344 3345 3346 3347 + mu 0 4 2092 2093 2094 2095 + f 4 -3346 3348 3349 3350 + mu 0 4 2094 2093 2096 2060 + f 4 3351 -3351 -3302 -3341 + mu 0 4 2090 2094 2060 2059 + f 4 -3347 -3352 -3344 3352 + mu 0 4 2095 2094 2090 2091 + f 4 3353 3354 3355 3356 + mu 0 4 2097 2098 2099 2100 + f 4 3357 3358 3359 -3320 + mu 0 4 2074 2101 2102 2075 + f 4 3360 -3326 3361 -3328 + mu 0 4 2081 2077 2079 2082 + f 4 3362 3363 -3309 3364 + mu 0 4 2099 2103 2067 2066 + f 4 3365 3366 3367 3368 + mu 0 4 2104 2100 2105 2106 + f 4 3369 3370 3371 3372 + mu 0 4 2103 2107 2108 2109 + f 4 -3317 3373 3374 3375 + mu 0 4 2072 2067 2110 2111 + f 4 -3318 3376 3377 3378 + mu 0 4 2112 2113 2114 2115 + f 4 -3376 3379 3380 -3377 + mu 0 4 2113 2116 2117 2114 + f 4 3381 -3324 -3319 3382 + mu 0 4 2118 2078 2074 2073 + f 4 -3382 3383 3384 3385 + mu 0 4 2078 2118 2119 2120 + f 4 -3325 -3386 3386 3387 + mu 0 4 2079 2078 2120 2121 + f 4 -3362 -3388 3388 3389 + mu 0 4 2082 2079 2121 2122 + f 4 3390 -3329 -3390 3391 + mu 0 4 2123 2083 2082 2122 + f 4 3392 3393 3394 -3385 + mu 0 4 2119 2124 2125 2120 + f 4 -3389 3395 3396 3397 + mu 0 4 2122 2121 2126 2127 + f 4 3398 3399 -3392 -3398 + mu 0 4 2127 2128 2123 2122 + f 4 -3394 3400 3401 3402 + mu 0 4 2125 2124 2129 2130 + f 4 -3403 3403 3404 3405 + mu 0 4 2125 2130 2131 2126 + f 4 -3405 3406 3407 -3397 + mu 0 4 2126 2131 2132 2127 + f 4 -3399 -3408 3408 3409 + mu 0 4 2128 2127 2132 2133 + f 4 -3402 3410 3411 3412 + mu 0 4 2130 2129 2134 2135 + f 4 -3404 -3413 3413 3414 + mu 0 4 2131 2130 2135 2136 + f 4 -3407 -3415 3415 3416 + mu 0 4 2132 2131 2136 2137 + f 4 3417 -3409 -3417 3418 + mu 0 4 2138 2133 2132 2137 + f 4 -3387 -3395 -3406 -3396 + mu 0 4 2121 2120 2125 2126 + f 4 3419 3420 3421 3422 + mu 0 4 2139 2140 2141 2142 + f 4 -3420 3423 3424 3425 + mu 0 4 2140 2139 2143 2144 + f 4 -3425 3426 3427 3428 + mu 0 4 2144 2143 2145 2146 + f 4 -3428 3429 3430 3431 + mu 0 4 2146 2145 2147 2148 + f 4 3432 3433 3434 -3412 + mu 0 4 2134 2149 2150 2135 + f 4 3435 3436 3437 3438 + mu 0 4 2150 2147 2151 2152 + f 4 3439 3440 -3419 3441 + mu 0 4 2153 2154 2138 2137 + f 4 -3442 -3416 3442 3443 + mu 0 4 2153 2137 2136 2152 + f 4 -3414 -3435 -3439 -3443 + mu 0 4 2136 2135 2150 2152 + f 4 -3424 -3423 3444 3445 + mu 0 4 2143 2139 2142 2151 + f 4 -3430 -3427 -3446 -3437 + mu 0 4 2147 2145 2143 2151 + f 4 -3445 3446 -3444 -3438 + mu 0 4 2151 2142 2153 2152 + f 4 -3431 -3436 -3434 3447 + mu 0 4 2148 2147 2150 2149 + f 4 -3447 -3422 3448 -3440 + mu 0 4 2153 2142 2141 2154 + f 4 3449 3450 3451 3452 + mu 0 4 2155 2156 2157 2158 + f 4 3453 3454 3455 3456 + mu 0 4 2159 2160 2161 2162 + f 4 3457 3458 -3454 3459 + mu 0 4 2163 2164 2160 2159 + f 4 3460 3461 3462 3463 + mu 0 4 2155 2163 2165 2166 + f 4 3464 3465 -3457 3466 + mu 0 4 2167 2168 2159 2162 + f 4 -3462 -3460 -3466 3467 + mu 0 4 2165 2163 2159 2168 + f 4 3468 3469 -3450 -3464 + mu 0 4 2166 2169 2156 2155 + f 4 -3465 3470 3471 3472 + mu 0 4 2168 2167 2170 2171 + f 4 3473 -3468 -3473 3474 + mu 0 4 2172 2165 2168 2171 + f 4 -3474 3475 3476 -3463 + mu 0 4 2165 2172 2173 2166 + f 4 3477 -3469 -3477 3478 + mu 0 4 2174 2169 2166 2173 + f 4 3479 3480 3481 -3472 + mu 0 4 2170 2175 2176 2171 + f 4 3482 -3475 -3482 3483 + mu 0 4 2177 2172 2171 2176 + f 4 -3476 -3483 3484 3485 + mu 0 4 2173 2172 2177 2178 + f 4 3486 3487 -3479 -3486 + mu 0 4 2178 2179 2174 2173 + f 4 -3481 3488 3489 3490 + mu 0 4 2176 2175 2180 2181 + f 4 3491 -3484 -3491 3492 + mu 0 4 2182 2177 2176 2181 + f 4 -3492 3493 3494 -3485 + mu 0 4 2177 2182 2183 2178 + f 4 -3487 -3495 3495 3496 + mu 0 4 2179 2178 2183 2184 + f 4 -3490 3497 3498 3499 + mu 0 4 2181 2180 2185 2186 + f 4 3500 -3493 -3500 3501 + mu 0 4 2187 2182 2181 2186 + f 4 -3494 -3501 3502 3503 + mu 0 4 2183 2182 2187 2188 + f 4 3504 -3496 -3504 3505 + mu 0 4 2189 2184 2183 2188 + f 4 3506 3507 3508 3509 + mu 0 4 2190 2191 2192 2193 + f 4 3510 3511 3512 3513 + mu 0 4 2194 2195 2196 2197 + f 4 3514 3515 -3511 3516 + mu 0 4 2198 2199 2195 2194 + f 4 -3515 3517 -3507 3518 + mu 0 4 2199 2198 2191 2190 + f 4 -3510 3519 3520 -3519 + mu 0 4 2190 2193 2200 2199 + f 4 3521 3522 3523 -3499 + mu 0 4 2185 2201 2202 2186 + f 4 3524 -3502 -3524 3525 + mu 0 4 2203 2187 2186 2202 + f 4 -3503 -3525 3526 3527 + mu 0 4 2188 2187 2203 2204 + f 4 3528 3529 -3506 -3528 + mu 0 4 2204 2205 2189 2188 + f 4 3530 -3523 3531 -3513 + mu 0 4 2196 2202 2201 2197 + f 4 3532 -3526 -3531 3533 + mu 0 4 2200 2203 2202 2196 + f 4 -3533 -3520 3534 -3527 + mu 0 4 2203 2200 2193 2204 + f 4 3535 -3529 -3535 -3509 + mu 0 4 2192 2205 2204 2193 + f 4 -3521 -3534 -3512 -3516 + mu 0 4 2199 2200 2196 2195 + f 4 3536 3537 3538 3539 + mu 0 4 2075 2206 2207 2208 + f 4 3540 3541 3542 -3538 + mu 0 4 2206 2158 2209 2207 + f 4 -3452 3543 3544 -3542 + mu 0 4 2158 2157 2210 2209 + f 4 -3540 3545 3546 -3321 + mu 0 4 2075 2208 2211 2076 + f 4 -3545 3547 3548 3549 + mu 0 4 2209 2210 2212 2213 + f 4 -3543 -3550 3550 3551 + mu 0 4 2207 2209 2213 2214 + f 4 -3539 -3552 3552 3553 + mu 0 4 2208 2207 2214 2215 + f 4 3554 -3546 -3554 3555 + mu 0 4 2216 2211 2208 2215 + f 4 3556 3557 3558 3559 + mu 0 4 2217 2218 2219 2220 + f 4 3560 -3560 3561 3562 + mu 0 4 2221 2217 2220 2222 + f 4 3563 -3563 3564 3565 + mu 0 4 2223 2221 2222 2224 + f 4 3566 3567 -3566 3568 + mu 0 4 2225 2226 2223 2224 + f 4 3569 3570 3571 -3549 + mu 0 4 2212 2227 2228 2213 + f 4 -3551 -3572 3572 3573 + mu 0 4 2214 2213 2228 2229 + f 4 -3553 -3574 3574 3575 + mu 0 4 2215 2214 2229 2230 + f 4 3576 3577 -3556 -3576 + mu 0 4 2230 2231 2216 2215 + f 4 -3571 3578 -3557 3579 + mu 0 4 2228 2227 2218 2217 + f 4 -3580 -3561 3580 -3573 + mu 0 4 2228 2217 2221 2229 + f 4 -3581 -3564 3581 -3575 + mu 0 4 2229 2221 2223 2230 + f 4 -3577 -3582 -3568 3582 + mu 0 4 2231 2230 2223 2226 + f 4 3583 3584 3585 3586 + mu 0 4 2232 2233 2234 2235 + f 4 -3584 3587 3588 3589 + mu 0 4 2233 2232 2236 2237 + f 4 -3589 3590 3591 3592 + mu 0 4 2237 2236 2238 2239 + f 4 -3592 3593 3594 3595 + mu 0 4 2239 2238 2240 2241 + f 4 3596 3597 3598 3599 + mu 0 4 2242 2234 2243 2244 + f 4 -3599 3600 3601 3602 + mu 0 4 2244 2243 2241 2245 + f 4 3603 -3586 -3597 3604 + mu 0 4 2246 2235 2234 2242 + f 4 3605 3606 -3602 -3595 + mu 0 4 2240 2247 2245 2241 + f 4 3607 -3605 3608 -3559 + mu 0 4 2219 2246 2242 2220 + f 4 -3562 -3609 -3600 3609 + mu 0 4 2222 2220 2242 2244 + f 4 -3565 -3610 -3603 3610 + mu 0 4 2224 2222 2244 2245 + f 4 -3607 3611 -3569 -3611 + mu 0 4 2245 2247 2225 2224 + f 4 -3585 -3590 3612 -3598 + mu 0 4 2234 2233 2237 2243 + f 4 -3593 -3596 -3601 -3613 + mu 0 4 2237 2239 2241 2243 + f 4 3613 -3331 3614 3615 + mu 0 4 2248 2084 2068 2249 + f 4 -3334 -3333 3616 3617 + mu 0 4 2086 2069 2085 2250 + f 4 3618 -3337 -3618 3619 + mu 0 4 2251 2088 2086 2250 + f 4 -3614 3620 3621 3622 + mu 0 4 2084 2248 2252 2253 + f 4 -3332 -3623 3623 3624 + mu 0 4 2085 2084 2253 2254 + f 4 -3617 -3625 3625 3626 + mu 0 4 2250 2085 2254 2255 + f 4 3627 -3620 -3627 3628 + mu 0 4 2256 2251 2250 2255 + f 4 3629 3630 3631 -3622 + mu 0 4 2252 2257 2258 2253 + f 4 -3624 -3632 3632 3633 + mu 0 4 2254 2253 2258 2259 + f 4 -3626 -3634 3634 3635 + mu 0 4 2255 2254 2259 2260 + f 4 3636 3637 -3629 -3636 + mu 0 4 2260 2261 2256 2255 + f 4 -3631 3638 3639 3640 + mu 0 4 2258 2257 2262 2263 + f 4 -3641 3641 3642 -3633 + mu 0 4 2258 2263 2264 2259 + f 4 -3643 3643 3644 -3635 + mu 0 4 2259 2264 2265 2260 + f 4 -3637 -3645 3645 3646 + mu 0 4 2261 2260 2265 2266 + f 4 -3640 3647 3648 3649 + mu 0 4 2263 2262 2267 2268 + f 4 3650 -3642 -3650 3651 + mu 0 4 2269 2264 2263 2268 + f 4 -3644 -3651 3652 3653 + mu 0 4 2265 2264 2269 2270 + f 4 3654 -3646 -3654 3655 + mu 0 4 2271 2266 2265 2270 + f 4 3656 3657 3658 3659 + mu 0 4 2272 2273 2274 2275 + f 4 -3657 3660 3661 3662 + mu 0 4 2273 2272 2276 2277 + f 4 -3662 3663 3664 3665 + mu 0 4 2277 2276 2278 2279 + f 4 -3665 3666 3667 3668 + mu 0 4 2279 2278 2280 2281 + f 4 3669 3670 3671 3672 + mu 0 4 2275 2282 2283 2284 + f 4 -3670 -3659 3673 3674 + mu 0 4 2282 2275 2274 2285 + f 4 3675 -3668 3676 3677 + mu 0 4 2286 2281 2280 2287 + f 4 -3677 3678 -3672 3679 + mu 0 4 2287 2280 2284 2283 + f 4 3680 -3678 3681 -3649 + mu 0 4 2267 2286 2287 2268 + f 4 -3652 -3682 -3680 3682 + mu 0 4 2269 2268 2287 2283 + f 4 -3653 -3683 -3671 3683 + mu 0 4 2270 2269 2283 2282 + f 4 -3675 3684 -3656 -3684 + mu 0 4 2282 2285 2271 2270 + f 4 -3661 -3660 -3673 3685 + mu 0 4 2276 2272 2275 2284 + f 4 -3667 -3664 -3686 -3679 + mu 0 4 2280 2278 2276 2284 + f 4 3686 3687 3688 3689 + mu 0 4 2288 2289 2290 2291 + f 4 -3687 3690 3691 3692 + mu 0 4 2289 2288 2292 2293 + f 4 3693 3694 -3692 3695 + mu 0 4 2294 2295 2293 2292 + f 4 3696 3697 3698 3699 + mu 0 4 2296 2297 2298 2299 + f 4 3700 3701 -3697 3702 + mu 0 4 2300 2301 2297 2296 + f 4 3703 3704 3705 3706 + mu 0 4 2300 2302 2303 2304 + f 4 3707 3708 3709 3710 + mu 0 4 2305 2302 2299 2306 + f 4 3711 3712 3713 3714 + mu 0 4 2307 2305 2308 2309 + f 4 -3713 -3711 3715 3716 + mu 0 4 2308 2305 2306 2310 + f 4 -3716 3717 3718 3719 + mu 0 4 2310 2306 2311 2312 + f 4 3720 -3718 -3710 -3699 + mu 0 4 2298 2311 2306 2299 + f 4 3721 -3705 -3708 -3712 + mu 0 4 2307 2303 2302 2305 + f 4 -3722 3722 3723 3724 + mu 0 4 2303 2313 2314 2315 + f 4 -3725 3725 3726 -3706 + mu 0 4 2303 2315 2316 2304 + f 4 -3690 3727 -3714 3728 + mu 0 4 2288 2291 2309 2308 + f 4 -3729 -3717 3729 -3691 + mu 0 4 2288 2308 2310 2292 + f 4 3730 -3696 -3730 -3720 + mu 0 4 2312 2294 2292 2310 + f 4 -3727 3731 -3701 -3707 + mu 0 4 2304 2316 2301 2300 + f 4 -3704 -3703 -3700 -3709 + mu 0 4 2302 2300 2296 2299 + f 4 3732 -3307 3733 3734 + mu 0 4 2317 2061 2064 2318 + f 4 -3694 3735 3736 3737 + mu 0 4 2319 2320 2321 2322 + f 4 3738 3739 3740 3741 + mu 0 4 2323 2324 2325 2326 + f 4 3742 3743 3744 3745 + mu 0 4 2327 2328 2325 2329 + f 4 3746 3747 3748 3749 + mu 0 4 2330 2328 2331 2332 + f 4 3750 3751 3752 3753 + mu 0 4 2333 2334 2335 2336 + f 4 3754 3755 3756 3757 + mu 0 4 2337 2338 2324 2335 + f 4 3758 3759 -3758 -3752 + mu 0 4 2334 2339 2337 2335 + f 4 3760 -3746 3761 3762 + mu 0 4 2340 2327 2329 2341 + f 4 3763 3764 3765 3766 + mu 0 4 2342 2343 2344 2345 + f 4 -3767 3767 3768 3769 + mu 0 4 2342 2345 2346 2347 + f 3 3770 3771 3772 + mu 0 3 2348 2343 2349 + f 3 3773 3774 3775 + mu 0 3 2349 2342 2350 + f 4 -3322 3776 3777 3778 + mu 0 4 2351 2352 2353 2354 + f 4 3779 3780 3781 3782 + mu 0 4 2347 2355 2356 2357 + f 4 -3770 3783 -3778 3784 + mu 0 4 2342 2347 2354 2353 + f 4 -3451 3785 -3773 3786 + mu 0 4 2358 2359 2348 2349 + f 4 3787 3788 3789 3790 + mu 0 4 2360 2361 2362 2363 + f 3 -3784 3791 3792 + mu 0 3 2354 2347 2364 + f 3 3793 -3781 3794 + mu 0 3 2365 2356 2355 + f 4 3795 3796 -3795 3797 + mu 0 4 2366 2367 2365 2355 + f 4 -3798 3798 3799 3800 + mu 0 4 2366 2355 2368 2369 + f 4 -3348 3801 3802 -3760 + mu 0 4 2339 2370 2371 2337 + f 4 3803 3804 3805 3806 + mu 0 4 2372 2368 2346 2373 + f 4 -3353 3807 3808 -3802 + mu 0 4 2370 2374 2369 2371 + f 4 -3809 -3800 -3804 3809 + mu 0 4 2371 2369 2368 2372 + f 4 -3330 3810 3811 3812 + mu 0 4 2375 2376 2377 2357 + f 4 -3383 -3779 3813 3814 + mu 0 4 2378 2351 2354 2379 + f 4 -3338 3815 -3796 3816 + mu 0 4 2380 2381 2367 2366 + f 4 -3794 3817 3818 3819 + mu 0 4 2356 2365 2382 2383 + f 4 -3797 3820 3821 -3818 + mu 0 4 2365 2367 2384 2382 + f 4 -3343 -3817 -3801 -3808 + mu 0 4 2374 2380 2366 2369 + f 4 -3799 -3780 -3769 -3805 + mu 0 4 2368 2355 2347 2346 + f 4 3822 3823 3824 3825 + mu 0 4 2385 2386 2344 2387 + f 4 3826 -3763 3827 3828 + mu 0 4 2388 2340 2341 2389 + f 4 -3826 3829 -3378 3830 + mu 0 4 2385 2387 2115 2114 + f 4 -3354 3831 -3761 3832 + mu 0 4 2390 2097 2327 2340 + f 4 -3833 -3827 3833 3834 + mu 0 4 2390 2340 2388 2391 + f 4 3835 -3829 3836 3837 + mu 0 4 2392 2388 2389 2393 + f 4 -3834 -3836 3838 -3371 + mu 0 4 2391 2388 2392 2394 + f 4 3839 -3813 -3782 3840 + mu 0 4 2395 2375 2357 2356 + f 4 3841 3842 3843 3844 + mu 0 4 2396 2397 2379 2398 + f 4 3845 3846 3847 -3845 + mu 0 4 2398 2377 2399 2396 + f 4 3848 3849 -3842 3850 + mu 0 4 2400 2401 2397 2396 + f 4 -3848 3851 3852 -3851 + mu 0 4 2396 2399 2402 2400 + f 4 3853 3854 3855 -3849 + mu 0 4 2400 2403 2404 2401 + f 4 3856 3857 -3854 -3853 + mu 0 4 2402 2405 2403 2400 + f 4 3858 3859 -3855 3860 + mu 0 4 2406 2407 2404 2403 + f 4 -3858 3861 3862 -3861 + mu 0 4 2403 2405 2408 2406 + f 4 -3863 3863 3864 3865 + mu 0 4 2406 2408 2409 2410 + f 4 3866 -3859 -3866 3867 + mu 0 4 2411 2407 2406 2410 + f 4 3868 3869 3870 3871 + mu 0 4 2412 2413 2414 2415 + f 4 3872 3873 3874 -3870 + mu 0 4 2413 2416 2417 2414 + f 4 -3384 -3815 -3843 3875 + mu 0 4 2418 2378 2379 2397 + f 4 -3391 3876 -3847 -3811 + mu 0 4 2376 2419 2399 2377 + f 4 -3393 -3876 -3850 3877 + mu 0 4 2420 2418 2397 2401 + f 4 -3400 3878 -3852 -3877 + mu 0 4 2419 2421 2402 2399 + f 4 -3401 -3878 -3856 3879 + mu 0 4 2422 2420 2401 2404 + f 4 -3410 3880 -3857 -3879 + mu 0 4 2421 2423 2405 2402 + f 4 -3411 -3880 -3860 3881 + mu 0 4 2424 2422 2404 2407 + f 4 -3418 3882 -3862 -3881 + mu 0 4 2423 2425 2408 2405 + f 4 -3426 3883 -3875 3884 + mu 0 4 2426 2427 2414 2417 + f 4 -3429 3885 -3871 -3884 + mu 0 4 2427 2428 2415 2414 + f 4 -3449 3886 3887 3888 + mu 0 4 2429 2430 2416 2409 + f 4 -3433 -3882 -3867 3889 + mu 0 4 2431 2424 2407 2411 + f 4 -3432 3890 -3872 -3886 + mu 0 4 2428 2432 2412 2415 + f 4 -3421 -3885 -3874 -3887 + mu 0 4 2430 2426 2417 2416 + f 4 -3865 -3888 -3873 3891 + mu 0 4 2410 2409 2416 2413 + f 4 -3441 -3889 -3864 -3883 + mu 0 4 2425 2429 2409 2408 + f 4 -3868 -3892 -3869 3892 + mu 0 4 2411 2410 2413 2412 + f 4 -3448 -3890 -3893 -3891 + mu 0 4 2432 2431 2411 2412 + f 4 -3470 3893 3894 -3786 + mu 0 4 2359 2433 2434 2348 + f 4 -3456 3895 -3790 3896 + mu 0 4 2435 2436 2363 2362 + f 4 3897 3898 3899 -3789 + mu 0 4 2361 2437 2438 2362 + f 4 3900 3901 3902 -3899 + mu 0 4 2437 2439 2440 2438 + f 4 3903 3904 3905 -3901 + mu 0 4 2437 2434 2441 2439 + f 4 3906 3907 3908 -3902 + mu 0 4 2439 2442 2443 2440 + f 4 -3906 3909 3910 -3907 + mu 0 4 2439 2441 2444 2442 + f 4 3911 3912 3913 -3908 + mu 0 4 2442 2445 2446 2443 + f 4 3914 3915 -3912 -3911 + mu 0 4 2444 2447 2445 2442 + f 4 3916 3917 3918 -3913 + mu 0 4 2445 2448 2449 2446 + f 4 -3916 3919 3920 -3917 + mu 0 4 2445 2447 2450 2448 + f 4 3921 3922 3923 3924 + mu 0 4 2451 2452 2453 2454 + f 4 3925 3926 3927 -3922 + mu 0 4 2451 2455 2456 2452 + f 4 3928 3929 3930 -3918 + mu 0 4 2448 2457 2458 2449 + f 4 -3921 3931 3932 -3929 + mu 0 4 2448 2450 2459 2457 + f 4 3933 -3925 3934 -3930 + mu 0 4 2457 2451 2454 2458 + f 4 3935 -3926 -3934 -3933 + mu 0 4 2459 2455 2451 2457 + f 4 -3467 -3897 -3900 3936 + mu 0 4 2460 2435 2362 2438 + f 4 -3471 -3937 -3903 3937 + mu 0 4 2461 2460 2438 2440 + f 4 -3478 3938 -3905 -3894 + mu 0 4 2433 2462 2441 2434 + f 4 -3480 -3938 -3909 3939 + mu 0 4 2463 2461 2440 2443 + f 4 -3488 3940 -3910 -3939 + mu 0 4 2462 2464 2444 2441 + f 4 -3489 -3940 -3914 3941 + mu 0 4 2465 2463 2443 2446 + f 4 -3497 3942 -3915 -3941 + mu 0 4 2464 2466 2447 2444 + f 4 -3498 -3942 -3919 3943 + mu 0 4 2467 2465 2446 2449 + f 4 -3505 3944 -3920 -3943 + mu 0 4 2466 2468 2450 2447 + f 4 3945 -3517 3946 -3923 + mu 0 4 2452 2469 2470 2453 + f 4 -3518 -3946 -3928 3947 + mu 0 4 2471 2469 2452 2456 + f 4 -3514 3948 -3924 -3947 + mu 0 4 2470 2472 2454 2453 + f 4 -3522 -3944 -3931 3949 + mu 0 4 2473 2467 2449 2458 + f 4 -3530 3950 -3932 -3945 + mu 0 4 2468 2474 2459 2450 + f 4 -3532 -3950 -3935 -3949 + mu 0 4 2472 2473 2458 2454 + f 4 -3536 3951 -3936 -3951 + mu 0 4 2474 2475 2455 2459 + f 4 -3508 -3948 -3927 -3952 + mu 0 4 2475 2471 2456 2455 + f 4 -3544 -3787 3952 3953 + mu 0 4 2476 2358 2349 2477 + f 4 -3547 3954 3955 -3777 + mu 0 4 2352 2478 2479 2353 + f 4 3956 3957 3958 3959 + mu 0 4 2480 2481 2477 2482 + f 4 3960 3961 3962 -3960 + mu 0 4 2482 2479 2483 2480 + f 4 3963 3964 3965 3966 + mu 0 4 2484 2485 2486 2487 + f 4 3967 3968 3969 -3967 + mu 0 4 2487 2488 2489 2484 + f 4 3970 3971 -3957 3972 + mu 0 4 2490 2491 2481 2480 + f 4 -3963 3973 3974 -3973 + mu 0 4 2480 2483 2492 2490 + f 4 3975 -3966 3976 -3971 + mu 0 4 2490 2487 2486 2491 + f 4 3977 -3968 -3976 -3975 + mu 0 4 2492 2488 2487 2490 + f 4 3978 3979 3980 3981 + mu 0 4 2493 2494 2495 2496 + f 4 3982 3983 -3981 3984 + mu 0 4 2497 2498 2496 2495 + f 4 -3980 3985 -3964 3986 + mu 0 4 2495 2494 2485 2484 + f 4 -3970 3987 -3985 -3987 + mu 0 4 2484 2489 2497 2495 + f 4 -3982 3988 3989 3990 + mu 0 4 2493 2496 2499 2500 + f 4 -3984 3991 3992 -3989 + mu 0 4 2496 2498 2501 2499 + f 4 -3548 -3954 -3958 3993 + mu 0 4 2502 2476 2477 2481 + f 4 -3555 3994 -3962 -3955 + mu 0 4 2478 2503 2483 2479 + f 4 -3558 3995 -3965 3996 + mu 0 4 2504 2505 2486 2485 + f 4 -3567 3997 -3969 3998 + mu 0 4 2506 2507 2489 2488 + f 4 -3570 -3994 -3972 3999 + mu 0 4 2508 2502 2481 2491 + f 4 -3578 4000 -3974 -3995 + mu 0 4 2503 2509 2492 2483 + f 4 -3579 -4000 -3977 -3996 + mu 0 4 2505 2508 2491 2486 + f 4 -3583 -3999 -3978 -4001 + mu 0 4 2509 2506 2488 2492 + f 4 -3588 4001 -3990 4002 + mu 0 4 2510 2511 2500 2499 + f 4 -3591 -4003 -3993 4003 + mu 0 4 2512 2510 2499 2501 + f 4 -3604 4004 -3979 4005 + mu 0 4 2513 2514 2494 2493 + f 4 -3608 -3997 -3986 -4005 + mu 0 4 2514 2504 2485 2494 + f 4 -3612 4006 -3988 -3998 + mu 0 4 2507 2515 2497 2489 + f 4 -3587 -4006 -3991 -4002 + mu 0 4 2511 2513 2493 2500 + f 4 -3594 -4004 -3992 4007 + mu 0 4 2516 2512 2501 2498 + f 4 -3606 -4008 -3983 -4007 + mu 0 4 2515 2516 2498 2497 + f 4 4008 4009 -3819 4010 + mu 0 4 2517 2518 2383 2382 + f 4 -3822 4011 4012 -4011 + mu 0 4 2382 2384 2519 2517 + f 4 4013 4014 -4009 4015 + mu 0 4 2520 2521 2518 2517 + f 4 -4013 4016 4017 -4016 + mu 0 4 2517 2519 2522 2520 + f 4 4018 4019 4020 -4014 + mu 0 4 2520 2523 2524 2521 + f 4 4021 4022 -4019 -4018 + mu 0 4 2522 2525 2523 2520 + f 4 4023 4024 -4020 4025 + mu 0 4 2526 2527 2524 2523 + f 4 -4023 4026 4027 -4026 + mu 0 4 2523 2525 2528 2526 + f 4 4028 4029 4030 4031 + mu 0 4 2529 2530 2531 2532 + f 4 -4031 4032 4033 4034 + mu 0 4 2532 2531 2533 2534 + f 4 -4033 4035 4036 4037 + mu 0 4 2533 2531 2535 2536 + f 4 -4030 4038 4039 -4036 + mu 0 4 2531 2530 2537 2535 + f 4 -4035 4040 -4024 4041 + mu 0 4 2532 2534 2527 2526 + f 4 -4028 4042 -4032 -4042 + mu 0 4 2526 2528 2529 2532 + f 4 -3619 4043 -3821 -3816 + mu 0 4 2381 2538 2384 2367 + f 4 -3621 4044 -4010 4045 + mu 0 4 2539 2540 2383 2518 + f 4 -3628 4046 -4012 -4044 + mu 0 4 2538 2541 2519 2384 + f 4 -3630 -4046 -4015 4047 + mu 0 4 2542 2539 2518 2521 + f 4 -3638 4048 -4017 -4047 + mu 0 4 2541 2543 2522 2519 + f 4 -3639 -4048 -4021 4049 + mu 0 4 2544 2542 2521 2524 + f 4 -3647 4050 -4022 -4049 + mu 0 4 2543 2545 2525 2522 + f 4 -3648 -4050 -4025 4051 + mu 0 4 2546 2544 2524 2527 + f 4 -3655 4052 -4027 -4051 + mu 0 4 2545 2547 2528 2525 + f 4 -3674 4053 -4029 4054 + mu 0 4 2548 2549 2530 2529 + f 4 -3676 4055 -4034 4056 + mu 0 4 2550 2551 2534 2533 + f 4 -3669 -4057 -4038 4057 + mu 0 4 2552 2550 2533 2536 + f 4 -3658 4058 -4039 -4054 + mu 0 4 2549 2553 2537 2530 + f 4 -3681 -4052 -4041 -4056 + mu 0 4 2551 2546 2527 2534 + f 4 -3685 -4055 -4043 -4053 + mu 0 4 2547 2548 2529 2528 + f 4 4059 4060 4061 4062 + mu 0 4 2554 2555 2556 2557 + f 4 -4063 4063 -3737 4064 + mu 0 4 2554 2557 2322 2321 + f 4 4065 4066 -4061 4067 + mu 0 4 2558 2559 2556 2555 + f 4 4068 4069 4070 -4060 + mu 0 4 2554 2560 2561 2555 + f 4 -4069 -4065 4071 4072 + mu 0 4 2560 2554 2321 2562 + f 4 4073 4074 4075 4076 + mu 0 4 2314 2563 2561 2564 + f 4 4077 4078 -4076 -4070 + mu 0 4 2560 2565 2564 2561 + f 4 -4078 -4073 4079 4080 + mu 0 4 2565 2560 2562 2566 + f 4 4081 4082 4083 -4079 + mu 0 4 2565 2567 2568 2564 + f 4 -3724 -4077 -4084 4084 + mu 0 4 2315 2314 2564 2568 + f 4 -4082 -4081 4085 4086 + mu 0 4 2567 2565 2566 2569 + f 4 4087 4088 4089 -4083 + mu 0 4 2567 2570 2571 2568 + f 4 -3726 -4085 -4090 4090 + mu 0 4 2316 2315 2568 2571 + f 4 -4088 -4087 4091 4092 + mu 0 4 2570 2567 2569 2572 + f 4 -3731 4093 -4072 -3736 + mu 0 4 2320 2573 2562 2321 + f 4 -3698 4094 -4092 4095 + mu 0 4 2574 2575 2572 2569 + f 4 4096 -4093 -4095 -3702 + mu 0 4 2576 2570 2572 2575 + f 4 -3715 4097 -4074 -3723 + mu 0 4 2313 2577 2563 2314 + f 4 -3719 4098 -4080 -4094 + mu 0 4 2573 2578 2566 2562 + f 4 -3721 -4096 -4086 -4099 + mu 0 4 2578 2574 2569 2566 + f 4 -3728 4099 4100 -4098 + mu 0 4 2577 2579 2558 2563 + f 4 -3689 4101 -4066 -4100 + mu 0 4 2579 2580 2559 2558 + f 4 -3756 4102 4103 -3740 + mu 0 4 2324 2338 2581 2325 + f 4 4104 -3342 -3301 4105 + mu 0 4 2101 2070 2059 2058 + f 3 4106 -3368 4107 + mu 0 3 2317 2106 2105 + f 4 -3810 4108 -3755 -3803 + mu 0 4 2371 2372 2338 2337 + f 4 4109 4110 4111 -3459 + mu 0 4 2164 2062 2065 2160 + f 3 -3458 -3461 4112 + mu 0 3 2164 2163 2155 + f 4 4113 4114 -3305 -4110 + mu 0 4 2164 2102 2063 2062 + f 4 -3807 4115 -4103 -4109 + mu 0 4 2372 2373 2581 2338 + f 4 -3359 -4106 -3311 -4115 + mu 0 4 2102 2101 2058 2063 + f 4 4116 -3327 -3840 -3615 + mu 0 4 2068 2081 2080 2249 + f 4 -3806 -3768 4117 4118 + mu 0 4 2373 2346 2345 2582 + f 4 -4119 4119 4120 -4116 + mu 0 4 2373 2582 2329 2581 + f 4 -3732 -4091 -4089 -4097 + mu 0 4 2576 2316 2571 2570 + f 4 -3296 4121 -3751 4122 + mu 0 4 2051 2054 2583 2584 + f 4 -3747 4123 -3741 -3744 + mu 0 4 2328 2330 2326 2325 + f 3 -4104 -4121 -3745 + mu 0 3 2325 2581 2329 + f 4 -3753 -3757 -3739 4124 + mu 0 4 2336 2335 2324 2323 + f 4 4125 4126 -3837 4127 + mu 0 4 2385 2585 2393 2389 + f 4 -3823 -4128 -3828 4128 + mu 0 4 2386 2385 2389 2341 + f 4 -3835 -3370 -3363 -3355 + mu 0 4 2098 2107 2103 2099 + f 4 -3373 4129 -3374 -3364 + mu 0 4 2103 2109 2110 2067 + f 4 -3663 4130 -4040 -4059 + mu 0 4 2553 2586 2535 2537 + f 4 -3666 -4058 -4037 -4131 + mu 0 4 2586 2552 2536 2535; + setAttr ".fc[2000:2267]" + f 4 -3749 4131 4132 4133 + mu 0 4 2332 2331 2104 2587 + f 4 -3366 -4132 4134 -3357 + mu 0 4 2100 2104 2331 2097 + f 4 4135 -4129 -3762 -4120 + mu 0 4 2582 2386 2341 2329 + f 4 -3303 -3350 4136 4137 + mu 0 4 2057 2060 2096 2588 + f 4 -3312 -4138 4138 -3734 + mu 0 4 2064 2057 2588 2318 + f 4 -3733 -4108 4139 4140 + mu 0 4 2061 2317 2105 2066 + f 4 -3356 -3365 -4140 -3367 + mu 0 4 2100 2099 2066 2105 + f 4 -3299 4141 4142 4143 + mu 0 4 2589 2590 2591 2592 + f 4 4144 4145 4146 -4124 + mu 0 4 2593 2594 2595 2596 + f 4 4147 -4134 4148 4149 + mu 0 4 2597 2598 2599 2600 + f 4 4150 4151 -4123 4152 + mu 0 4 2601 2602 2603 2604 + f 4 -4152 4153 -4142 -3293 + mu 0 4 2603 2602 2591 2590 + f 4 4154 -3280 4155 -4146 + mu 0 4 2594 2023 2049 2595 + f 4 -4151 4156 -3258 4157 + mu 0 4 2602 2601 2039 2042 + f 4 -4157 4158 -3198 -3212 + mu 0 4 2005 2605 1995 1994 + f 4 -4153 -3754 4159 -4159 + mu 0 4 2605 2606 2607 1995 + f 4 -3199 -4160 -4125 4160 + mu 0 4 1996 1995 2607 2608 + f 4 -4145 -3750 -4148 4161 + mu 0 4 2594 2593 2598 2597 + f 4 -3200 4162 -4156 -3276 + mu 0 4 1993 1996 2595 2049 + f 4 -4161 -3742 -4147 -4163 + mu 0 4 1996 2608 2596 2595 + f 4 4163 -3239 4164 -4150 + mu 0 4 2600 2026 2024 2597 + f 4 -3236 -4155 -4162 -4165 + mu 0 4 2024 2023 2594 2597 + f 4 -3269 4165 -4143 4166 + mu 0 4 2044 2011 2592 2591 + f 4 -4158 -3263 -4167 -4154 + mu 0 4 2602 2042 2044 2591 + f 4 -4164 4167 4168 -3259 + mu 0 4 2026 2600 2609 2010 + f 4 -4149 4169 4170 -4168 + mu 0 4 2600 2599 2610 2609 + f 4 -4133 -3369 4171 -4170 + mu 0 4 2587 2104 2106 2611 + f 4 4172 4173 4174 4175 + mu 0 4 2612 2613 1991 2614 + f 4 4176 4177 -4176 4178 + mu 0 4 1269 2615 2612 2614 + f 4 4179 4180 4181 4182 + mu 0 4 2616 2617 2618 2619 + f 3 4183 4184 4185 + mu 0 3 2620 2621 2622 + f 4 4186 4187 -2030 4188 + mu 0 4 2623 2624 1280 1279 + f 4 4189 4190 4191 4192 + mu 0 4 2625 2626 2627 2628 + f 4 4193 4194 4195 -4180 + mu 0 4 2616 2629 2630 2617 + f 4 4196 4197 4198 -4185 + mu 0 4 2631 2632 2633 2634 + f 4 4199 -4190 4200 4201 + mu 0 4 2635 2626 2625 2636 + f 4 4202 4203 4204 4205 + mu 0 4 2637 2638 2639 2640 + f 4 -4183 4206 4207 4208 + mu 0 4 2616 2619 2624 2641 + f 4 -2055 -3145 4209 4210 + mu 0 4 2642 2643 2644 2645 + f 4 -2058 4211 -4182 4212 + mu 0 4 1303 1304 2619 2618 + f 4 4213 -2060 -4211 4214 + mu 0 4 2646 2647 2642 2645 + f 4 4215 4216 -4206 4217 + mu 0 4 2648 2649 2650 2651 + f 4 4218 4219 4220 -4192 + mu 0 4 2627 2641 2652 2628 + f 4 -4208 -4187 4221 -4220 + mu 0 4 2641 2624 2623 2652 + f 4 4222 4223 4224 4225 + mu 0 4 2653 2654 2655 2656 + f 3 4226 4227 4228 + mu 0 3 2657 2658 2659 + f 4 4229 4230 4231 4232 + mu 0 4 2660 2661 2662 2663 + f 4 4233 4234 4235 -3228 + mu 0 4 2016 2657 2660 2017 + f 4 -4229 4236 -4230 -4235 + mu 0 4 2657 2659 2661 2660 + f 4 4237 -4234 -3226 4238 + mu 0 4 2664 2657 2016 2015 + f 4 4239 4240 4241 4242 + mu 0 4 2665 2666 2664 2667 + f 4 4243 4244 4245 4246 + mu 0 4 2668 2669 2670 2671 + f 4 4247 -3207 4248 4249 + mu 0 4 2672 2001 2002 2673 + f 4 -4248 4250 4251 -3268 + mu 0 4 2046 2674 2669 2045 + f 4 -4252 -4244 4252 -3266 + mu 0 4 2045 2669 2668 2034 + f 4 -4236 -4233 4253 -3271 + mu 0 4 2017 2660 2663 2047 + f 4 -4243 4254 -4247 4255 + mu 0 4 2665 2667 2668 2671 + f 4 4256 4257 4258 -4232 + mu 0 4 2662 2675 2673 2663 + f 4 4259 -4250 -4258 4260 + mu 0 4 2676 2672 2673 2675 + f 4 -4225 4261 4262 4263 + mu 0 4 2677 2678 2679 2680 + f 4 -2111 -4188 -4207 -4212 + mu 0 4 1304 1280 2624 2619 + f 4 -4251 -4260 4264 -4245 + mu 0 4 2669 2674 2681 2670 + f 4 -4227 -4238 -4241 4265 + mu 0 4 2658 2657 2664 2666 + f 4 -2117 4266 4267 4268 + mu 0 4 2682 2683 2684 2685 + f 4 -4198 4269 -4216 4270 + mu 0 4 2686 2687 2688 2689 + f 4 4271 4272 4273 4274 + mu 0 4 1466 2690 2691 2692 + f 4 -2358 -4275 4275 -2124 + mu 0 4 102 1466 2692 1352 + f 4 -4273 -2371 4276 4277 + mu 0 4 2691 2690 2693 2694 + f 4 -2354 4278 4279 -4277 + mu 0 4 2693 2695 2696 2694 + f 4 4280 4281 4282 4283 + mu 0 4 2697 2698 2699 2700 + f 4 -4194 -4209 -4219 4284 + mu 0 4 2629 2616 2641 2627 + f 4 4285 4286 -4202 4287 + mu 0 4 2701 2702 2635 2636 + f 4 4288 -4263 4289 4290 + mu 0 4 2703 2680 2679 2704 + f 4 -4281 4291 -4279 -2366 + mu 0 4 2698 2697 2696 2695 + f 4 4292 -3249 -4253 -4255 + mu 0 4 2667 2032 2034 2668 + f 4 -4249 -3288 -4254 -4259 + mu 0 4 2673 2002 2047 2663 + f 4 -4101 -4068 -4071 -4075 + mu 0 4 2563 2558 2555 2561 + f 4 -3616 -3841 -3820 -4045 + mu 0 4 2540 2395 2356 2383 + f 4 -3812 -3846 4293 4294 + mu 0 4 2357 2377 2398 2364 + f 4 -3956 -3961 4295 4296 + mu 0 4 2353 2479 2482 2350 + f 4 -3793 -4294 -3844 -3814 + mu 0 4 2354 2364 2398 2379 + f 4 -3895 -3904 -3898 4297 + mu 0 4 2348 2434 2437 2361 + f 4 -3776 -4296 -3959 -3953 + mu 0 4 2349 2350 2482 2477 + f 4 -3765 4298 4299 -3825 + mu 0 4 2344 2343 2360 2387 + f 4 -4300 -3791 4300 -3830 + mu 0 4 2387 2360 2363 2115 + f 4 4301 -3379 -4301 -3896 + mu 0 4 2436 2112 2115 2363 + f 4 -3455 -4112 -3316 -4302 + mu 0 4 2161 2160 2065 2071 + f 4 -4126 -3831 -3381 4302 + mu 0 4 2585 2385 2114 2117 + f 4 -4118 -3766 -3824 -4136 + mu 0 4 2582 2345 2344 2386 + f 4 -4299 -3771 -4298 -3788 + mu 0 4 2360 2343 2348 2361 + f 3 -3785 -4297 -3775 + mu 0 3 2342 2353 2350 + f 3 -3783 -4295 -3792 + mu 0 3 2347 2357 2364 + f 4 4303 -3345 -3759 -4122 + mu 0 4 2054 2093 2092 2583 + f 4 4304 4305 -3167 -3147 + mu 0 4 1964 2705 1980 1965 + f 4 4306 4307 4308 4309 + mu 0 4 2706 2707 2708 1969 + f 4 -2681 4310 4311 -2662 + mu 0 4 1663 1637 2709 1664 + f 4 -2706 -2664 4312 -3100 + mu 0 4 1687 1662 1665 1927 + f 4 -2659 4313 -4311 -2625 + mu 0 4 1638 1661 2709 1637 + f 4 -2506 -2568 -2498 -2526 + mu 0 4 1577 1576 1571 1546 + f 4 4314 -2574 -2387 -2578 + mu 0 4 1612 1583 1498 1497 + f 4 -4293 -4242 -4239 -3246 + mu 0 4 2032 2667 2664 2015 + f 4 -3178 4315 4316 4317 + mu 0 4 1987 1986 1952 2710 + f 4 -3154 -3191 -4318 4318 + mu 0 4 1972 1971 1987 2710 + f 4 4319 -3181 -3188 -4174 + mu 0 4 2613 1986 1989 1991 + f 4 -2488 -2524 -4315 4320 + mu 0 4 1565 1564 1583 1612 + f 4 4321 -2592 4322 -2379 + mu 0 4 1490 1602 1611 1485 + f 3 4323 -2656 4324 + mu 0 3 1728 1660 1658 + f 3 4325 -2658 4326 + mu 0 3 1812 1661 1660 + f 4 -4314 4327 -3028 4328 + mu 0 4 2709 1661 1858 1898 + f 4 -4312 -4329 -3031 4329 + mu 0 4 1664 2709 1898 1892 + f 4 -2663 -4330 -3020 4330 + mu 0 4 1665 1664 1892 1891 + f 4 -4313 -4331 -3102 4331 + mu 0 4 1927 1665 1891 1895 + f 4 -3101 -4332 -3024 4332 + mu 0 4 1867 1927 1895 1865 + f 4 -2974 4333 -2975 -4333 + mu 0 4 1865 1866 1673 1867 + f 4 4334 -2676 -4334 -3096 + mu 0 4 1778 1671 1673 1866 + f 4 4335 -2673 -4335 -2837 + mu 0 4 1675 1656 1671 1778 + f 4 4336 -2651 -4336 -2677 + mu 0 4 1674 1653 1656 1675 + f 4 -2767 4337 -2665 -4337 + mu 0 4 1674 1731 1666 1653 + f 4 -2775 4338 -2668 -4338 + mu 0 4 1731 1736 1668 1666 + f 4 4339 -3097 -4339 -2786 + mu 0 4 1744 1657 1926 1745 + f 4 -2785 4340 -2652 -4340 + mu 0 4 1744 1719 1658 1657 + f 4 -3375 4341 -3695 4342 + mu 0 4 2111 2110 2293 2295 + f 4 -4343 -3738 4343 -3380 + mu 0 4 2116 2319 2322 2117 + f 4 4344 -4303 -4344 -4064 + mu 0 4 2557 2585 2117 2322 + f 4 -4127 -4345 -4062 4345 + mu 0 4 2393 2585 2557 2556 + f 4 4346 -3838 -4346 -4067 + mu 0 4 2559 2392 2393 2556 + f 4 -3839 -4347 -4102 4347 + mu 0 4 2394 2392 2559 2580 + f 4 -3372 -4348 -3688 4348 + mu 0 4 2109 2108 2290 2289 + f 4 -4349 -3693 -4342 -4130 + mu 0 4 2109 2289 2293 2110 + f 3 -3119 4349 -3136 + mu 0 3 1945 1944 1953 + f 4 -3124 4350 -4317 -3131 + mu 0 4 1948 1947 2710 1952 + f 3 -4325 -4341 -2761 + mu 0 3 1728 1658 1719 + f 3 -2824 4351 -4324 + mu 0 3 1728 1770 1660 + f 3 -4327 -4352 -2895 + mu 0 3 1812 1660 1770 + f 3 -2964 -4328 -4326 + mu 0 3 1812 1858 1661 + f 3 -2967 -3033 -3029 + mu 0 3 1858 1860 1899 + f 3 -2973 -2995 4352 + mu 0 3 1866 1862 1876 + f 3 -2991 -3094 -4353 + mu 0 3 1876 1817 1866 + f 3 -3095 -2910 4353 + mu 0 3 1778 1816 1822 + f 3 -2907 -2835 -4354 + mu 0 3 1822 1774 1778 + f 3 -2836 -2838 4354 + mu 0 3 1675 1777 1779 + f 3 -2678 -4355 -2844 + mu 0 3 1676 1675 1779 + f 3 -2680 -2788 -2768 + mu 0 3 1674 1677 1732 + f 3 -2570 -4321 -2577 + mu 0 3 1526 1565 1612 + f 4 4355 4356 -2571 -2483 + mu 0 4 1559 2711 2712 1561 + f 4 4357 -4356 -2480 4358 + mu 0 4 2713 2711 1559 1544 + f 4 4359 4360 -4359 -2462 + mu 0 4 1543 1563 2713 1544 + f 4 -2500 -2530 -2486 -4360 + mu 0 4 1543 1572 1541 1563 + f 4 -2572 4361 -2375 -4323 + mu 0 4 1611 1610 1486 1485 + f 4 4362 -2505 -4362 -4357 + mu 0 4 2711 1573 1575 2712 + f 4 -4358 4363 -2591 -4363 + mu 0 4 2711 2713 1579 1573 + f 4 -2510 -4364 -4361 -2487 + mu 0 4 1459 1579 2713 1563 + f 3 -2455 -2551 -4322 + mu 0 3 1490 1538 1602 + f 4 -2348 -2372 -4272 -2587 + mu 0 4 2714 2715 2716 2717 + f 4 -3289 -3290 -3238 -3287 + mu 0 4 2037 2048 2021 2025 + f 4 4364 -4166 -3221 -4169 + mu 0 4 2609 2592 2011 2010 + f 4 4365 -4144 -4365 -4171 + mu 0 4 2610 2589 2592 2609 + f 4 -3297 -4366 -4172 4366 + mu 0 4 2056 2055 2611 2106 + f 4 4367 -3298 4368 -4139 + mu 0 4 2588 2053 2056 2318 + f 4 -3743 -3832 -4135 -3748 + mu 0 4 2328 2327 2097 2331 + f 3 -3764 -3774 -3772 + mu 0 3 2343 2342 2349 + f 4 -3304 -4141 -3308 -4111 + mu 0 4 2062 2061 2066 2065 + f 4 -4369 -4367 -4107 -3735 + mu 0 4 2318 2056 2106 2317 + f 4 -3295 -4368 -4137 4369 + mu 0 4 2054 2053 2588 2096 + f 3 -4370 -3349 -4304 + mu 0 3 2054 2096 2093 + f 4 -4113 -3453 4370 -4114 + mu 0 4 2164 2155 2158 2102 + f 3 -4371 -3541 4371 + mu 0 3 2102 2158 2206 + f 3 -3360 -4372 -3537 + mu 0 3 2075 2102 2206 + f 3 -3323 4372 -3358 + mu 0 3 2074 2077 2101 + f 3 4373 -4373 -3361 + mu 0 3 2081 2101 2077 + f 4 -3315 -4105 -4374 -4117 + mu 0 4 2068 2070 2101 2081 + f 3 -3286 -3250 -3255 + mu 0 3 2038 2035 2033 + f 4 -2816 4374 -2819 -2794 + mu 0 4 2718 2719 1767 1751 + f 4 -2818 -2799 -2821 -4375 + mu 0 4 2719 1752 1755 1767 + f 4 4375 4376 4377 -3120 + mu 0 4 1945 1985 2720 1946 + f 4 4378 4379 -4291 -4204 + mu 0 4 2721 2722 2723 2724 + f 4 -4267 -2231 -4214 4380 + mu 0 4 2684 2683 2647 2646 + f 4 -4175 -3187 -2233 4381 + mu 0 4 2614 1991 642 1385 + f 4 -2374 -2588 -2356 -2234 + mu 0 4 123 2725 1465 105 + f 4 -2589 -2373 -2376 -2504 + mu 0 4 2726 2727 2728 1575 + f 4 -4283 -2364 -2236 4382 + mu 0 4 2700 2699 2729 2730 + f 4 -4268 4383 -4286 4384 + mu 0 4 2685 2684 2702 2701 + f 4 4385 -4384 -4381 4386 + mu 0 4 2731 2732 2733 2734 + f 4 -4215 4387 4388 -4387 + mu 0 4 2735 2736 2737 2738 + f 4 4389 4390 -4388 -4210 + mu 0 4 2739 2740 2737 2736 + f 4 4391 4392 -4390 -3144 + mu 0 4 2741 2742 2743 2744 + f 3 4393 4394 4395 + mu 0 3 2745 2630 2746 + f 4 -2365 -4282 -2368 -2461 + mu 0 4 1471 1473 2747 2748 + f 4 4396 -3112 4397 -3113 + mu 0 4 1931 1935 1937 1938 + f 4 4398 -3109 -4397 -3104 + mu 0 4 1930 1932 1935 1931 + f 4 4399 -3138 -4399 -3140 + mu 0 4 1957 1955 1932 1930 + f 4 4400 -3174 -4400 -3194 + mu 0 4 1983 1982 1955 1957 + f 4 -3170 -4401 -3171 4401 + mu 0 4 1978 1982 1983 1975 + f 4 -3164 -4402 -3161 4402 + mu 0 4 1979 1978 1975 1966 + f 4 -4403 -3151 4403 -3189 + mu 0 4 1979 1966 1968 1992 + f 4 4404 -4308 4405 -4305 + mu 0 4 1964 2708 2707 2705 + f 3 -3152 -4309 4406 + mu 0 3 1970 1969 2708 + f 4 -2262 -3195 4407 -3184 + mu 0 4 640 646 1973 1990 + f 4 4408 4409 -4310 -3155 + mu 0 4 1972 2720 2706 1969 + f 4 -3116 -3121 4410 -3123 + mu 0 4 1942 1941 1946 1947 + f 4 4411 -3128 -3107 -3133 + mu 0 4 1953 1940 1934 1933 + f 4 -3122 -3115 -4412 -4350 + mu 0 4 1944 1941 1940 1953 + f 4 -4307 4412 -3190 4413 + mu 0 4 2707 2706 1984 1992 + f 4 -4404 4414 -4406 -4414 + mu 0 4 1992 1968 2705 2707 + f 4 -3150 4415 -4306 -4415 + mu 0 4 1968 1967 1980 2705 + f 4 -3166 -4416 -3193 -2271 + mu 0 4 626 1980 1967 644 + f 4 -4413 -4410 -4377 -3176 + mu 0 4 1984 2706 2720 1985 + f 3 4416 -3135 -3173 + mu 0 3 1981 1945 1954 + f 3 -4320 4417 -4316 + mu 0 3 1986 2613 1952 + f 4 4418 4419 4420 -4181 + mu 0 4 2617 2749 2615 2618 + f 4 -2277 -4213 -4421 -4177 + mu 0 4 1269 1303 2618 2615 + f 4 -4196 -4394 4421 -4419 + mu 0 4 2617 2630 2745 2749 + f 4 4422 -4189 -2279 -4276 + mu 0 4 2692 2623 1279 1352 + f 4 -4222 -4423 -4274 4423 + mu 0 4 2652 2623 2692 2691 + f 4 -4221 -4424 -4278 4424 + mu 0 4 2628 2652 2691 2694 + f 4 4425 -4193 -4425 -4280 + mu 0 4 2696 2625 2628 2694 + f 4 -4201 -4426 -4292 4426 + mu 0 4 2636 2625 2696 2697 + f 4 4427 -4288 -4427 -4284 + mu 0 4 2700 2701 2636 2697 + f 4 4428 -4385 -4428 -4383 + mu 0 4 2730 2685 2701 2700 + f 3 -2287 -4269 -4429 + mu 0 3 2730 2682 2685 + f 4 4429 -3111 4430 4431 + mu 0 4 2750 1937 1936 2751 + f 4 -4431 -3129 -3130 4432 + mu 0 4 2751 1936 1943 1951 + f 4 4433 4434 4435 4436 + mu 0 4 2752 2753 2754 2755 + f 4 4437 4438 -3141 4439 + mu 0 4 2756 2757 1959 1958 + f 4 4440 -4433 4441 -4435 + mu 0 4 2753 2751 1951 2754 + f 4 4442 -4432 -4441 4443 + mu 0 4 2756 2750 2751 2753 + f 4 -4418 4444 -4442 -3132 + mu 0 4 1952 2613 2754 1951 + f 4 4445 4446 4447 4448 + mu 0 4 2758 2759 2760 2761 + f 4 -4436 -4445 -4173 4449 + mu 0 4 2755 2754 2613 2612 + f 4 -4437 4450 -4422 4451 + mu 0 4 2752 2755 2749 2745 + f 4 -4450 -4178 -4420 -4451 + mu 0 4 2755 2612 2615 2749 + f 4 -4447 4452 -4223 4453 + mu 0 4 2762 2763 2654 2653 + f 4 4454 -4186 4455 -4449 + mu 0 4 2764 2765 2766 2767 + f 4 4456 4457 -4392 -4439 + mu 0 4 2768 2769 2742 2741 + f 4 4458 4459 -4457 4460 + mu 0 4 2770 2771 2772 2773 + f 4 -4396 4461 -4459 -4452 + mu 0 4 2774 2775 2776 2777 + f 4 -3186 4462 -4443 -4440 + mu 0 4 1958 1949 2750 2756 + f 4 -3126 -4398 -4430 -4463 + mu 0 4 1949 1938 1937 2750 + f 4 -4434 -4461 -4438 -4444 + mu 0 4 2753 2752 2757 2756 + f 3 -4179 -4382 -2322 + mu 0 3 1269 2614 1385 + f 3 -4319 -4351 4463 + mu 0 3 1972 2710 1947 + f 4 -4407 4464 -4408 -3156 + mu 0 4 1970 2708 1990 1973 + f 4 -3168 -3177 -4376 -4417 + mu 0 4 1981 1977 1985 1945 + f 4 -4464 -4411 -4378 -4409 + mu 0 4 1972 1947 1946 2720 + f 3 -4465 -4405 -3185 + mu 0 3 1990 2708 1964 + f 4 -4462 4465 -4455 4466 + mu 0 4 2776 2775 2765 2764 + f 4 -4395 4467 -4184 -4466 + mu 0 4 2746 2630 2621 2620 + f 4 -4195 4468 -4197 -4468 + mu 0 4 2778 2779 2632 2631 + f 4 -4270 -4469 -4285 4469 + mu 0 4 2688 2687 2780 2781 + f 4 -4217 -4470 -4191 4470 + mu 0 4 2650 2649 2782 2783 + f 4 -4200 4471 -4203 -4471 + mu 0 4 2784 2785 2638 2637 + f 4 4472 -4386 4473 -4380 + mu 0 4 2722 2732 2731 2723 + f 4 -4389 4474 -4289 -4474 + mu 0 4 2738 2737 2680 2703 + f 4 4475 -4264 -4475 -4391 + mu 0 4 2740 2677 2680 2737 + f 4 4476 -4226 -4476 -4393 + mu 0 4 2742 2653 2656 2743 + f 4 4477 -4454 -4477 -4458 + mu 0 4 2769 2762 2653 2742 + f 4 -4448 -4478 -4460 -4467 + mu 0 4 2761 2760 2772 2771 + f 4 4478 -4266 4479 -4456 + mu 0 4 2786 2658 2666 2787 + f 4 -4228 -4479 -4199 4480 + mu 0 4 2659 2658 2786 2788 + f 4 -4237 -4481 -4271 4481 + mu 0 4 2661 2659 2788 2789 + f 4 -4231 -4482 -4218 4482 + mu 0 4 2662 2661 2789 2640 + f 4 -4205 4483 -4257 -4483 + mu 0 4 2640 2639 2675 2662 + f 4 4484 -4261 -4484 -4290 + mu 0 4 2790 2676 2675 2639 + f 4 -4265 -4485 -4262 4485 + mu 0 4 2670 2681 2791 2792 + f 4 -4246 -4486 -4224 4486 + mu 0 4 2671 2670 2792 2793 + f 4 4487 -4256 -4487 -4453 + mu 0 4 2794 2665 2671 2793 + f 4 -4480 -4240 -4488 -4446 + mu 0 4 2787 2666 2665 2794 + f 4 -4287 -4473 -4379 -4472 + mu 0 4 2795 2732 2722 2721; + setAttr ".cd" -type "dataPolyComponent" Index_Data Edge 0 ; + setAttr ".cvd" -type "dataPolyComponent" Index_Data Vertex 0 ; + setAttr ".hfd" -type "dataPolyComponent" Index_Data Face 0 ; +createNode lightLinker -s -n "lightLinker1"; + setAttr -s 7 ".lnk"; + setAttr -s 7 ".slnk"; +createNode displayLayerManager -n "layerManager"; + setAttr ".cdl" 1; + setAttr -s 4 ".dli[1:3]" 1 2 3; + setAttr -s 3 ".dli"; +createNode displayLayer -n "defaultLayer"; +createNode renderLayerManager -n "renderLayerManager"; + setAttr -s 2 ".rlmi[1]" 1; + setAttr -s 2 ".rlmi"; +createNode renderLayer -n "defaultRenderLayer"; + setAttr ".g" yes; + setAttr ".rndr" no; +createNode polySphere -n "polySphere1"; + setAttr ".r" 0.5; + setAttr ".sa" 30; + setAttr ".sh" 30; +createNode arrayMapper -n "radius_arrayMapper"; +createNode ramp -n "radius_ramp"; + setAttr -s 2 ".cel"; + setAttr ".cel[0].ep" 0; + setAttr ".cel[0].ec" -type "float3" 1 1 1 ; + setAttr ".cel[2].ep" 1; + setAttr ".cel[2].ec" -type "float3" 0.294 0.294 0.294 ; +createNode dynGlobals -n "dynGlobals1"; + setAttr ".cd" -type "string" ""; + setAttr -l on ".mnf" 1; + setAttr -l on ".mxf" 128; + setAttr ".cnp" -type "string" "KTY004.fxSparks.v01"; + setAttr ".csn" -type "string" "KTY004.fxExpFire.v15_02"; +createNode script -n "sceneConfigurationScriptNode"; + setAttr ".b" -type "string" "playbackOptions -min 1 -max 128 -ast 1 -aet 128 "; + setAttr ".st" 6; +createNode partition -n "ffxPrefsPartition"; + addAttr -ci true -sn "ffxLocPrefClearRAMas" -ln "ffxLocPrefClearRAMas" -dv 1 -min + 0 -max 1 -at "bool"; + addAttr -ci true -sn "ffxLocPrefSnapshotOpt" -ln "ffxLocPrefSnapshotOpt" -min 0 + -max 2 -at "long"; + addAttr -ci true -sn "ffxLocPrefNthFrame" -ln "ffxLocPrefNthFrame" -dv 1 -min 1 + -at "long"; + addAttr -ci true -sn "ffxLocPrefFrameList" -ln "ffxLocPrefFrameList" -dt "string"; + addAttr -ci true -sn "ffxLocPrefDelSnaOnScEx" -ln "ffxLocPrefDelSnaOnScEx" -min + 0 -max 1 -at "bool"; + addAttr -ci true -sn "ffxLocPrefAbToStpCon" -ln "ffxLocPrefAbToStpCon" -dv 1 -min + 0 -max 1 -at "bool"; +lockNode -l 1 ; +createNode ffxTurbulenceShader -n "ffxTurbulenceShader1"; + setAttr ".vpar" -type "stringArray" 0 ; + setAttr ".upar" -type "stringArray" 0 ; + setAttr ".glo" 1; +lockNode -l 1 ; +createNode shadingEngine -n "fumeFX1SG"; + setAttr ".ihi" 0; + setAttr ".ro" yes; +createNode materialInfo -n "materialInfo1"; +createNode expression -n "ffxMRVolShape1_linkExp"; + setAttr -k on ".nds"; + setAttr -s 2 ".in"; + setAttr -s 2 ".in"; + setAttr -s 2 ".out"; + setAttr ".ixp" -type "string" ".O[0] = .I[0];\n.O[1] = .I[1];"; +createNode mentalrayItemsList -s -n "mentalrayItemsList"; + setAttr -s 19 ".opt"; +createNode mentalrayGlobals -s -n "mentalrayGlobals"; + addAttr -s false -ci true -h true -sn "sunAndSkyShader" -ln "sunAndSkyShader" -at "message"; + setAttr ".rvb" 3; + setAttr ".ivb" no; +createNode mentalrayOptions -s -n "miDefaultOptions"; + addAttr -ci true -m -sn "stringOptions" -ln "stringOptions" -at "compound" -nc + 3; + addAttr -ci true -sn "name" -ln "name" -dt "string" -p "stringOptions"; + addAttr -ci true -sn "value" -ln "value" -dt "string" -p "stringOptions"; + addAttr -ci true -sn "type" -ln "type" -dt "string" -p "stringOptions"; + setAttr ".splck" yes; + setAttr ".fil" 0; + setAttr ".rflr" 1; + setAttr ".rfrr" 1; + setAttr ".maxr" 2; + setAttr ".shrd" 2; + setAttr ".mbb" 0.5; + setAttr ".mst" 2; + setAttr ".miSamplesQualityR" 0.69999998807907104; + setAttr -s 48 ".stringOptions"; + setAttr ".stringOptions[0].name" -type "string" "rast motion factor"; + setAttr ".stringOptions[0].value" -type "string" "1.0"; + setAttr ".stringOptions[0].type" -type "string" "scalar"; + setAttr ".stringOptions[1].name" -type "string" "rast transparency depth"; + setAttr ".stringOptions[1].value" -type "string" "8"; + setAttr ".stringOptions[1].type" -type "string" "integer"; + setAttr ".stringOptions[2].name" -type "string" "rast useopacity"; + setAttr ".stringOptions[2].value" -type "string" "true"; + setAttr ".stringOptions[2].type" -type "string" "boolean"; + setAttr ".stringOptions[3].name" -type "string" "importon"; + setAttr ".stringOptions[3].value" -type "string" "false"; + setAttr ".stringOptions[3].type" -type "string" "boolean"; + setAttr ".stringOptions[4].name" -type "string" "importon density"; + setAttr ".stringOptions[4].value" -type "string" "1.0"; + setAttr ".stringOptions[4].type" -type "string" "scalar"; + setAttr ".stringOptions[5].name" -type "string" "importon merge"; + setAttr ".stringOptions[5].value" -type "string" "0.0"; + setAttr ".stringOptions[5].type" -type "string" "scalar"; + setAttr ".stringOptions[6].name" -type "string" "importon trace depth"; + setAttr ".stringOptions[6].value" -type "string" "0"; + setAttr ".stringOptions[6].type" -type "string" "integer"; + setAttr ".stringOptions[7].name" -type "string" "importon traverse"; + setAttr ".stringOptions[7].value" -type "string" "true"; + setAttr ".stringOptions[7].type" -type "string" "boolean"; + setAttr ".stringOptions[8].name" -type "string" "shadowmap pixel samples"; + setAttr ".stringOptions[8].value" -type "string" "3"; + setAttr ".stringOptions[8].type" -type "string" "integer"; + setAttr ".stringOptions[9].name" -type "string" "ambient occlusion"; + setAttr ".stringOptions[9].value" -type "string" "false"; + setAttr ".stringOptions[9].type" -type "string" "boolean"; + setAttr ".stringOptions[10].name" -type "string" "ambient occlusion rays"; + setAttr ".stringOptions[10].value" -type "string" "256"; + setAttr ".stringOptions[10].type" -type "string" "integer"; + setAttr ".stringOptions[11].name" -type "string" "ambient occlusion cache"; + setAttr ".stringOptions[11].value" -type "string" "false"; + setAttr ".stringOptions[11].type" -type "string" "boolean"; + setAttr ".stringOptions[12].name" -type "string" "ambient occlusion cache density"; + setAttr ".stringOptions[12].value" -type "string" "1.0"; + setAttr ".stringOptions[12].type" -type "string" "scalar"; + setAttr ".stringOptions[13].name" -type "string" "ambient occlusion cache points"; + setAttr ".stringOptions[13].value" -type "string" "64"; + setAttr ".stringOptions[13].type" -type "string" "integer"; + setAttr ".stringOptions[14].name" -type "string" "irradiance particles"; + setAttr ".stringOptions[14].value" -type "string" "false"; + setAttr ".stringOptions[14].type" -type "string" "boolean"; + setAttr ".stringOptions[15].name" -type "string" "irradiance particles rays"; + setAttr ".stringOptions[15].value" -type "string" "256"; + setAttr ".stringOptions[15].type" -type "string" "integer"; + setAttr ".stringOptions[16].name" -type "string" "irradiance particles interpolate"; + setAttr ".stringOptions[16].value" -type "string" "1"; + setAttr ".stringOptions[16].type" -type "string" "integer"; + setAttr ".stringOptions[17].name" -type "string" "irradiance particles interppoints"; + setAttr ".stringOptions[17].value" -type "string" "64"; + setAttr ".stringOptions[17].type" -type "string" "integer"; + setAttr ".stringOptions[18].name" -type "string" "irradiance particles indirect passes"; + setAttr ".stringOptions[18].value" -type "string" "0"; + setAttr ".stringOptions[18].type" -type "string" "integer"; + setAttr ".stringOptions[19].name" -type "string" "irradiance particles scale"; + setAttr ".stringOptions[19].value" -type "string" "1.0"; + setAttr ".stringOptions[19].type" -type "string" "scalar"; + setAttr ".stringOptions[20].name" -type "string" "irradiance particles env"; + setAttr ".stringOptions[20].value" -type "string" "true"; + setAttr ".stringOptions[20].type" -type "string" "boolean"; + setAttr ".stringOptions[21].name" -type "string" "irradiance particles env rays"; + setAttr ".stringOptions[21].value" -type "string" "256"; + setAttr ".stringOptions[21].type" -type "string" "integer"; + setAttr ".stringOptions[22].name" -type "string" "irradiance particles env scale"; + setAttr ".stringOptions[22].value" -type "string" "1"; + setAttr ".stringOptions[22].type" -type "string" "integer"; + setAttr ".stringOptions[23].name" -type "string" "irradiance particles rebuild"; + setAttr ".stringOptions[23].value" -type "string" "true"; + setAttr ".stringOptions[23].type" -type "string" "boolean"; + setAttr ".stringOptions[24].name" -type "string" "irradiance particles file"; + setAttr ".stringOptions[24].value" -type "string" ""; + setAttr ".stringOptions[24].type" -type "string" "string"; + setAttr ".stringOptions[25].name" -type "string" "geom displace motion factor"; + setAttr ".stringOptions[25].value" -type "string" "0.4"; + setAttr ".stringOptions[25].type" -type "string" "scalar"; + setAttr ".stringOptions[26].name" -type "string" "contrast all buffers"; + setAttr ".stringOptions[26].value" -type "string" "true"; + setAttr ".stringOptions[26].type" -type "string" "boolean"; + setAttr ".stringOptions[27].name" -type "string" "finalgather normal tolerance"; + setAttr ".stringOptions[27].value" -type "string" "25.842"; + setAttr ".stringOptions[27].type" -type "string" "scalar"; + setAttr ".stringOptions[28].name" -type "string" "trace camera clip"; + setAttr ".stringOptions[28].value" -type "string" "false"; + setAttr ".stringOptions[28].type" -type "string" "boolean"; + setAttr ".stringOptions[29].name" -type "string" "unified sampling"; + setAttr ".stringOptions[29].value" -type "string" "true"; + setAttr ".stringOptions[29].type" -type "string" "boolean"; + setAttr ".stringOptions[30].name" -type "string" "samples quality"; + setAttr ".stringOptions[30].value" -type "string" "0.7 0.7 0.7 0.7"; + setAttr ".stringOptions[30].type" -type "string" "color"; + setAttr ".stringOptions[31].name" -type "string" "samples min"; + setAttr ".stringOptions[31].value" -type "string" "1.0"; + setAttr ".stringOptions[31].type" -type "string" "scalar"; + setAttr ".stringOptions[32].name" -type "string" "samples max"; + setAttr ".stringOptions[32].value" -type "string" "100.0"; + setAttr ".stringOptions[32].type" -type "string" "scalar"; + setAttr ".stringOptions[33].name" -type "string" "samples error cutoff"; + setAttr ".stringOptions[33].value" -type "string" "0.0 0.0 0.0 0.0"; + setAttr ".stringOptions[33].type" -type "string" "color"; + setAttr ".stringOptions[34].name" -type "string" "samples per object"; + setAttr ".stringOptions[34].value" -type "string" "false"; + setAttr ".stringOptions[34].type" -type "string" "boolean"; + setAttr ".stringOptions[35].name" -type "string" "progressive"; + setAttr ".stringOptions[35].value" -type "string" "false"; + setAttr ".stringOptions[35].type" -type "string" "boolean"; + setAttr ".stringOptions[36].name" -type "string" "progressive max time"; + setAttr ".stringOptions[36].value" -type "string" "0"; + setAttr ".stringOptions[36].type" -type "string" "integer"; + setAttr ".stringOptions[37].name" -type "string" "progressive subsampling size"; + setAttr ".stringOptions[37].value" -type "string" "4"; + setAttr ".stringOptions[37].type" -type "string" "integer"; + setAttr ".stringOptions[38].name" -type "string" "iray"; + setAttr ".stringOptions[38].value" -type "string" "false"; + setAttr ".stringOptions[38].type" -type "string" "boolean"; + setAttr ".stringOptions[39].name" -type "string" "light relative scale"; + setAttr ".stringOptions[39].value" -type "string" "0.31831"; + setAttr ".stringOptions[39].type" -type "string" "scalar"; + setAttr ".stringOptions[40].name" -type "string" "trace camera motion vectors"; + setAttr ".stringOptions[40].value" -type "string" "false"; + setAttr ".stringOptions[40].type" -type "string" "boolean"; + setAttr ".stringOptions[41].name" -type "string" "ray differentials"; + setAttr ".stringOptions[41].value" -type "string" "true"; + setAttr ".stringOptions[41].type" -type "string" "boolean"; + setAttr ".stringOptions[42].name" -type "string" "environment lighting mode"; + setAttr ".stringOptions[42].value" -type "string" "off"; + setAttr ".stringOptions[42].type" -type "string" "string"; + setAttr ".stringOptions[43].name" -type "string" "environment lighting quality"; + setAttr ".stringOptions[43].value" -type "string" "0.2"; + setAttr ".stringOptions[43].type" -type "string" "scalar"; + setAttr ".stringOptions[44].name" -type "string" "environment lighting shadow"; + setAttr ".stringOptions[44].value" -type "string" "transparent"; + setAttr ".stringOptions[44].type" -type "string" "string"; + setAttr ".stringOptions[45].name" -type "string" "environment lighting resolution"; + setAttr ".stringOptions[45].value" -type "string" "512"; + setAttr ".stringOptions[45].type" -type "string" "integer"; + setAttr ".stringOptions[46].name" -type "string" "environment lighting shader samples"; + setAttr ".stringOptions[46].value" -type "string" "2"; + setAttr ".stringOptions[46].type" -type "string" "integer"; + setAttr ".stringOptions[47].name" -type "string" "environment lighting scale"; + setAttr ".stringOptions[47].value" -type "string" "1.0 1.0 1.0"; + setAttr ".stringOptions[47].type" -type "string" "color"; +createNode mentalrayFramebuffer -s -n "miDefaultFramebuffer"; + setAttr ".dat" 2; +createNode fractal -n "fractal1"; + setAttr ".lmn" 0.15000000596046448; + setAttr ".in" yes; +createNode place2dTexture -n "place2dTexture1"; +createNode expression -n "expression1"; + setAttr -k on ".nds"; + setAttr ".ixp" -type "string" ""; +createNode ramp -n "opacity_ramp"; + setAttr -s 5 ".cel"; + setAttr ".cel[0].ep" 0.023560209199786186; + setAttr ".cel[0].ec" -type "float3" 1 1 1 ; + setAttr ".cel[1].ep" 0.25799572467803955; + setAttr ".cel[1].ec" -type "float3" 0.51099998 0.51099998 0.51099998 ; + setAttr ".cel[2].ep" 1; + setAttr ".cel[2].ec" -type "float3" 0 0 0 ; + setAttr ".cel[3].ep" 0; + setAttr ".cel[3].ec" -type "float3" 0.31099999 0.31099999 0.31099999 ; + setAttr ".cel[4].ep" 0.79249447584152222; + setAttr ".cel[4].ec" -type "float3" 0.1 0.1 0.1 ; +createNode ramp -n "RGB_ramp"; + setAttr ".dc" -type "float3" 0.47252613 0.47252613 0.47252613 ; + setAttr -s 8 ".cel"; + setAttr ".cel[0].ep" 0; + setAttr ".cel[0].ec" -type "float3" 2 2 2 ; + setAttr ".cel[1].ep" 1; + setAttr ".cel[1].ec" -type "float3" 0.139 0.139 0.139 ; + setAttr ".cel[2].ep" 0.095948830246925354; + setAttr ".cel[2].ec" -type "float3" 1 0.33708334 0 ; + setAttr ".cel[3].ep" 0.021321961656212807; + setAttr ".cel[3].ec" -type "float3" 1.932 1.172241 0 ; + setAttr ".cel[4].ep" 0.049040511250495911; + setAttr ".cel[4].ec" -type "float3" 1.812 0.61079502 0 ; + setAttr ".cel[5].ep" 0.14128035306930542; + setAttr ".cel[5].ec" -type "float3" 0 0 0 ; + setAttr ".cel[6].ep" 0.22295805811882019; + setAttr ".cel[6].ec" -type "float3" 0.122 0.122 0.122 ; + setAttr ".cel[7].ep" 0.18322296440601349; + setAttr ".cel[7].ec" -type "float3" 1 0.40450001 0 ; + setAttr ".hn" 0.072999998927116394; + setAttr ".vn" 0.5; +createNode vectorRenderGlobals -s -n "vectorRenderGlobals"; +createNode displayLayer -n "emitter"; + setAttr ".dt" 1; + setAttr ".c" 17; + setAttr ".do" 1; +createNode volumeNoise -n "volumeNoise1"; +createNode particleSamplerInfo -n "particleSamplerInfo1"; +createNode volumeNoise -n "volumeNoise2"; + setAttr ".ra" 0.80219781398773193; + setAttr ".sc" -type "float3" 10 10 10 ; + setAttr ".fq" 12; + setAttr ".fr" 2.153846263885498; + setAttr ".nty" 4; +createNode expression -n "expression2"; + setAttr -k on ".nds"; + setAttr ".ixp" -type "string" ".O[0] = time*0.1;"; +createNode ramp -n "ramp1"; + setAttr -s 2 ".cel"; + setAttr ".cel[0].ep" 0.035320088267326355; + setAttr ".cel[0].ec" -type "float3" 0 0 0 ; + setAttr ".cel[1].ep" 0; + setAttr ".cel[1].ec" -type "float3" 1 0.87639999 0 ; +createNode place2dTexture -n "place2dTexture2"; +createNode particleSamplerInfo -n "particleSamplerInfo2"; +createNode expression -n "expression3"; + setAttr -k on ".nds"; + setAttr ".ixp" -type "string" ".O[0] = rand(0.75, 1.0);"; +createNode expression -n "expression4"; + setAttr -k on ".nds"; + setAttr ".ixp" -type "string" ".O[0] = rand(1.25, 1.6);"; +createNode particleCloud -n "particleCloud2"; +createNode shadingEngine -n "particleCloud2SG"; + setAttr ".ihi" 0; + setAttr ".ro" yes; +createNode materialInfo -n "materialInfo2"; +createNode mentalrayOptions -s -n "PreviewImrRayTracyOff"; + setAttr ".splck" yes; + setAttr ".minsp" 0; + setAttr ".fil" 1; + setAttr ".scan" 1; + setAttr ".ray" no; + setAttr ".rflr" 1; + setAttr ".rfrr" 1; + setAttr ".maxr" 1; + setAttr ".shrd" 2; +createNode mentalrayOptions -s -n "PreviewImrRayTracyOn"; + setAttr ".splck" yes; + setAttr ".minsp" 0; + setAttr ".fil" 1; + setAttr ".scan" 1; + setAttr ".rflr" 1; + setAttr ".rfrr" 2; + setAttr ".maxr" 3; + setAttr ".shrd" 1; +createNode mentalrayOptions -s -n "miContourPreset"; + setAttr ".splck" yes; + setAttr ".fil" 0; + setAttr ".rflr" 1; + setAttr ".rfrr" 1; + setAttr ".maxr" 1; + setAttr ".shrd" 2; +createNode mentalrayOptions -s -n "Draft"; + setAttr ".splck" yes; + setAttr ".fil" 0; + setAttr ".rflr" 1; + setAttr ".rfrr" 1; + setAttr ".maxr" 2; + setAttr ".shrd" 2; +createNode mentalrayOptions -s -n "DraftMotionBlur"; + setAttr ".splck" yes; + setAttr ".fil" 0; + setAttr ".rflr" 1; + setAttr ".rfrr" 1; + setAttr ".maxr" 2; + setAttr ".shrd" 2; + setAttr ".mb" 1; + setAttr ".tconr" 1; + setAttr ".tcong" 1; + setAttr ".tconb" 1; + setAttr ".tcona" 1; +createNode mentalrayOptions -s -n "DraftRapidMotion"; + setAttr ".splck" yes; + setAttr ".fil" 0; + setAttr ".scan" 3; + setAttr ".rapc" 1; + setAttr ".raps" 0.25; + setAttr ".rflr" 1; + setAttr ".rfrr" 1; + setAttr ".maxr" 2; + setAttr ".shrd" 2; + setAttr ".mb" 1; + setAttr ".tconr" 1; + setAttr ".tcong" 1; + setAttr ".tconb" 1; + setAttr ".tcona" 1; +createNode mentalrayOptions -s -n "Preview"; + setAttr ".splck" yes; + setAttr ".minsp" -1; + setAttr ".maxsp" 1; + setAttr ".fil" 1; + setAttr ".rflr" 2; + setAttr ".rfrr" 2; + setAttr ".maxr" 4; + setAttr ".shrd" 2; +createNode mentalrayOptions -s -n "PreviewMotionblur"; + setAttr ".splck" yes; + setAttr ".minsp" -1; + setAttr ".maxsp" 1; + setAttr ".fil" 1; + setAttr ".rflr" 2; + setAttr ".rfrr" 2; + setAttr ".maxr" 4; + setAttr ".shrd" 2; + setAttr ".mb" 1; + setAttr ".tconr" 0.5; + setAttr ".tcong" 0.5; + setAttr ".tconb" 0.5; + setAttr ".tcona" 0.5; +createNode mentalrayOptions -s -n "PreviewRapidMotion"; + setAttr ".splck" yes; + setAttr ".minsp" -1; + setAttr ".maxsp" 1; + setAttr ".fil" 1; + setAttr ".scan" 3; + setAttr ".rapc" 3; + setAttr ".rflr" 2; + setAttr ".rfrr" 2; + setAttr ".maxr" 4; + setAttr ".shrd" 2; + setAttr ".mb" 1; + setAttr ".tconr" 0.5; + setAttr ".tcong" 0.5; + setAttr ".tconb" 0.5; + setAttr ".tcona" 0.5; +createNode mentalrayOptions -s -n "PreviewCaustics"; + setAttr ".splck" yes; + setAttr ".minsp" -1; + setAttr ".maxsp" 1; + setAttr ".fil" 1; + setAttr ".rflr" 2; + setAttr ".rfrr" 2; + setAttr ".maxr" 4; + setAttr ".shrd" 2; + setAttr ".ca" yes; + setAttr ".cc" 1; + setAttr ".cr" 1; +createNode mentalrayOptions -s -n "PreviewGlobalIllum"; + setAttr ".splck" yes; + setAttr ".minsp" -1; + setAttr ".maxsp" 1; + setAttr ".fil" 1; + setAttr ".rflr" 2; + setAttr ".rfrr" 2; + setAttr ".maxr" 4; + setAttr ".shrd" 2; + setAttr ".gi" yes; + setAttr ".gc" 1; + setAttr ".gr" 1; +createNode mentalrayOptions -s -n "PreviewFinalGather"; + setAttr ".splck" yes; + setAttr ".minsp" -1; + setAttr ".maxsp" 1; + setAttr ".fil" 1; + setAttr ".rflr" 2; + setAttr ".rfrr" 2; + setAttr ".maxr" 4; + setAttr ".shrd" 2; + setAttr ".fg" yes; +createNode mentalrayOptions -s -n "Production"; + setAttr ".splck" yes; + setAttr ".minsp" 0; + setAttr ".maxsp" 2; + setAttr ".rflr" 10; + setAttr ".rfrr" 10; + setAttr ".maxr" 20; + setAttr ".shrd" 2; +createNode mentalrayOptions -s -n "ProductionMotionblur"; + setAttr ".splck" yes; + setAttr ".minsp" 0; + setAttr ".maxsp" 2; + setAttr ".rflr" 10; + setAttr ".rfrr" 10; + setAttr ".maxr" 20; + setAttr ".shrd" 2; + setAttr ".mb" 2; +createNode mentalrayOptions -s -n "ProductionRapidMotion"; + setAttr ".splck" yes; + setAttr ".minsp" 0; + setAttr ".maxsp" 2; + setAttr ".scan" 3; + setAttr ".rapc" 8; + setAttr ".raps" 2; + setAttr ".rflr" 10; + setAttr ".rfrr" 10; + setAttr ".maxr" 20; + setAttr ".shrd" 2; + setAttr ".mb" 2; +createNode mentalrayOptions -s -n "ProductionFineTrace"; + setAttr ".conr" 0.019999999552965164; + setAttr ".cong" 0.019999999552965164; + setAttr ".conb" 0.019999999552965164; + setAttr ".splck" yes; + setAttr ".minsp" 1; + setAttr ".maxsp" 2; + setAttr ".fil" 1; + setAttr ".filw" 0.75; + setAttr ".filh" 0.75; + setAttr ".jit" yes; + setAttr ".rflr" 1; + setAttr ".rfrr" 1; + setAttr ".maxr" 1; + setAttr ".shrd" 2; +createNode mentalrayOptions -s -n "ProductionRapidFur"; + setAttr ".conr" 0.039999999105930328; + setAttr ".cong" 0.029999999329447746; + setAttr ".conb" 0.070000000298023224; + setAttr ".splck" yes; + setAttr ".minsp" 0; + setAttr ".maxsp" 2; + setAttr ".fil" 1; + setAttr ".filw" 1.1449999809265137; + setAttr ".filh" 1.1449999809265137; + setAttr ".jit" yes; + setAttr ".scan" 3; + setAttr ".rapc" 3; + setAttr ".raps" 0.25; + setAttr ".ray" no; + setAttr ".rflr" 1; + setAttr ".rfrr" 1; + setAttr ".maxr" 1; + setAttr ".shrd" 2; + setAttr ".shmth" 3; + setAttr ".shmap" 3; + setAttr ".mbsm" no; + setAttr ".bism" 0.019999999552965164; +createNode mentalrayOptions -s -n "ProductionRapidHair"; + setAttr ".conr" 0.039999999105930328; + setAttr ".cong" 0.029999999329447746; + setAttr ".conb" 0.070000000298023224; + setAttr ".splck" yes; + setAttr ".minsp" 0; + setAttr ".maxsp" 2; + setAttr ".fil" 1; + setAttr ".filw" 1.1449999809265137; + setAttr ".filh" 1.1449999809265137; + setAttr ".jit" yes; + setAttr ".scan" 3; + setAttr ".rapc" 6; + setAttr ".ray" no; + setAttr ".rflr" 1; + setAttr ".rfrr" 1; + setAttr ".maxr" 1; + setAttr ".shrd" 2; + setAttr ".shmth" 3; + setAttr ".shmap" 3; + setAttr ".mbsm" no; + setAttr ".bism" 0.019999999552965164; +createNode geoConnector -n "geoConnector1"; +createNode animCurveTU -n "emitter011_rate"; + setAttr ".tan" 2; + setAttr ".wgt" no; + setAttr -s 3 ".ktv[0:2]" 10 0 12 30000 15 0; +createNode surfaceShader -n "surfaceShader1"; + setAttr ".oc" -type "float3" 2 0.47189999 0 ; +createNode shadingEngine -n "surfaceShader1SG"; + setAttr ".ihi" 0; + setAttr ".ro" yes; +createNode materialInfo -n "materialInfo3"; +createNode arrayMapper -n "arrayMapper1"; + setAttr ".min" 0.15; + setAttr ".max" 1.6; +createNode ramp -n "ramp2"; + setAttr -s 2 ".cel"; + setAttr ".cel[0].ep" 0; + setAttr ".cel[0].ec" -type "float3" 1 1 1 ; + setAttr ".cel[2].ep" 1; + setAttr ".cel[2].ec" -type "float3" 0.15000001 0.15000001 0.15000001 ; +createNode animCurveTU -n "fumeFX_AShape_expansion"; + setAttr ".tan" 2; + setAttr ".wgt" no; + setAttr -s 3 ".ktv[0:2]" 10 0 13 1 22 0; +createNode arrayMapper -n "arrayMapper2"; +createNode ramp -n "ramp3"; + setAttr -s 3 ".cel"; + setAttr ".cel[0].ep" 0; + setAttr ".cel[0].ec" -type "float3" 1 1 1 ; + setAttr ".cel[1].ep" 0.61124694347381592; + setAttr ".cel[1].ec" -type "float3" 0.92909497 0.92909497 0.92909497 ; + setAttr ".cel[2].ep" 1; + setAttr ".cel[2].ec" -type "float3" 0 0 0 ; +createNode animCurveTU -n "ffxParticleSource_AProxy_rate"; + setAttr ".tan" 2; + setAttr ".wgt" no; + setAttr -s 3 ".ktv[0:2]" 10 0.80000001192092896 13 1.5 23 1; +createNode animCurveTU -n "ffxParticleSource_AProxy_smoke_amount"; + setAttr ".tan" 18; + setAttr ".wgt" no; + setAttr -s 4 ".ktv[0:3]" 10 10 13 10 20 3 70 3; +createNode renderLayer -n "fx_expFire_COL"; + setAttr ".do" 1; +createNode VRaySettingsNode -s -n "vraySettings"; + setAttr ".pe" 2; + setAttr ".se" 3; + setAttr ".cmph" 60; + setAttr ".cfile" -type "string" ""; + setAttr ".cfile2" -type "string" ""; + setAttr ".casf" -type "string" ""; + setAttr ".casf2" -type "string" ""; + setAttr ".msr" 6; + setAttr ".aaft" 3; + setAttr ".aafs" 2; + setAttr ".dma" 24; + setAttr ".dam" 1; + setAttr ".pt" 0.0099999997764825821; + setAttr ".sd" 1000; + setAttr ".ss" 0.01; + setAttr ".pfts" 20; + setAttr ".ufg" yes; + setAttr ".fnm" -type "string" ""; + setAttr ".lcfnm" -type "string" ""; + setAttr ".asf" -type "string" ""; + setAttr ".lcasf" -type "string" ""; + setAttr ".urtrshd" yes; + setAttr ".rtrshd" 2; + setAttr ".icits" 10; + setAttr ".ifile" -type "string" ""; + setAttr ".ifile2" -type "string" ""; + setAttr ".iasf" -type "string" ""; + setAttr ".iasf2" -type "string" ""; + setAttr ".pmfile" -type "string" ""; + setAttr ".pmfile2" -type "string" ""; + setAttr ".pmasf" -type "string" ""; + setAttr ".pmasf2" -type "string" ""; + setAttr ".dmcstd" yes; + setAttr ".dmculs" no; + setAttr ".dmcsat" 0.004999999888241291; + setAttr ".cmtp" 6; + setAttr ".cmao" 2; + setAttr ".cg" 2.2000000476837158; + setAttr ".mtah" yes; + setAttr ".rgbcs" 1; + setAttr ".srflc" 1; + setAttr ".seu" yes; + setAttr ".gormio" yes; + setAttr ".wi" 1024; + setAttr ".he" 1024; + setAttr ".aspr" 1; + setAttr ".aspl" no; + setAttr ".jpegq" 100; + setAttr ".animtp" 1; + setAttr ".imgfs" -type "string" "tif"; + setAttr ".vfbOn" yes; + setAttr ".vfbSA" -type "Int32Array" 251 998 14 0 0 0 0 + 0 0 0 0 -1073724351 0 0 0 0 0 0 0 + 0 453 0 0 0 0 0 0 0 0 886 1 + 3 1 0 0 0 0 1 0 5 0 1065353216 3 + 1 0 0 0 0 1 0 5 0 1065353216 3 1 + 1065353216 0 0 0 1 0 5 0 1065353216 1 3 2 + 1065353216 1065353216 1065353216 1065353216 1 0 5 0 0 0 0 1 + 0 5 0 1065353216 1 137531 65536 1 1313131313 65536 944879383 0 + -525502228 1065353216 1621981420 1034147594 1053609164 1065353216 2 0 0 -1097805629 -1097805629 1049678019 + 1049678019 0 2 1065353216 1065353216 -1097805629 -1097805629 1049678019 1049678019 0 2 1 + 2 -1 0 0 0 1869111636 24941 0 0 1869366016 26740 0 + 0 15 0 0 0 1131963648 1752461164 0 0 15 0 0 + 0 0 0 0 0 15 16777215 0 70 1 32 53 + 1632775510 1868963961 1632444530 622879097 2036429430 1936876918 544108393 1701978236 1919247470 1835627552 1915035749 1701080677 + 1835627634 12901 1378702848 1713404257 1293972079 543258977 808660531 540094510 1701978236 1919247470 1835627552 807411813 + 824189032 858857581 7549742 16777216 16777216 0 0 0 0 1 1 0 + 0 0 0 1 1 0 0 11 1936614732 1701209669 7566435 1 + 0 1 0 1101004800 1101004800 1082130432 0 0 0 1077936128 0 0 + 0 1 0 1 1112014848 1101004800 1 0 0 0 0 82176 + 0 16576 0 0 0 0 16448 0 65536 65536 0 0 + 0 65536 0 0 0 0 0 0 0 0 0 0 + 0 0 65536 536870912 536888779 ; + setAttr ".mSceneName" -type "string" "x:/IG/proj/XEF/seq/EXP/001/fxExpFire/scenes/EXP001.fxExpFire.ma"; + setAttr ".rt_engineType" 3; +createNode shadingEngine -n "fumeFX2SG"; + setAttr ".ihi" 0; + setAttr ".ro" yes; +createNode materialInfo -n "materialInfo4"; +createNode shadingEngine -n "fumeFX3SG"; + setAttr ".ihi" 0; + setAttr ".ro" yes; +createNode materialInfo -n "materialInfo5"; +createNode animCurveTU -n "ffxParticleSource_AProxy_fuel_amount"; + setAttr ".tan" 2; + setAttr ".wgt" no; + setAttr -s 2 ".ktv[0:1]" 10 100 23 105; +createNode displayLayer -n "body"; + setAttr ".dt" 1; + setAttr ".c" 20; + setAttr ".do" 2; +createNode animCurveTU -n "fumeFX_AShape_dissipation_strength"; + setAttr ".tan" 2; + setAttr ".wgt" no; + setAttr -s 2 ".ktv[0:1]" 60 30 128 90; +createNode animCurveTU -n "fumeFX_AShape_dissipation_min_dens"; + setAttr ".tan" 2; + setAttr ".wgt" no; + setAttr -s 2 ".ktv[0:1]" 60 1.5 128 3.5; +createNode animCurveTU -n "fumeFX_AShape_sh_smoke_opacity"; + setAttr ".tan" 18; + setAttr ".wgt" no; + setAttr -s 2 ".ktv[0:1]" 43 15 115 1; +createNode animCurveTU -n "fumeFX_AShape_sh_vis_falloff"; + setAttr ".tan" 1; + setAttr ".wgt" no; + setAttr -s 2 ".ktv[0:1]" 35 5 115 2; + setAttr -s 2 ".kix[0:1]" 0.34328600764274597 0.99892258644104004; + setAttr -s 2 ".kiy[0:1]" -0.93923097848892212 0.046408653259277344; + setAttr -s 2 ".kox[0:1]" 0.34473803639411926 0.99952107667922974; + setAttr -s 2 ".koy[0:1]" -0.93869894742965698 0.030945910140872002; +createNode animCurveTU -n "fumeFX_AShape_scale"; + setAttr ".tan" 2; + setAttr ".wgt" no; + setAttr -s 2 ".ktv[0:1]" 44 12.5 82 5; +createNode animCurveTL -n "allCamera:cam_translateX"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 0 2 0 3 0 4 0 5 0 6 0 7 0 8 0 9 0 10 0 + 11 0 12 0 13 0 14 0 15 0 16 0 17 0 18 0 19 0 20 0 21 0 22 0 23 0 24 0 25 0 26 0 27 0 + 28 0 29 0 30 0 31 0 32 0 33 0 34 0 35 0 36 0 37 0 38 0 39 0 40 0 41 0 42 0 43 0 44 0 + 45 0 46 0 47 0 48 0 49 0 50 0 51 0 52 0 53 0 54 0 55 0 56 0 57 0 58 0 59 0 60 0 61 0 + 62 0 63 0 64 0 65 0 66 0 67 0 68 0 69 0 70 0 71 0 72 0 73 0 74 0 75 0 76 0 77 0 78 0 + 79 0 80 0 81 0 82 0 83 0 84 0 85 0 86 0 87 0 88 0 89 0 90 0 91 0 92 0 93 0 94 0 95 0 + 96 0 97 0 98 0 99 0 100 0 101 0 102 0 103 0 104 0 105 0 106 0 107 0 108 0 109 0 110 0 + 111 0 112 0 113 0 114 0 115 0 116 0 117 0 118 0 119 0 120 0 121 0 122 0 123 0 124 0 + 125 0 126 0 127 0 128 0; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTL -n "allCamera:cam_translateY"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 130 2 130 3 130 4 130 5 130 6 130 7 130 + 8 130 9 130 10 130 11 130 12 130 13 130 14 130 15 130 16 130 17 130 18 130 19 130 + 20 130 21 130 22 130 23 130 24 130 25 130 26 130 27 130 28 130 29 130 30 130 31 130 + 32 130 33 130 34 130 35 130 36 130 37 130 38 130 39 130 40 130 41 130 42 130 43 130 + 44 130 45 130 46 130 47 130 48 130 49 130 50 130 51 130 52 130 53 130 54 130 55 130 + 56 130 57 130 58 130 59 130 60 130 61 130 62 130 63 130 64 130 65 130 66 130 67 130 + 68 130 69 130 70 130 71 130 72 130 73 130 74 130 75 130 76 130 77 130 78 130 79 130 + 80 130 81 130 82 130 83 130 84 130 85 130 86 130 87 130 88 130 89 130 90 130 91 130 + 92 130 93 130 94 130 95 130 96 130 97 130 98 130 99 130 100 130 101 130 102 130 103 130 + 104 130 105 130 106 130 107 130 108 130 109 130 110 130 111 130 112 130 113 130 114 130 + 115 130 116 130 117 130 118 130 119 130 120 130 121 130 122 130 123 130 124 130 125 130 + 126 130 127 130 128 130; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTL -n "allCamera:cam_translateZ"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 1.0040154936731451e-014 2 1.0040154936731451e-014 + 3 1.0040154936731451e-014 4 1.0040154936731451e-014 5 1.0040154936731451e-014 6 1.0040154936731451e-014 + 7 1.0040154936731451e-014 8 1.0040154936731451e-014 9 1.0040154936731451e-014 10 1.0040154936731451e-014 + 11 1.0040154936731451e-014 12 1.0040154936731451e-014 13 1.0040154936731451e-014 + 14 1.0040154936731451e-014 15 1.0040154936731451e-014 16 1.0040154936731451e-014 + 17 1.0040154936731451e-014 18 1.0040154936731451e-014 19 1.0040154936731451e-014 + 20 1.0040154936731451e-014 21 1.0040154936731451e-014 22 1.0040154936731451e-014 + 23 1.0040154936731451e-014 24 1.0040154936731451e-014 25 1.0040154936731451e-014 + 26 1.0040154936731451e-014 27 1.0040154936731451e-014 28 1.0040154936731451e-014 + 29 1.0040154936731451e-014 30 1.0040154936731451e-014 31 1.0040154936731451e-014 + 32 1.0040154936731451e-014 33 1.0040154936731451e-014 34 1.0040154936731451e-014 + 35 1.0040154936731451e-014 36 1.0040154936731451e-014 37 1.0040154936731451e-014 + 38 1.0040154936731451e-014 39 1.0040154936731451e-014 40 1.0040154936731451e-014 + 41 1.0040154936731451e-014 42 1.0040154936731451e-014 43 1.0040154936731451e-014 + 44 1.0040154936731451e-014 45 1.0040154936731451e-014 46 1.0040154936731451e-014 + 47 1.0040154936731451e-014 48 1.0040154936731451e-014 49 1.0040154936731451e-014 + 50 1.0040154936731451e-014 51 1.0040154936731451e-014 52 1.0040154936731451e-014 + 53 1.0040154936731451e-014 54 1.0040154936731451e-014 55 1.0040154936731451e-014 + 56 1.0040154936731451e-014 57 1.0040154936731451e-014 58 1.0040154936731451e-014 + 59 1.0040154936731451e-014 60 1.0040154936731451e-014 61 1.0040154936731451e-014 + 62 1.0040154936731451e-014 63 1.0040154936731451e-014 64 1.0040154936731451e-014 + 65 1.0040154936731451e-014 66 1.0040154936731451e-014 67 1.0040154936731451e-014 + 68 1.0040154936731451e-014 69 1.0040154936731451e-014 70 1.0040154936731451e-014 + 71 1.0040154936731451e-014 72 1.0040154936731451e-014 73 1.0040154936731451e-014 + 74 1.0040154936731451e-014 75 1.0040154936731451e-014 76 1.0040154936731451e-014 + 77 1.0040154936731451e-014 78 1.0040154936731451e-014 79 1.0040154936731451e-014 + 80 1.0040154936731451e-014 81 1.0040154936731451e-014 82 1.0040154936731451e-014 + 83 1.0040154936731451e-014 84 1.0040154936731451e-014 85 1.0040154936731451e-014 + 86 1.0040154936731451e-014 87 1.0040154936731451e-014 88 1.0040154936731451e-014 + 89 1.0040154936731451e-014 90 1.0040154936731451e-014 91 1.0040154936731451e-014 + 92 1.0040154936731451e-014 93 1.0040154936731451e-014 94 1.0040154936731451e-014 + 95 1.0040154936731451e-014 96 1.0040154936731451e-014 97 1.0040154936731451e-014 + 98 1.0040154936731451e-014 99 1.0040154936731451e-014 100 1.0040154936731451e-014 + 101 1.0040154936731451e-014 102 1.0040154936731451e-014 103 1.0040154936731451e-014 + 104 1.0040154936731451e-014 105 1.0040154936731451e-014 106 1.0040154936731451e-014 + 107 1.0040154936731451e-014 108 1.0040154936731451e-014 109 1.0040154936731451e-014 + 110 1.0040154936731451e-014 111 1.0040154936731451e-014 112 1.0040154936731451e-014 + 113 1.0040154936731451e-014 114 1.0040154936731451e-014 115 1.0040154936731451e-014 + 116 1.0040154936731451e-014 117 1.0040154936731451e-014 118 1.0040154936731451e-014 + 119 1.0040154936731451e-014 120 1.0040154936731451e-014 121 1.0040154936731451e-014 + 122 1.0040154936731451e-014 123 1.0040154936731451e-014 124 1.0040154936731451e-014 + 125 1.0040154936731451e-014 126 1.0040154936731451e-014 127 1.0040154936731451e-014 + 128 1.0040154936731451e-014; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTA -n "allCamera:cam_rotateX"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 -89.999999999999986 2 -89.999999999999986 + 3 -89.999999999999986 4 -89.999999999999986 5 -89.999999999999986 6 -89.999999999999986 + 7 -89.999999999999986 8 -89.999999999999986 9 -89.999999999999986 10 -89.999999999999986 + 11 -89.999999999999986 12 -89.999999999999986 13 -89.999999999999986 14 -89.999999999999986 + 15 -89.999999999999986 16 -89.999999999999986 17 -89.999999999999986 18 -89.999999999999986 + 19 -89.999999999999986 20 -89.999999999999986 21 -89.999999999999986 22 -89.999999999999986 + 23 -89.999999999999986 24 -89.999999999999986 25 -89.999999999999986 26 -89.999999999999986 + 27 -89.999999999999986 28 -89.999999999999986 29 -89.999999999999986 30 -89.999999999999986 + 31 -89.999999999999986 32 -89.999999999999986 33 -89.999999999999986 34 -89.999999999999986 + 35 -89.999999999999986 36 -89.999999999999986 37 -89.999999999999986 38 -89.999999999999986 + 39 -89.999999999999986 40 -89.999999999999986 41 -89.999999999999986 42 -89.999999999999986 + 43 -89.999999999999986 44 -89.999999999999986 45 -89.999999999999986 46 -89.999999999999986 + 47 -89.999999999999986 48 -89.999999999999986 49 -89.999999999999986 50 -89.999999999999986 + 51 -89.999999999999986 52 -89.999999999999986 53 -89.999999999999986 54 -89.999999999999986 + 55 -89.999999999999986 56 -89.999999999999986 57 -89.999999999999986 58 -89.999999999999986 + 59 -89.999999999999986 60 -89.999999999999986 61 -89.999999999999986 62 -89.999999999999986 + 63 -89.999999999999986 64 -89.999999999999986 65 -89.999999999999986 66 -89.999999999999986 + 67 -89.999999999999986 68 -89.999999999999986 69 -89.999999999999986 70 -89.999999999999986 + 71 -89.999999999999986 72 -89.999999999999986 73 -89.999999999999986 74 -89.999999999999986 + 75 -89.999999999999986 76 -89.999999999999986 77 -89.999999999999986 78 -89.999999999999986 + 79 -89.999999999999986 80 -89.999999999999986 81 -89.999999999999986 82 -89.999999999999986 + 83 -89.999999999999986 84 -89.999999999999986 85 -89.999999999999986 86 -89.999999999999986 + 87 -89.999999999999986 88 -89.999999999999986 89 -89.999999999999986 90 -89.999999999999986 + 91 -89.999999999999986 92 -89.999999999999986 93 -89.999999999999986 94 -89.999999999999986 + 95 -89.999999999999986 96 -89.999999999999986 97 -89.999999999999986 98 -89.999999999999986 + 99 -89.999999999999986 100 -89.999999999999986 101 -89.999999999999986 102 -89.999999999999986 + 103 -89.999999999999986 104 -89.999999999999986 105 -89.999999999999986 106 -89.999999999999986 + 107 -89.999999999999986 108 -89.999999999999986 109 -89.999999999999986 110 -89.999999999999986 + 111 -89.999999999999986 112 -89.999999999999986 113 -89.999999999999986 114 -89.999999999999986 + 115 -89.999999999999986 116 -89.999999999999986 117 -89.999999999999986 118 -89.999999999999986 + 119 -89.999999999999986 120 -89.999999999999986 121 -89.999999999999986 122 -89.999999999999986 + 123 -89.999999999999986 124 -89.999999999999986 125 -89.999999999999986 126 -89.999999999999986 + 127 -89.999999999999986 128 -89.999999999999986; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTA -n "allCamera:cam_rotateY"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 0 2 0 3 0 4 0 5 0 6 0 7 0 8 0 9 0 10 0 + 11 0 12 0 13 0 14 0 15 0 16 0 17 0 18 0 19 0 20 0 21 0 22 0 23 0 24 0 25 0 26 0 27 0 + 28 0 29 0 30 0 31 0 32 0 33 0 34 0 35 0 36 0 37 0 38 0 39 0 40 0 41 0 42 0 43 0 44 0 + 45 0 46 0 47 0 48 0 49 0 50 0 51 0 52 0 53 0 54 0 55 0 56 0 57 0 58 0 59 0 60 0 61 0 + 62 0 63 0 64 0 65 0 66 0 67 0 68 0 69 0 70 0 71 0 72 0 73 0 74 0 75 0 76 0 77 0 78 0 + 79 0 80 0 81 0 82 0 83 0 84 0 85 0 86 0 87 0 88 0 89 0 90 0 91 0 92 0 93 0 94 0 95 0 + 96 0 97 0 98 0 99 0 100 0 101 0 102 0 103 0 104 0 105 0 106 0 107 0 108 0 109 0 110 0 + 111 0 112 0 113 0 114 0 115 0 116 0 117 0 118 0 119 0 120 0 121 0 122 0 123 0 124 0 + 125 0 126 0 127 0 128 0; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTA -n "allCamera:cam_rotateZ"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 0 2 0 3 0 4 0 5 0 6 0 7 0 8 0 9 0 10 0 + 11 0 12 0 13 0 14 0 15 0 16 0 17 0 18 0 19 0 20 0 21 0 22 0 23 0 24 0 25 0 26 0 27 0 + 28 0 29 0 30 0 31 0 32 0 33 0 34 0 35 0 36 0 37 0 38 0 39 0 40 0 41 0 42 0 43 0 44 0 + 45 0 46 0 47 0 48 0 49 0 50 0 51 0 52 0 53 0 54 0 55 0 56 0 57 0 58 0 59 0 60 0 61 0 + 62 0 63 0 64 0 65 0 66 0 67 0 68 0 69 0 70 0 71 0 72 0 73 0 74 0 75 0 76 0 77 0 78 0 + 79 0 80 0 81 0 82 0 83 0 84 0 85 0 86 0 87 0 88 0 89 0 90 0 91 0 92 0 93 0 94 0 95 0 + 96 0 97 0 98 0 99 0 100 0 101 0 102 0 103 0 104 0 105 0 106 0 107 0 108 0 109 0 110 0 + 111 0 112 0 113 0 114 0 115 0 116 0 117 0 118 0 119 0 120 0 121 0 122 0 123 0 124 0 + 125 0 126 0 127 0 128 0; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTU -n "allCamera:cam_scaleX"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9 1 10 1 + 11 1 12 1 13 1 14 1 15 1 16 1 17 1 18 1 19 1 20 1 21 1 22 1 23 1 24 1 25 1 26 1 27 1 + 28 1 29 1 30 1 31 1 32 1 33 1 34 1 35 1 36 1 37 1 38 1 39 1 40 1 41 1 42 1 43 1 44 1 + 45 1 46 1 47 1 48 1 49 1 50 1 51 1 52 1 53 1 54 1 55 1 56 1 57 1 58 1 59 1 60 1 61 1 + 62 1 63 1 64 1 65 1 66 1 67 1 68 1 69 1 70 1 71 1 72 1 73 1 74 1 75 1 76 1 77 1 78 1 + 79 1 80 1 81 1 82 1 83 1 84 1 85 1 86 1 87 1 88 1 89 1 90 1 91 1 92 1 93 1 94 1 95 1 + 96 1 97 1 98 1 99 1 100 1 101 1 102 1 103 1 104 1 105 1 106 1 107 1 108 1 109 1 110 1 + 111 1 112 1 113 1 114 1 115 1 116 1 117 1 118 1 119 1 120 1 121 1 122 1 123 1 124 1 + 125 1 126 1 127 1 128 1; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTU -n "allCamera:cam_scaleY"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9 1 10 1 + 11 1 12 1 13 1 14 1 15 1 16 1 17 1 18 1 19 1 20 1 21 1 22 1 23 1 24 1 25 1 26 1 27 1 + 28 1 29 1 30 1 31 1 32 1 33 1 34 1 35 1 36 1 37 1 38 1 39 1 40 1 41 1 42 1 43 1 44 1 + 45 1 46 1 47 1 48 1 49 1 50 1 51 1 52 1 53 1 54 1 55 1 56 1 57 1 58 1 59 1 60 1 61 1 + 62 1 63 1 64 1 65 1 66 1 67 1 68 1 69 1 70 1 71 1 72 1 73 1 74 1 75 1 76 1 77 1 78 1 + 79 1 80 1 81 1 82 1 83 1 84 1 85 1 86 1 87 1 88 1 89 1 90 1 91 1 92 1 93 1 94 1 95 1 + 96 1 97 1 98 1 99 1 100 1 101 1 102 1 103 1 104 1 105 1 106 1 107 1 108 1 109 1 110 1 + 111 1 112 1 113 1 114 1 115 1 116 1 117 1 118 1 119 1 120 1 121 1 122 1 123 1 124 1 + 125 1 126 1 127 1 128 1; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTU -n "allCamera:cam_scaleZ"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9 1 10 1 + 11 1 12 1 13 1 14 1 15 1 16 1 17 1 18 1 19 1 20 1 21 1 22 1 23 1 24 1 25 1 26 1 27 1 + 28 1 29 1 30 1 31 1 32 1 33 1 34 1 35 1 36 1 37 1 38 1 39 1 40 1 41 1 42 1 43 1 44 1 + 45 1 46 1 47 1 48 1 49 1 50 1 51 1 52 1 53 1 54 1 55 1 56 1 57 1 58 1 59 1 60 1 61 1 + 62 1 63 1 64 1 65 1 66 1 67 1 68 1 69 1 70 1 71 1 72 1 73 1 74 1 75 1 76 1 77 1 78 1 + 79 1 80 1 81 1 82 1 83 1 84 1 85 1 86 1 87 1 88 1 89 1 90 1 91 1 92 1 93 1 94 1 95 1 + 96 1 97 1 98 1 99 1 100 1 101 1 102 1 103 1 104 1 105 1 106 1 107 1 108 1 109 1 110 1 + 111 1 112 1 113 1 114 1 115 1 116 1 117 1 118 1 119 1 120 1 121 1 122 1 123 1 124 1 + 125 1 126 1 127 1 128 1; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTU -n "allCamera:cam_visibility"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9 1 10 1 + 11 1 12 1 13 1 14 1 15 1 16 1 17 1 18 1 19 1 20 1 21 1 22 1 23 1 24 1 25 1 26 1 27 1 + 28 1 29 1 30 1 31 1 32 1 33 1 34 1 35 1 36 1 37 1 38 1 39 1 40 1 41 1 42 1 43 1 44 1 + 45 1 46 1 47 1 48 1 49 1 50 1 51 1 52 1 53 1 54 1 55 1 56 1 57 1 58 1 59 1 60 1 61 1 + 62 1 63 1 64 1 65 1 66 1 67 1 68 1 69 1 70 1 71 1 72 1 73 1 74 1 75 1 76 1 77 1 78 1 + 79 1 80 1 81 1 82 1 83 1 84 1 85 1 86 1 87 1 88 1 89 1 90 1 91 1 92 1 93 1 94 1 95 1 + 96 1 97 1 98 1 99 1 100 1 101 1 102 1 103 1 104 1 105 1 106 1 107 1 108 1 109 1 110 1 + 111 1 112 1 113 1 114 1 115 1 116 1 117 1 118 1 119 1 120 1 121 1 122 1 123 1 124 1 + 125 1 126 1 127 1 128 1; +createNode animCurveTU -n "allCamera:camShape_visibility"; + setAttr ".tan" 18; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9 1 10 1 + 11 1 12 1 13 1 14 1 15 1 16 1 17 1 18 1 19 1 20 1 21 1 22 1 23 1 24 1 25 1 26 1 27 1 + 28 1 29 1 30 1 31 1 32 1 33 1 34 1 35 1 36 1 37 1 38 1 39 1 40 1 41 1 42 1 43 1 44 1 + 45 1 46 1 47 1 48 1 49 1 50 1 51 1 52 1 53 1 54 1 55 1 56 1 57 1 58 1 59 1 60 1 61 1 + 62 1 63 1 64 1 65 1 66 1 67 1 68 1 69 1 70 1 71 1 72 1 73 1 74 1 75 1 76 1 77 1 78 1 + 79 1 80 1 81 1 82 1 83 1 84 1 85 1 86 1 87 1 88 1 89 1 90 1 91 1 92 1 93 1 94 1 95 1 + 96 1 97 1 98 1 99 1 100 1 101 1 102 1 103 1 104 1 105 1 106 1 107 1 108 1 109 1 110 1 + 111 1 112 1 113 1 114 1 115 1 116 1 117 1 118 1 119 1 120 1 121 1 122 1 123 1 124 1 + 125 1 126 1 127 1 128 1; +createNode animCurveTU -n "allCamera:camShape_focalLength"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 50 2 50 3 50 4 50 5 50 6 50 7 50 8 50 + 9 50 10 50 11 50 12 50 13 50 14 50 15 50 16 50 17 50 18 50 19 50 20 50 21 50 22 50 + 23 50 24 50 25 50 26 50 27 50 28 50 29 50 30 50 31 50 32 50 33 50 34 50 35 50 36 50 + 37 50 38 50 39 50 40 50 41 50 42 50 43 50 44 50 45 50 46 50 47 50 48 50 49 50 50 50 + 51 50 52 50 53 50 54 50 55 50 56 50 57 50 58 50 59 50 60 50 61 50 62 50 63 50 64 50 + 65 50 66 50 67 50 68 50 69 50 70 50 71 50 72 50 73 50 74 50 75 50 76 50 77 50 78 50 + 79 50 80 50 81 50 82 50 83 50 84 50 85 50 86 50 87 50 88 50 89 50 90 50 91 50 92 50 + 93 50 94 50 95 50 96 50 97 50 98 50 99 50 100 50 101 50 102 50 103 50 104 50 105 50 + 106 50 107 50 108 50 109 50 110 50 111 50 112 50 113 50 114 50 115 50 116 50 117 50 + 118 50 119 50 120 50 121 50 122 50 123 50 124 50 125 50 126 50 127 50 128 50; +createNode animCurveTU -n "allCamera:camShape_lensSqueezeRatio"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9 1 10 1 + 11 1 12 1 13 1 14 1 15 1 16 1 17 1 18 1 19 1 20 1 21 1 22 1 23 1 24 1 25 1 26 1 27 1 + 28 1 29 1 30 1 31 1 32 1 33 1 34 1 35 1 36 1 37 1 38 1 39 1 40 1 41 1 42 1 43 1 44 1 + 45 1 46 1 47 1 48 1 49 1 50 1 51 1 52 1 53 1 54 1 55 1 56 1 57 1 58 1 59 1 60 1 61 1 + 62 1 63 1 64 1 65 1 66 1 67 1 68 1 69 1 70 1 71 1 72 1 73 1 74 1 75 1 76 1 77 1 78 1 + 79 1 80 1 81 1 82 1 83 1 84 1 85 1 86 1 87 1 88 1 89 1 90 1 91 1 92 1 93 1 94 1 95 1 + 96 1 97 1 98 1 99 1 100 1 101 1 102 1 103 1 104 1 105 1 106 1 107 1 108 1 109 1 110 1 + 111 1 112 1 113 1 114 1 115 1 116 1 117 1 118 1 119 1 120 1 121 1 122 1 123 1 124 1 + 125 1 126 1 127 1 128 1; +createNode animCurveTU -n "allCamera:camShape_fStop"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 5.6 2 5.6 3 5.6 4 5.6 5 5.6 6 5.6 7 5.6 + 8 5.6 9 5.6 10 5.6 11 5.6 12 5.6 13 5.6 14 5.6 15 5.6 16 5.6 17 5.6 18 5.6 19 5.6 + 20 5.6 21 5.6 22 5.6 23 5.6 24 5.6 25 5.6 26 5.6 27 5.6 28 5.6 29 5.6 30 5.6 31 5.6 + 32 5.6 33 5.6 34 5.6 35 5.6 36 5.6 37 5.6 38 5.6 39 5.6 40 5.6 41 5.6 42 5.6 43 5.6 + 44 5.6 45 5.6 46 5.6 47 5.6 48 5.6 49 5.6 50 5.6 51 5.6 52 5.6 53 5.6 54 5.6 55 5.6 + 56 5.6 57 5.6 58 5.6 59 5.6 60 5.6 61 5.6 62 5.6 63 5.6 64 5.6 65 5.6 66 5.6 67 5.6 + 68 5.6 69 5.6 70 5.6 71 5.6 72 5.6 73 5.6 74 5.6 75 5.6 76 5.6 77 5.6 78 5.6 79 5.6 + 80 5.6 81 5.6 82 5.6 83 5.6 84 5.6 85 5.6 86 5.6 87 5.6 88 5.6 89 5.6 90 5.6 91 5.6 + 92 5.6 93 5.6 94 5.6 95 5.6 96 5.6 97 5.6 98 5.6 99 5.6 100 5.6 101 5.6 102 5.6 103 5.6 + 104 5.6 105 5.6 106 5.6 107 5.6 108 5.6 109 5.6 110 5.6 111 5.6 112 5.6 113 5.6 114 5.6 + 115 5.6 116 5.6 117 5.6 118 5.6 119 5.6 120 5.6 121 5.6 122 5.6 123 5.6 124 5.6 125 5.6 + 126 5.6 127 5.6 128 5.6; +createNode animCurveTL -n "allCamera:camShape_focusDistance"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 5 2 5 3 5 4 5 5 5 6 5 7 5 8 5 9 5 10 5 + 11 5 12 5 13 5 14 5 15 5 16 5 17 5 18 5 19 5 20 5 21 5 22 5 23 5 24 5 25 5 26 5 27 5 + 28 5 29 5 30 5 31 5 32 5 33 5 34 5 35 5 36 5 37 5 38 5 39 5 40 5 41 5 42 5 43 5 44 5 + 45 5 46 5 47 5 48 5 49 5 50 5 51 5 52 5 53 5 54 5 55 5 56 5 57 5 58 5 59 5 60 5 61 5 + 62 5 63 5 64 5 65 5 66 5 67 5 68 5 69 5 70 5 71 5 72 5 73 5 74 5 75 5 76 5 77 5 78 5 + 79 5 80 5 81 5 82 5 83 5 84 5 85 5 86 5 87 5 88 5 89 5 90 5 91 5 92 5 93 5 94 5 95 5 + 96 5 97 5 98 5 99 5 100 5 101 5 102 5 103 5 104 5 105 5 106 5 107 5 108 5 109 5 110 5 + 111 5 112 5 113 5 114 5 115 5 116 5 117 5 118 5 119 5 120 5 121 5 122 5 123 5 124 5 + 125 5 126 5 127 5 128 5; +createNode animCurveTA -n "allCamera:camShape_shutterAngle"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 144 2 144 3 144 4 144 5 144 6 144 7 144 + 8 144 9 144 10 144 11 144 12 144 13 144 14 144 15 144 16 144 17 144 18 144 19 144 + 20 144 21 144 22 144 23 144 24 144 25 144 26 144 27 144 28 144 29 144 30 144 31 144 + 32 144 33 144 34 144 35 144 36 144 37 144 38 144 39 144 40 144 41 144 42 144 43 144 + 44 144 45 144 46 144 47 144 48 144 49 144 50 144 51 144 52 144 53 144 54 144 55 144 + 56 144 57 144 58 144 59 144 60 144 61 144 62 144 63 144 64 144 65 144 66 144 67 144 + 68 144 69 144 70 144 71 144 72 144 73 144 74 144 75 144 76 144 77 144 78 144 79 144 + 80 144 81 144 82 144 83 144 84 144 85 144 86 144 87 144 88 144 89 144 90 144 91 144 + 92 144 93 144 94 144 95 144 96 144 97 144 98 144 99 144 100 144 101 144 102 144 103 144 + 104 144 105 144 106 144 107 144 108 144 109 144 110 144 111 144 112 144 113 144 114 144 + 115 144 116 144 117 144 118 144 119 144 120 144 121 144 122 144 123 144 124 144 125 144 + 126 144 127 144 128 144; +createNode animCurveTL -n "allCamera:camShape_centerOfInterest"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 99.250589942850468 2 99.250589942850468 + 3 99.250589942850468 4 99.250589942850468 5 99.250589942850468 6 99.250589942850468 + 7 99.250589942850468 8 99.250589942850468 9 99.250589942850468 10 99.250589942850468 + 11 99.250589942850468 12 99.250589942850468 13 99.250589942850468 14 99.250589942850468 + 15 99.250589942850468 16 99.250589942850468 17 99.250589942850468 18 99.250589942850468 + 19 99.250589942850468 20 99.250589942850468 21 99.250589942850468 22 99.250589942850468 + 23 99.250589942850468 24 99.250589942850468 25 99.250589942850468 26 99.250589942850468 + 27 99.250589942850468 28 99.250589942850468 29 99.250589942850468 30 99.250589942850468 + 31 99.250589942850468 32 99.250589942850468 33 99.250589942850468 34 99.250589942850468 + 35 99.250589942850468 36 99.250589942850468 37 99.250589942850468 38 99.250589942850468 + 39 99.250589942850468 40 99.250589942850468 41 99.250589942850468 42 99.250589942850468 + 43 99.250589942850468 44 99.250589942850468 45 99.250589942850468 46 99.250589942850468 + 47 99.250589942850468 48 99.250589942850468 49 99.250589942850468 50 99.250589942850468 + 51 99.250589942850468 52 99.250589942850468 53 99.250589942850468 54 99.250589942850468 + 55 99.250589942850468 56 99.250589942850468 57 99.250589942850468 58 99.250589942850468 + 59 99.250589942850468 60 99.250589942850468 61 99.250589942850468 62 99.250589942850468 + 63 99.250589942850468 64 99.250589942850468 65 99.250589942850468 66 99.250589942850468 + 67 99.250589942850468 68 99.250589942850468 69 99.250589942850468 70 99.250589942850468 + 71 99.250589942850468 72 99.250589942850468 73 99.250589942850468 74 99.250589942850468 + 75 99.250589942850468 76 99.250589942850468 77 99.250589942850468 78 99.250589942850468 + 79 99.250589942850468 80 99.250589942850468 81 99.250589942850468 82 99.250589942850468 + 83 99.250589942850468 84 99.250589942850468 85 99.250589942850468 86 99.250589942850468 + 87 99.250589942850468 88 99.250589942850468 89 99.250589942850468 90 99.250589942850468 + 91 99.250589942850468 92 99.250589942850468 93 99.250589942850468 94 99.250589942850468 + 95 99.250589942850468 96 99.250589942850468 97 99.250589942850468 98 99.250589942850468 + 99 99.250589942850468 100 99.250589942850468 101 99.250589942850468 102 99.250589942850468 + 103 99.250589942850468 104 99.250589942850468 105 99.250589942850468 106 99.250589942850468 + 107 99.250589942850468 108 99.250589942850468 109 99.250589942850468 110 99.250589942850468 + 111 99.250589942850468 112 99.250589942850468 113 99.250589942850468 114 99.250589942850468 + 115 99.250589942850468 116 99.250589942850468 117 99.250589942850468 118 99.250589942850468 + 119 99.250589942850468 120 99.250589942850468 121 99.250589942850468 122 99.250589942850468 + 123 99.250589942850468 124 99.250589942850468 125 99.250589942850468 126 99.250589942850468 + 127 99.250589942850468 128 99.250589942850468; +select -ne :time1; + setAttr ".o" 26; + setAttr ".unw" 26; +select -ne :renderPartition; + setAttr -s 7 ".st"; +select -ne :renderGlobalsList1; +select -ne :defaultShaderList1; + setAttr -s 5 ".s"; +select -ne :postProcessList1; + setAttr -s 2 ".p"; +select -ne :defaultRenderUtilityList1; + setAttr -s 6 ".u"; +select -ne :defaultRenderingList1; + setAttr -s 2 ".r"; +select -ne :defaultTextureList1; + setAttr -s 9 ".tx"; +select -ne :particleCloud1; + setAttr ".d" 0.75; + setAttr ".dc" 0.30000001192092896; +select -ne :initialShadingGroup; + setAttr -s 2 ".dsm"; + setAttr ".ro" yes; +select -ne :initialParticleSE; + setAttr ".ro" yes; +select -ne :defaultRenderGlobals; + setAttr ".ren" -type "string" "vray"; + setAttr ".outf" 3; + setAttr ".imfkey" -type "string" "tif"; + setAttr ".an" yes; + setAttr ".fs" 1; + setAttr ".ef" 128; + setAttr ".pff" yes; + setAttr ".cpe" yes; + setAttr ".ocp" 3; +select -ne :defaultResolution; + setAttr ".w" 1024; + setAttr ".h" 1024; + setAttr ".pa" 1; + setAttr ".dar" 1; +select -ne :hardwareRenderGlobals; + setAttr ".ctrs" 256; + setAttr ".btrs" 512; +select -ne :defaultHardwareRenderGlobals; + setAttr ".res" -type "string" "ntsc_4d 646 485 1.333"; +connectAttr "emitter.di" "fxExpFire_obj.do"; +connectAttr "polySphere1.out" "fxExpFire_objShape.i"; +connectAttr ":time1.o" "fxEpxFire_emitter.ct"; +connectAttr "geoConnector1.ocd" "fxEpxFire_emitter.ocd"; +connectAttr "geoConnector1.ocl" "fxEpxFire_emitter.t"; +connectAttr "geoConnector1.pos" "fxEpxFire_emitter.opd"; +connectAttr "geoConnector1.vel" "fxEpxFire_emitter.ovd"; +connectAttr "geoConnector1.swg" "fxEpxFire_emitter.swge"; +connectAttr "fxExpFire_particleShape.ifl" "fxEpxFire_emitter.full[0]"; +connectAttr "fxExpFire_particleShape.tss" "fxEpxFire_emitter.dt[0]"; +connectAttr "fxExpFire_particleShape.inh" "fxEpxFire_emitter.inh[0]"; +connectAttr "fxExpFire_particleShape.stt" "fxEpxFire_emitter.stt[0]"; +connectAttr "fxExpFire_particleShape.sd[0]" "fxEpxFire_emitter.sd[0]"; +connectAttr "emitter011_rate.o" "fxEpxFire_emitter.rat"; +connectAttr ":time1.o" "fxExpFire_particleShape.cti"; +connectAttr "fxEpxFire_emitter.ot[0]" "fxExpFire_particleShape.npt[0]"; +connectAttr "volumeAxisField1.of[0]" "fxExpFire_particleShape.ifc[0]"; +connectAttr "dragField1.of[0]" "fxExpFire_particleShape.ifc[1]"; +connectAttr "arrayMapper1.ovpp" "fxExpFire_particleShape.radiusPP"; +connectAttr "arrayMapper2.ovpp" "fxExpFire_particleShape.opacityPP"; +connectAttr "fxExpFire_particleShape.xo[0]" "fxExpFire_particleShape.lifespanPP" + ; +connectAttr ":time1.o" "dragField1.cti"; +connectAttr "fxExpFire_particleShape.fd" "dragField1.ind[0]"; +connectAttr "fxExpFire_particleShape.ppfd[1]" "dragField1.ppda[0]"; +connectAttr "fxExpFire_particleShape.fd" "volumeAxisField1.ind[0]"; +connectAttr "fxExpFire_particleShape.ppfd[0]" "volumeAxisField1.ppda[0]"; +connectAttr ":time1.o" "volumeAxisField1.tim"; +connectAttr "fx_expFire_COL.ri" "fumeFX_A.rlio[0]"; +connectAttr ":time1.o" "fumeFX_AShape.tm"; +connectAttr "fumeFX_A.wim" "fumeFX_AShape.rndrMat"; +connectAttr "ffxParticleSource_A.msg" "fumeFX_AShape.ffxs[0]"; +connectAttr "fumeFX_AShape_expansion.o" "fumeFX_AShape.expan"; +connectAttr "fumeFX_AShape_dissipation_strength.o" "fumeFX_AShape.dissipstren"; +connectAttr "fumeFX_AShape_dissipation_min_dens.o" "fumeFX_AShape.dissipmindens" + ; +connectAttr "fumeFX_AShape_scale.o" "fumeFX_AShape.tnoisescale"; +connectAttr "fumeFX_AShape_sh_smoke_opacity.o" "fumeFX_AShape.sh_smo"; +connectAttr "fumeFX_AShape_sh_vis_falloff.o" "fumeFX_AShape.sh_vfo"; +connectAttr "fumeFX_AShape.acenterx" "ffxMRVol1.tx" -l on; +connectAttr "fumeFX_AShape.acentery" "ffxMRVol1.ty" -l on; +connectAttr "fumeFX_AShape.acenterz" "ffxMRVol1.tz" -l on; +connectAttr "fumeFX_AShape.awid" "ffxMRVolShape1.szx"; +connectAttr "fumeFX_AShape.ahgt" "ffxMRVolShape1.szy"; +connectAttr "fumeFX_AShape.alen" "ffxMRVolShape1.szz"; +connectAttr "ffxMRVolShape1_linkExp.out[0]" "ffxMRVolShape1.vss"; +connectAttr "ffxMRVolShape1_linkExp.out[1]" "ffxMRVolShape1.vso"; +connectAttr "fumeFX_AShape.os" "ffxWarpsHandleShape1.is"; +connectAttr "fx_expFire_COL.ri" "ffxParticleSource_A.rlio[0]"; +connectAttr ":time1.o" "ffxParticleSource_AProxy.tm"; +connectAttr "fxExpFire_particle.msg" "ffxParticleSource_AProxy.pss[0]"; +connectAttr "ffxParticleSource_AProxy_rate.o" "ffxParticleSource_AProxy.ra"; +connectAttr "ffxParticleSource_AProxy_fuel_amount.o" "ffxParticleSource_AProxy.famt" + ; +connectAttr "allCamera:cam_translateX.o" "allCamera:cam.tx"; +connectAttr "allCamera:cam_translateY.o" "allCamera:cam.ty"; +connectAttr "allCamera:cam_translateZ.o" "allCamera:cam.tz"; +connectAttr "allCamera:cam_rotateX.o" "allCamera:cam.rx"; +connectAttr "allCamera:cam_rotateY.o" "allCamera:cam.ry"; +connectAttr "allCamera:cam_rotateZ.o" "allCamera:cam.rz"; +connectAttr "allCamera:cam_scaleX.o" "allCamera:cam.sx"; +connectAttr "allCamera:cam_scaleY.o" "allCamera:cam.sy"; +connectAttr "allCamera:cam_scaleZ.o" "allCamera:cam.sz"; +connectAttr "allCamera:cam_visibility.o" "allCamera:cam.v"; +connectAttr "allCamera:camShape_visibility.o" "allCamera:camShape.v"; +connectAttr "allCamera:camShape_focalLength.o" "allCamera:camShape.fl"; +connectAttr "allCamera:camShape_lensSqueezeRatio.o" "allCamera:camShape.lsr"; +connectAttr "allCamera:camShape_fStop.o" "allCamera:camShape.fs"; +connectAttr "allCamera:camShape_focusDistance.o" "allCamera:camShape.fd"; +connectAttr "allCamera:camShape_shutterAngle.o" "allCamera:camShape.sa"; +connectAttr "allCamera:camShape_centerOfInterest.o" "allCamera:camShape.coi"; +connectAttr "body.di" "taiki:taiki.do"; +relationship "link" ":lightLinker1" ":initialShadingGroup.message" ":defaultLightSet.message"; +relationship "link" ":lightLinker1" ":initialParticleSE.message" ":defaultLightSet.message"; +relationship "link" ":lightLinker1" "fumeFX1SG.message" ":defaultLightSet.message"; +relationship "link" ":lightLinker1" "particleCloud2SG.message" ":defaultLightSet.message"; +relationship "link" ":lightLinker1" "surfaceShader1SG.message" ":defaultLightSet.message"; +relationship "link" ":lightLinker1" "fumeFX2SG.message" ":defaultLightSet.message"; +relationship "link" ":lightLinker1" "fumeFX3SG.message" ":defaultLightSet.message"; +relationship "shadowLink" ":lightLinker1" ":initialShadingGroup.message" ":defaultLightSet.message"; +relationship "shadowLink" ":lightLinker1" ":initialParticleSE.message" ":defaultLightSet.message"; +relationship "shadowLink" ":lightLinker1" "fumeFX1SG.message" ":defaultLightSet.message"; +relationship "shadowLink" ":lightLinker1" "particleCloud2SG.message" ":defaultLightSet.message"; +relationship "shadowLink" ":lightLinker1" "surfaceShader1SG.message" ":defaultLightSet.message"; +relationship "shadowLink" ":lightLinker1" "fumeFX2SG.message" ":defaultLightSet.message"; +relationship "shadowLink" ":lightLinker1" "fumeFX3SG.message" ":defaultLightSet.message"; +connectAttr "layerManager.dli[0]" "defaultLayer.id"; +connectAttr "renderLayerManager.rlmi[0]" "defaultRenderLayer.rlid"; +connectAttr "radius_ramp.msg" "radius_arrayMapper.cn"; +connectAttr "radius_ramp.oc" "radius_arrayMapper.cnc"; +connectAttr "expression3.out[0]" "radius_arrayMapper.min"; +connectAttr "expression4.out[0]" "radius_arrayMapper.max"; +connectAttr "fumeFX_AShape.tnoisescale" "ffxTurbulenceShader1.tnoisescale"; +connectAttr "fumeFX_AShape.tnoisedet" "ffxTurbulenceShader1.tnoisedet"; +connectAttr "fumeFX_AShape.tnoisefrms" "ffxTurbulenceShader1.tnoisefrms"; +connectAttr "fumeFX_AShape.tnoiseoffset" "ffxTurbulenceShader1.tnoiseoffset"; +connectAttr "fumeFX_AShape.wid" "ffxTurbulenceShader1.w"; +connectAttr ":time1.o" "ffxTurbulenceShader1.tm"; +connectAttr "ffxMRVolShape1.iog" "fumeFX1SG.dsm" -na; +connectAttr "fumeFX_AShape.msg" "fumeFX1SG.vs"; +connectAttr "fumeFX1SG.msg" "materialInfo1.sg"; +connectAttr "fumeFX_AShape.vss" "ffxMRVolShape1_linkExp.in[0]"; +connectAttr "fumeFX_AShape.sh_vm" "ffxMRVolShape1_linkExp.in[1]"; +connectAttr ":time1.o" "ffxMRVolShape1_linkExp.tim"; +connectAttr "ffxMRVolShape1.msg" "ffxMRVolShape1_linkExp.obm"; +connectAttr ":mentalrayGlobals.msg" ":mentalrayItemsList.glb"; +connectAttr ":miDefaultOptions.msg" ":mentalrayItemsList.opt" -na; +connectAttr ":PreviewImrRayTracyOff.msg" ":mentalrayItemsList.opt" -na; +connectAttr ":PreviewImrRayTracyOn.msg" ":mentalrayItemsList.opt" -na; +connectAttr ":miContourPreset.msg" ":mentalrayItemsList.opt" -na; +connectAttr ":Draft.msg" ":mentalrayItemsList.opt" -na; +connectAttr ":DraftMotionBlur.msg" ":mentalrayItemsList.opt" -na; +connectAttr ":DraftRapidMotion.msg" ":mentalrayItemsList.opt" -na; +connectAttr ":Preview.msg" ":mentalrayItemsList.opt" -na; +connectAttr ":PreviewMotionblur.msg" ":mentalrayItemsList.opt" -na; +connectAttr ":PreviewRapidMotion.msg" ":mentalrayItemsList.opt" -na; +connectAttr ":PreviewCaustics.msg" ":mentalrayItemsList.opt" -na; +connectAttr ":PreviewGlobalIllum.msg" ":mentalrayItemsList.opt" -na; +connectAttr ":PreviewFinalGather.msg" ":mentalrayItemsList.opt" -na; +connectAttr ":Production.msg" ":mentalrayItemsList.opt" -na; +connectAttr ":ProductionMotionblur.msg" ":mentalrayItemsList.opt" -na; +connectAttr ":ProductionRapidMotion.msg" ":mentalrayItemsList.opt" -na; +connectAttr ":ProductionFineTrace.msg" ":mentalrayItemsList.opt" -na; +connectAttr ":ProductionRapidFur.msg" ":mentalrayItemsList.opt" -na; +connectAttr ":ProductionRapidHair.msg" ":mentalrayItemsList.opt" -na; +connectAttr ":miDefaultFramebuffer.msg" ":mentalrayItemsList.fb" -na; +connectAttr ":miDefaultOptions.msg" ":mentalrayGlobals.opt"; +connectAttr ":miDefaultFramebuffer.msg" ":mentalrayGlobals.fb"; +connectAttr "place2dTexture1.o" "fractal1.uv"; +connectAttr "place2dTexture1.ofs" "fractal1.fs"; +connectAttr ":time1.o" "expression1.tim"; +connectAttr "ffxParticleSource_AProxy.msg" "expression1.obm"; +connectAttr "particleSamplerInfo2.ouv" "opacity_ramp.uv"; +connectAttr "particleSamplerInfo1.ouv" "RGB_ramp.uv"; +connectAttr "layerManager.dli[1]" "emitter.id"; +connectAttr "place3dTexture1.wim" "volumeNoise1.pm"; +connectAttr "place3dTexture2.wim" "volumeNoise2.pm"; +connectAttr "expression2.out[0]" "volumeNoise2.ti"; +connectAttr ":time1.o" "expression2.tim"; +connectAttr "volumeNoise2.msg" "expression2.obm"; +connectAttr "place2dTexture2.o" "ramp1.uv"; +connectAttr "place2dTexture2.ofs" "ramp1.fs"; +connectAttr ":time1.o" "expression3.tim"; +connectAttr "radius_arrayMapper.msg" "expression3.obm"; +connectAttr ":time1.o" "expression4.tim"; +connectAttr "radius_arrayMapper.msg" "expression4.obm"; +connectAttr "particleCloud2.oi" "particleCloud2SG.vs"; +connectAttr "particleCloud2SG.msg" "materialInfo2.sg"; +connectAttr ":time1.o" "geoConnector1.ct"; +connectAttr "fxExpFire_objShape.o" "geoConnector1.lge"; +connectAttr "fxExpFire_objShape.wm" "geoConnector1.wm"; +connectAttr "fxExpFire_objShape.msg" "geoConnector1.own"; +connectAttr "surfaceShader1.oc" "surfaceShader1SG.ss"; +connectAttr "surfaceShader1SG.msg" "materialInfo3.sg"; +connectAttr "surfaceShader1.msg" "materialInfo3.m"; +connectAttr "surfaceShader1.msg" "materialInfo3.t" -na; +connectAttr "ramp2.msg" "arrayMapper1.cn"; +connectAttr "ramp2.oc" "arrayMapper1.cnc"; +connectAttr "fxExpFire_particleShape.ageNormalized" "arrayMapper1.vpp"; +connectAttr "ramp3.msg" "arrayMapper2.cn"; +connectAttr "ramp3.oc" "arrayMapper2.cnc"; +connectAttr "fxExpFire_particleShape.ageNormalized" "arrayMapper2.vpp"; +connectAttr "renderLayerManager.rlmi[1]" "fx_expFire_COL.rlid"; +connectAttr "fumeFX2SG.msg" "materialInfo4.sg"; +connectAttr "fumeFX3SG.msg" "materialInfo5.sg"; +connectAttr "layerManager.dli[3]" "body.id"; +connectAttr "fumeFX1SG.pa" ":renderPartition.st" -na; +connectAttr "particleCloud2SG.pa" ":renderPartition.st" -na; +connectAttr "surfaceShader1SG.pa" ":renderPartition.st" -na; +connectAttr "fumeFX2SG.pa" ":renderPartition.st" -na; +connectAttr "fumeFX3SG.pa" ":renderPartition.st" -na; +connectAttr "ffxTurbulenceShader1.msg" ":defaultShaderList1.s" -na; +connectAttr "particleCloud2.msg" ":defaultShaderList1.s" -na; +connectAttr "surfaceShader1.msg" ":defaultShaderList1.s" -na; +connectAttr "place2dTexture1.msg" ":defaultRenderUtilityList1.u" -na; +connectAttr "place3dTexture1.msg" ":defaultRenderUtilityList1.u" -na; +connectAttr "particleSamplerInfo1.msg" ":defaultRenderUtilityList1.u" -na; +connectAttr "place3dTexture2.msg" ":defaultRenderUtilityList1.u" -na; +connectAttr "place2dTexture2.msg" ":defaultRenderUtilityList1.u" -na; +connectAttr "particleSamplerInfo2.msg" ":defaultRenderUtilityList1.u" -na; +connectAttr "defaultRenderLayer.msg" ":defaultRenderingList1.r" -na; +connectAttr "fx_expFire_COL.msg" ":defaultRenderingList1.r" -na; +connectAttr "radius_ramp.msg" ":defaultTextureList1.tx" -na; +connectAttr "fractal1.msg" ":defaultTextureList1.tx" -na; +connectAttr "opacity_ramp.msg" ":defaultTextureList1.tx" -na; +connectAttr "RGB_ramp.msg" ":defaultTextureList1.tx" -na; +connectAttr "volumeNoise1.msg" ":defaultTextureList1.tx" -na; +connectAttr "volumeNoise2.msg" ":defaultTextureList1.tx" -na; +connectAttr "ramp1.msg" ":defaultTextureList1.tx" -na; +connectAttr "ramp2.msg" ":defaultTextureList1.tx" -na; +connectAttr "ramp3.msg" ":defaultTextureList1.tx" -na; +connectAttr "RGB_ramp.oc" ":particleCloud1.c"; +connectAttr "volumeNoise2.oc" ":particleCloud1.m"; +connectAttr "volumeNoise2.oc" ":particleCloud1.t"; +connectAttr "fxExpFire_objShape.iog" ":initialShadingGroup.dsm" -na; +connectAttr "taiki:taikiShape.iog" ":initialShadingGroup.dsm" -na; +connectAttr "fxExpFire_particleShape.iog" ":initialParticleSE.dsm" -na; +// End of EXP001.fxExpFire.ma diff --git a/VFXPackage/Resources/Textures/Maya/FIR001.fxFire.ma b/VFXPackage/Resources/Textures/Maya/FIR001.fxFire.ma new file mode 100644 index 0000000..55b66cc --- /dev/null +++ b/VFXPackage/Resources/Textures/Maya/FIR001.fxFire.ma @@ -0,0 +1,8634 @@ +//Maya ASCII 2015 scene +//Name: FIR001.fxFire.ma +//Last modified: Wed, Apr 27, 2016 01:05:58 PM +//Codeset: 932 +requires maya "2015"; +requires -nodeType "mentalrayFramebuffer" -nodeType "mentalrayOptions" -nodeType "mentalrayGlobals" + -nodeType "mentalrayItemsList" -dataType "byteArray" "Mayatomr" "2015.0 - 3.12.1.18 "; +requires -nodeType "VRaySettingsNode" -dataType "vrayFloatVectorData" -dataType "vrayFloatVectorData" + -dataType "vrayIntData" "vrayformaya" "3.30.01"; +requires -nodeType "ffxDyna" -nodeType "ffxParticleSource" -nodeType "ffxObjectSource" + -nodeType "ffxWarpsHandle" -nodeType "ffxTurbulenceShader" -dataType "ffxMeshData" + "FumeFX" "FumeFX3.5.8-2014_07_30-PTxihnQcZP3aiJoqdo5F"; +requires "mtorsubdiv" "1.1"; +requires "maxwell" "1.6.4"; +requires "TurtleForMaya80" "4.0.0.6"; +currentUnit -l centimeter -a degree -t ntsc; +fileInfo "application" "maya"; +fileInfo "product" "Maya 2015"; +fileInfo "version" "2015"; +fileInfo "cutIdentifier" "201410051530-933320"; +fileInfo "osv" "Microsoft Windows 7 Business Edition, 64-bit Windows 7 Service Pack 1 (Build 7601)\n"; +createNode transform -s -n "persp"; + setAttr ".v" no; + setAttr ".t" -type "double3" 0.31754637593360258 17.415171528096735 52.711872046588439 ; + setAttr ".r" -type "double3" -1.5383526565886549 1.0000000000011524 -1.3979176036245206e-017 ; +createNode camera -s -n "perspShape" -p "persp"; + setAttr -k off ".v" no; + setAttr ".rnd" no; + setAttr ".fl" 31.794661288881883; + setAttr ".coi" 52.381218564017935; + setAttr ".imn" -type "string" "persp"; + setAttr ".den" -type "string" "persp_depth"; + setAttr ".man" -type "string" "persp_mask"; + setAttr ".tp" -type "double3" -12.249795470596277 11.5 0 ; + setAttr ".hc" -type "string" "viewSet -p %camera"; +createNode transform -s -n "top"; + setAttr ".v" no; + setAttr ".t" -type "double3" 0 100.1 0 ; + setAttr ".r" -type "double3" -89.999999999999986 0 0 ; +createNode camera -s -n "topShape" -p "top"; + setAttr -k off ".v" no; + setAttr ".rnd" no; + setAttr ".coi" 100.1; + setAttr ".ow" 30; + setAttr ".imn" -type "string" "top"; + setAttr ".den" -type "string" "top_depth"; + setAttr ".man" -type "string" "top_mask"; + setAttr ".hc" -type "string" "viewSet -t %camera"; + setAttr ".o" yes; +createNode transform -s -n "front"; + setAttr ".v" no; + setAttr ".t" -type "double3" -1.1920928955078125e-007 0.080614089965820313 100.10003246069147 ; +createNode camera -s -n "frontShape" -p "front"; + setAttr -k off ".v" no; + setAttr ".rnd" no; + setAttr ".coi" 100.1; + setAttr ".ow" 1.0526315789473684; + setAttr ".imn" -type "string" "front"; + setAttr ".den" -type "string" "front_depth"; + setAttr ".man" -type "string" "front_mask"; + setAttr ".hc" -type "string" "viewSet -f %camera"; + setAttr ".o" yes; +createNode transform -s -n "side"; + setAttr ".v" no; + setAttr ".t" -type "double3" 100.1 0 0 ; + setAttr ".r" -type "double3" 0 89.999999999999986 0 ; +createNode camera -s -n "sideShape" -p "side"; + setAttr -k off ".v" no; + setAttr ".rnd" no; + setAttr ".coi" 100.1; + setAttr ".ow" 27.807551766138854; + setAttr ".imn" -type "string" "side"; + setAttr ".den" -type "string" "side_depth"; + setAttr ".man" -type "string" "side_mask"; + setAttr ".hc" -type "string" "viewSet -s %camera"; + setAttr ".o" yes; +createNode transform -n "fxFireGrp"; +createNode transform -n "fxFire_obj" -p "fxFireGrp"; + setAttr ".tmp" yes; + setAttr ".t" -type "double3" 0 17 0 ; + setAttr ".r" -type "double3" 119.99999999999999 119.99999999999999 119.99999999999999 ; +createNode mesh -n "fxFire_objShape" -p "fxFire_obj"; + setAttr -k off ".v"; + setAttr ".vir" yes; + setAttr ".vif" yes; + setAttr ".pv" -type "double2" 0.50000001210719347 1 ; + setAttr ".uvst[0].uvsn" -type "string" "map1"; + setAttr ".cuvs" -type "string" "map1"; + setAttr ".dcc" -type "string" "Ambient+Diffuse"; + setAttr ".covm[0]" 0 1 1; + setAttr ".cdvm[0]" 0 1 1; + setAttr -s 81 ".pt[0:80]" -type "float3" -1.2580394 -2.0234261 0.79640526 + -0.96248788 -2.1537721 0.49301791 -0.88362259 -1.6234968 0.81679016 -0.71382129 -1.7200348 + 0.72498894 -0.044259325 -1.8566917 0.71312559 0.2245817 -1.5750165 1.1413153 0.59826857 + -1.5512326 0.76774877 1.1645057 -2.2068558 0.021179795 1.4895151 -1.8929515 -0.32749248 + 1.2841592 -1.2861665 -0.020935252 1.4759232 -2.1360033 -0.29196012 1.0835205 -2.0772319 + -0.52553868 0.26527679 -2.0928628 -1.0552363 0.34085637 -1.5191733 -0.44496888 0.076269627 + -1.7534527 -1.1852658 -0.62456834 -1.1472965 -1.2497402 -0.39809102 -1.8230096 -1.0421646 + -0.52828395 -1.8189911 -0.38175386 -0.99543035 -2.0709763 0.24859706 -1.1048577 -2.0975273 + -0.12721922 -1.0282612 -1.7059091 -0.1188466 -0.55005646 -1.4187973 0.41441146 -0.17901045 + -1.2869433 0.1589718 -0.5339852 -1.9202183 1.1387852 0.0838883 -1.9991602 0.91442305 + 0.34294993 -1.4713742 0.94536388 0.30375597 -1.6952467 0.39197689 0.65845907 -1.4590513 + 0.88601327 0.73196614 -1.9034194 -0.040346794 1.1421264 -1.7162534 -0.36223716 0.12424825 + -2.1947794 -0.71645433 0.79221851 -2.3332462 -0.48203653 0.71527743 -2.0482755 -0.27671218 + 0.067199081 -2.1473503 -0.43879157 -0.20241275 -1.3314954 -1.2788204 -0.35659227 + -2.2451396 -0.79774404 -0.18959738 -1.5662419 -0.74335778 -1.2244092 -2.2170022 -0.68308508 + -0.18386704 -2.208221 -0.7708227 -1.0411566 -1.7086035 0.31369066 0.13220371 -2.2116158 + -0.34148723 -0.49014151 -2.1041234 0.51833808 -0.44949931 -1.9983741 0.35684651 -0.52833676 + -1.6827912 0.12665986 -0.23487107 -1.5774213 0.85004383 0.26755643 -1.5690898 0.99719536 + 0.97164369 -2.4665761 0.23834708 -0.16516568 -1.9901379 0.18442291 1.0190259 -1.9816543 + -0.075578161 0.8547734 -2.0713811 0.50231588 0.88843518 -1.9456906 -0.35794437 0.88858944 + -2.2050889 -0.67047256 0.46082374 -2.2820857 -0.19077334 0.50841808 -1.7683431 -0.86358845 + -0.059152953 -1.5833421 -0.29084179 0.17317086 -2.301512 -0.14299312 -0.77697438 + -1.7344946 -0.14105988 -0.37431037 -1.9135218 -0.44846767 -0.63337982 -2.2531321 + 0.143907 -1.0732365 -2.0811408 0.31068778 0.34789202 -1.4340438 -0.34885269 -0.27564564 + -1.9649866 0.084454902 0.14550492 -2.3093832 0.31824324 0.3758052 -1.7960196 0.17155874 + 0.34622413 -1.8527669 -0.26089379 0.69221753 -1.5586551 0.1121707 -0.41528195 -1.4689273 + 0.54096282 0.27450722 -2.1753445 0.63469869 0.94751912 -1.4277979 0.10971162 -0.28215143 + -1.7767467 -0.27953064 0.63452893 -1.4715961 -0.29928795 0.19953141 -1.904501 -0.72348368 + 0.026423723 -2.186799 -0.34882364 -0.38131794 -2.0101957 -0.12280421 0.20107591 -1.720498 + 0.13089839 -0.38962135 -1.8048363 -0.39848965 0.063141122 -1.2646874 -0.24410951 + -0.56472719 -1.2560216 -0.71315938 0.075080648 -1.9406828 0.35753474 -0.3918854 -2.2057059 + -0.33439624 -0.36861712 -2.0467687 -0.30521774; +createNode pointEmitter -n "fxFire_emitter" -p "fxFire_obj"; + setAttr ".v" no; + setAttr ".emt" 2; + setAttr ".sro" no; + setAttr -l on ".urpp"; + setAttr ".spd" 6; + setAttr ".srnd" 4; + setAttr ".tspd" 0.8; +createNode transform -n "fxFire_particle" -p "fxFireGrp"; + setAttr ".v" no; + setAttr ".tmp" yes; +createNode particle -n "fxFire_particleShape" -p "fxFire_particle"; + addAttr -s false -ci true -sn "lifespanPP" -ln "lifespanPP" -dt "doubleArray"; + addAttr -ci true -h true -sn "lifespanPP0" -ln "lifespanPP0" -dt "doubleArray"; + addAttr -ci true -sn "lifespan" -ln "lifespan" -at "double"; + addAttr -s false -ci true -sn "opacityPP" -ln "opacityPP" -dt "doubleArray"; + addAttr -ci true -h true -sn "opacityPP0" -ln "opacityPP0" -dt "doubleArray"; + addAttr -s false -ci true -sn "ageNormalized" -ln "ageNormalized" -dt "doubleArray"; + addAttr -ci true -h true -sn "ageNormalized0" -ln "ageNormalized0" -dt "doubleArray"; + addAttr -is true -ci true -sn "colorAccum" -ln "colorAccum" -min 0 -max 1 -at "bool"; + addAttr -is true -ci true -sn "useLighting" -ln "useLighting" -min 0 -max 1 -at "bool"; + addAttr -is true -ci true -sn "pointSize" -ln "pointSize" -dv 2 -min 1 -max 60 -at "long"; + addAttr -is true -ci true -sn "multiCount" -ln "multiCount" -dv 10 -min 1 -max 60 + -at "long"; + addAttr -is true -ci true -sn "multiRadius" -ln "multiRadius" -dv 0.3 -min 0 -max + 10 -at "float"; + addAttr -is true -ci true -sn "normalDir" -ln "normalDir" -dv 2 -min 1 -max 3 -at "long"; + addAttr -s false -ci true -sn "radiusPP" -ln "radiusPP" -dt "doubleArray"; + addAttr -ci true -h true -sn "radiusPP0" -ln "radiusPP0" -dt "doubleArray"; + setAttr -k off ".v"; + setAttr ".gf" -type "Int32Array" 0 ; + setAttr -s 2 ".ifc"; + setAttr ".pos0" -type "vectorArray" 0 ; + setAttr ".vel0" -type "vectorArray" 0 ; + setAttr ".acc0" -type "vectorArray" 0 ; + setAttr ".scp" -type "string" "FIR001.fxFire.v12_startup"; + setAttr ".mas0" -type "doubleArray" 0 ; + setAttr ".id0" -type "doubleArray" 0 ; + setAttr ".bt0" -type "doubleArray" 0 ; + setAttr ".ag0" -type "doubleArray" 0 ; + setAttr ".lfm" 3; + setAttr -s 2 ".xo"; + setAttr ".irbx" -type "string" ""; + setAttr ".irax" -type "string" ""; + setAttr ".icx" -type "string" ".O[0] = rand(1.0, 2.5);\n\n.O[1] = rand(0.05, 0.25);"; + setAttr ".isd" no; + setAttr ".con" 0.99; + setAttr ".chw" 128; + setAttr ".prt" 4; + setAttr -s 2 ".ppfd"; + setAttr ".lifespanPP0" -type "doubleArray" 0 ; + setAttr -k on ".lifespan" 1; + setAttr ".opacityPP0" -type "doubleArray" 0 ; + setAttr ".ageNormalized0" -type "doubleArray" 0 ; + setAttr ".multiRadius" 10; + setAttr ".radiusPP0" -type "doubleArray" 0 ; +createNode transform -n "fxFire_fields" -p "fxFireGrp"; + setAttr ".tmp" yes; + setAttr ".t" -type "double3" 0 17 0 ; +createNode turbulenceField -n "fxFire_turbulenceField" -p "fxFire_fields"; + setAttr ".v" no; + setAttr ".mag" 0; + setAttr ".att" 0.25; + setAttr ".fc[0]" 0 1 1; + setAttr ".amag[0]" 0 1 1; + setAttr ".crad[0]" 0 1 1; + setAttr ".frq" 5; + setAttr ".nslv" 2; +createNode dragField -n "fxFire_dragField" -p "fxFire_fields"; + setAttr ".mag" 0.1; + setAttr ".att" 0.25; + setAttr ".fc[0]" 0 1 1; + setAttr ".amag[0]" 0 1 1; + setAttr ".crad[0]" 0 1 1; + setAttr ".spa" 0.1; +createNode radialField -n "fire_radialField" -p "fxFire_fields"; + setAttr ".tmp" yes; + setAttr ".mag" 5; + setAttr ".att" 0.25; + setAttr ".max" 20; + setAttr ".umd" yes; + setAttr ".fc[0]" 0 1 1; + setAttr ".amag[0]" 0 1 1; + setAttr ".crad[0]" 0 1 1; +createNode transform -n "fire_ffxParticleSource" -p "fxFireGrp"; + setAttr ".v" no; + setAttr ".t" -type "double3" -30 3 0 ; +createNode ffxParticleSource -n "fire_ffxParticleSourceProxy" -p "fire_ffxParticleSource"; + setAttr -k off ".v"; + setAttr ".rdea" yes; + setAttr ".rdsv" 0.40000000596046448; + setAttr -s 4 ".rdaf[0:3]" 0 1 1 1 0 1 0.24347825 0.63999999 + 1 0.7478261 0.44 1; + setAttr -s 2 ".vbaf[0:1]" 0 0.0099999998 1 1 1 1; + setAttr ".fbsv" 15; + setAttr -s 2 ".fbaf[0:1]" 0 0.0099999998 1 1 1 1; + setAttr -s 2 ".tbaf[0:1]" 0 0.0099999998 1 1 1 1; + setAttr ".sbea" yes; + setAttr ".sbsv" 5; + setAttr -s 2 ".sbaf[0:1]" 0 0.0099999998 1 1 1 1; + setAttr -s 2 ".cbaf"; + setAttr ".cbaf[0].cbafcv" -type "float3" 1 1 1 ; + setAttr ".cbaf[1].cbafp" 1; + setAttr ".cbaf[1].cbafcv" -type "float3" 1 1 1 ; + setAttr ".is" 2; + setAttr ".rd" 0.40000000596046448; + setAttr ".vamt" 2; + setAttr ".famt" 10; + setAttr ".tamt" 600; + setAttr ".samt" 3; + setAttr -s 2 ".rdf[0:1]" 0 1 1 1 0.0099999998 1; +instanceable -a 0; +createNode transform -n "fxFire_obj_source" -p "fxFireGrp"; +createNode ffxObjectSource -n "fxFire_obj_sourceProxy" -p "fxFire_obj_source"; + setAttr -k off ".v"; + setAttr ".ics" 1; + setAttr ".ftype" 0; + setAttr ".ttype" 0; + setAttr ".objvel" 0.10000000149011612; +instanceable -a 0; +createNode transform -n "fire" -p "fxFireGrp"; + setAttr ".t" -type "double3" 0 7.5 0 ; +createNode ffxDyna -n "fireShape" -p "fire"; + setAttr -k off ".v"; + setAttr ".vir" yes; + setAttr ".vif" yes; + setAttr ".vss" 520; + setAttr ".ppopath" -type "string" "Y:/IG/proj/XEF/cache/ffxCache/FIR/001/fxFire/FIR001.fxFire.v28_fire/FIR001.fxFire.v28_fire_pp..fxd"; + setAttr ".wopath" -type "string" "Y:/IG/proj/XEF/cache/ffxCache/FIR/001/fxFire/FIR001.fxFire.v28_fire/FIR001.fxFire.v28_fire_wt..fxd"; + setAttr ".sp" 0.075000002980232239; + setAttr ".wid" 20; + setAttr ".len" 20; + setAttr ".hgt" 20; + setAttr ".awid" 3.0750000476837158; + setAttr ".alen" 3.6000001430511475; + setAttr ".ahgt" 3.2250001430511475; + setAttr ".acenter" -type "float3" -0.072986603 9.5525751 0.035205841 ; + setAttr ".endfr" 128; + setAttr ".pef" 128; + setAttr ".vptupd" 1; + setAttr ".opath" -type "string" "Y:/IG/proj/XEF/cache/ffxCache/FIR/001/fxFire/FIR001.fxFire.v28_fire/FIR001.fxFire.v28_fire..fxd"; + setAttr ".ropath" -type "string" "Y:/IG/proj/XEF/cache/ffxCache/FIR/001/fxFire/FIR001.fxFire.v28_fire/FIR001.fxFire.v28_fire.0001.fxd"; + setAttr ".iopa" -type "string" "Y:/IG/proj/XEF/cache/ffxCache/FIR/001/fxFire/FIR001.fxFire.v28_fire/FIR001.fxFire.v28_fire..fim"; + setAttr ".pt_im" -type "string" "Y:/IG/proj/XEF/cache/ffxCache/FIR/001/fxFire/FIR001.fxFire.v28_fire/FIR001.fxFire.v28_fire.0001.fim"; + setAttr ".maxiter" 150; + setAttr ".ts" 0.5; + setAttr ".tnoisedet" 2; + setAttr ".tnoisefrms" 1; + setAttr ".simfuel" no; + setAttr ".fuelbuoy" 0.10000000149011612; + setAttr ".brate" 3; + setAttr ".heatprod" 1; + setAttr ".expan" 0.10000000149011612; + setAttr ".firecrtssmoke" yes; + setAttr ".smokedens" 10; + setAttr ".smokebuoy" -0.0099999997764825821; + setAttr ".dissipmindens" 0.20000000298023224; + setAttr ".smokediff" 0.0010000000474974513; + setAttr ".tempbuoy" 0.0099999997764825821; + setAttr ".ppce" 150; + setAttr -s 2 ".if"; + setAttr ".vp_red" 10; + setAttr ".sh_ft" 1; + setAttr ".sh_fs" 0.5; + setAttr ".sh_dfr" no; + setAttr ".sh_brig" 0.69999998807907104; + setAttr ".sh_fro" 0.5; + setAttr ".sh_smn" 6; + setAttr ".sh_smx" 120; + setAttr ".sh_sac" -type "float3" 2 2 2 ; + setAttr ".sh_smo" 0.5; + setAttr ".sh_vfo" 0.10000000149011612; + setAttr ".sh_flc" -type "float3" 1 0 0 ; + setAttr ".sh_flo" 1.8686869144439697; + setAttr -s 8 ".sh_fi_cl_tb"; + setAttr ".sh_fi_cl_tb[0].sh_fi_cl_tbp" 0.12855209410190582; + setAttr ".sh_fi_cl_tb[0].sh_fi_cl_tbcv" -type "float3" 1 0.37619543 0.059000015 ; + setAttr ".sh_fi_cl_tb[1].sh_fi_cl_tbp" 1; + setAttr ".sh_fi_cl_tb[1].sh_fi_cl_tbcv" -type "float3" 0.061000001 0.061000001 0.061000001 ; + setAttr ".sh_fi_cl_tb[2].sh_fi_cl_tbp" 0.067658998072147369; + setAttr ".sh_fi_cl_tb[2].sh_fi_cl_tbcv" -type "float3" 1 0.5638032 0.17400002 ; + setAttr ".sh_fi_cl_tb[3].sh_fi_cl_tbp" 0.19485791027545929; + setAttr ".sh_fi_cl_tb[3].sh_fi_cl_tbcv" -type "float3" 1 0.80898339 0 ; + setAttr ".sh_fi_cl_tb[4].sh_fi_cl_tbp" 0.92173910140991211; + setAttr ".sh_fi_cl_tb[4].sh_fi_cl_tbcv" -type "float3" 0.093999997 0.055529129 0.021150002 ; + setAttr ".sh_fi_cl_tb[5].sh_fi_cl_tbcv" -type "float3" 0.106 0.031408854 0.008373999 ; + setAttr ".sh_fi_cl_tb[6].sh_fi_cl_tbp" 0.79130434989929199; + setAttr ".sh_fi_cl_tb[6].sh_fi_cl_tbcv" -type "float3" 0.85317802 0.30961901 0.036604099 ; + setAttr ".sh_fi_cl_tb[7].sh_fi_cl_tbp" 0.24357239902019501; + setAttr ".sh_fi_cl_tb[7].sh_fi_cl_tbcv" -type "float3" 0.92299998 0.3328658 0.037843008 ; + setAttr -s 5 ".sh_fi_op_tb[0:4]" 0 0.001 1 0.12173913 0.68000001 + 1 0.17391305 0.22 1 1 0 1 0.86956519 0.25999999 1; + setAttr -s 5 ".sh_sm_cl_tb"; + setAttr ".sh_sm_cl_tb[0].sh_sm_cl_tbp" 0.0086956517770886421; + setAttr ".sh_sm_cl_tb[0].sh_sm_cl_tbcv" -type "float3" 0.461 0.22579485 0.217592 ; + setAttr ".sh_sm_cl_tb[1].sh_sm_cl_tbp" 1; + setAttr ".sh_sm_cl_tb[1].sh_sm_cl_tbcv" -type "float3" 1 0.5041666 0.14999998 ; + setAttr ".sh_sm_cl_tb[2].sh_sm_cl_tbp" 0.39130434393882751; + setAttr ".sh_sm_cl_tb[2].sh_sm_cl_tbcv" -type "float3" 1 0.27696997 0.0099999905 ; + setAttr ".sh_sm_cl_tb[3].sh_sm_cl_tbp" 0.052173912525177002; + setAttr ".sh_sm_cl_tb[3].sh_sm_cl_tbcv" -type "float3" 0.76700002 0.1909361 0.013039015 ; + setAttr ".sh_sm_cl_tb[4].sh_sm_cl_tbp" 0.12173912674188614; + setAttr ".sh_sm_cl_tb[4].sh_sm_cl_tbcv" -type "float3" 1 0.61797595 0.31999999 ; + setAttr -s 6 ".sh_sm_op_tb[1:6]" 1 0 1 0.15652174 0.95999998 + 1 0.86086959 0.2 1 0.36521739 0.40000001 1 0 0 1 0.10434783 0.28 1; + setAttr -s 256 ".sh_fi_cl_ar"; + setAttr ".sh_fi_cl_ar[0:165]" -type "float3" 0.106 0.031408854 0.008373999 + 0.15781695 0.062266849 0.017973814 0.20963389 0.093124844 0.02757363 0.26145083 0.12398284 + 0.037173443 0.31326777 0.15484083 0.046773259 0.36508471 0.18569882 0.056373071 0.41690168 + 0.21655683 0.065972887 0.46871865 0.24741483 0.075572707 0.52053559 0.27827281 0.085172519 + 0.57235253 0.30913082 0.094772339 0.62416941 0.3399888 0.10437214 0.67598635 0.37084681 + 0.11397196 0.72780335 0.40170479 0.12357178 0.77962029 0.4325628 0.1331716 0.83143729 + 0.46342081 0.14277142 0.88325417 0.49427879 0.15237123 0.93507111 0.52513677 0.16197103 + 0.98688805 0.55599481 0.17157085 1 0.5547784 0.168468 1 0.5426963 0.1610619 1 0.5306142 + 0.15365578 1 0.5185321 0.1462497 1 0.50645 0.1388436 1 0.4943679 0.1314375 1 0.48228574 + 0.12403136 1 0.47020364 0.11662527 1 0.45812154 0.10921916 1 0.44603944 0.10181306 + 1 0.43395734 0.094406977 1 0.42187524 0.087000877 1 0.40979314 0.079594769 1 0.39771104 + 0.072188668 1 0.38562894 0.064782567 1 0.38180667 0.05823506 1 0.40740335 0.054745585 + 1 0.43300003 0.051256105 1 0.45859665 0.04776663 1 0.48419333 0.044277154 1 0.50979 + 0.040787674 1 0.53538668 0.037298199 1 0.5609833 0.033808723 1 0.58657998 0.030319246 + 1 0.6121766 0.026829772 1 0.63777328 0.023340294 1 0.66336995 0.019850818 1 0.68896657 + 0.016361341 1 0.71456325 0.012871863 1 0.74015999 0.0093823867 1 0.76575673 0.0058928956 + 1 0.79135334 0.0024034223 0.99807078 0.79705429 0.00094815472 0.99187219 0.7587263 + 0.0039945571 0.98567361 0.72039831 0.0070409598 0.97947502 0.68207037 0.010087362 + 0.97327638 0.64374232 0.013133764 0.96707785 0.60541439 0.016180167 0.96087927 0.56708646 + 0.01922657 0.95468068 0.52875847 0.022272972 0.9484821 0.49043047 0.025319375 0.94228351 + 0.45210248 0.028365778 0.93608493 0.41377455 0.031412181 0.92988634 0.37544656 0.034458581 + 0.92368776 0.3371186 0.037504986 0.92255557 0.33271784 0.037835121 0.9220556 0.33255139 + 0.037826251 0.9215557 0.33238494 0.037817381 0.92105579 0.33221853 0.037808508 0.92055595 + 0.33205208 0.037799641 0.92005605 0.33188564 0.037790768 0.91955614 0.33171919 0.037781902 + 0.91905624 0.33155277 0.037773032 0.91855633 0.33138633 0.037764158 0.91805637 0.33121988 + 0.037755292 0.91755652 0.33105344 0.037746418 0.91705662 0.33088702 0.037737548 0.91655678 + 0.33072057 0.037728678 0.91605681 0.33055413 0.037719809 0.91555697 0.33038768 0.037710939 + 0.915057 0.33022124 0.037702069 0.91455716 0.33005482 0.037693202 0.91405725 0.32988837 + 0.037684329 0.91355735 0.32972193 0.037675463 0.91305739 0.32955551 0.037666585 0.91255754 + 0.32938907 0.037657719 0.91205764 0.32922262 0.037648849 0.91155773 0.32905617 0.037639979 + 0.91105783 0.32888973 0.037631106 0.91055799 0.32872331 0.037622239 0.91005802 0.32855687 + 0.03761337 0.90955812 0.32839042 0.037604496 0.90905821 0.32822397 0.03759563 0.90855831 + 0.32805756 0.03758676 0.90805846 0.32789111 0.037577886 0.90755856 0.32772467 0.037569016 + 0.90705866 0.32755822 0.037560146 0.90655875 0.3273918 0.037551276 0.90605879 0.32722533 + 0.037542406 0.90555894 0.32705891 0.037533537 0.90505904 0.32689247 0.037524667 0.90455914 + 0.32672602 0.037515797 0.90405923 0.3265596 0.037506927 0.90355933 0.32639316 0.037498057 + 0.90305936 0.32622671 0.037489187 0.90255952 0.3260603 0.037480317 0.90205967 0.32589382 + 0.037471443 0.90155971 0.3257274 0.037462577 0.90105981 0.32556096 0.037453704 0.9005599 + 0.32539454 0.037444837 0.90005994 0.32522807 0.037435964 0.89956009 0.32506165 0.037427098 + 0.89906019 0.3248952 0.037418224 0.89856035 0.32472879 0.037409358 0.89806038 0.32456231 + 0.037400484 0.89756054 0.3243959 0.037391614 0.89706057 0.32422942 0.037382744 0.89656067 + 0.324063 0.037373874 0.89606082 0.32389656 0.037365004 0.89556098 0.32373014 0.037356135 + 0.89506102 0.32356369 0.037347265 0.89456111 0.32339728 0.037338395 0.89406115 0.3232308 + 0.037329521 0.8935613 0.32306439 0.037320655 0.8930614 0.32289791 0.037311785 0.89256155 + 0.32273149 0.037302915 0.89206159 0.32256505 0.037294041 0.89156175 0.32239863 0.037285171 + 0.89106178 0.32223219 0.037276305 0.89056194 0.32206574 0.037267432 0.89006197 0.32189929 + 0.037258562 0.88956213 0.32173288 0.037249692 0.88906217 0.32156643 0.037240822 0.88856226 + 0.32139999 0.037231952 0.88806242 0.32123357 0.037223078 0.88756251 0.32106709 0.037214212 + 0.88706255 0.32090068 0.037205342 0.88656271 0.32073423 0.037196472 0.8860628 0.32056779 + 0.037187599 0.8855629 0.32040137 0.037178732 0.88506299 0.32023492 0.037169859 0.88456309 + 0.32006848 0.037160989 0.88406318 0.31990206 0.037152119 0.88356328 0.31973559 0.037143249 + 0.88306344 0.31956917 0.037134379 0.88256347 0.31940272 0.037125513 0.88206357 0.31923628 + 0.037116639 0.88156366 0.31906986 0.037107769 0.88106382 0.31890339 0.037098899 0.88056386 + 0.31873697 0.03709003 0.88006401 0.31857052 0.03708116 0.87956411 0.31840408 0.037072286 + 0.8790642 0.31823763 0.03706342 0.87856424 0.31807122 0.03705455 0.87806439 0.31790477 + 0.03704568 0.87756443 0.31773832 0.037036806 0.87706459 0.31757188 0.03702794 0.87656468 + 0.31740546 0.037019067 0.87606478 0.31723902 0.037010197 0.87556493 0.31707257 0.037001327 + 0.87506497 0.31690612 0.036992457 0.87456512 0.31673971 0.036983587 0.87406516 0.31657326 + 0.036974717 0.87356526 0.31640682 0.036965847 0.87306535 0.31624037 0.036956977 0.87256551 + 0.31607395 0.036948107 0.87206554 0.31590751 0.036939237 0.8715657 0.31574106 0.036930367; + setAttr ".sh_fi_cl_ar[166:255]" 0.8710658 0.31557462 0.036921497 0.87056589 + 0.31540817 0.036912628 0.87006599 0.31524175 0.036903754 0.86956602 0.31507531 0.036894888 + 0.86906612 0.31490886 0.036886014 0.86856627 0.31474245 0.036877144 0.86806637 0.31457597 + 0.036868274 0.86756647 0.31440955 0.036859404 0.86706656 0.31424311 0.036850534 0.86656666 + 0.31407666 0.036841664 0.86606681 0.31391025 0.036832795 0.86556691 0.31374377 0.036823925 + 0.86506701 0.31357735 0.036815055 0.86456704 0.31341091 0.036806185 0.86406714 0.31324446 + 0.036797315 0.86356723 0.31307802 0.036788441 0.86306739 0.3129116 0.036779575 0.86256748 + 0.31274515 0.036770701 0.86206758 0.31257871 0.036761835 0.86156768 0.31241229 0.036752962 + 0.86106777 0.31224585 0.036744092 0.86056787 0.3120794 0.036735222 0.86006796 0.31191298 + 0.036726356 0.859568 0.31174654 0.036717482 0.85906816 0.31158009 0.036708612 0.85856825 + 0.31141365 0.036699742 0.85806835 0.31124723 0.036690872 0.85756844 0.31108078 0.036682002 + 0.85706854 0.31091434 0.036673132 0.85656869 0.31074792 0.036664262 0.85606873 0.31058145 + 0.036655389 0.85556883 0.31041503 0.036646523 0.85506892 0.31024855 0.036637649 0.85456902 + 0.31008214 0.036628783 0.85406917 0.30991569 0.036619913 0.85356927 0.30974925 0.036611039 + 0.84821564 0.30795816 0.036503084 0.8253907 0.30031884 0.036038451 0.80256575 0.29267955 + 0.035573818 0.77974081 0.28504026 0.035109188 0.75691587 0.27740094 0.034644552 0.73409086 + 0.26976162 0.034179918 0.71126586 0.26212233 0.033715285 0.68844092 0.25448301 0.033250652 + 0.66561598 0.24684371 0.032786019 0.64279097 0.23920441 0.032321386 0.61996603 0.2315651 + 0.031856753 0.59714109 0.2239258 0.03139212 0.57431602 0.21628648 0.030927487 0.55149114 + 0.20864719 0.030462854 0.52866614 0.20100787 0.029998219 0.5058412 0.19336858 0.029533587 + 0.48301625 0.18572928 0.029068954 0.46019128 0.17808996 0.028604321 0.43736634 0.17045067 + 0.028139688 0.41454133 0.16281135 0.027675055 0.39171639 0.15517206 0.027210422 0.36889139 + 0.14753275 0.026745789 0.34606642 0.13989344 0.026281156 0.32324147 0.13225414 0.025816523 + 0.30041653 0.12461483 0.025351889 0.27759156 0.11697553 0.024887258 0.25476658 0.10933623 + 0.024422623 0.23194164 0.10169692 0.02395799 0.20911667 0.09405762 0.023493359 0.18629168 + 0.086418301 0.023028724 0.16346672 0.078778997 0.022564091 0.14064176 0.071139693 + 0.02209946 0.1178168 0.063500397 0.021634825 0.09499184 0.055861093 0.021170191 0.092418261 + 0.055791359 0.02306007 0.090764664 0.056065496 0.02505691 0.089111075 0.056339636 + 0.027053751 0.087457485 0.056613773 0.029050592 0.085803881 0.056887917 0.03104743 + 0.084150292 0.057162054 0.033044271 0.082496695 0.057436191 0.035041109 0.080843106 + 0.057710331 0.03703795 0.079189509 0.057984471 0.039034791 0.077535912 0.058258612 + 0.041031629 0.075882316 0.058532748 0.04302847 0.074228726 0.058806889 0.045025311 + 0.07257513 0.059081025 0.047022149 0.07092154 0.05935517 0.049018994 0.069267944 + 0.059629306 0.051015832 0.067614354 0.05990345 0.053012673 0.065960757 0.060177587 + 0.05500951 0.064307161 0.060451727 0.057006352 0.062653571 0.060725864 0.059003189 + 0.061000001 0.061000001 0.061000001; + setAttr -s 256 ".sh_fi_op_ar[0:255]" 0.001 0.02287255 0.044745099 0.066617653 + 0.088490203 0.11036275 0.1322353 0.15410785 0.1759804 0.19785295 0.2197255 0.24159804 + 0.26347062 0.28534317 0.30721572 0.32908827 0.35096079 0.37283337 0.39470592 0.41657847 + 0.43845102 0.46032357 0.48219609 0.50406867 0.52594125 0.54781377 0.56968635 0.59155887 + 0.61343145 0.63530397 0.65717655 0.67904907 0.64692807 0.61235285 0.57777768 0.54320252 + 0.50862736 0.47405225 0.43947709 0.40490192 0.37032676 0.33575159 0.30117643 0.26660129 + 0.23202613 0.22014706 0.22037256 0.22059803 0.22082353 0.22104903 0.2212745 0.22150001 + 0.22172549 0.22195098 0.22217646 0.22240196 0.22262746 0.22285293 0.22307844 0.22330391 + 0.22352941 0.2237549 0.2239804 0.22420588 0.22443137 0.22465687 0.22488235 0.22510783 + 0.22533333 0.22555882 0.2257843 0.22600979 0.2262353 0.22646078 0.22668627 0.22691177 + 0.22713725 0.22736274 0.22758822 0.22781374 0.22803921 0.2282647 0.2284902 0.22871569 + 0.22894117 0.22916666 0.22939217 0.22961764 0.22984312 0.23006862 0.23029412 0.23051959 + 0.23074511 0.23097059 0.23119608 0.23142156 0.23164704 0.23187254 0.23209804 0.23232353 + 0.23254901 0.2327745 0.23300001 0.23322549 0.23345098 0.23367646 0.23390196 0.23412743 + 0.23435293 0.23457843 0.23480392 0.2350294 0.2352549 0.2354804 0.23570588 0.23593137 + 0.23615687 0.23638234 0.23660783 0.23683333 0.23705882 0.2372843 0.2375098 0.2377353 + 0.23796079 0.23818627 0.23841177 0.23863725 0.23886272 0.23908824 0.23931372 0.23953921 + 0.23976469 0.2399902 0.24021569 0.24044117 0.24066666 0.24089216 0.24111764 0.24134314 + 0.24156862 0.24179411 0.24201959 0.24224508 0.24247059 0.24269608 0.24292156 0.24314706 + 0.24337254 0.24359804 0.24382353 0.24404901 0.2442745 0.24449998 0.2447255 0.24495098 + 0.24517646 0.24540195 0.24562745 0.24585295 0.24607843 0.24630392 0.2465294 0.24675488 + 0.24698038 0.24720588 0.24743137 0.24765685 0.24788235 0.24810785 0.24833333 0.24855882 + 0.2487843 0.24900979 0.24923529 0.24946077 0.24968627 0.24991176 0.25013727 0.25036275 + 0.25058824 0.25081372 0.25103921 0.25126469 0.25149018 0.25171566 0.25194117 0.25216666 + 0.25239214 0.25261766 0.25284314 0.25306863 0.25329411 0.25351959 0.25374508 0.25397056 + 0.25419608 0.25442156 0.25464705 0.25487256 0.25509804 0.25532353 0.25554901 0.2557745 + 0.25599998 0.25622547 0.25645098 0.25667647 0.25690195 0.25712746 0.25735295 0.25757843 + 0.25780392 0.2580294 0.25825489 0.25848037 0.25870588 0.25893137 0.25915685 0.25938237 + 0.25960782 0.25983331 0.25796059 0.25014359 0.2423266 0.23450962 0.22669262 0.21887563 + 0.21105863 0.20324166 0.19542465 0.18760768 0.17979068 0.17197369 0.16415669 0.1563397 + 0.1485227 0.14070572 0.13288873 0.12507175 0.11725475 0.10943776 0.10162076 0.093803771 + 0.085986778 0.078169785 0.070352793 0.0625358 0.054718826 0.046901833 0.039084841 + 0.031267848 0.023450853 0.015633861 0.0078168688 0; + setAttr -s 256 ".sh_sm_cl_ar"; + setAttr ".sh_sm_cl_ar[0:165]" -type "float3" 0.461 0.22579485 0.217592 0.461 + 0.22579485 0.217592 0.461 0.22579485 0.217592 0.48259997 0.22333422 0.20315295 0.51019996 + 0.22019011 0.18470308 0.53780001 0.21704601 0.16625321 0.5654 0.21390188 0.14780334 + 0.59299999 0.21075773 0.12935343 0.62060004 0.20761362 0.11090356 0.64820004 0.2044695 + 0.092453681 0.67580003 0.20132537 0.074003816 0.70340002 0.19818126 0.055553935 0.73100007 + 0.19503713 0.037104048 0.75860006 0.191893 0.018654171 0.77613729 0.2076828 0.025076721 + 0.78927207 0.23175612 0.042380892 0.80240691 0.25582945 0.059685066 0.81554174 0.27990276 + 0.076989241 0.82867652 0.30397609 0.094293416 0.8418113 0.32804942 0.11159759 0.85494608 + 0.35212272 0.12890175 0.86808091 0.37619606 0.14620592 0.88121569 0.40026939 0.1635101 + 0.89435053 0.42434272 0.18081428 0.90748537 0.44841605 0.19811848 0.92062014 0.47248942 + 0.21542266 0.93375492 0.49656275 0.23272683 0.94688976 0.52063602 0.25003099 0.96002454 + 0.54470938 0.26733518 0.97315937 0.56878269 0.28463933 0.98629415 0.59285599 0.30194351 + 0.99942899 0.61692935 0.31924766 1 0.61323071 0.31568626 1 0.60826987 0.31117645 + 1 0.60330904 0.30666664 1 0.59834814 0.30215684 1 0.59338725 0.29764703 1 0.58842641 + 0.29313722 1 0.58346558 0.28862745 1 0.57850468 0.28411764 1 0.57354385 0.2796078 + 1 0.56858289 0.27509803 1 0.563622 0.27058822 1 0.55866116 0.26607844 1 0.55370033 + 0.26156861 1 0.54873943 0.25705883 1 0.54377854 0.25254899 1 0.5388177 0.2480392 + 1 0.53385681 0.24352938 1 0.52889597 0.23901957 1 0.52393508 0.23450977 1 0.51897418 + 0.22999996 1 0.51401335 0.22549018 1 0.5090524 0.22098036 1 0.50409156 0.21647057 + 1 0.4991307 0.21196075 1 0.49416983 0.20745094 1 0.48920897 0.20294116 1 0.48424807 + 0.19843134 1 0.47928721 0.19392155 1 0.47432634 0.18941173 1 0.46936548 0.18490192 + 1 0.46440464 0.18039215 1 0.45944372 0.17588232 1 0.45448291 0.17137253 1 0.44952196 + 0.16686271 1 0.44456112 0.1623529 1 0.43960026 0.1578431 1 0.43463936 0.15333329 + 1 0.4296785 0.1488235 1 0.42471761 0.14431369 1 0.41975677 0.13980389 1 0.41479588 + 0.13529408 1 0.40983501 0.13078429 1 0.40487415 0.12627447 1 0.39991325 0.12176467 + 1 0.39495242 0.11725488 1 0.38999152 0.11274507 1 0.38503069 0.10823527 1 0.38006979 + 0.10372546 1 0.37510893 0.099215649 1 0.37014806 0.094705865 1 0.36518717 0.090196051 + 1 0.3602263 0.085686244 1 0.35526544 0.081176437 1 0.35030454 0.076666631 1 0.34534371 + 0.072156847 1 0.34038284 0.067647032 1 0.33542195 0.063137226 1 0.33046108 0.058627419 + 1 0.32550019 0.054117613 1 0.32053936 0.049607825 1 0.31557846 0.045098018 1 0.3106176 + 0.040588208 1 0.30565673 0.036078401 1 0.30069584 0.031568594 1 0.29573494 0.027058769 + 1 0.29077408 0.022548962 1 0.28581321 0.018039156 1 0.28085232 0.013529347 1 0.27728817 + 0.010196079 1 0.27875194 0.011098038 1 0.28021565 0.012 1 0.28167939 0.01290196 1 + 0.2831431 0.01380392 1 0.28460687 0.014705881 1 0.28607059 0.015607841 1 0.2875343 + 0.016509803 1 0.28899804 0.017411763 1 0.29046175 0.018313725 1 0.29192552 0.019215684 + 1 0.29338923 0.020117646 1 0.29485297 0.021019606 1 0.29631668 0.021921568 1 0.29778042 + 0.022823527 1 0.29924417 0.023725487 1 0.30070788 0.024627447 1 0.30217162 0.025529411 + 1 0.30363536 0.026431371 1 0.3050991 0.027333332 1 0.30656281 0.02823529 1 0.30802655 + 0.029137254 1 0.30949026 0.030039214 1 0.31095403 0.030941173 1 0.31241775 0.031843133 + 1 0.31388149 0.032745097 1 0.31534523 0.033647057 1 0.31680894 0.034549017 1 0.31827268 + 0.035450976 1 0.31973642 0.03635294 1 0.32120013 0.0372549 1 0.32266387 0.03815686 + 1 0.32412761 0.039058819 1 0.32559133 0.039960779 1 0.32705507 0.040862739 1 0.32851881 + 0.041764703 1 0.32998252 0.042666662 1 0.33144626 0.043568622 1 0.33291 0.044470586 + 1 0.33437374 0.045372549 1 0.33583748 0.046274506 1 0.33730119 0.047176465 1 0.33876491 + 0.048078429 1 0.34022868 0.048980389 1 0.34169239 0.049882349 1 0.3431561 0.050784312 + 1 0.34461987 0.051686272 1 0.34608358 0.052588232 1 0.34754729 0.053490192 1 0.34901106 + 0.054392152 1 0.35047477 0.055294115 1 0.35193852 0.056196075 1 0.35340226 0.057098035 + 1 0.35486597 0.057999998 1 0.35632971 0.058901954 1 0.35779345 0.059803914 1 0.35925716 + 0.060705878 1 0.36072087 0.061607838 1 0.36218464 0.062509798 1 0.36364836 0.063411757 + 1 0.36511207 0.064313717 1 0.36657584 0.065215677 1 0.36803955 0.066117644 1 0.36950332 + 0.067019604 1 0.37096703 0.067921564 1 0.37243074 0.068823516; + setAttr ".sh_sm_cl_ar[166:255]" 1 0.37389448 0.069725484 1 0.37535822 0.070627443 + 1 0.37682194 0.071529403 1 0.37828568 0.072431363 1 0.37974942 0.073333323 1 0.38121313 + 0.07423529 1 0.3826769 0.07513725 1 0.38414061 0.07603921 1 0.38560432 0.07694117 + 1 0.38706809 0.07784313 1 0.3885318 0.078745089 1 0.38999552 0.079647049 1 0.39145926 + 0.080549017 1 0.392923 0.081450962 1 0.39438674 0.082352929 1 0.39585042 0.083254889 + 1 0.39731419 0.084156856 1 0.3987779 0.085058808 1 0.40024167 0.085960776 1 0.40170538 + 0.086862728 1 0.40316913 0.087764695 1 0.40463287 0.088666663 1 0.40609661 0.089568622 + 1 0.40756032 0.090470582 1 0.40902406 0.091372542 1 0.4104878 0.092274502 1 0.41195154 + 0.093176477 1 0.41341525 0.094078429 1 0.41487902 0.094980396 1 0.41634274 0.095882356 + 1 0.41780645 0.096784316 1 0.41927019 0.097686276 1 0.42073393 0.098588243 1 0.42219764 + 0.099490196 1 0.42366138 0.10039216 1 0.42512512 0.10129412 1 0.42658886 0.10219608 + 1 0.42805257 0.10309804 1 0.42951632 0.104 1 0.43098006 0.10490195 1 0.4324438 0.10580392 + 1 0.43390751 0.10670588 1 0.43537125 0.10760785 1 0.43683499 0.1085098 1 0.4382987 + 0.10941177 1 0.43976241 0.11031373 1 0.44122618 0.11121569 1 0.4426899 0.11211765 + 1 0.44415364 0.11301962 1 0.44561735 0.11392157 1 0.44708109 0.11482354 1 0.44854483 + 0.11572549 1 0.45000857 0.11662745 1 0.45147228 0.11752941 1 0.45293602 0.11843137 + 1 0.45439973 0.11933333 1 0.45586348 0.12023529 1 0.45732722 0.12113725 1 0.45879096 + 0.12203921 1 0.46025467 0.12294117 1 0.46171841 0.12384314 1 0.46318215 0.12474509 + 1 0.46464586 0.12564705 1 0.4661096 0.12654902 1 0.46757334 0.12745097 1 0.46903709 + 0.12835295 1 0.47050077 0.12925489 1 0.47196454 0.13015687 1 0.47342825 0.13105881 + 1 0.47489202 0.13196079 1 0.4763557 0.13286273 1 0.47781947 0.13376471 1 0.47928318 + 0.13466665 1 0.48074692 0.13556862 1 0.48221064 0.13647059 1 0.48367441 0.13737255 + 1 0.48513812 0.13827451 1 0.48660186 0.13917647 1 0.48806557 0.14007843 1 0.48952934 + 0.14098039 1 0.49099302 0.14188235 1 0.49245679 0.14278431 1 0.49392051 0.14368626 + 1 0.49538428 0.14458823 1 0.49684796 0.14549018 1 0.4983117 0.14639215 1 0.49977544 + 0.14729412 1 0.50123918 0.14819609 1 0.50270289 0.14909802 1 0.5041666 0.14999998; + setAttr -s 256 ".sh_sm_op_ar[1:255]" 0.010522876 0.021045752 0.031568628 + 0.042091504 0.052614376 0.063137256 0.073660128 0.084183007 0.09470588 0.10522875 + 0.11575163 0.12627451 0.13679738 0.14732026 0.15784313 0.16836601 0.17888889 0.18941176 + 0.19993463 0.2104575 0.22098039 0.23150326 0.24202614 0.25254902 0.26307192 0.27359477 + 0.30000004 0.35111117 0.40222228 0.45333338 0.50444448 0.55555564 0.60666674 0.65777785 + 0.70888895 0.76000011 0.81111121 0.86222225 0.91333342 0.95908499 0.94856209 0.93803912 + 0.92751628 0.91699344 0.90647054 0.89594769 0.88542485 0.87490189 0.86437905 0.85385615 + 0.84333324 0.8328104 0.82228756 0.8117646 0.80124176 0.79071885 0.78019595 0.76967317 + 0.75915027 0.74862736 0.73810458 0.72758168 0.71705878 0.70653594 0.69601309 0.68549013 + 0.67496729 0.66444439 0.65392148 0.64339864 0.6328758 0.6223529 0.61183 0.60130715 + 0.59078425 0.58026141 0.56973851 0.55921566 0.54869276 0.53816986 0.52764702 0.51712418 + 0.50660127 0.49607843 0.48555553 0.47503263 0.46450979 0.45398688 0.44346401 0.43294114 + 0.42241827 0.41189542 0.40137252 0.398624 0.39704162 0.39545923 0.39387685 0.39229447 + 0.39071208 0.3891297 0.38754728 0.3859649 0.38438252 0.38280013 0.38121775 0.37963533 + 0.37805295 0.37647057 0.37488818 0.3733058 0.37172341 0.37014103 0.36855865 0.36697626 + 0.36539388 0.36381149 0.36222908 0.36064672 0.35906434 0.35748196 0.35589954 0.35431716 + 0.35273477 0.35115236 0.34956998 0.34798759 0.34640521 0.34482285 0.34324047 0.34165806 + 0.34007567 0.33849329 0.3369109 0.33532852 0.33374614 0.33216375 0.33058137 0.32899898 + 0.32741657 0.32583418 0.3242518 0.32266942 0.32108703 0.31950465 0.31792223 0.31633985 + 0.31475747 0.31317508 0.3115927 0.31001031 0.30842793 0.30684555 0.30526316 0.30368078 + 0.30209836 0.30051598 0.2989336 0.29735121 0.29576883 0.29418644 0.29260406 0.29102167 + 0.28943929 0.28785688 0.28627449 0.28469211 0.28310972 0.28152734 0.27994496 0.27836257 + 0.27678019 0.2751978 0.27361542 0.27203304 0.27045065 0.26886824 0.26728585 0.26570347 + 0.26412109 0.2625387 0.26095632 0.25937393 0.25779152 0.25620914 0.25462675 0.25304437 + 0.25146198 0.2498796 0.24829721 0.24671483 0.24513245 0.24355003 0.24196765 0.24038526 + 0.23880287 0.23722048 0.2356381 0.23405571 0.23247331 0.23089093 0.22930855 0.22772616 + 0.22614378 0.22456139 0.22297901 0.22139663 0.21981421 0.21823183 0.21664944 0.21506706 + 0.21348467 0.21190229 0.21031991 0.20873751 0.20715512 0.20557274 0.20399036 0.20240796 + 0.20082557 0.19730386 0.1916666 0.18602934 0.18039209 0.17475484 0.16911757 0.16348033 + 0.15784307 0.15220581 0.14656857 0.14093129 0.13529405 0.12965679 0.12401953 0.11838229 + 0.11274502 0.10710776 0.10147052 0.095833257 0.090196006 0.084558748 0.078921489 + 0.073284231 0.06764698 0.062009729 0.056372464 0.050735213 0.045097958 0.039460707 + 0.033823442 0.028186191 0.022548938 0.016911685 0.011274422 0.0056371689 0; + setAttr ".popath" -type "string" "X:/IG/proj/XEF/seq/FIR/001/fxFire/movie/fxFire.v27.avi"; + setAttr ".prEnFr" 128; + setAttr ".prFpFr" 30; +instanceable -a 0; +createNode transform -n "fire_ffxMRVol" -p "fire"; + setAttr ".ovdt" 2; + setAttr ".ove" yes; + setAttr -l on ".t"; + setAttr -l on ".r"; + setAttr -l on ".s"; +createNode renderBox -n "fire_ffxMRVolShape" -p "fire_ffxMRVol"; + setAttr -k off ".v"; + setAttr ".rt" 1; +createNode transform -n "fire_ffxWarpsHandle" -p "fire"; +createNode ffxWarpsHandle -n "fire_ffxWarpsHandleShape" -p "fire_ffxWarpsHandle"; + setAttr -k off ".v"; + setAttr ".tw" yes; + setAttr ".covm[0]" 0 1 1; + setAttr ".cdvm[0]" 0 1 1; +createNode transform -n "taiki:all"; +createNode transform -n "taiki:taiki" -p "taiki:all"; + setAttr ".tmp" yes; + setAttr ".t" -type "double3" -6.3858264006815215 0 0 ; +createNode mesh -n "taiki:taikiShape" -p "taiki:taiki"; + setAttr -k off ".v"; + setAttr ".vir" yes; + setAttr ".vif" yes; + setAttr ".pv" -type "double2" 0.5 0.80669501423835754 ; + setAttr ".uvst[0].uvsn" -type "string" "map1"; + setAttr -s 2796 ".uvst[0].uvsp"; + setAttr ".uvst[0].uvsp[0:249]" -type "float2" 0.708004 0.70800298 0.50000101 + 0.79416001 0.50000101 0.74268597 0.671606 0.67160499 0.29199901 0.70800298 0.32839701 + 0.67160499 0.205842 0.5 0.25731599 0.5 0.29199901 0.29199699 0.32839701 0.32839501 + 0.50000101 0.20584001 0.50000101 0.257314 0.708004 0.29199699 0.671606 0.32839501 + 0.79416198 0.5 0.742688 0.5 0.50000101 0.5 0.026961001 0.100332 0.026961001 0.018568 + 0.124577 0.018568 0.124577 0.100332 0.026961001 0.97916299 0.026961001 0.89739901 + 0.124577 0.89739901 0.124577 0.97916299 0.026961001 0.817931 0.026961001 0.74423403 + 0.124577 0.74423403 0.124577 0.817931 0.026961001 0.67053699 0.124577 0.67053699 + 0.026961001 0.582232 0.124577 0.582232 0.026961001 0.49886501 0.026961001 0.41549799 + 0.124577 0.41549799 0.124577 0.49886501 0.026961001 0.32719299 0.026961001 0.253497 + 0.124577 0.253497 0.124577 0.32719299 0.026961001 0.1798 0.124577 0.1798 0.95586097 + 0.56197703 0.89550102 0.58697999 0.89550102 0.56137198 0.93791902 0.54380202 0.83514202 + 0.561979 0.85308403 0.54380202 0.81014001 0.50161898 0.83551401 0.50138497 0.83514202 + 0.44126001 0.85308403 0.458967 0.89550102 0.41625801 0.89550102 0.44139701 0.95586002 + 0.441259 0.93791902 0.45896599 0.98086298 0.50161701 0.95548898 0.50138301 0.89550102 + 0.50134701 0.95525098 0.74331498 0.89550102 0.76806498 0.89550102 0.75043499 0.94294399 + 0.73078299 0.83575302 0.74331599 0.848059 0.730784 0.81100398 0.68356699 0.828408 + 0.68334198 0.83575302 0.62381798 0.848059 0.63590002 0.89550102 0.599069 0.89550102 + 0.61624902 0.95525002 0.62381798 0.94294298 0.63589901 0.97999901 0.68356502 0.96259397 + 0.68334103 0.89550102 0.68330097 0.95525098 0.37830999 0.89550102 0.40305999 0.89550102 + 0.38543001 0.94294298 0.365778 0.83575302 0.37831101 0.848059 0.36577901 0.81100398 + 0.318562 0.828408 0.31833699 0.83575302 0.25881299 0.848059 0.270895 0.89550102 0.234064 + 0.89550102 0.25124401 0.95525002 0.25881201 0.94294298 0.27089399 0.97999901 0.31856 + 0.96259397 0.31833601 0.89550102 0.31829599 0.127886 0.476886 0.128489 0.41718301 + 0.15161499 0.41411901 0.14964999 0.47040999 0.33458999 0.13846301 0.34006 0.16773599 + 0.30664501 0.173186 0.29356301 0.14166699 0.5 0.155931 0.424519 0.15526301 0.43130401 + 0.101426 0.5 0.094815999 0.111361 0.48251501 0.102062 0.42235899 0.080747999 0.48688301 + 0.068604998 0.43252099 0.25099999 0.119172 0.26966599 0.17471001 0.25099999 0.17469899 + 0.28833199 0.174721 0.27737999 0.138539 0.29356301 0.14166699 0.30664501 0.173186 + 0.068360001 0.48776099 0.054026 0.43677801 0.36816299 0.131908 0.37394699 0.16391 + 0.34006 0.16773599 0.33458999 0.13846301 0.5 0.056798 0.45440301 0.059316002 0.5 + 0.011954 0.034193002 0.39894 0.032203998 0.40503299 0.0079840003 0.40735799 0.0086399997 + 0.40076801 0.050276998 0.42316699 0.043949001 0.42493501 0.199058 0.220339 0.182172 + 0.225721 0.17738099 0.20158701 0.196183 0.198746 0.168281 0.22684699 0.166591 0.20274401 + 0.13582601 0.227791 0.13719299 0.203187 0.14638101 0.20308299 0.146883 0.228788 0.13804901 + 0.16204301 0.16119801 0.164297 0.13115001 0.170432 0.170056 0.16281299 0.191037 0.15559 + 0.082892001 0.16384999 0.084097996 0.15753099 0.092050001 0.15956099 0.090631999 + 0.165041 0.074979 0.223042 0.076378003 0.19604599 0.085346997 0.19499101 0.082730003 + 0.223286 0.048976 0.19863801 0.062799998 0.16593499 0.059675999 0.15799101 0.129384 + 0.20242 0.12575001 0.175473 0.037879001 0.198476 0.103261 0.16828001 0.104489 0.16285001 + 0.097934999 0.224255 0.099609002 0.195107 0.12629201 0.22772101 0.116496 0.25560099 + 0.088707998 0.25867599 0.097318999 0.240601 0.123023 0.241402 0.082787998 0.239784 + 0.073940001 0.252471 0.074643001 0.238268 0.089760996 0.24047001 0.080983996 0.25672999 + 0.098728001 0.161212 0.097251996 0.166614 0.093433 0.194747 0.091108002 0.223727 + 0.066207998 0.39591199 0.047215 0.43793499 0.101855 0.39829299 0.127918 0.40432301 + 0.055488002 0.48614901 0.148147 0.366734 0.149389 0.29113299 0.17093299 0.292317 + 0.18201301 0.367304 0.214828 0.235964 0.189915 0.244197 0.186037 0.237304 0.20777901 + 0.229232 0.225324 0.248767 0.193222 0.25962901 0.168909 0.243186 0.16905101 0.235789 + 0.195078 0.27157301 0.22822499 0.26069599 0.2307 0.27202299 0.194374 0.28147599 0.19356 + 0.29224801 0.196684 0.366844 0.234218 0.29558399 0.22845399 0.36175099 0.15096401 + 0.40522501 0.146035 0.252103 0.145013 0.26328099 0.133367 0.26365101 0.13402399 0.250882 + 0.114945 0.262862 0.13326 0.27113101 0.14605799 0.27175301 0.12922101 0.36596301 + 0.133678 0.29458499 0.191487 0.42065799 0.218934 0.41485101 0.193426 0.444143 0.133154 + 0.27860999 0.14822499 0.28181499 0.18085299 0.45779201 0.17816401 0.41919899 0.169994 + 0.271752 0.1708 0.285743 0.169194 0.262389 0.145413 0.242578 0.062880002 0.298915 + 0.048976 0.29442099 0.053799 0.27731201 0.067992002 0.28025901 0.102325 0.363967 + 0.018817 0.36411199 0.042776 0.36465299 0.111448 0.29982099 0.055528 0.26204801 0.071592003 + 0.26034501 0.058398001 0.235558 0.054083999 0.240989 0.050055001 0.232288 0.056023002 + 0.252065 0.079916999 0.30081999 0.069752999 0.36534101 0.055018999 0.36490101 0.069825999 + 0.30026299 0.050854001 0.401007 0.085974 0.265643 0.078914002 0.26165 0.084572002 + 0.28337801 0.113685 0.28260601 0.074845001 0.28259301 0.041311 0.221645; + setAttr ".uvst[0].uvsp[250:499]" 0.052565999 0.22379901 0.035239998 0.39707801 + 0.0087479996 0.399165 0.134304 0.241409 0.40514201 0.12055 0.41822299 0.110988 0.18085399 + 0.45779201 0.193426 0.444143 0.20021901 0.44859901 0.185307 0.464872 0.151049 0.083989002 + 0.16054 0.08422 0.16061001 0.091020003 0.149489 0.090202004 0.12819999 0.10383 0.1077 + 0.10638 0.10653 0.09973 0.12710001 0.096500002 0.16038001 0.097089998 0.17214 0.095720001 + 0.17133 0.099339999 0.15092801 0.119863 0.13403 0.12074 0.13423 0.10118 0.149435 + 0.096280999 0.13441999 0.092749998 0.159531 0.1182 0.17327 0.1147 0.1234 0.084279999 + 0.13352001 0.08585 0.10705 0.092649996 0.12807 0.12158 0.1098 0.12358 0.094439998 + 0.10606 0.076289997 0.103 0.075230002 0.092820004 0.094149999 0.1008 0.098269999 + 0.10024 0.099420004 0.1064 0.093560003 0.12298 0.099090002 0.12348 0.10416 0.10605 + 0.10545 0.1236 0.10308 0.09984 0.094070002 0.050560001 0.099569999 0.049855001 0.097000003 + 0.069399998 0.092479996 0.070370004 0.176265 0.07068 0.17498 0.086860001 0.16590001 + 0.067460001 0.15416899 0.064400002 0.13672499 0.065485001 0.11823 0.07745 0.12272 + 0.060024999 0.125835 0.061790001 0.12151 0.079680003 0.088349998 0.071419999 0.088610001 + 0.050889999 0.083230004 0.074589998 0.081694998 0.052864999 0.105675 0.050285 0.10188 + 0.068899997 0.111465 0.052354999 0.10587 0.069870003 0.095660001 0.030750001 0.095550001 + 0.02421 0.098459996 0.0232 0.10214 0.030309999 0.10667 0.087379999 0.10658 0.083999999 + 0.095710002 0.081820004 0.09426 0.085040003 0.093489997 0.08969 0.078939997 0.077880003 + 0.11014 0.071620002 0.11535 0.074929997 0.10667 0.081119999 0.10585 0.076289997 0.098250002 + 0.09144 0.09832 0.086860001 0.10273 0.092629999 0.10251 0.087729998 0.097379997 0.079070002 + 0.1 0.081150003 0.099129997 0.083849996 0.10334 0.080940001 0.10275 0.084559999 0.1006 + 0.077069998 0.098410003 0.077660002 0.1036 0.076339997 0.18961 0.04183 0.18413 0.038860001 + 0.19017 0.031380001 0.19208001 0.033640001 0.17952 0.035300002 0.18793 0.03035 0.14636 + 0.027519999 0.14838 0.02685 0.14805999 0.032469999 0.14501999 0.032109998 0.14997 + 0.02743 0.15058 0.031950001 0.13790999 0.02867 0.13926999 0.02898 0.14108001 0.03184 + 0.1383 0.032219999 0.13661 0.02915 0.13590001 0.031810001 0.17357001 0.044100001 + 0.17719001 0.04733 0.17126 0.050700001 0.079400003 0.022329999 0.085170001 0.021081001 + 0.087849997 0.02674 0.081069998 0.02785 0.091240004 0.01626 0.094169997 0.01425 0.096780002 + 0.02018 0.16546001 0.04727 0.171336 0.043294001 0.0977 0.020400001 0.092749998 0.023940001 + 0.088869996 0.03036 0.089230001 0.01863 0.17310999 0.040580001 0.17336001 0.04022 + 0.080159999 0.03114 0.17558999 0.035259999 0.177701 0.038011 0.18194 0.041979998 + 0.18708999 0.044810001 0.18155999 0.050330002 0.1894 0.046670001 0.18440001 0.052409999 + 0.17755 0.054499999 0.18117 0.057459999 0.082477003 0.017426001 0.077440001 0.018610001 + 0.193849 0.039198998 0.193556 0.032972001 0.19462 0.03249 0.194956 0.036033999 0.18802001 + 0.028525 0.18796299 0.029571 0.17738 0.03176 0.180939 0.029614 0.091499999 0.01078 + 0.088610001 0.01247 0.17738 0.03176 0.095509999 0.01349 0.095760003 0.0051000002 + 0.096639998 0.0055399998 0.09725 0.01302 0.086340003 0.01471 0.080119997 0.00728 + 0.078359999 0.00997 0.08258 0.00599 0.19099499 0.030439001 0.16237999 0.040199999 + 0.15729 0.044810001 0.15989099 0.038844999 0.16686 0.04411 0.16145 0.037039999 0.16162001 + 0.037020002 0.10811 0.023940001 0.10678 0.02351 0.10727 0.021779999 0.10771 0.022430001 + 0.10947 0.03167 0.10204 0.023870001 0.10196 0.018510001 0.10485 0.01784 0.1069 0.0165 + 0.099550001 0.01791 0.10774 0.01859 0.10923 0.01859 0.16543999 0.035659999 0.16267 + 0.03469 0.1646 0.029209999 0.16695 0.030540001 0.10411 0.01173 0.10614 0.01121 0.097800002 + 0.01749 0.17338 0.038989998 0.17262 0.038449999 0.10089 0.01271 0.16904999 0.037020002 + 0.17400999 0.032820001 0.17415 0.025830001 0.17452 0.02541 0.17583001 0.03311 0.17037 + 0.02437 0.17072 0.024700001 0.10029 0.00465 0.10094 0.0038000001 0.098520003 0.0054100002 + 0.17039999 0.03184 0.098190002 0.00367 0.17249 0.024870001 0.17253999 0.02441 0.15344 + 0.0394 0.157233 0.040273 0.14892 0.04487 0.15158001 0.039407 0.15200999 0.037919998 + 0.15244 0.037519999 0.11564 0.02696 0.11625 0.024879999 0.11641 0.024940001 0.11671 + 0.027589999 0.11666 0.022779999 0.11825 0.02372 0.11177 0.01918 0.11097 0.025560001 + 0.1147 0.01905 0.16080999 0.034230001 0.16249999 0.033969998 0.11631 0.01877 0.1577 + 0.034389999 0.15457 0.033750001 0.15457 0.031169999 0.15782 0.031539999 0.16119 0.03115 + 0.10858 0.016209999 0.11178 0.016589999 0.11486 0.01636 0.16291 0.03111 0.10724 0.01616 + 0.11675 0.01646 0.15291999 0.033459999 0.15282001 0.030889999 0.15184 0.031649999 + 0.15152 0.035349999 0.15057001 0.035399999 0.11866 0.020059999 0.11659 0.019540001 + 0.15662999 0.024250001 0.15854 0.023949999 0.10912 0.0096500004 0.11075 0.0097500002 + 0.11256 0.0094499998 0.11269 0.0087000001 0.15620001 0.023530001 0.16041 0.024630001 + 0.16114999 0.023700001 0.10821 0.0089699998 0.15859 0.022919999 0.11045 0.0081099998 + 0.13992999 0.045120001; + setAttr ".uvst[0].uvsp[500:749]" 0.14196999 0.038600001 0.14474501 0.040185999 + 0.12485 0.029619999 0.12519 0.029379999 0.12552001 0.03077 0.12297 0.032000002 0.12257 + 0.039489999 0.11706 0.034839999 0.116355 0.055555001 0.14885999 0.041540001 0.14322001 + 0.037470002 0.143566 0.037501998 0.14813 0.035969999 0.14503001 0.035500001 0.14343999 + 0.035440002 0.12335 0.024800001 0.12515999 0.02489 0.12063 0.02437 0.11882 0.03067 + 0.12139 0.02083 0.12424 0.02111 0.1237 0.01667 0.12614 0.02134 0.12324 0.017240001 + 0.1434 0.031629998 0.14598 0.02706 0.12013 0.01646 0.11962 0.01565 0.15041 0.02695 + 0.12158 0.01729 0.14831001 0.026419999 0.12159 0.01567 0.12721001 0.042599998 0.12987 + 0.0361 0.13214 0.037349999 0.13016 0.043900002 0.1274 0.034079999 0.1247 0.04115 + 0.13437 0.038249999 0.13891999 0.039620001 0.13348 0.04465 0.13856 0.035039999 0.14147 + 0.03461 0.13534001 0.03427 0.13345 0.03365 0.13175 0.032930002 0.13434 0.03114 0.1332 + 0.03036 0.12784 0.02891 0.12971 0.03131 0.13162 0.029270001 0.1301 0.0273 0.14300001 + 0.034230001 0.12699001 0.02712 0.12929 0.02572 0.13313 0.02754 0.13409001 0.02813 + 0.14232001 0.031339999 0.13299 0.025830001 0.13282999 0.026550001 0.13943 0.02833 + 0.13478 0.02802 0.13631999 0.02847 0.13406999 0.02674 0.13785 0.028100001 0.079580002 + 0.12182 0.17921001 0.070289999 0.17725 0.083120003 0.120025 0.05804 0.25512201 0.854577 + 0.28090799 0.83529598 0.34790501 0.95466501 0.34489799 0.992989 0.34947401 0.912269 + 0.299086 0.81742501 0.31659999 0.80131102 0.35404599 0.867621 0.288614 0.76835901 + 0.311526 0.76030701 0.25 0.77787298 0.26958799 0.77324897 0.33688301 0.78190702 0.339582 + 0.75 0.34780401 0.75519103 0.34829399 0.77804297 0.35982001 0.80046099 0.375312 0.77194202 + 0.37980801 0.79049301 0.359099 0.73512697 0.366539 0.73890102 0.25 0.71837902 0.268022 + 0.71668899 0.341167 0.707928 0.363199 0.706074 0.35898399 0.80895197 0.38981801 0.86517102 + 0.40667701 0.909904 0.431797 0.94637603 0.45893201 0.97854799 0.28653601 0.60175699 + 0.25099999 0.60268599 0.25099999 0.553029 0.30159801 0.55289602 0.25099999 0.51370001 + 0.284872 0.51289397 0.5 0.73697603 0.5 0.74835497 0.49473101 0.748941 0.48387301 + 0.73583901 0.489732 0.804492 0.47621101 0.76963598 0.49201301 0.78716898 0.41726601 + 0.71065903 0.39215899 0.71113998 0.418863 0.68333501 0.438503 0.68910801 0.47477901 + 0.65965903 0.47826701 0.668612 0.48760399 0.83349597 0.5 0.805718 0.5 0.83335698 + 0.44758099 0.80474901 0.468656 0.80462098 0.465639 0.83085698 0.44367301 0.82821798 + 0.49269199 0.77761197 0.5 0.77885598 0.446778 0.874053 0.41959801 0.85054302 0.5 + 0.893224 0.474709 0.88780099 0.41079599 0.78007698 0.443082 0.770657 0.400922 0.65758198 + 0.46623799 0.62544203 0.46888101 0.63751501 0.40595701 0.66579401 0.5 0.63271099 + 0.5 0.62040102 0.489674 0.71673799 0.5 0.71776801 0.47395799 0.57857001 0.5 0.575652 + 0.462165 0.77014703 0.5 0.78902298 0.5 0.65607202 0.5 0.66636097 0.076396003 0.73531199 + 0.084756002 0.83408803 0.075267002 0.82950902 0.060575001 0.74194902 0.049194001 + 0.66275901 0.057323001 0.66013199 0.058074001 0.670237 0.049965002 0.67622501 0.046471 + 0.623496 0.052829999 0.62215197 0.058433998 0.67809099 0.049472999 0.68450499 0.053263001 + 0.74484199 0.069145001 0.65670598 0.069870003 0.66387701 0.070793003 0.67154402 0.15911999 + 0.68100899 0.166005 0.68066299 0.158898 0.74305803 0.14845 0.74251199 0.106324 0.65926301 + 0.102697 0.61998498 0.119377 0.62396401 0.119222 0.65988898 0.090002999 0.65647697 + 0.079630002 0.619111 0.106216 0.67260599 0.090865999 0.66491598 0.119794 0.68308598 + 0.115073 0.73929101 0.104847 0.73738801 0.107127 0.68123698 0.15036701 0.68117899 + 0.13857201 0.74167001 0.20296501 0.67588699 0.188605 0.67491698 0.189579 0.66285801 + 0.20362601 0.66251802 0.147195 0.626531 0.151667 0.65643299 0.166945 0.62741399 0.16737901 + 0.66000301 0.17697801 0.67461699 0.167587 0.67613202 0.162404 0.67202801 0.152927 + 0.668616 0.194783 0.74415803 0.186536 0.74483001 0.188655 0.68420398 0.20135 0.68414599 + 0.171277 0.74575502 0.177095 0.68164003 0.19063 0.626095 0.204209 0.62344402 0.063816004 + 0.61940497 0.119627 0.672566 0.091986001 0.67648202 0.093838997 0.735349 0.16793901 + 0.85045201 0.16769899 0.85608703 0.15672299 0.85990101 0.154659 0.853854 0.145711 + 0.85559398 0.149114 0.86228102 0.1664 0.88219303 0.177314 0.87698299 0.18688001 0.88971198 + 0.17626899 0.89829499 0.14738201 0.88907802 0.15756799 0.88582999 0.165767 0.90540302 + 0.15202799 0.910676 0.142841 0.911964 0.13639 0.91839701 0.13877399 0.89306802 0.197715 + 0.91422701 0.19817001 0.905487 0.200683 0.90822703 0.14365201 0.93121803 0.138826 + 0.92145199 0.18498699 0.92990202 0.18458 0.930408 0.18198 0.92744899 0.184029 0.92614597 + 0.189055 0.91837198 0.20194601 0.93838102 0.196373 0.942168 0.199192 0.91812098 0.208969 + 0.935238 0.20724399 0.93582201 0.196227 0.91546202 0.215718 0.92150199 0.211807 0.92559999 + 0.20365 0.90232801 0.20575 0.90572703 0.206205 0.902089 0.20784099 0.90537202 0.193312 + 0.884794 0.196391 0.88300401 0.182732 0.85969901 0.187618 0.86901802 0.18492401 0.87188202 + 0.179176 0.86182499; + setAttr ".uvst[0].uvsp[750:999]" 0.170441 0.86621499 0.113864 0.87817699 0.129398 + 0.879143 0.129483 0.89534903 0.114599 0.89387703 0.173584 0.92499 0.18787301 0.91624999 + 0.127483 0.91164899 0.12881701 0.86476398 0.14119101 0.864546 0.138972 0.87759799 + 0.127178 0.92231798 0.118791 0.92304301 0.117325 0.91125 0.138521 0.92829001 0.13579901 + 0.92671299 0.098196998 0.94202602 0.096577004 0.93993199 0.099159002 0.93282801 0.099945001 + 0.93614799 0.101754 0.93579602 0.101304 0.93809402 0.194611 0.94363898 0.200307 0.94692701 + 0.19777501 0.94859898 0.205336 0.94334197 0.21008401 0.94126999 0.212106 0.94035 + 0.20317701 0.95132101 0.201157 0.95254999 0.21288 0.94569099 0.208415 0.94822198 + 0.214368 0.94477302 0.207692 0.95817298 0.20595901 0.95926702 0.212522 0.955338 0.21680599 + 0.95292997 0.218189 0.95210701 0.20989799 0.96168798 0.208243 0.96261197 0.214745 + 0.95912802 0.21885499 0.95647502 0.22026999 0.95535898 0.22605599 0.97215301 0.22295199 + 0.96356601 0.224686 0.96300697 0.226813 0.97206801 0.224308 0.97601002 0.223795 0.97515899 + 0.219638 0.97639298 0.220053 0.97584599 0.21346401 0.96962398 0.21474101 0.96836102 + 0.212579 0.96542102 0.21094599 0.96625298 0.21728 0.96322501 0.218586 0.96530002 + 0.22123501 0.96046102 0.22254699 0.95898902 0.16494399 0.93455899 0.167493 0.93313998 + 0.167694 0.93790102 0.167229 0.93836403 0.15165199 0.94247597 0.149675 0.94440401 + 0.148479 0.94098401 0.150511 0.93910301 0.158079 0.93784302 0.157196 0.93383098 0.168378 + 0.95667398 0.162513 0.95800698 0.154001 0.96032399 0.15614299 0.95972598 0.170551 + 0.95623302 0.157278 0.964145 0.154928 0.96501797 0.163385 0.96232802 0.169118 0.96101397 + 0.171331 0.960756 0.158271 0.96833599 0.15621801 0.96887302 0.164415 0.966842 0.170241 + 0.96532601 0.17195299 0.96485901 0.15987401 0.975227 0.158053 0.97570699 0.165898 + 0.973638 0.171472 0.97235501 0.17303 0.97200203 0.160713 0.97908199 0.15893599 0.97960001 + 0.16674601 0.977516 0.172244 0.976403 0.17386299 0.97614002 0.173365 0.993747 0.173806 + 0.98508298 0.17554501 0.98514098 0.174226 0.99424303 0.166769 0.99568999 0.161477 + 0.98757899 0.16285899 0.98698097 0.167284 0.99487901 0.170766 0.99637198 0.170571 + 0.99531901 0.16837101 0.98408997 0.161645 0.98318201 0.160065 0.98385298 0.167592 + 0.98153698 0.17316601 0.98092997 0.17489301 0.98065501 0.1893 0.95101398 0.183586 + 0.95336199 0.174806 0.929039 0.17733 0.95577002 0.175016 0.95643198 0.191431 0.950082 + 0.17941099 0.96099198 0.177215 0.96197599 0.18565901 0.95864302 0.19104899 0.95655698 + 0.193482 0.95545602 0.184939 0.97360301 0.186821 0.97791398 0.184846 0.97850698 0.182932 + 0.97426301 0.190603 0.97149903 0.19225 0.97578502 0.195709 0.96940601 0.197294 0.973827 + 0.19897901 0.97306001 0.197437 0.96868002 0.181427 0.96604103 0.179272 0.966757 0.187622 + 0.963853 0.193158 0.96140301 0.194931 0.96049201 0.19451401 0.99430799 0.188493 0.98711503 + 0.19018701 0.98659903 0.194791 0.99361402 0.199094 0.99322701 0.19950999 0.99442297 + 0.20230199 0.99057198 0.203086 0.99078703 0.200821 0.98234099 0.20238601 0.98170298 + 0.188512 0.98246503 0.194043 0.98038203 0.19511899 0.98259997 0.199111 0.97819 0.186719 + 0.98301798 0.20074099 0.97727603 0.209993 0.92723101 0.199518 0.91767299 0.218685 + 0.91789502 0.219441 0.91584098 0.21479701 0.92736101 0.212993 0.92954999 0.218027 + 0.92362797 0.220924 0.92044002 0.22238401 0.91891402 0.21703801 0.92967999 0.215665 + 0.931288 0.220322 0.92556202 0.223646 0.92216003 0.22463199 0.92095 0.222601 0.93419999 + 0.22105999 0.93505502 0.226299 0.93074399 0.229165 0.92686498 0.22975001 0.92563498 + 0.22459599 0.93599701 0.223456 0.93703502 0.227953 0.93241602 0.23110899 0.92876601 + 0.23203699 0.927854 0.240146 0.94226402 0.236534 0.93541598 0.237451 0.93439901 0.24078301 + 0.942083 0.239857 0.94504601 0.23913801 0.944552 0.23680601 0.94668502 0.236845 0.94610798 + 0.230188 0.94281 0.231038 0.94176197 0.232299 0.93681902 0.229479 0.93392599 0.233274 + 0.93110901 0.23453601 0.930641 0.226228 0.93949598 0.226998 0.93808401 0.127406 0.93696499 + 0.120426 0.93711001 0.120256 0.93483502 0.126873 0.93298799 0.135208 0.93502802 0.135418 + 0.93730402 0.138557 0.937361 0.138217 0.93512797 0.13484301 0.95838702 0.13573 0.95041502 + 0.13813999 0.950589 0.13661601 0.959113 0.128893 0.962506 0.128952 0.96385598 0.122769 + 0.95831001 0.121826 0.95047897 0.12809099 0.94947797 0.12792601 0.94651699 0.13592701 + 0.94666201 0.121816 0.94682002 0.121042 0.94180799 0.127884 0.94177997 0.135801 0.942083 + 0.13905799 0.94222999 0.138676 0.94668901 0.119866 0.95080602 0.119359 0.94703603 + 0.121816 0.94682002 0.121189 0.95842898 0.14495701 0.875875 0.151894 0.87354201 0.102663 + 0.94003999 0.10435 0.93876398 0.104872 0.94067401 0.102803 0.94090497 0.089212999 + 0.85166597 0.10009 0.85436302 0.099225 0.860659 0.088738002 0.85734397 0.106657 0.87695998 + 0.096276 0.878425 0.105694 0.86207801 0.107309 0.85506803 0.116683 0.85639799 0.115965 + 0.86446702 0.073407002 0.84662801 0.079002999 0.84849298 0.078143999 0.85329503 0.07209 + 0.85127902 0.074072003 0.86446398 0.084062003 0.86947399 0.068902001 0.86129802 0.108468 + 0.89461201 0.101152 0.89617598 0.069939002 0.93711197 0.080362 0.91954798 0.084806003 + 0.92556602 0.076081 0.940018; + setAttr ".uvst[0].uvsp[1000:1249]" 0.055716999 0.92547601 0.072131999 0.90794498 + 0.079218999 0.94669002 0.073535003 0.94431198 0.068046004 0.94135302 0.058013 0.93673301 + 0.057842001 0.93403101 0.061585002 0.937163 0.058256 0.937271 0.04947 0.924568 0.046312999 + 0.91872197 0.045894001 0.91259199 0.074824996 0.94753498 0.075260997 0.94762802 0.086864002 + 0.94450903 0.093994997 0.94703501 0.092439003 0.95111197 0.085423 0.94891 0.052933998 + 0.92883801 0.043494001 0.914563 0.042578999 0.90636897 0.040729001 0.908952 0.055041 + 0.88790101 0.062325001 0.89656001 0.066022001 0.87493902 0.062212002 0.872069 0.073991001 + 0.882581 0.081325002 0.89050901 0.052338 0.88480699 0.045788001 0.92276901 0.037811998 + 0.93660903 0.036860999 0.93537498 0.048898 0.94578201 0.048014998 0.94511598 0.041246001 + 0.90340298 0.039652001 0.906129 0.034712002 0.925511 0.031868 0.92120397 0.028750001 + 0.91544598 0.101578 0.91877198 0.091609001 0.93581402 0.091614 0.90198803 0.112513 + 0.912233 0.108445 0.91389799 0.114599 0.89387703 0.117325 0.91125 0.115048 0.92373103 + 0.111729 0.924559 0.118791 0.92304301 0.045708999 0.92069697 0.039822001 0.945687 + 0.042748 0.94179398 0.045857001 0.94899398 0.034139 0.94126701 0.037351999 0.94920802 + 0.041947 0.952245 0.031833 0.94532299 0.036630001 0.95850998 0.032710999 0.95609301 + 0.027512001 0.95246702 0.030985 0.95878899 0.034334999 0.961703 0.025214 0.95534003 + 0.027983001 0.96311098 0.022768 0.95913202 0.031312998 0.96529502 0.028508 0.96898198 + 0.02341 0.974684 0.019317999 0.973813 0.025008 0.96698397 0.016692 0.97009599 0.020305 + 0.96308798 0.046654999 0.949148 0.033085998 0.94013202 0.042856 0.952797 0.030692 + 0.94458199 0.037370998 0.95898598 0.026391 0.95167702 0.034885999 0.962152 0.024101 + 0.95472801 0.016373999 0.97052097 0.018847 0.97448802 0.023009 0.97513598 0.021454999 + 0.957995 0.018958 0.96170503 0.032225002 0.96564502 0.029788001 0.96909201 0.074767001 + 0.95906299 0.072828002 0.958372 0.094883002 0.95185602 0.096449003 0.947905 0.088151999 + 0.96389002 0.081435002 0.96166903 0.086714 0.9677 0.080216996 0.96574801 0.073415004 + 0.96357298 0.085167997 0.97128701 0.079154998 0.96934903 0.07265 0.96748 0.082672 + 0.97803199 0.077026002 0.97611398 0.071382999 0.97451502 0.081859 0.98191702 0.075882003 + 0.97996598 0.070013002 0.97835302 0.073298998 0.98774201 0.078682996 0.98960203 0.074325003 + 0.99687099 0.070678003 0.996535 0.067299999 0.99483198 0.067868002 0.98696101 0.080316998 + 0.98588097 0.074735999 0.98381901 0.068885997 0.98261797 0.090305001 0.96462899 0.088521004 + 0.968373 0.071696997 0.96283901 0.087181002 0.97206497 0.070781998 0.96682203 0.084679 + 0.978692 0.069541998 0.97392702 0.083687998 0.98252499 0.068346001 0.97795898 0.074221 + 0.99759001 0.070421003 0.99780101 0.067244999 0.99587399 0.080586001 0.99030101 0.082185999 + 0.98659402 0.067106001 0.98234701 0.066147998 0.98668802 0.069500998 0.95880699 0.067569003 + 0.957838 0.054405998 0.95166099 0.052797001 0.95105702 0.058777001 0.96048498 0.061395999 + 0.95490301 0.064873002 0.96314901 0.05192 0.95702398 0.051197998 0.97615302 0.053052001 + 0.97232902 0.058015998 0.97486699 0.056097001 0.97883499 0.045715999 0.97393298 0.047612 + 0.96995401 0.056740001 0.96473002 0.062252998 0.96739697 0.050776001 0.96197402 0.051860999 + 0.98714399 0.047063001 0.984622 0.049355999 0.980012 0.054106999 0.98308998 0.043802001 + 0.978019 0.041685998 0.98236197 0.047313001 0.99356401 0.043099001 0.99239397 0.039342001 + 0.98989999 0.066946998 0.96419603 0.0504 0.95628601 0.057509001 0.98006803 0.059599999 + 0.97570902 0.046169002 0.96936601 0.044174999 0.97350299 0.063929997 0.96848297 0.049082 + 0.961303 0.04259 0.99346101 0.046913002 0.99400598 0.039159998 0.99033701 0.053365 + 0.98830199 0.055511001 0.98440599 0.042102002 0.97749001 0.040178999 0.98191899 0.028252 + 0.92334503 0.031291001 0.92753601 0.025184 0.91766602 0.025986001 0.92447001 0.028667999 + 0.92861801 0.022668 0.91928601 0.022600001 0.93139601 0.020358 0.92761803 0.017111 + 0.92298698 0.017642001 0.929295 0.019924 0.93317598 0.014492 0.92470503 0.011376 + 0.92721403 0.014054 0.93208301 0.010255 0.934632 0.0078299996 0.93016601 0.016493 + 0.93522501 0.012445 0.937751 0.006664 0.94062698 0.0043279999 0.93833202 0.0033559999 + 0.93554997 0.028068 0.91386902 0.032157 0.92844403 0.035507001 0.926705 0.024564 + 0.91614503 0.029113 0.929627 0.022051999 0.91788399 0.023122 0.93229401 0.016251 + 0.92167699 0.020439999 0.93389797 0.013609 0.92338598 0.010699 0.92575502 0.0072889999 + 0.929115 0.01289 0.93849897 0.017298 0.935817 0.0060000001 0.94085097 0.0030139999 + 0.93595999 0.11079 0.93894303 0.110083 0.936189 0.115013 0.93521899 0.115644 0.93792498 + 0.117907 0.93757302 0.117582 0.935229 0.116573 0.94272202 0.112167 0.94404203 0.105976 + 0.94576401 0.117249 0.94757402 0.118769 0.94223601 0.113016 0.94849902 0.107056 0.95000499 + 0.118021 0.95130903 0.113946 0.95208699 0.108104 0.95347899 0.120099 0.959117 0.116349 + 0.96103799 0.110317 0.95948601 0.103921 0.94603002 0.106365 0.95394403 0.109453 0.96099502 + 0.117097 0.96392602 0.121042 0.94180799 0.105119 0.95052499 0.120426 0.93711001 0.120256 + 0.93483502 0.092041999 0.87420601 0.085219003 0.89363301 0.181035 0.84540802 0.18070699 + 0.85042 0.10583 0.92747998 0.0036319999 0.93878001 0.129813 0.856471 0.160511 0.87040901 + 0.145711 0.85559398 0.148104 0.83515102 0.15667 0.83393002 0.154659 0.853854 0.107309 + 0.85506803 0.10009 0.85436302 0.096547 0.83719099; + setAttr ".uvst[0].uvsp[1250:1499]" 0.104758 0.83908802 0.113543 0.840186 0.12633599 + 0.83885098 0.129813 0.856471 0.116683 0.85639799 0.182769 0.82109898 0.181035 0.84540802 + 0.16793901 0.85045201 0.174411 0.83075303 0.070846997 0.82511002 0.079002999 0.84849298 + 0.073407002 0.84662801 0.089212999 0.85166597 0.135847 0.836891 0.137045 0.856583 + 0.137045 0.856583 0.448493 0.53891897 0.49309099 0.536304 0.43079999 0.58338702 0.5 + 0.51463997 0.455542 0.50899601 0.40466899 0.37459999 0.440552 0.35821 0.44804701 + 0.43360299 0.416778 0.44255799 0.38488799 0.51627302 0.38018399 0.51559597 0.38848001 + 0.48485801 0.43463901 0.26182601 0.5 0.25973099 0.5 0.33173099 0.43832001 0.328219 + 0.32704201 0.30178601 0.35991499 0.29888901 0.37030399 0.38490799 0.33708 0.38794899 + 0.396777 0.45412001 0.37910101 0.40700001 0.105855 0.526968 0.110295 0.53736299 0.079706997 + 0.53676498 0.079031996 0.53163201 0.31940299 0.39412501 0.30877599 0.30609199 0.052990999 + 0.53213698 0.053619001 0.536677 0.043683998 0.536672 0.043593999 0.532722 0.40021399 + 0.35100999 0.25099999 0.46149501 0.280781 0.46108401 0.284872 0.51289397 0.25099999 + 0.51370001 0.5 0.43915999 0.5 0.36367899 0.27968001 0.44675401 0.25099999 0.448668 + 0.071411997 0.53469402 0.053619001 0.536677 0.052990999 0.53213698 0.069528997 0.52920598 + 0.390847 0.27828899 0.31060499 0.53540802 0.295697 0.51177001 0.29930499 0.51139599 + 0.31360701 0.52957898 0.098390996 0.571356 0.089048997 0.55405998 0.104343 0.55435902 + 0.077453002 0.55766499 0.057158999 0.559214 0.055388998 0.54794502 0.074432001 0.54618001 + 0.115361 0.58231097 0.13975599 0.56675297 0.14121 0.58938998 0.120328 0.562038 0.16216099 + 0.58150601 0.15799201 0.561589 0.17920899 0.55396903 0.187878 0.57041198 0.040465001 + 0.55882001 0.044888001 0.55918598 0.201924 0.55882698 0.044286001 0.54792899 0.040293001 + 0.54743099 0.295697 0.51177001 0.293697 0.45967501 0.29800299 0.45920601 0.29930499 + 0.51139599 0.20220201 0.54743499 0.25099999 0.339647 0.26479 0.332764 0.27858001 + 0.43242401 0.25099999 0.43584001 0.079706997 0.53676498 0.071411997 0.53469402 0.069528997 + 0.52920598 0.079031996 0.53163201 0.42852199 0.20355099 0.38148001 0.205568 0.37394699 + 0.16391 0.5 0.199909 0.349527 0.212871 0.34006 0.16773599 0.317004 0.215624 0.30664501 + 0.173186 0.29814899 0.218059 0.274575 0.22558101 0.26966599 0.17471001 0.28833199 + 0.174721 0.28678301 0.319428 0.29899201 0.413275 0.28898099 0.44487301 0.29208201 + 0.44424599 0.47728699 0.76076698 0.43662801 0.75565702 0.443223 0.70998502 0.4594 + 0.75734502 0.12843999 0.064465001 0.37176999 0.707569 0.219897 0.404066 0.192729 + 0.40838301 0.178913 0.407897 0.40514201 0.12055 0.424519 0.15526301 0.37394699 0.16391 + 0.36816299 0.131908 0.19462 0.03249 0.19159 0.029759999 0.40630999 0.76308697 0.290252 + 0.43641701 0.29208201 0.44424599 0.28898099 0.44487301 0.289617 0.44064501 0.5 0.53803998 + 0.45440301 0.059316002 0.193426 0.444143 0.21949001 0.426296 0.20021901 0.44859901 + 0.25099999 0.23310401 0.25099999 0.17469899 0.28588101 0.44549999 0.27968001 0.44675401 + 0.27858001 0.43242401 0.28350201 0.43050599 0.27968001 0.44675401 0.28588101 0.44549999 + 0.28939199 0.460145 0.280781 0.46108401 0.284872 0.51289397 0.29208899 0.51214498 + 0.30159801 0.55289602 0.284872 0.51289397 0.29208899 0.51214498 0.307603 0.541237 + 0.39899901 0.51830298 0.38959101 0.516949 0.27737999 0.138539 0.28833199 0.174721 + 0.42888701 0.51051599 0.289693 0.713193 0.31482199 0.71056098 0.38633499 0.53995401 + 0.42016801 0.54090798 0.391458 0.58829302 0.358311 0.593503 0.32185599 0.59969902 + 0.34502199 0.55883998 0.365201 0.52581 0.37048399 0.52934599 0.34240699 0.54087198 + 0.341535 0.53488201 0.34240699 0.54087198 0.341535 0.53488201 0.37048399 0.52934599 + 0.365201 0.52581 0.38018399 0.51559597 0.38488799 0.51627302 0.34502199 0.55883998 + 0.343279 0.54686099 0.38633499 0.53995401 0.34502199 0.55883998 0.343279 0.54686099 + 0.37576801 0.53288198 0.39899901 0.51830298 0.38633499 0.53995401 0.37576801 0.53288198 + 0.38959101 0.516949 0.101416 0.516572 0.078357004 0.52649999 0.067644998 0.523718 + 0.078357004 0.52649999 0.052361999 0.52759701 0.067644998 0.523718 0.052361999 0.52759701 + 0.043503001 0.52877098 0.110295 0.53736299 0.125295 0.54176402 0.079706997 0.53676498 + 0.071411997 0.53469402 0.040121 0.53604198 0.17054 0.53752601 0.202481 0.53604299 + 0.153824 0.54167199 0.138302 0.54411697 0.288423 0.42858699 0.872114 0.476886 0.85035002 + 0.47040999 0.84838498 0.41411901 0.87151098 0.41718301 0.66540998 0.13846301 0.70643699 + 0.14166699 0.69335502 0.173186 0.65994 0.16773599 0.56869602 0.101426 0.575481 0.15526301 + 0.89793801 0.42235899 0.88863897 0.48251501 0.93139499 0.43252099 0.91925198 0.48688301 + 0.74900001 0.119172 0.74900001 0.17469899 0.73033398 0.17471001 0.71166801 0.174721 + 0.69335502 0.173186 0.70643699 0.14166699 0.72262001 0.138539 0.93164003 0.48776099 + 0.94597399 0.43677801 0.63183701 0.131908 0.66540998 0.13846301 0.65994 0.16773599 + 0.62605298 0.16391 0.54559702 0.059316002 0.96580702 0.39894 0.99136001 0.40076801 + 0.99201602 0.40735799 0.96779603 0.40503299 0.95605099 0.42493501 0.94972301 0.42316699 + 0.800942 0.220339 0.80381697 0.198746 0.82261902 0.20158701 0.817828 0.225721 0.83340901 + 0.20274401 0.83171898 0.22684699 0.86417401 0.227791 0.85311699 0.228788 0.85361898 + 0.20308299; + setAttr ".uvst[0].uvsp[1500:1749]" 0.86280698 0.203187 0.86195099 0.16204301 + 0.83880198 0.164297 0.86884999 0.170432 0.82994401 0.16281299 0.808963 0.15559 0.917108 + 0.16384999 0.90936798 0.165041 0.90794998 0.15956099 0.91590202 0.15753099 0.92502099 + 0.223042 0.91727 0.223286 0.914653 0.19499101 0.92362201 0.19604599 0.93720001 0.16593499 + 0.951024 0.19863801 0.94032401 0.15799101 0.87424999 0.175473 0.87061602 0.20242 + 0.96212101 0.198476 0.89551097 0.16285001 0.89673901 0.16828001 0.90206498 0.224255 + 0.87370801 0.22772101 0.90039098 0.195107 0.88350397 0.25560099 0.87697703 0.241402 + 0.90268099 0.240601 0.91129202 0.25867599 0.91721201 0.239784 0.92535698 0.238268 + 0.92606002 0.252471 0.91023898 0.24047001 0.919016 0.25672999 0.90274799 0.166614 + 0.901272 0.161212 0.90656698 0.194747 0.90889198 0.223727 0.933792 0.39591199 0.95278502 + 0.43793499 0.89814502 0.39829299 0.872082 0.40432301 0.94451201 0.48614901 0.85185301 + 0.366734 0.81798702 0.367304 0.82906699 0.292317 0.85061097 0.29113299 0.78517199 + 0.235964 0.79222101 0.229232 0.813963 0.237304 0.810085 0.244197 0.80677801 0.25962901 + 0.77467602 0.248767 0.83094901 0.235789 0.83109099 0.243186 0.80492198 0.27157301 + 0.80562598 0.28147599 0.76929998 0.27202299 0.77177501 0.26069599 0.803316 0.366844 + 0.80644 0.29224801 0.77154601 0.36175099 0.765782 0.29558399 0.84903598 0.40522501 + 0.85396498 0.252103 0.86597598 0.250882 0.866633 0.26365101 0.85498703 0.26328099 + 0.88505501 0.262862 0.86673999 0.27113101 0.85394198 0.27175301 0.86632198 0.29458499 + 0.87077898 0.36596301 0.80851299 0.42065799 0.80657399 0.444143 0.781066 0.41485101 + 0.86684602 0.27860999 0.85177499 0.28181499 0.81914699 0.45779201 0.82183599 0.41919899 + 0.830006 0.271752 0.82920003 0.285743 0.83080602 0.262389 0.85458702 0.242578 0.93712002 + 0.298915 0.93200803 0.28025901 0.94620103 0.27731201 0.951024 0.29442099 0.89767498 + 0.363967 0.98118299 0.36411199 0.95722401 0.36465299 0.88855201 0.29982099 0.92840803 + 0.26034501 0.94447201 0.26204801 0.94160199 0.235558 0.94994497 0.232288 0.945916 + 0.240989 0.943977 0.252065 0.92008299 0.30081999 0.93024701 0.36534101 0.94498098 + 0.36490101 0.93017399 0.30026299 0.94914597 0.401007 0.91402602 0.265643 0.92108601 + 0.26165 0.91542798 0.28337801 0.88631499 0.28260601 0.92515498 0.28259301 0.95868897 + 0.221645 0.94743401 0.22379901 0.99125201 0.399165 0.96476001 0.39707801 0.86569601 + 0.241409 0.58177698 0.110988 0.59485799 0.12055 0.81914598 0.45779201 0.81469297 + 0.464872 0.79978102 0.44859901 0.80657399 0.444143 0.84895098 0.083989002 0.85051101 + 0.090202004 0.83938998 0.091020003 0.83946002 0.08422 0.87180001 0.10383 0.87290001 + 0.096500002 0.89346999 0.09973 0.89230001 0.10638 0.83961999 0.097089998 0.82867002 + 0.099339999 0.82786 0.095720001 0.84907198 0.119863 0.85056502 0.096280999 0.86576998 + 0.10118 0.86597002 0.12074 0.86558002 0.092749998 0.840469 0.1182 0.82673001 0.1147 + 0.87660003 0.084279999 0.86647999 0.08585 0.89295 0.092649996 0.89020002 0.12358 + 0.87193 0.12158 0.90556002 0.10606 0.90584999 0.1008 0.92477 0.092820004 0.92370999 + 0.103 0.90173 0.10024 0.90057999 0.1064 0.90644002 0.12298 0.90091002 0.12348 0.89455003 + 0.1236 0.89583999 0.10605 0.89692003 0.09984 0.90592998 0.050560001 0.90752 0.070370004 + 0.903 0.069399998 0.90043002 0.049855001 0.823735 0.07068 0.83410001 0.067460001 + 0.82502002 0.086860001 0.84583098 0.064400002 0.86327499 0.065485001 0.88177001 0.07745 + 0.87848997 0.079680003 0.874165 0.061790001 0.87728 0.060024999 0.91139001 0.050889999 + 0.91165 0.071419999 0.91830498 0.052864999 0.91676998 0.074589998 0.89811999 0.068899997 + 0.89432502 0.050285 0.89412999 0.069870003 0.88853502 0.052354999 0.90434003 0.030750001 + 0.89785999 0.030309999 0.90153998 0.0232 0.90445 0.02421 0.89332998 0.087379999 0.89341998 + 0.083999999 0.90574002 0.085040003 0.90429002 0.081820004 0.90651 0.08969 0.92106003 + 0.077880003 0.88985997 0.071620002 0.89415002 0.076289997 0.89332998 0.081119999 + 0.88464999 0.074929997 0.90175003 0.09144 0.90167999 0.086860001 0.89727002 0.092629999 + 0.89749002 0.087729998 0.90262002 0.079070002 0.90087003 0.083849996 0.89999998 0.081150003 + 0.89725 0.084559999 0.89665997 0.080940001 0.90158999 0.077660002 0.8994 0.077069998 + 0.89639997 0.076339997 0.81039 0.04183 0.80791998 0.033640001 0.80983001 0.031380001 + 0.81586999 0.038860001 0.82047999 0.035300002 0.81207001 0.03035 0.85364002 0.027519999 + 0.85497999 0.032109998 0.85193998 0.032469999 0.85162002 0.02685 0.84942001 0.031950001 + 0.85003 0.02743 0.86208999 0.02867 0.8617 0.032219999 0.85891998 0.03184 0.86072999 + 0.02898 0.86339003 0.02915 0.86409998 0.031810001 0.82643002 0.044100001 0.82874 + 0.050700001 0.82280999 0.04733 0.9206 0.022329999 0.91892999 0.02785 0.91215003 0.02674 + 0.91483003 0.021081001 0.90322 0.02018 0.90583003 0.01425 0.90876001 0.01626 0.83454001 + 0.04727 0.828664 0.043294001 0.9023 0.020400001 0.91113001 0.03036 0.90724999 0.023940001 + 0.91077 0.01863 0.82664001 0.04022 0.82688999 0.040580001 0.91983998 0.03114 0.822299 + 0.038011 0.82441002 0.035259999 0.81844002 0.050330002 0.81291002 0.044810001 0.81805998 + 0.041979998 0.81559998 0.052409999 0.81059998 0.046670001 0.82244998 0.054499999 + 0.81883001 0.057459999 0.91752303 0.017426001 0.92255998 0.018610001 0.80615097 0.039198998 + 0.805044 0.036033999; + setAttr ".uvst[0].uvsp[1750:1999]" 0.80537999 0.03249 0.80644399 0.032972001 + 0.81198001 0.028525 0.81906098 0.029614 0.82261997 0.03176 0.81203699 0.029571 0.90850002 + 0.01078 0.91139001 0.01247 0.82261997 0.03176 0.90448999 0.01349 0.90275002 0.01302 + 0.90336001 0.0055399998 0.90424001 0.0051000002 0.91365999 0.01471 0.91987997 0.00728 + 0.92163998 0.00997 0.91742003 0.00599 0.80900502 0.030439001 0.83762002 0.040199999 + 0.84010899 0.038844999 0.84271002 0.044810001 0.83314002 0.04411 0.83837998 0.037020002 + 0.83854997 0.037039999 0.89188999 0.023940001 0.89229 0.022430001 0.89273 0.021779999 + 0.89322001 0.02351 0.89052999 0.03167 0.89796001 0.023870001 0.89515001 0.01784 0.89804 + 0.018510001 0.89310002 0.0165 0.90044999 0.01791 0.89077002 0.01859 0.89226002 0.01859 + 0.83455998 0.035659999 0.83732998 0.03469 0.83305001 0.030540001 0.83539999 0.029209999 + 0.89385998 0.01121 0.89589 0.01173 0.90219998 0.01749 0.82661998 0.038989998 0.82738 + 0.038449999 0.89911002 0.01271 0.83095002 0.037020002 0.82599002 0.032820001 0.82416999 + 0.03311 0.82547998 0.02541 0.82585001 0.025830001 0.82928002 0.024700001 0.82963002 + 0.02437 0.89906001 0.0038000001 0.89971 0.00465 0.90148002 0.0054100002 0.82959998 + 0.03184 0.90180999 0.00367 0.82745999 0.02441 0.82751 0.024870001 0.84656 0.0394 + 0.842767 0.040273 0.85108 0.04487 0.84842002 0.039407 0.84755999 0.037519999 0.84798998 + 0.037919998 0.88436002 0.02696 0.88328999 0.027589999 0.88358998 0.024940001 0.88375002 + 0.024879999 0.88174999 0.02372 0.88334 0.022779999 0.88902998 0.025560001 0.88823003 + 0.01918 0.88529998 0.01905 0.83749998 0.033969998 0.83919001 0.034230001 0.88369 + 0.01877 0.8423 0.034389999 0.84543002 0.033750001 0.84543002 0.031169999 0.84218001 + 0.031539999 0.83881003 0.03115 0.89142001 0.016209999 0.88822001 0.016589999 0.88514 + 0.01636 0.83709002 0.03111 0.89275998 0.01616 0.88325 0.01646 0.84718001 0.030889999 + 0.84707999 0.033459999 0.84816003 0.031649999 0.84943002 0.035399999 0.84847999 0.035349999 + 0.88134003 0.020059999 0.88340998 0.019540001 0.84337002 0.024250001 0.84145999 0.023949999 + 0.88924998 0.0097500002 0.89087999 0.0096500004 0.88744003 0.0094499998 0.88731003 + 0.0087000001 0.84380001 0.023530001 0.83959001 0.024630001 0.83885002 0.023700001 + 0.89178997 0.0089699998 0.84140998 0.022919999 0.88954997 0.0081099998 0.86006999 + 0.045120001 0.85525501 0.040185999 0.85803002 0.038600001 0.87515002 0.029619999 + 0.87703001 0.032000002 0.87448001 0.03077 0.87480998 0.029379999 0.87743002 0.039489999 + 0.88293999 0.034839999 0.883645 0.055555001 0.85114002 0.041540001 0.85643399 0.037501998 + 0.85677999 0.037470002 0.85187 0.035969999 0.85496998 0.035500001 0.85655999 0.035440002 + 0.87664998 0.024800001 0.87484002 0.02489 0.88117999 0.03067 0.87936997 0.02437 0.87861001 + 0.02083 0.87576002 0.02111 0.87629998 0.01667 0.87676001 0.017240001 0.87386 0.02134 + 0.85402 0.02706 0.85659999 0.031629998 0.87987 0.01646 0.88037997 0.01565 0.84959 + 0.02695 0.87842 0.01729 0.85168999 0.026419999 0.87840998 0.01567 0.87278998 0.042599998 + 0.86984003 0.043900002 0.86786002 0.037349999 0.87013 0.0361 0.87529999 0.04115 0.87260002 + 0.034079999 0.86562997 0.038249999 0.86651999 0.04465 0.86107999 0.039620001 0.85852998 + 0.03461 0.86144 0.035039999 0.86466002 0.03427 0.86655003 0.03365 0.86825001 0.032930002 + 0.86566001 0.03114 0.86680001 0.03036 0.87028998 0.03131 0.87216002 0.02891 0.86838001 + 0.029270001 0.86989999 0.0273 0.85699999 0.034230001 0.87300998 0.02712 0.87071002 + 0.02572 0.86590999 0.02813 0.86686999 0.02754 0.85768002 0.031339999 0.86716998 0.026550001 + 0.86701 0.025830001 0.86057001 0.02833 0.86522001 0.02802 0.86368001 0.02847 0.86593002 + 0.02674 0.86215001 0.028100001 0.92041999 0.12182 0.82274997 0.083120003 0.82078999 + 0.070289999 0.87997502 0.05804 0.74487799 0.854577 0.65510201 0.992989 0.65209502 + 0.95466501 0.71909201 0.83529598 0.65052599 0.912269 0.64595401 0.867621 0.68339998 + 0.80131102 0.70091403 0.81742501 0.688474 0.76030701 0.71138602 0.76835901 0.73041201 + 0.77324897 0.75 0.77787298 0.66311699 0.78190702 0.65170598 0.77804297 0.65219599 + 0.75519103 0.66041797 0.75 0.64017999 0.80046099 0.62019199 0.79049301 0.62468803 + 0.77194202 0.633461 0.73890102 0.64090103 0.73512697 0.731978 0.71668899 0.75 0.71837902 + 0.65883303 0.707928 0.636801 0.706074 0.64101601 0.80895197 0.61018199 0.86517102 + 0.59332299 0.909904 0.54106802 0.97854799 0.56820297 0.94637603 0.71346402 0.60175699 + 0.69840199 0.55289602 0.74900001 0.553029 0.74900001 0.60268599 0.74900001 0.51370001 + 0.715128 0.51289397 0.51612699 0.73583901 0.50526899 0.748941 0.51026797 0.804492 + 0.50798702 0.78716898 0.52378899 0.76963598 0.58273399 0.71065903 0.56149697 0.68910801 + 0.581137 0.68333501 0.60784101 0.71113998 0.52173299 0.668612 0.52522099 0.65965903 + 0.51239598 0.83349597 0.55241901 0.80474901 0.55632699 0.82821798 0.534361 0.83085698 + 0.531344 0.80462098 0.50730801 0.77761197 0.58040202 0.85054302 0.553222 0.874053 + 0.52529103 0.88780099 0.55691803 0.770657 0.58920401 0.78007698 0.599078 0.65758198 + 0.59404302 0.66579401 0.53111899 0.63751501 0.53376198 0.62544203 0.51032603 0.71673799 + 0.52604198 0.57857001 0.537835 0.77014703 0.92360401 0.73531199 0.93942499 0.74194902 + 0.92473298 0.82950902 0.91524398 0.83408803 0.95080602 0.66275901 0.95003498 0.67622501 + 0.941926 0.670237; + setAttr ".uvst[0].uvsp[2000:2249]" 0.94267702 0.66013199 0.953529 0.623496 0.94717002 + 0.62215197 0.95052701 0.68450499 0.94156599 0.67809099 0.94673699 0.74484199 0.93013 + 0.66387701 0.93085498 0.65670598 0.92920703 0.67154402 0.84087998 0.68100899 0.85154998 + 0.74251199 0.841102 0.74305803 0.83399498 0.68066299 0.89367598 0.65926301 0.88077801 + 0.65988898 0.88062298 0.62396401 0.89730299 0.61998498 0.92036998 0.619111 0.90999699 + 0.65647697 0.89378399 0.67260599 0.90913397 0.66491598 0.88020599 0.68308598 0.89287299 + 0.68123698 0.89515299 0.73738801 0.88492697 0.73929101 0.84963298 0.68117899 0.86142802 + 0.74167001 0.79703498 0.67588699 0.79637402 0.66251802 0.81042099 0.66285801 0.81139499 + 0.67491698 0.848333 0.65643299 0.85280502 0.626531 0.83262098 0.66000301 0.83305502 + 0.62741399 0.83241302 0.67613202 0.82302201 0.67461699 0.84707302 0.668616 0.837596 + 0.67202801 0.80521703 0.74415803 0.79865003 0.68414599 0.81134498 0.68420398 0.81346399 + 0.74483001 0.822905 0.68164003 0.82872301 0.74575502 0.80936998 0.626095 0.79579097 + 0.62344402 0.93618399 0.61940497 0.880373 0.672566 0.90616101 0.735349 0.908014 0.67648202 + 0.83206099 0.85045201 0.84534103 0.853854 0.84327698 0.85990101 0.83230102 0.85608703 + 0.854289 0.85559398 0.85088599 0.86228102 0.83359998 0.88219303 0.82373101 0.89829499 + 0.81312001 0.88971198 0.82268602 0.87698299 0.85261798 0.88907802 0.84797198 0.910676 + 0.83423299 0.90540302 0.84243202 0.88582999 0.85715902 0.911964 0.86122602 0.89306802 + 0.86361003 0.91839701 0.80228502 0.91422701 0.799317 0.90822703 0.80182999 0.905487 + 0.85634798 0.93121803 0.86117399 0.92145199 0.81501299 0.92990202 0.81597102 0.92614597 + 0.81801999 0.92744899 0.81541997 0.930408 0.81094497 0.91837198 0.80362701 0.942168 + 0.79805398 0.93838102 0.80080801 0.91812098 0.80377299 0.91546202 0.79275602 0.93582201 + 0.791031 0.935238 0.78819299 0.92559999 0.78428203 0.92150199 0.79425001 0.90572703 + 0.79635 0.90232801 0.79215902 0.90537202 0.79379499 0.902089 0.80668801 0.884794 + 0.80360901 0.88300401 0.81726801 0.85969901 0.82082403 0.86182499 0.81507599 0.87188202 + 0.81238198 0.86901802 0.82955903 0.86621499 0.886136 0.87817699 0.88540101 0.89387703 + 0.87051702 0.89534903 0.87060201 0.879143 0.81212699 0.91624999 0.82641602 0.92499 + 0.87251699 0.91164899 0.87118298 0.86476398 0.86102802 0.87759799 0.85880899 0.864546 + 0.88267499 0.91125 0.88120902 0.92304301 0.87282199 0.92231798 0.86420101 0.92671299 + 0.86147898 0.92829001 0.90180302 0.94202602 0.90005499 0.93614799 0.900841 0.93282801 + 0.90342301 0.93993199 0.89869601 0.93809402 0.89824599 0.93579602 0.80538899 0.94363898 + 0.80222499 0.94859898 0.79969299 0.94692701 0.79466403 0.94334197 0.78991598 0.94126999 + 0.78789401 0.94035 0.79884303 0.95254999 0.79682302 0.95132101 0.79158503 0.94822198 + 0.78711998 0.94569099 0.78563201 0.94477302 0.79404098 0.95926702 0.79230797 0.95817298 + 0.78747803 0.955338 0.78319401 0.95292997 0.781811 0.95210701 0.79175699 0.96261197 + 0.79010201 0.96168798 0.78525501 0.95912802 0.78114498 0.95647502 0.77973002 0.95535898 + 0.77394402 0.97215301 0.77318698 0.97206801 0.77531397 0.96300697 0.77704799 0.96356601 + 0.776205 0.97515899 0.77569199 0.97601002 0.77994698 0.97584599 0.78036201 0.97639298 + 0.78525901 0.96836102 0.78653598 0.96962398 0.78905398 0.96625298 0.78742099 0.96542102 + 0.78141397 0.96530002 0.78272003 0.96322501 0.77876502 0.96046102 0.77745301 0.95898902 + 0.83505601 0.93455899 0.832771 0.93836403 0.83230603 0.93790102 0.83250701 0.93313998 + 0.84834802 0.94247597 0.84948897 0.93910301 0.85152102 0.94098401 0.85032499 0.94440401 + 0.84192097 0.93784302 0.84280401 0.93383098 0.83748698 0.95800698 0.831622 0.95667398 + 0.845999 0.96032399 0.84385699 0.95972598 0.829449 0.95623302 0.84507197 0.96501797 + 0.842722 0.964145 0.83661503 0.96232802 0.83088201 0.96101397 0.82866901 0.960756 + 0.84378201 0.96887302 0.84172899 0.96833599 0.835585 0.966842 0.829759 0.96532601 + 0.82804698 0.96485901 0.84194702 0.97570699 0.84012598 0.975227 0.83410197 0.973638 + 0.82852799 0.97235501 0.82696998 0.97200203 0.84106398 0.97960001 0.83928698 0.97908199 + 0.83325398 0.977516 0.82775599 0.976403 0.82613701 0.97614002 0.826635 0.993747 0.82577401 + 0.99424303 0.82445502 0.98514098 0.82619399 0.98508298 0.83323097 0.99568999 0.83271599 + 0.99487901 0.83714098 0.98698097 0.83852297 0.98757899 0.829234 0.99637198 0.82942897 + 0.99531901 0.83162898 0.98408997 0.839935 0.98385298 0.838355 0.98318201 0.83240801 + 0.98153698 0.82683402 0.98092997 0.82510698 0.98065501 0.825194 0.929039 0.816414 + 0.95336199 0.8107 0.95101398 0.82266998 0.95577002 0.82498401 0.95643198 0.80856901 + 0.950082 0.82278502 0.96197599 0.82058901 0.96099198 0.81434101 0.95864302 0.80895102 + 0.95655698 0.80651802 0.95545602 0.81506097 0.97360301 0.81706798 0.97426301 0.81515402 + 0.97850698 0.81317902 0.97791398 0.80939698 0.97149903 0.80774999 0.97578502 0.80429101 + 0.96940601 0.802706 0.973827 0.80102098 0.97306001 0.80256301 0.96868002 0.820728 + 0.966757 0.818573 0.96604103 0.81237799 0.963853 0.80684203 0.96140301 0.80506903 + 0.96049201 0.80548602 0.99430799 0.80520898 0.99361402 0.80981302 0.98659903 0.81150699 + 0.98711503 0.80049002 0.99442297 0.800906 0.99322701 0.79691398 0.99078703 0.79769802 + 0.99057198 0.79761398 0.98170298 0.79917902 0.98234099 0.81148797 0.98246503 0.80488098 + 0.98259997 0.80595702 0.98038203 0.80088902 0.97819 0.813281 0.98301798 0.79925901 + 0.97727603 0.790007 0.92723101 0.80048198 0.91767299; + setAttr ".uvst[0].uvsp[2250:2499]" 0.78131503 0.91789502 0.780559 0.91584098 + 0.78700697 0.92954999 0.78520298 0.92736101 0.781973 0.92362797 0.77907598 0.92044002 + 0.77761602 0.91891402 0.78433502 0.931288 0.78296202 0.92967999 0.77967799 0.92556202 + 0.77635401 0.92216003 0.77536798 0.92095 0.77894002 0.93505502 0.777399 0.93419999 + 0.77370101 0.93074399 0.77083498 0.92686498 0.77025002 0.92563498 0.77654397 0.93703502 + 0.77540398 0.93599701 0.77204698 0.93241602 0.76889098 0.92876601 0.76796299 0.927854 + 0.75985402 0.94226402 0.75921702 0.942083 0.76254898 0.93439901 0.763466 0.93541598 + 0.76086199 0.944552 0.76014298 0.94504601 0.76315498 0.94610798 0.76319402 0.94668502 + 0.76896203 0.94176197 0.76981199 0.94281 0.76672602 0.93110901 0.77052099 0.93392599 + 0.76770103 0.93681902 0.76546401 0.930641 0.773772 0.93949598 0.77300203 0.93808401 + 0.872594 0.93696499 0.87312698 0.93298799 0.87974399 0.93483502 0.879574 0.93711001 + 0.864582 0.93730402 0.86479199 0.93502802 0.86144298 0.937361 0.86178303 0.93512797 + 0.86515701 0.95838702 0.86338401 0.959113 0.86185998 0.950589 0.86426997 0.95041502 + 0.87110698 0.962506 0.87104797 0.96385598 0.87190902 0.94947797 0.87817401 0.95047897 + 0.877231 0.95831001 0.87207401 0.94651699 0.86407298 0.94666201 0.87818402 0.94682002 + 0.87211603 0.94177997 0.87895799 0.94180799 0.86419898 0.942083 0.86132401 0.94668901 + 0.86094201 0.94222999 0.87818402 0.94682002 0.88064098 0.94703603 0.88013399 0.95080602 + 0.878811 0.95842898 0.85504299 0.875875 0.84810603 0.87354201 0.89733702 0.94003999 + 0.89719701 0.94090497 0.89512801 0.94067401 0.89565003 0.93876398 0.91078699 0.85166597 + 0.91126198 0.85734397 0.90077502 0.860659 0.89990997 0.85436302 0.89334297 0.87695998 + 0.894306 0.86207801 0.90372401 0.878425 0.89269102 0.85506803 0.88403499 0.86446702 + 0.88331699 0.85639799 0.92659301 0.84662801 0.92790997 0.85127902 0.92185599 0.85329503 + 0.92099702 0.84849298 0.925928 0.86446398 0.91593802 0.86947399 0.93109798 0.86129802 + 0.891532 0.89461201 0.898848 0.89617598 0.93006098 0.93711197 0.92391902 0.940018 + 0.91519397 0.92556602 0.91963798 0.91954798 0.92786801 0.90794498 0.94428301 0.92547601 + 0.92078102 0.94669002 0.92646497 0.94431198 0.93195403 0.94135302 0.94198698 0.93673301 + 0.94174403 0.937271 0.93841499 0.937163 0.94215798 0.93403101 0.95410597 0.91259199 + 0.95368701 0.91872197 0.95052999 0.924568 0.92517501 0.94753498 0.924739 0.94762802 + 0.91313601 0.94450903 0.91457701 0.94891 0.907561 0.95111197 0.90600502 0.94703501 + 0.94706601 0.92883801 0.95650601 0.914563 0.957421 0.90636897 0.95927101 0.908952 + 0.937675 0.89656001 0.94495898 0.88790101 0.93778801 0.872069 0.93397802 0.87493902 + 0.926009 0.882581 0.91867501 0.89050901 0.947662 0.88480699 0.95421201 0.92276901 + 0.963139 0.93537498 0.96218801 0.93660903 0.95110202 0.94578201 0.951985 0.94511598 + 0.958754 0.90340298 0.96034801 0.906129 0.96813202 0.92120397 0.96528798 0.925511 + 0.97125 0.91544598 0.898422 0.91877198 0.90838599 0.90198803 0.908391 0.93581402 + 0.88748699 0.912233 0.89155501 0.91389799 0.88540101 0.89387703 0.88267499 0.91125 + 0.88495201 0.92373103 0.88827097 0.924559 0.88120902 0.92304301 0.95429099 0.92069697 + 0.96017802 0.945687 0.95414299 0.94899398 0.95725203 0.94179398 0.96586102 0.94126701 + 0.96264797 0.94920802 0.95805299 0.952245 0.96816701 0.94532299 0.96728897 0.95609301 + 0.96337003 0.95850998 0.97248799 0.95246702 0.969015 0.95878899 0.96566498 0.961703 + 0.97478598 0.95534003 0.97723198 0.95913202 0.97201699 0.96311098 0.968687 0.96529502 + 0.97149199 0.96898198 0.97499198 0.96698397 0.98068202 0.973813 0.97658998 0.974684 + 0.97969502 0.96308798 0.98330802 0.97009599 0.953345 0.949148 0.966914 0.94013202 + 0.95714402 0.952797 0.96930802 0.94458199 0.96262902 0.95898598 0.97360897 0.95167702 + 0.965114 0.962152 0.97589898 0.95472801 0.98362601 0.97052097 0.98115301 0.97448802 + 0.976991 0.97513598 0.97854501 0.957995 0.98104203 0.96170503 0.96777499 0.96564502 + 0.97021198 0.96909201 0.92717201 0.958372 0.92523301 0.95906299 0.90511698 0.95185602 + 0.90355098 0.947905 0.91856498 0.96166903 0.91184801 0.96389002 0.919783 0.96574801 + 0.91328597 0.9677 0.92658502 0.96357298 0.92084497 0.96934903 0.914832 0.97128701 + 0.92734998 0.96748 0.92297399 0.97611398 0.917328 0.97803199 0.928617 0.97451502 + 0.92411798 0.97996598 0.91814101 0.98191702 0.92998701 0.97835302 0.92670101 0.98774201 + 0.929322 0.996535 0.92567497 0.99687099 0.92131698 0.98960203 0.93213201 0.98696101 + 0.93269998 0.99483198 0.925264 0.98381901 0.91968298 0.98588097 0.93111402 0.98261797 + 0.90969503 0.96462899 0.911479 0.968373 0.928303 0.96283901 0.91281903 0.97206497 + 0.92921799 0.96682203 0.91532099 0.978692 0.93045801 0.97392702 0.91631198 0.98252499 + 0.93165398 0.97795898 0.92957902 0.99780101 0.92577899 0.99759001 0.93275499 0.99587399 + 0.91941398 0.99030101 0.91781402 0.98659402 0.93289399 0.98234701 0.93385202 0.98668802 + 0.93049902 0.95880699 0.93243098 0.957838 0.94720298 0.95105702 0.94559401 0.95166099 + 0.94122303 0.96048498 0.93512702 0.96314901 0.938604 0.95490301 0.94808 0.95702398 + 0.94880199 0.97615302 0.94390303 0.97883499 0.941984 0.97486699 0.94694799 0.97232902 + 0.95238799 0.96995401 0.95428401 0.97393298 0.94326001 0.96473002 0.937747 0.96739697 + 0.949224 0.96197402 0.94813901 0.98714399 0.94589299 0.98308998 0.95064402 0.980012 + 0.95293701 0.984622 0.95619798 0.978019 0.958314 0.98236197 0.95690101 0.99239397; + setAttr ".uvst[0].uvsp[2500:2749]" 0.95268703 0.99356401 0.96065801 0.98989999 + 0.93305302 0.96419603 0.94959998 0.95628601 0.94249099 0.98006803 0.9404 0.97570902 + 0.95383102 0.96936601 0.95582497 0.97350299 0.93607002 0.96848297 0.95091802 0.961303 + 0.95740998 0.99346101 0.95308697 0.99400598 0.96083999 0.99033701 0.94663501 0.98830199 + 0.944489 0.98440599 0.95789802 0.97749001 0.95982099 0.98191899 0.97174799 0.92334503 + 0.96870899 0.92753601 0.97481602 0.91766602 0.97401398 0.92447001 0.97133201 0.92861801 + 0.977332 0.91928601 0.97964197 0.92761803 0.9774 0.93139601 0.982889 0.92298698 0.98235798 + 0.929295 0.98007601 0.93317598 0.98550802 0.92470503 0.98862398 0.92721403 0.99216998 + 0.93016601 0.98974502 0.934632 0.985946 0.93208301 0.98755503 0.937751 0.98350698 + 0.93522501 0.99567199 0.93833202 0.99333602 0.94062698 0.99664402 0.93554997 0.97193199 + 0.91386902 0.967843 0.92844403 0.96449298 0.926705 0.97543597 0.91614503 0.97088701 + 0.929627 0.97794801 0.91788399 0.97687799 0.93229401 0.98374897 0.92167699 0.97956002 + 0.93389797 0.98639101 0.92338598 0.98930103 0.92575502 0.99271101 0.929115 0.98711002 + 0.93849897 0.98270202 0.935817 0.99400002 0.94085097 0.99698597 0.93595999 0.88920999 + 0.93894303 0.88435602 0.93792498 0.884987 0.93521899 0.88991702 0.936189 0.88209301 + 0.93757302 0.88241798 0.935229 0.887833 0.94404203 0.88342702 0.94272202 0.89402401 + 0.94576401 0.88123101 0.94223601 0.88275099 0.94757402 0.88698399 0.94849902 0.89294398 + 0.95000499 0.88605398 0.95208699 0.88197899 0.95130903 0.89189601 0.95347899 0.88365102 + 0.96103799 0.87990099 0.959117 0.88968301 0.95948601 0.896079 0.94603002 0.89363497 + 0.95394403 0.89054698 0.96099502 0.88290298 0.96392602 0.87895799 0.94180799 0.89488101 + 0.95052499 0.879574 0.93711001 0.87974399 0.93483502 0.90795797 0.87420601 0.91478097 + 0.89363301 0.81929302 0.85042 0.81896502 0.84540802 0.89416999 0.92747998 0.99636799 + 0.93878001 0.87018698 0.856471 0.83948898 0.87040901 0.854289 0.85559398 0.84534103 + 0.853854 0.84333003 0.83393002 0.85189599 0.83515102 0.89269102 0.85506803 0.89524198 + 0.83908802 0.90345299 0.83719099 0.89990997 0.85436302 0.88645703 0.840186 0.88331699 + 0.85639799 0.87018698 0.856471 0.87366402 0.83885098 0.817231 0.82109898 0.825589 + 0.83075303 0.83206099 0.85045201 0.81896502 0.84540802 0.92915303 0.82511002 0.92659301 + 0.84662801 0.92099702 0.84849298 0.91078699 0.85166597 0.86415303 0.836891 0.86295497 + 0.856583 0.86295497 0.856583 0.551507 0.53891897 0.56919998 0.58338702 0.50690901 + 0.536304 0.54445797 0.50899601 0.59533101 0.37459999 0.58322197 0.44255799 0.55195302 + 0.43360299 0.559448 0.35821 0.61511201 0.51627302 0.61151999 0.48485801 0.61981601 + 0.51559597 0.56536102 0.26182601 0.56168002 0.328219 0.67295802 0.30178601 0.66292 + 0.38794899 0.62969601 0.38490799 0.64008498 0.29888901 0.62089902 0.40700001 0.60322303 + 0.45412001 0.89414501 0.526968 0.920968 0.53163201 0.92029297 0.53676498 0.889705 + 0.53736299 0.68059701 0.39412501 0.69122398 0.30609199 0.94700903 0.53213698 0.956406 + 0.532722 0.95631599 0.536672 0.94638097 0.536677 0.59978598 0.35100999 0.74900001 + 0.46149501 0.74900001 0.51370001 0.715128 0.51289397 0.71921903 0.46108401 0.72031999 + 0.44675401 0.74900001 0.448668 0.92858797 0.53469402 0.930471 0.52920598 0.94700903 + 0.53213698 0.94638097 0.536677 0.60915297 0.27828899 0.68939501 0.53540802 0.68639302 + 0.52957898 0.70069498 0.51139599 0.70430303 0.51177001 0.901609 0.571356 0.895657 + 0.55435902 0.91095102 0.55405998 0.92254698 0.55766499 0.92556798 0.54618001 0.94461101 + 0.54794502 0.94284099 0.559214 0.88463902 0.58231097 0.86024398 0.56675297 0.87967199 + 0.562038 0.85878998 0.58938998 0.83783901 0.58150601 0.81212199 0.57041198 0.82079101 + 0.55396903 0.84200799 0.561589 0.959535 0.55882001 0.95511198 0.55918598 0.79807597 + 0.55882698 0.95571399 0.54792899 0.95970702 0.54743099 0.70430303 0.51177001 0.70069498 + 0.51139599 0.70199698 0.45920601 0.706303 0.45967501 0.79779798 0.54743499 0.74900001 + 0.339647 0.74900001 0.43584001 0.72141999 0.43242401 0.73521 0.332764 0.92029297 + 0.53676498 0.920968 0.53163201 0.930471 0.52920598 0.92858797 0.53469402 0.62605298 + 0.16391 0.61852002 0.205568 0.57147801 0.20355099 0.65994 0.16773599 0.650473 0.212871 + 0.69335502 0.173186 0.68299598 0.215624 0.70185101 0.218059 0.71166801 0.174721 0.73033398 + 0.17471001 0.725425 0.22558101 0.71321702 0.319428 0.70100802 0.413275 0.71101898 + 0.44487301 0.70791799 0.44424599 0.52271301 0.76076698 0.56337202 0.75565702 0.5406 + 0.75734502 0.556777 0.70998502 0.87155998 0.064465001 0.62822998 0.707569 0.807271 + 0.40838301 0.78010303 0.404066 0.821087 0.407897 0.59485799 0.12055 0.63183701 0.131908 + 0.62605298 0.16391 0.575481 0.15526301 0.80537999 0.03249 0.80840999 0.029759999 + 0.59368998 0.76308697 0.70974803 0.43641701 0.710383 0.44064501 0.71101898 0.44487301 + 0.70791799 0.44424599 0.54559702 0.059316002 0.80657399 0.444143 0.79978102 0.44859901 + 0.78051001 0.426296 0.74900001 0.17469899 0.74900001 0.23310401 0.71411902 0.44549999 + 0.71649802 0.43050599 0.72141999 0.43242401 0.72031999 0.44675401 0.72031999 0.44675401 + 0.71921903 0.46108401 0.71060801 0.460145 0.71411902 0.44549999 0.715128 0.51289397 + 0.70791101 0.51214498 0.69840199 0.55289602 0.692397 0.541237 0.70791101 0.51214498 + 0.715128 0.51289397 0.60100102 0.51830298 0.61040902 0.516949 0.71166801 0.174721 + 0.72262001 0.138539 0.57111299 0.51051599; + setAttr ".uvst[0].uvsp[2750:2795]" 0.710307 0.713193 0.68517798 0.71056098 0.61366498 + 0.53995401 0.641689 0.593503 0.60854203 0.58829302 0.57983202 0.54090798 0.67814398 + 0.59969902 0.65497798 0.55883998 0.634799 0.52581 0.65846503 0.53488201 0.65759301 + 0.54087198 0.62951601 0.52934599 0.65759301 0.54087198 0.65846503 0.53488201 0.62951601 + 0.52934599 0.61511201 0.51627302 0.61981601 0.51559597 0.634799 0.52581 0.65497798 + 0.55883998 0.656721 0.54686099 0.61366498 0.53995401 0.62423199 0.53288198 0.656721 + 0.54686099 0.65497798 0.55883998 0.60100102 0.51830298 0.61040902 0.516949 0.62423199 + 0.53288198 0.61366498 0.53995401 0.89858401 0.516572 0.92164302 0.52649999 0.92164302 + 0.52649999 0.93235499 0.523718 0.93235499 0.523718 0.94763798 0.52759701 0.94763798 + 0.52759701 0.95649701 0.52877098 0.889705 0.53736299 0.87470502 0.54176402 0.92029297 + 0.53676498 0.92858797 0.53469402 0.95987898 0.53604198 0.79751903 0.53604299 0.82946002 + 0.53752601 0.84617603 0.54167199 0.86169797 0.54411697 0.711577 0.42858699; + setAttr ".cuvs" -type "string" "map1"; + setAttr ".dcc" -type "string" "Ambient+Diffuse"; + setAttr ".sdt" 0; + setAttr ".ugsdt" no; + setAttr -s 2226 ".vt"; + setAttr ".vt[0:165]" 2.59383035 8.83124447 0.37452728 2.5957675 8.92690563 0.30317232 + 2.57264829 9.046378136 0.31192374 2.53801537 9.11967659 0.39565355 2.51215601 9.10386276 0.50531542 + 2.51021791 9.0082006454 0.57666934 2.53333688 8.88872814 0.56791896 2.56797099 8.81542873 0.48418817 + 2.63957906 8.84161472 0.38791561 2.64151621 8.93727684 0.31656164 2.618397 9.056749344 0.32531309 + 2.58376384 9.1300478 0.40904287 2.55790472 9.11423397 0.51870471 2.55596662 9.0185709 0.59005868 + 2.57908559 8.8990984 0.58130729 2.6137197 8.82579994 0.49757746 2.59874201 8.97792339 0.45330966 + 2.38341522 8.93663692 0.69789374 2.56420374 8.88153267 0.46591395 2.54669499 8.78147984 0.1759012 + 2.44572306 8.74734116 0.11299402 2.32563353 8.73136902 0.11120428 2.1672442 8.79154968 0.34973955 + 2.16235495 8.88652515 0.63319683 2.26332688 8.92066479 0.69610399 2.36635756 9.10989285 0.64747661 + 2.54714584 9.054788589 0.41549778 2.52963614 8.95473576 0.12548406 2.42866421 8.92059708 0.062577859 + 2.30857587 8.90462494 0.060788125 2.1501863 8.9648056 0.2993224 2.1452961 9.059782028 0.58278066 + 2.24626803 9.093919754 0.64568681 2.59964919 8.82821465 0.29437602 2.58259034 9.0014705658 0.24395885 + 2.47833061 9.10054398 0.57726985 2.49538946 8.92728901 0.62768698 2.23311472 8.75843811 0.2265722 + 2.21605659 8.93169498 0.17615506 2.15147543 8.83601761 0.48756844 2.13441634 9.0092725754 0.43715131 + 2.59774327 8.84582806 0.50246823 2.58320618 8.84454155 0.50417209 2.57208323 8.84001064 0.4949578 + 2.5708921 8.83488941 0.48022306 2.58032846 8.83217525 0.46859813 2.59486675 8.83346176 0.46689332 + 2.60598874 8.83799267 0.47610751 2.60718083 8.84311581 0.4908433 2.60093355 8.81343269 0.5118944 + 2.58639526 8.81214714 0.51359916 2.57527351 8.80761623 0.50438488 2.57408118 8.80249405 0.48964912 + 2.58351874 8.79978085 0.47802517 2.59805584 8.8010664 0.47632042 2.60917902 8.80559635 0.48553461 + 2.61037111 8.81072044 0.50027037 2.59222627 8.80660725 0.4949598 2.61319304 8.83396053 0.44494981 + 2.60061908 8.83070087 0.44669461 2.59045482 8.82880497 0.43829468 2.58865428 8.82938576 0.42467201 + 2.5962708 8.83210278 0.41380569 2.60884428 8.83536339 0.41206089 2.61900949 8.83725739 0.42046082 + 2.62081003 8.83667564 0.43408349 2.61825514 8.80751324 0.4432264 2.60568166 8.80425358 0.44497126 + 2.59551668 8.80235958 0.43657133 2.59371614 8.80293941 0.42294869 2.60133266 8.80565548 0.41208237 + 2.6139071 8.80891514 0.41033757 2.62407112 8.81081009 0.4187375 2.6258719 8.81022835 0.43236014 + 2.6097939 8.80658436 0.42765394 2.57846332 8.87578487 0.5500831 2.56549358 8.8765583 0.55065435 + 2.55572414 8.87063122 0.54342806 2.55488157 8.86147881 0.53263789 2.56345701 8.85445976 0.52460414 + 2.57642841 8.85368824 0.52403289 2.58619642 8.85961533 0.53125823 2.58703899 8.86876774 0.54204935 + 2.57810211 8.85449123 0.56569862 2.56513119 8.85526466 0.56626981 2.55536366 8.84933758 0.55904442 + 2.55452108 8.84018517 0.54825336 2.56309652 8.83316708 0.54021955 2.57606602 8.83239555 0.53964835 + 2.58583403 8.83832169 0.5468747 2.5866766 8.84747505 0.55766481 2.5705986 8.84383011 0.55295962 + 0.0022468525 8.0062322617 0.78026897 0.0023183245 8.049283981 0.23885716 0.0021085571 10.43730259 -0.45813784 + 0.0022359635 9.048955917 1.2901473 0.0021629143 9.84497261 1.3394177 0.0020536981 8.22111797 -0.45257586 + 0.0022618084 8.7673254 -0.65210658 0.00064479292 15.24143887 -0.35785595 2.8885874e-005 16.72198868 0.72269619 + 1.3877788e-017 16.79142761 0.066035375 0.00099389628 14.36218071 -0.66548657 0.00055243744 15.46344852 1.23071778 + 0.0007566312 14.97259617 1.14040565 0.00036421439 15.91590977 1.3055191 0.00017047569 16.38162804 1.14781761 + 0.0009506151 14.50628757 0.9803946 0.00087916484 14.67804337 0.59551716 0.00082276302 14.81362534 1.12432146 + 0.00092017639 14.57945824 0.77365065 0.00073431031 15.026252747 1.32971132 0.00086087757 14.68193817 -0.54129642 + 0.0010601042 14.20302677 0.48536479 0.00051240256 15.55968666 1.29802334 0.0012661414 13.70774364 0.6489132 + 0.0012232369 13.81087971 0.49466977 0.0011088751 14.085788727 -0.79307908 0.0013108294 13.65933895 -0.95499378 + 0.0017356111 12.57920742 1.23889887 0.0017610993 10.64888573 1.30644774 0.0017610993 12.28007412 1.17075419 + 0.0016787146 12.71597862 -0.97025031 0.0017610993 10.95499134 -0.45164806 0.00045699877 15.69286919 -0.43354088 + 0.0021914402 9.53412437 -0.6098904 0.0015042343 13.13540363 -0.97968584 0.0022857881 8.50601578 1.18069005 + 0.00092581601 14.5659008 1.053489208 0.00020162975 16.3067379 -0.37127864 0.000610905 15.32290077 1.26040888 + 0.0014774017 13.19990444 0.93164963 0.0017610993 11.4622879 1.28830099 0.0017610993 11.89213181 -0.79078853 + -1.19926679 9.44057369 0.85058862 -1.26843488 9.725173 0.46005344 -1.026540279 10.12021065 0.55849099 + -1.13452303 10.29289913 0.011660585 -1.21824861 9.81996632 -0.13244937 -0.65856993 9.025680542 1.1859864 + -0.71979398 9.90525913 -0.62350476 -0.76237458 10.36813545 -0.41885775 -0.4349992 8.50985241 1.099225998 + -0.48860332 8.40227032 1.021452427 -1.047198772 5.055290699 0.91470408 -0.58972269 6.56577444 1.00012969971 + -0.37470412 6.70466042 -0.33676684 -0.59667063 5.39145327 -0.17922124 -0.23489109 6.57868576 0.68717533 + -1.34507263 6.75812864 -0.32516041 -0.68326843 5.056622028 -0.12532592 -0.43383682 4.98088455 0.45348287 + -0.48568279 4.50136852 0.32720739 -0.43512729 5.3087368 0.5353663 -0.76498485 4.23869658 0.55590755 + -1.016611099 4.056600094 0.57428712 -1.05142653 4.71261692 0.87092775 -0.72932315 4.50055695 0.66361207 + -1.28612411 4.51645088 0.57087654 -1.044807553 4.49410772 0.80437762 -0.72016037 4.99873018 0.77778858 + -0.72037059 4.72340918 0.72749203 -1.28597903 4.73046255 0.63829839 -1.033116698 4.22999477 0.69122893 + -1.27002311 4.261343 0.45626307 -1.39232588 8.60801506 -0.49237469; + setAttr ".vt[166:331]" -1.37452447 7.63160133 -0.41859341 -0.23410217 7.6067338 -0.3910948 + -0.76847637 8.61514378 -0.95580208 -1.25180721 4.096190453 0.39733109 -1.17487729 5.016149521 -0.01802407 + -1.20077443 4.80670309 -0.03784322 -1.37757874 4.98947239 0.34218591 -1.36276996 4.56104088 0.25904962 + -1.27363575 5.023901463 0.688371 -0.70905054 5.24067974 0.82030392 -1.49296129 6.68545485 0.32372355 + -1.53376949 7.59602404 0.30945134 -1.031125784 5.23818731 0.90893811 -1.22408903 2.34691501 -0.0032865 + -0.79031777 2.28096676 -0.61056447 -0.74971282 2.83318663 -0.67238939 -0.71861702 4.3878355 -0.31533226 + -0.67703348 2.27547884 -0.49832213 -0.61756176 2.81690645 -0.53972805 -0.60146093 4.12754202 0.21418753 + -0.5239585 2.86754465 -0.25117224 -0.64612067 2.32036877 -0.17353874 -1.29729676 2.30691576 -0.27643701 + -1.41092956 2.92996359 -0.46621227 -0.75447214 4.69034243 -0.1666792 -0.72756201 4.85128307 -0.13192374 + -1.37284136 4.3496356 -0.11986991 -1.23041046 4.60536528 -0.081621341 -0.48023364 4.26464939 0.031067546 + -0.60996783 4.35581827 -0.20912074 -0.60622555 4.65550756 -0.057585943 -0.78707248 7.63884115 -0.60409188 + -0.83357203 6.75025272 -0.43085667 -1.29050946 5.2594099 0.70555258 -1.36976779 5.31007814 0.35318831 + -1.19151902 5.35084677 -0.088195696 -0.97675979 4.6772747 -0.18272647 -0.94446063 4.84755373 -0.1510634 + -0.90951109 5.060671806 -0.14914483 -0.86174595 5.39057255 -0.22091641 -1.078785181 4.38958883 -0.34663996 + -0.86789614 4.39214849 -0.40280503 -0.96816689 2.85341692 -0.73102576 -0.9707365 2.2778945 -0.64763999 + -1.21747565 2.87602186 -0.65180063 -1.16365933 2.31095362 -0.58549136 -0.7946195 4.073348045 0.45780241 + -0.57055479 4.25431871 0.23974851 -1.0036851168 6.5726161 1.086196899 -1.42063618 6.62983608 0.82524604 + -1.37764215 4.20850182 0.11470345 -1.29290617 3.88456964 0.31296575 -1.43615592 3.95606375 -0.02784922 + -1.44063604 3.99542189 -0.33171642 -1.19726372 4.0041685104 -0.52294517 -0.95453858 3.98949051 -0.61383021 + -0.72879755 3.98603559 -0.55135638 -0.56926692 3.97214007 -0.41988975 -0.43541762 3.92874169 -0.10921481 + -0.63283563 3.86896825 0.15536378 -1.35640073 4.32088232 0.17225116 -1.32528782 3.41982102 0.19487125 + -1.49615645 3.45965505 -0.16684151 -1.49704802 3.49452972 -0.44712326 -1.25008953 3.48590541 -0.6455164 + -0.96677655 3.47074223 -0.74945325 -0.71569383 3.47561193 -0.68152088 -0.54354823 3.47507381 -0.54579264 + -0.42655754 3.4838047 -0.20470451 -0.64960492 3.4342351 0.045684628 -0.78157109 8.88504696 1.0059819221 + -0.098981105 8.7403841 -0.83119941 -0.13199605 8.04360199 -0.65010005 -0.15226959 7.95512056 0.79861635 + -0.1089086 7.9134717 0.16993824 -0.22049622 6.64402866 0.095297001 -0.13094711 7.51218939 0.79127306 + -0.097385645 7.55606461 0.15563983 -0.4708274 5.37305593 0.013280397 -0.53746647 5.034420013 -0.0061148601 + -0.58109921 4.80918074 -0.018971009 -0.45092878 4.73197317 0.39991471 -0.70330608 9.86446095 1.18046188 + -0.4613212 10.39655685 -0.52140051 -0.28793874 9.79662323 -0.7000556 -0.78192109 3.83414316 0.37847075 + -0.79773247 3.39661956 0.26410827 -0.80618078 2.34875631 0.051276751 -1.015160322 3.81356597 0.50682884 + -1.029509306 3.37960768 0.38839412 -1.004953742 2.35915136 0.18021324 -1.39289343 0.3052952 -0.38145363 + -1.40244067 0.16569246 -0.36696449 -1.36111212 0.061525773 -0.33490536 -0.71544671 0.17504212 -0.098732375 + -0.71263373 0.43141672 -0.11477288 -1.36122906 0.43493533 -0.380597 -0.72202152 0.67965037 -0.19754 + -1.19711232 1.80679166 -0.037682749 -0.69614011 1.82504809 -0.19963038 -0.85038418 1.84501112 -0.59127951 + -0.76514161 0.47889659 -0.79452103 -0.75223643 0.31138417 -0.80518723 -1.64573336 0.20905112 0.92735738 + -1.68606806 0.20408314 0.91205716 -1.7651453 0.21450996 0.77635425 -1.77577043 0.16879067 0.88430649 + -1.7783612 0.12831703 1.018275142 -1.77106631 0.091895834 1.080555916 -1.54825318 0.21719125 1.0097482204 + -1.53388655 0.22122818 1.02356708 -1.54853153 0.18428603 1.1686877 -1.55945635 0.15903354 1.2538383 + -1.39141357 0.24646007 1.0731709 -1.41190696 0.19661787 1.18679142 -1.42534316 0.16174491 1.27982926 + -1.3646239 0.25664532 1.08508575 -1.17315972 0.27831477 1.13034689 -1.23872864 0.22385962 1.35456991 + -0.95924288 0.12368433 1.36995339 -0.91124445 0.10795514 1.023348331 -1.7818234 0.15296176 0.77377474 + -1.78624332 0.13451345 0.88036114 -1.76588011 0.055832244 1.07626915 -1.77057207 0.10496953 0.76035142 + -1.76513779 0.09847308 0.88243926 -1.74429142 0.032005057 1.064168811 -1.67049277 0.071663737 0.92621374 + -1.68030179 0.055023305 1.071125984 -1.39664125 0.076323956 1.065768361 -1.43597758 0.11712426 1.1917851 + -1.43913352 0.094220348 1.26774645 -1.51496065 0.064458936 1.025422096 -1.5385952 0.10639141 1.16348052 + -1.55448949 0.085413143 1.2405777 -1.54498374 0.065662451 0.9948951 -1.72842932 0.044453789 1.12242901 + -1.34534323 0.076244868 1.081296086 -1.14946795 0.084531128 1.12930822 -1.21846199 0.057701144 1.33105528 + -1.1858151 0.16028778 1.13241887 -1.25835526 0.12847865 1.32972956 -1.20891201 0.27457955 1.11618066 + -1.21178603 0.16565119 1.13631785 -1.39264822 0.12969679 1.091916919 -1.67106175 0.15287922 0.9176414 + -1.67417896 0.1072932 1.091039181 -1.21182191 0.079951711 1.11465454 -1.086720347 0.081605703 1.49747849 + -1.21056795 0.088570662 1.47554564 -1.010619402 0.054759391 1.35264671 -1.52968311 0.13655859 1.030358911 + -1.37692714 0.12986785 1.097320914 -0.85527444 0.20513967 1.047137856 -0.98953605 0.21984759 1.3871007 + -1.091319323 0.15274684 1.51745212 -1.20969677 0.15565594 1.49597001 -1.68567336 0.1306106 1.0989151 + -1.6875304 0.061879948 1.13631964 -1.68975425 0.07536801 1.14350343 -1.6998086 0.090854779 1.14382446 + -1.73811042 0.075582065 1.13266909 -1.73672819 0.055108409 1.12930036 -1.55357575 0.098657906 1.3680048 + -1.54685628 0.11913759 1.35954964 -1.47241771 0.12149736 1.3736887; + setAttr ".vt[332:497]" -1.46882379 0.10299318 1.37826502 -1.47096837 0.082970843 1.3792336 + -1.55060792 0.079032741 1.36523366 -1.4190551 0.14387773 1.19279218 -1.5457499 0.13869399 1.024660826 + -1.62881649 0.074399173 0.9402706 -1.64516914 0.15080057 0.9307996 -1.43190312 0.12350037 1.27429307 + -1.56408751 0.12050015 1.23975945 -1.55361271 0.12965637 1.16436338 -1.40272105 0.13322398 1.2035774 + -1.42149925 0.10784167 1.30926073 -1.27697396 0.12876233 1.33361459 -1.24609542 0.16555578 1.2334832 + -1.41574979 0.086655341 1.41673088 -1.33923674 0.086296871 1.43275118 -1.33582628 0.11028567 1.43214226 + -1.34083736 0.13028049 1.42888021 -1.4132179 0.12821989 1.42020988 -1.42074418 0.1079345 1.42306328 + -1.41396761 0.059038777 1.30117309 -1.39236236 0.11480489 1.21752834 -1.28093231 0.084258609 1.32486987 + -1.25844383 0.11631961 1.23865962 -1.28160429 0.17297378 1.34108448 -1.24652779 0.19594905 1.23935354 + -1.41237342 0.17390823 1.32173467 -1.39998639 0.21372938 1.21721518 -1.67034245 0.16258565 1.096064329 + -1.67431903 0.14103656 1.16876721 -1.56277645 0.1614062 1.11658919 -1.56727672 0.14388031 1.18799365 + -1.56032491 0.10684273 1.098922968 -1.56519222 0.055299256 1.16908932 -1.66101921 0.11031318 1.079317689 + -1.67137969 0.067590676 1.14713192 -1.66498923 0.079332761 1.25835681 -1.66273224 0.098314054 1.25710464 + -1.60127449 0.10029557 1.27667749 -1.59589005 0.078752495 1.28039622 -1.5963521 0.063106686 1.26762474 + -1.66038299 0.057709742 1.24828553 -1.55223238 0.12474773 1.10851562 -1.55521965 0.10718746 1.17995071 + -1.67798948 0.10942343 1.1565758 -1.67401302 0.12561856 1.082476497 -0.64917523 0.45649388 -0.67325652 + -0.63233775 0.30276522 -0.66960168 -0.74056661 1.83222532 -0.48098049 -1.06482935 1.8350184 -0.58373266 + -0.93349695 1.8413111 -0.62675554 -0.90561932 0.48160538 -0.8254829 -0.90632927 0.31592575 -0.84770441 + -0.92834294 0.057818919 -0.75607961 -0.78795928 0.05824187 -0.69582975 -0.95098263 0.0010409701 -0.64245301 + -1.11830711 0.26238272 1.37768745 -1.15523231 0.075916469 1.49356103 -1.12178588 0.032607675 1.33962405 + -1.15580201 0.16205353 1.51719832 -1.26339221 0.37849349 1.0056051016 -1.42490792 0.34379762 0.96181494 + -1.4578197 0.29506263 1.046851754 -1.48547506 0.2327528 1.18310845 -1.49957705 0.20364559 1.27134085 + -1.49025834 0.090228945 1.17161882 -1.4932549 0.050391458 1.24270129 -1.27740192 0.34688982 1.07748723 + -1.51495969 0.12706709 1.38151991 -1.51468134 0.099061087 1.3836261 -1.51247406 0.066039845 1.37739086 + -1.37664127 0.075812452 1.43581986 -1.37757993 0.11042149 1.44165874 -1.37533212 0.13621216 1.43616819 + -1.34465814 0.046573706 1.30237091 -1.32279277 0.09462525 1.22769153 -1.34411502 0.22316244 1.34592068 + -1.31561136 0.27243724 1.24055839 -1.60008514 0.30221847 0.88890553 -1.61175954 0.27472138 0.97168666 + -1.62235141 0.20781147 1.12027037 -1.62114358 0.17220697 1.18781424 -1.61325407 0.075291499 1.088164926 + -1.61132336 0.032886203 1.15802932 -1.62986016 0.10078299 1.27794099 -1.63110662 0.075668037 1.28133428 + -1.62776911 0.048473559 1.26373363 -1.71217084 0.27304074 0.81689477 -1.73020518 0.23896727 0.91104567 + -1.74155223 0.18051815 1.044327378 -1.72407758 0.078944191 0.89203799 -1.70363963 0.029892873 1.062970161 + -1.70607924 0.046166226 1.12365401 -1.71079063 0.063667186 1.14644337 -1.7221607 0.085701123 1.14707947 + -1.73358703 0.1288165 1.099842668 -1.048671246 0.47524649 -0.78393525 -1.086405039 0.3138445 -0.8101564 + -1.095468402 0.15310189 -0.80328417 -1.07762301 0.06126013 -0.76049227 -1.038097858 0.40242556 1.051813841 + -0.70041633 0.28392577 -0.082851999 -0.65469897 0.15482722 -0.62314087 -0.75550491 0.14938559 -0.75791276 + -0.91813087 0.14799979 -0.81565225 -0.70718193 0.059633657 -0.55761909 -0.84166759 0.003388701 -0.58563316 + -0.77788734 0.0060880324 -0.4905434 -1.063170671 0.057402838 1.13723755 -0.93659949 0.096299 1.14209282 + -0.87908781 0.18732665 1.13857973 -0.90992236 0.27833024 1.15134251 -1.058546782 0.37120187 1.1448772 + -1.042798996 0.035137653 0.98979914 -1.27442753 0.07353694 1.10050237 -1.44764829 0.058498051 1.048199296 + -0.89258134 0.30039084 1.054158926 -1.40134811 0.029370196 0.89338636 -1.59044659 0.054573704 0.96746564 + -1.55881369 0.026576305 0.83890712 -1.22574317 0.032236304 0.94252813 -1.6439724 0.024844088 0.79916376 + -1.34856641 0.6303128 0.070633501 -1.28396845 1.81671631 -0.30664989 -1.096570015 0.31765023 1.30719054 + -1.23192143 0.25841278 1.27126741 -1.24148631 0.15795468 1.25403953 -1.20917106 0.099202931 1.24294186 + -1.094448566 0.066933885 1.2518791 -0.98588765 0.090803199 1.27272773 -0.92632282 0.15145735 1.29083943 + -0.95089686 0.24497372 1.30935788 -0.87250292 0.64293087 0.31176773 -0.84988165 1.0021990538 0.019138001 + -0.74691278 0.96713775 -0.23478702 -0.80482918 1.0047805309 -0.56493324 -0.88175708 1.018072605 -0.65497863 + -1.038116336 0.74103004 -0.72521228 -0.93292248 0.74616313 -0.732669 -0.82643157 0.7351079 -0.70664215 + -0.72377336 0.71558326 -0.6181035 -1.28309977 0.70139539 -0.39559799 -1.26816702 0.76833802 -0.077118121 + -0.94709551 1.022724271 -0.66410226 -1.046890974 1.02291429 -0.6284976 -1.26218796 0.99183065 -0.36714825 + -1.20753276 1.015466928 -0.094831623 -0.83960599 0.78274935 0.082590371 -1.062051415 -0.0001290269 -0.64358175 + -1.27076626 0.0053805322 -0.28668937 -1.16948652 0.0074110487 -0.24078426 -1.026850343 0.010022695 -0.18765688 + -0.90125453 0.012268127 -0.14340463 -0.79295468 0.067937113 -0.1190175 -1.71515715 0.042718135 0.77632451 + -1.77953291 0.096281812 1.0024988651 -1.75933766 0.072384991 0.9906776 -1.71811688 0.056054037 0.99227446 + -1.680619 0.0706416 1.0018994808 -1.67114556 0.13067423 1.034397006 -1.67932546 0.16477434 1.045571685 + -1.10611284 0.68236858 0.28632975 -1.029324889 0.83708417 0.083398871 -1.0071296692 1.030024409 0.052681122 + -0.99383897 1.83120668 0.11490849 -0.82241994 1.82139289 0.040872127; + setAttr ".vt[498:663]" -0.24065836 15.22966385 -0.30574942 -0.64857626 15.3692503 0.17625031 + -0.77612662 15.78343296 0.30130538 -0.59382087 15.26827431 0.32525456 -0.4871344 15.068079948 0.15175632 + -0.55493045 15.33718109 0.1741066 -0.63454276 16.20087624 0.56575841 -0.24989946 16.69621468 0.70997655 + -0.44403267 15.14034176 -0.080664694 -0.66510797 15.77148628 0.27958596 -0.27383843 16.75072289 0.079248533 + -0.65987426 16.23870277 0.18488862 -0.62767118 15.64702606 0.41107613 -0.84950703 14.24668407 -0.55806112 + -0.92668819 14.15943718 -0.17188852 -0.054293334 15.45932484 1.20453727 -0.43211475 15.58750916 1.075014591 + -0.12007548 14.82025433 1.085306048 -0.11251266 14.99105263 1.10948431 -0.56218368 16.099069595 0.80639106 + -0.19947684 16.36986732 1.12949991 -0.48107034 15.84601402 1.055336833 -0.16247301 15.91368866 1.29799879 + -0.5652777 15.56540966 0.64835483 -0.13082312 15.55892658 1.28508735 -0.11004733 15.4428978 1.14520895 + -0.54302931 15.024586678 0.3210772 -0.49380997 15.034637451 0.27410343 -0.062375825 15.041158676 1.29462731 + -0.50567013 14.94906616 0.52390248 -0.32255644 14.6332798 -0.43131524 -0.50961703 14.44976521 -0.03834866 + -0.44290537 14.35839844 0.18513794 -0.30112413 14.26523495 0.32797244 -0.14546569 14.53156376 0.93686497 + -0.148351 14.60122776 0.73042983 -0.14003204 14.69508839 0.5482589 -0.13984288 14.20965576 0.45513856 + -2.25591922 10.031908035 -0.41467819 -2.10601401 11.4140625 -0.95002484 -1.9184165 12.081455231 -0.90251732 + -1.96050429 11.22274208 -0.8609395 -2.14138651 11.21227074 -0.95116913 -2.16465497 10.056437492 -0.394335 + -2.16456389 11.050236702 -0.88904113 -1.99256289 11.057920456 -0.81390268 -1.90262282 11.40665245 -0.8671279 + -2.19265532 12.071493149 -0.11839794 -1.57981586 12.040805817 -0.41869703 -2.32800293 12.12273979 -0.70375651 + -2.30476403 11.23779011 -0.91400266 -2.47499371 11.37358379 -0.60811764 -2.41603565 11.38724327 -0.39963487 + -2.56319308 10.15404129 -0.15599111 -2.39978433 10.051441193 -0.38215545 -2.50010061 10.10084629 -0.26460528 + -2.55590296 10.22798347 -0.00025413939 -2.13347411 12.097424507 -0.88452917 -1.71785498 11.47437382 -0.54972243 + -1.81318796 11.46612835 -0.29462749 -2.41021395 11.26754379 -0.8158887 -2.46961665 11.31261826 -0.71677679 + -1.9504323 12.044260979 -0.0038687538 -2.49181175 10.28914356 0.1245018 -2.28128242 10.31170177 0.21756397 + -2.12510037 10.28634548 0.18000595 -1.94916618 10.15480518 -0.2243939 -2.26642537 11.47678566 -0.91694844 + -1.7394768 11.26701832 -0.5828886 -2.42050838 11.58430767 -0.74886113 -2.38561487 11.56328583 -0.43716359 + -2.33439517 11.070815086 -0.83453292 -2.44684339 11.11052799 -0.74422711 -2.52745533 11.1398716 -0.6330626 + -2.51216507 11.18231487 -0.47948346 -2.44789886 11.20515442 -0.28492016 -2.03991127 11.1378088 -0.15050864 + -1.74142301 11.11095715 -0.56915265 -1.99887133 10.24879742 0.070884056 -1.85650253 11.10686874 -0.27382344 + -1.85051239 11.28812122 -0.30542248 -2.02392292 11.41172028 -0.17531885 -2.033223152 11.28166294 -0.18997061 + -2.20883465 11.47760677 -0.20442225 -2.21504974 11.33219147 -0.21327229 -2.22991323 11.17456627 -0.15790874 + -1.70064116 12.054386139 -0.14161858 -1.68512297 12.042677879 -0.7743665 -2.33280945 12.090650558 -0.39308912 + -2.32695746 8.9342947 0.79683763 -2.52978992 8.65649128 0.18784642 -2.41815042 8.65119648 0.14159361 + -2.69827056 8.36244678 0.85075319 -2.67001581 8.23154068 0.47344193 -2.66538382 7.96555138 0.52476323 + -2.70446086 8.26244164 0.64217865 -2.70674109 8.02531147 0.72164649 -2.52054596 7.90620852 0.41490415 + -2.53950882 7.89170456 0.46993572 -2.47793961 7.86318064 0.46208647 -2.47808409 7.8737874 0.4565376 + -2.64839888 8.01557827 0.89159292 -2.60853791 7.89847803 0.64819229 -2.53172541 7.90481091 0.3201372 + -2.45399237 7.89757347 0.24062154 -2.38834405 7.89934969 0.24660781 -2.40449667 7.96227026 0.22134359 + -2.50542617 8.23556423 0.19857505 -2.41530442 8.23192406 0.1589959 -2.6403811 7.99604464 0.86137348 + -2.62845421 8.14792061 1.092717648 -2.64225268 7.89386368 0.54260784 -2.69531465 7.95231867 0.75078702 + -2.70708942 8.13586044 0.96846551 -2.62059498 8.40397549 0.98860657 -2.26556611 8.829319 0.96164834 + -2.56394625 8.14013195 1.12135339 -2.25623441 8.68856335 1.11312723 -2.61328459 7.90008783 0.6677866 + -2.49414086 7.71306896 0.71976411 -2.46803713 7.72167063 0.73098207 -2.51137018 7.67955112 0.62801635 + -2.44052935 7.67322159 0.55228657 -2.38958979 7.6779027 0.55350411 -2.44600153 7.67362165 0.75538158 + -2.37353396 7.63933754 0.5648306 -2.47125506 7.66378117 0.74288023 -2.49195957 7.62491703 0.64755374 + -2.43431711 7.62085199 0.75345457 -2.4137876 7.64472151 0.76344085 -2.43612957 7.58099413 0.67085838 + -2.38122725 7.58802509 0.59068465 -2.34638596 7.61522532 0.58393896 -2.33026814 7.52382374 0.79344547 + -2.30892682 7.54407978 0.80385089 -2.33338022 7.49128342 0.72044498 -2.28679538 7.49435377 0.65018833 + -2.25832033 7.51028967 0.64084965 -2.27471781 7.51412153 0.81834555 -2.23116612 7.48410749 0.65741408 + -2.29347515 7.4906354 0.80971313 -2.30251694 7.44893312 0.74404919 -2.25375724 7.46514034 0.67357779 + -2.050377846 7.40214014 0.76919597 -2.041353226 7.40432215 0.76534104 -2.032284498 7.40127087 0.82386726 + -2.047884703 7.38994169 0.82229292 -2.064009666 7.41856003 0.86883187 -2.068291426 7.41358423 0.85765415 + -2.15472984 7.41975164 0.70789456 -2.19322324 7.44956255 0.84486556 -2.19906139 7.41665459 0.77819359 + -2.25937843 7.477777 0.82531112 -2.24817252 7.5012536 0.83576012 -2.25255942 7.43793631 0.75814605 + -2.21811533 7.44519472 0.68325162 -2.20197201 7.46530581 0.66589278 -2.17531896 7.46676064 0.85764825 + -2.13182998 7.43525743 0.69572914 -2.41773295 7.62415648 0.56514663 -2.53435183 7.80760431 1.22245097 + -2.49244714 7.8279376 1.2315414 -2.57984638 7.76806641 1.14296961 -2.53969955 7.73791838 1.05308497 + -2.48981285 7.74077272 1.032576561 -2.47987413 7.78148937 1.2581985; + setAttr ".vt[664:829]" -2.48516321 7.70254898 1.05403471 -2.51320052 7.75486183 1.25273347 + -2.55257726 7.70397806 1.17664754 -2.51979733 7.690557 1.086217642 -2.47227931 7.72292185 1.2645781 + -2.44382262 7.75169754 1.26636028 -2.50547767 7.6728735 1.19198859 -2.48626781 7.66223431 1.10239661 + -2.45778275 7.68354321 1.070983648 -2.38758183 7.65722656 1.28953719 -2.36195636 7.67714357 1.28789735 + -2.42064834 7.6094141 1.22257078 -2.40026832 7.59969568 1.13641703 -2.37262774 7.61594057 1.11461616 + -2.31797791 7.64619923 1.29895067 -2.33499742 7.58907413 1.13006008 -2.33438873 7.62579632 1.29859102 + -2.37027764 7.56890917 1.24182808 -2.34912491 7.57445955 1.15184844 -2.11240435 7.545084 1.18022692 + -2.1091063 7.55274963 1.16981637 -2.10736108 7.57293367 1.26512527 -2.098496914 7.58457518 1.26270282 + -2.082760334 7.56321669 1.21766269 -2.095882177 7.55310202 1.22849798 -2.20701075 7.60743618 1.29423881 + -2.19904304 7.62642717 1.29020786 -2.20753288 7.56573343 1.13397908 -2.21900868 7.55022573 1.15083218 + -2.24484873 7.55760241 1.23109162 -2.28085852 7.6144805 1.30124533 -2.26563358 7.6414628 1.29870963 + -2.30579019 7.5645752 1.23730278 -2.29722118 7.56324434 1.14981151 -2.28629446 7.58225107 1.12926936 + -2.52836943 7.68805981 0.9686439 -2.48859882 7.70318365 0.98532355 -2.56071091 7.65040064 0.88098419 + -2.50501299 7.63618469 0.80365741 -2.45311999 7.64179564 0.78433353 -2.47559857 7.67284632 1.00076413155 + -2.44748211 7.61085987 0.79321402 -2.50900245 7.6493907 0.98589832 -2.5414958 7.60418606 0.90206558 + -2.48561406 7.59715223 0.81329203 -2.33488464 7.54325294 1.039505959 -2.31582975 7.56596375 1.04468894 + -2.29857373 7.54905844 1.047738433 -2.35648274 7.49400711 0.97043788 -2.32312942 7.49135542 0.87943375 + -2.28415537 7.49639368 0.87357438 -2.29940271 7.50955153 0.86445141 -2.46256065 7.63120651 0.99545562 + -2.43717957 7.65722418 1.0021475554 -2.48765922 7.58013725 0.91851485 -2.44604826 7.57877874 0.82963765 + -2.41500568 7.59821892 0.80583507 -2.31286931 7.52176666 1.049516439 -2.325073 7.46716642 0.98338342 + -2.30120397 7.47027254 0.89294505 -2.049658775 7.50072622 1.051000834 -2.040341854 7.50619984 1.048935175 + -2.01876688 7.47821999 1.0063639879 -2.037326813 7.46682596 1.0081644058 -2.032666206 7.47004604 0.95010245 + -2.043893337 7.46702957 0.95057487 -2.15937948 7.46412086 0.9105652 -2.18952417 7.46052217 0.9989078 + -2.16964316 7.51531601 1.0691998 -2.26525068 7.52568722 1.057424307 -2.27470112 7.46371698 0.99025285 + -2.25418472 7.47389936 0.89475656 -2.25783515 7.5516057 1.056042671 -2.16056681 7.53779697 1.072206974 + -2.14767075 7.48143673 0.89472967 -2.24507642 7.49419069 0.87772578 -2.42722869 7.75815916 0.44287661 + -2.40153265 7.77239418 0.46434641 -2.43535233 7.7367816 0.36768025 -2.37841511 7.75616741 0.30521697 + -2.33371115 7.77380323 0.30267161 -2.38186598 7.72986507 0.47088 -2.31432772 7.73062658 0.31252465 + -2.39920068 7.71119261 0.45459974 -2.39726186 7.68338823 0.38435802 -2.35165215 7.70555449 0.32029122 + -2.35762978 7.68052387 0.46899974 -2.34635091 7.70387602 0.48354816 -2.35079312 7.65507841 0.40260029 + -2.31222105 7.67618275 0.3414081 -2.28302336 7.70589161 0.32899919 -2.29110169 7.65078783 0.4917686 + -2.28382921 7.62277651 0.43100047 -2.2493186 7.64056921 0.36956075 -2.2232039 7.67070818 0.36091703 + -2.27670932 7.68026304 0.504412 -2.24517703 7.66201735 0.5180493 -2.19314122 7.64636421 0.37819466 + -2.020064116 7.63222361 0.50281101 -2.015137196 7.64761543 0.50159961 -2.018835306 7.65062571 0.5414111 + -2.024831057 7.63209248 0.5422017 -2.047397852 7.65315914 0.57349885 -2.049603462 7.64030504 0.57138729 + -2.11316395 7.63350439 0.43311465 -2.15178132 7.61981726 0.41594058 -2.10453606 7.65558147 0.42188603 + -2.14429379 7.65173054 0.40133891 -2.20305896 7.6648016 0.53316528 -2.15526843 7.65975809 0.5504179 + -2.1610465 7.63225412 0.5376904 -2.19808865 7.62425327 0.52510983 -2.14195061 7.6011095 0.49187472 + -2.17934632 7.59824991 0.47544098 -2.19078827 8.37172413 1.32204151 -2.398844 8.25822926 1.27517164 + -2.39234734 8.21929646 1.24038267 -2.34985065 8.35956478 1.36432433 -2.27652144 8.017726898 1.40951002 + -2.26868582 8.010873795 1.39575064 -2.1547575 8.094281197 1.4670099 -2.20191956 8.011926651 1.45331109 + -2.22488642 8.031200409 1.47548211 -2.29865575 8.22184944 1.40994644 -2.28147793 8.17342377 1.43262231 + -2.31787109 8.2801199 1.38871455 -2.1721344 8.31182194 1.35383487 -2.15713072 8.24650097 1.38254285 + -2.34859848 8.13317585 1.32015502 -2.37329626 8.19425106 1.29359138 -2.34336805 8.11225224 1.29580283 + -2.36523175 8.16444206 1.25971723 -2.32286286 8.071572304 1.32999325 -2.32624459 8.086352348 1.3500787 + -2.26183844 8.88318729 0.70091861 -2.26988459 8.75745106 0.51896536 -2.31216311 8.67046738 0.17531145 + -2.23806381 8.68568039 0.29524693 -2.43480563 8.060657501 0.99161869 -2.47550631 7.95702219 0.93164754 + -2.4509573 7.9931922 1.02809298 -2.42943788 8.02742672 0.87588757 -2.41423845 7.98620415 0.76240021 + -2.43275332 7.90719938 0.7993753 -2.47090745 7.91914654 0.87808347 -2.4646368 7.88256788 0.72237778 + -2.44433546 7.88858366 0.67519253 -2.37585759 7.89713812 0.46779162 -2.40970588 7.87549257 0.51984608 + -2.38427258 7.98228884 0.5791592 -2.40587807 7.88348341 0.60236615 -2.32420993 7.92117643 0.3933844 + -2.32806492 7.99025297 0.37728462 -2.32792807 7.9708662 0.27691317 -2.31757784 7.90798759 0.3011727 + -2.37818289 8.19993687 0.69263774 -2.3805542 8.19748688 0.82534063 -2.27078724 8.21204376 0.31636438 + -2.31407619 8.22408295 0.19548184 -2.5064137 8.11510563 1.11579871 -2.19444585 8.6901226 0.79682004 + -2.20811701 8.52935696 1.014959455 -2.21266818 8.77626991 0.87295055 -2.21840668 8.60650063 1.052739978 + -2.33189559 7.72483492 0.66134554 -2.41057897 7.72879219 0.7388339; + setAttr ".vt[830:995]" -2.36021852 7.69025993 0.56695938 -2.40743232 7.69097281 0.75126165 + -2.34297991 7.6618247 0.57885373 -2.31668735 7.6834898 0.68081385 -2.37784719 7.66880894 0.75826412 + -2.31800032 7.64489794 0.59915292 -2.22900128 7.57866049 0.73316962 -2.27679348 7.56692457 0.7986089 + -2.22290969 7.54282618 0.65269798 -2.25135994 7.53843498 0.81217349 -2.21081972 7.51257944 0.66269839 + -2.33763337 7.69540119 0.66917503 -2.17569423 7.49891663 0.67082065 -2.16674137 7.55919981 0.75067884 + -2.2161994 7.53550053 0.8295747 -2.082775116 7.52169037 0.78227818 -2.13844824 7.50036478 0.85299432 + -2.10021925 7.46750879 0.70044088 -2.21795321 7.54969215 0.74352026 -2.40009761 7.79758453 1.1250273 + -2.44692707 7.83303022 1.21940291 -2.44165587 7.74951077 1.031624436 -2.45403481 7.79773951 1.24087739 + -2.45125675 7.72510433 1.047435045 -2.38561606 7.77128887 1.14064431 -2.41439176 7.77421999 1.24529147 + -2.42037153 7.71238852 1.060968757 -2.31084299 7.6956377 1.17527342 -2.34032273 7.69413805 1.26903915 + -2.34234762 7.64166784 1.1129545 -2.31141257 7.66246939 1.28212392 -2.32826209 7.61159086 1.13523424 + -2.42540026 7.77206421 1.14254153 -2.18356061 7.65171528 1.26960135 -2.1791997 7.66173935 1.17849433 + -2.19454169 7.60081768 1.12657547 -2.2565794 7.67728758 1.18101931 -2.25710297 7.66546106 1.27661359 + -2.27254748 7.61642265 1.12261975 -2.30816722 7.66352558 1.19214344 -2.37811947 7.69636869 0.88271493 + -2.43125224 7.71495008 0.97745454 -2.4073391 7.65560961 0.78723264 -2.44241762 7.69340611 0.99237347 + -2.41653442 7.63295937 0.79239291 -2.25518894 7.59063816 0.93997562 -2.27869081 7.56792307 1.037188411 + -2.28785729 7.58918905 1.030304432 -2.27295017 7.53740025 0.86217642 -2.25972819 7.52228165 0.87221533 + -2.36264253 7.68318796 0.89237565 -2.40334058 7.68321323 0.98739433 -2.38166428 7.628582 0.8028478 + -2.14709568 7.56268311 1.051816583 -2.24261212 7.57999086 1.036764622 -2.22891307 7.53548288 0.86953443 + -2.13300657 7.51683474 0.88884556 -2.21945238 7.59311914 0.94148076 -2.12104177 7.58311081 0.95450377 + -2.25160456 7.56966591 0.94769931 -2.28756332 7.80704165 0.41049418 -2.35361242 7.79120731 0.47193217 + -2.30043983 7.79135704 0.32492304 -2.34550714 7.75920773 0.47620249 -2.29355049 7.74675179 0.33154795 + -2.27264977 7.76806307 0.41831926 -2.31836987 7.74143553 0.48632643 -2.26784062 7.73261642 0.34394142 + -2.20845938 7.72823811 0.44334501 -2.25540566 7.70559883 0.50090933 -2.21259546 7.6949873 0.37790975 + -2.23472047 7.6823082 0.50767493 -2.18731332 7.66745234 0.389377 -2.29383349 7.77264786 0.41119117 + -2.14571905 7.6778717 0.40441388 -2.10514641 7.67807722 0.42289773 -2.11921072 7.7181139 0.48469332 + -2.17159867 7.72242403 0.46113741 -2.15060472 7.68860054 0.54510885 -2.19540095 7.69558477 0.52779138 + -2.19984126 7.70123911 0.44837713 -2.17699504 8.33043671 1.25850165 -2.1762197 8.3534565 1.2901026 + -2.35219979 8.2108736 1.21751356 -2.12779331 8.22896767 1.35023987 -2.14281368 8.30139923 1.31378627 + -2.14184117 8.27056503 1.27729928 -2.12307835 8.1999836 1.31546354 -2.32776427 8.15429592 1.22875583 + -2.309196 8.1019907 1.26904571 -2.11906123 8.15093136 1.35220528 -2.12457299 8.17986488 1.38260543 + -2.28920627 8.057537079 1.31002116 -2.14377356 8.060009956 1.43368649 -2.13556337 8.083381653 1.44798768 + -2.25261211 8.0072546005 1.38875079 -2.3926785 7.68140364 0.89009809 -2.5967474 8.2351799 0.30624798 + -2.65529156 8.68273926 0.37168208 -2.67542076 8.71995163 0.49594885 -2.66285467 8.78713417 0.67208171 + -2.25247288 7.62763405 0.5056774 -2.23861885 7.59943628 0.45191634 -2.20938778 7.6178546 0.39000845 + -2.55928016 7.96299934 0.88908064 -2.56563735 7.96961498 0.89614785 -2.53738904 7.8706007 0.68848616 + -2.53710699 7.87060976 0.67628217 -2.47413278 7.95016146 0.22078899 -2.57290173 7.94931221 0.31158593 + -2.50226188 8.054711342 1.11974716 -2.55814624 8.083747864 1.13280642 -2.617522 8.087612152 1.1074388 + -2.69355917 8.064723969 1.0016492605 -2.30171204 8.19176388 0.51406687 -2.2472589 8.73063183 0.42333531 + -2.60810995 8.65439987 0.24965614 -2.10593843 7.6058526 1.26175213 -2.087260485 7.59425211 1.20333588 + -2.11221886 7.56357908 1.15988135 -2.45245361 8.6810112 1.129143 -2.43134809 8.3641243 1.075913787 + -2.48125219 8.40258598 1.066558003 -2.52820969 8.47487831 1.072818756 -2.49064469 8.81540775 0.97873026 + -2.045121431 7.5278039 1.045787811 -2.017217159 7.51693296 0.98933059 -2.036756992 7.49034977 0.93608212 + -2.053640842 7.43590164 0.8686111 -2.01507163 7.42828655 0.81961662 -2.026279449 7.41915941 0.75942683 + -2.018545628 7.66411209 0.49479097 -2.024721384 7.67563105 0.53351814 -2.05036211 7.66841269 0.56973267 + -2.645432 8.83130264 0.32867187 -2.57092309 8.79146767 0.20411314 -2.41928363 8.76507187 0.15185063 + -2.36089087 8.77125549 0.18520527 -2.29842973 8.80608463 0.30714238 -2.31167698 8.85306454 0.44770813 + -2.31721354 8.91443062 0.60274792 -2.37749195 8.96919537 0.70049977 -2.15264225 8.20083809 1.41129386 + -2.18365574 8.022350311 1.40333331 -2.1710186 8.094589233 1.31075728 -2.17494726 8.1439867 1.26719356 + -2.19028783 8.20393276 1.22316885 -2.22995377 8.26586246 1.21721089 -2.27454901 8.40694046 0.96276039 + -2.26831388 8.47390938 0.75721169 -2.28019261 8.48501492 0.60445172 -2.23614788 8.47010326 0.46433222 + -2.21386957 8.45594025 0.29884398 -2.29277349 8.46324253 0.17291734 -2.41179991 8.46515369 0.14164633 + -2.51647162 8.45777798 0.1908498 -2.61008406 8.45988369 0.28627682 -2.6708715 8.46963215 0.42000777 + -2.69282174 8.51207924 0.56245697 -2.67983627 8.58779049 0.75012791 -2.5862956 8.71382618 0.91457629 + -2.62655592 8.83177567 0.74557304 -2.64067149 8.93311977 0.61921966 -2.36284256 8.41262054 1.31189787 + -2.20898008 8.41377258 1.28349638 -2.18693256 8.38404942 1.24966145; + setAttr ".vt[996:1161]" -2.1809442 8.35301495 1.2188766 -2.23422265 8.28600216 1.18366873 + -2.36041379 8.23568344 1.1888485 -2.40280867 8.25444794 1.20745778 -2.41234112 8.29714489 1.23813295 + -2.55472851 8.85876465 0.16511399 -2.63939738 8.90927124 0.29812536 -2.30209947 8.87766457 0.27328587 + -2.3045373 8.99214935 0.57789767 -2.35283875 8.83546448 0.16335647 -2.40143847 8.833951 0.13294566 + -2.28344631 8.93493366 0.42109841 -2.36977434 9.029989243 0.66720951 -2.27960348 9.13998795 0.52327913 + -2.25856423 9.021714211 0.22680457 -2.24959898 9.078717232 0.38153487 -2.37457967 8.99038792 0.080469318 + -2.52270174 9.022769928 0.088983484 -2.61653447 9.089993477 0.20965223 -2.35968924 9.19122505 0.61035693 + -2.31965613 8.99536991 0.12105806 -2.61522603 9.19663239 0.49479282 -2.62756157 9.0097332001 0.58357537 + -2.52605128 8.90906334 0.81733322 -2.53237176 8.97275543 0.70266736 -2.54841709 9.03887558 0.6672368 + -2.53980923 9.21921253 0.59154665 -0.77471268 13.75494576 0.45399049 -1.070301771 13.7273531 0.33277729 + -0.38384348 13.74255371 0.60003924 -0.30676073 13.836092 0.43829268 -0.663481 13.83743763 0.29209363 + -0.96537185 13.82090187 0.13243999 -0.80009091 14.022947311 -0.78394771 -1.30909276 12.5443306 -0.60095531 + -1.40700924 12.50159645 -0.2215119 -1.12110543 12.26210403 0.74943775 -0.68242908 13.60438156 -0.98269093 + -1.40368032 12.5305357 0.2495912 -1.96361613 13.68395233 -0.56458873 -2.032382488 13.63870049 -0.19675262 + -1.46045828 12.88046837 -0.58254844 -1.63001001 12.91728687 -0.78462517 -1.47370136 12.81397057 -0.23338951 + -2.21870184 12.71028042 -0.67336023 -1.9313904 12.79607296 0.17009214 -1.42713594 12.82779121 0.45827115 + -1.97201002 12.86836529 -0.81631845 -1.76406515 13.60364342 -0.7182945 -1.41611755 13.076757431 -0.23359172 + -1.32359207 13.30494499 0.44416133 -1.53370893 13.42260742 -0.73648357 -1.42361975 13.10314178 -0.58365208 + -1.74409842 13.43239212 0.23950133 -1.49173641 13.19186592 0.25430381 -2.18895912 12.68298435 -0.03553357 + -2.28276587 12.70767307 -0.3190769 -1.4496423 13.12038231 0.082570709 -1.61265218 12.8475914 0.055573031 + -1.96827686 13.54897404 0.070359968 -0.97647595 10.71192169 0.63878596 -1.062952995 10.75070572 0.1276101 + -0.84700876 10.77582264 -0.32022876 -0.63941777 10.6592474 1.14812267 -0.66179776 12.54990101 1.20364356 + -1.1677959 12.59675694 0.86473513 -0.49252516 12.68757153 -0.96209669 -0.62206388 10.82671642 -0.48245335 + -0.6635114 12.22486782 1.13015342 -2.37627053 8.22799778 0.99375212 -2.47720456 8.26344109 1.094510198 + -2.53787231 8.29483414 1.066030741 -1.37204218 4.77504396 0.30520287 -0.31036866 14.75404739 0.46096042 + -0.32150799 14.69697094 0.57255757 -0.31818238 14.64941406 0.76068747 -0.41634691 14.86025238 0.84129953 + -0.46255174 15.47357845 0.93640858 -0.94953138 0.53782803 0.609182 -1.24784994 0.53967106 0.57272863 + -1.49381459 0.47372571 0.36107138 -1.58840525 0.33449095 0.17805725 -1.59216976 0.25003368 0.13634776 + -1.57759213 0.14060329 0.1330245 -1.55754781 0.065680504 0.15553036 -1.47370756 0.013618652 0.19449237 + -1.3716532 0.015402446 0.228571 -1.21572936 0.018135304 0.28093538 -1.052459717 0.020955848 0.33388075 + -0.90553916 0.093348652 0.38234964 -0.78427863 0.22074163 0.43695748 -0.78546339 0.29302958 0.48004249 + -0.81347561 0.40446469 0.53096837 -2.46868253 8.38004971 1.14446163 -2.44090271 8.33914948 1.13098049 + -2.40212083 8.30863285 1.078383088 -2.25630903 8.36145687 1.066422343 -2.19969392 8.45424652 1.10287201 + -2.20604086 8.49868774 1.14943159 -2.23407793 8.54581738 1.2064724 -2.40819669 8.54294491 1.22997928 + -0.25631201 15.6686697 -0.39350063 -0.52333528 15.51026535 -0.12104277 -0.55932844 15.25364685 0.28494483 + -0.56404692 7.51263618 1.043949008 -0.97607458 7.53804398 1.12899184 -1.4465735 7.55644989 0.83189809 + -1.51411176 8.51521015 0.29952818 -1.4298867 8.45656204 0.79443449 -0.55226856 8.059742928 1.045358181 + -0.9539156 8.23951435 1.10769939 -2.62396836 9.13869953 0.3353748 -2.64589381 8.94976521 0.4214626 + -2.65519571 8.87133884 0.44961596 -1.080360532 0.11518574 1.50741851 -1.15378201 0.11436905 1.50427461 + -1.21529138 0.12019928 1.48556888 -0.57623178 13.13516045 -0.99981451 -0.10159411 13.83220768 0.49529573 + -0.19266145 10.42873669 -0.48355907 -0.32788053 10.89085388 -0.46522933 -0.9433865 12.62608719 -0.80701435 + -1.046620607 13.080767632 -0.89018905 -1.16930079 13.49607468 -0.87522334 -1.34276414 13.88356781 -0.73312151 + -1.44653225 14.057746887 -0.53043997 -1.47501683 13.98967743 -0.15286607 -1.4193064 13.81589699 0.056775033 + -1.35251856 13.62962246 0.22465652 -0.46395707 14.54793549 -0.25559613 -0.37139755 15.19937325 -0.25410026 + -0.42219925 15.62171936 -0.31548601 -0.49582654 16.62443542 0.11330778 -0.4704594 16.60032845 0.66704077 + -0.41693556 16.29612923 1.026978135 -0.3389529 15.89920998 1.22281444 -0.28429085 15.56566906 1.22065663 + -0.28691649 15.45867825 1.058277607 -0.28610459 14.84006977 0.95352054 -0.29638746 14.69559956 0.8800863 + -0.1311558 14.58813381 1.012080908 -0.27755111 16.27834129 -0.3512961 -0.48056638 16.14053535 -0.24254926 + -0.60731554 15.91001701 -0.078181177 -0.63422143 15.59236526 0.15670988 -0.72124064 15.58388329 0.15616067 + -0.61871725 15.51837158 0.38238794 -0.56183445 15.44569874 0.6157341 -0.46973783 15.33652687 0.95962447 + -0.28572273 15.31706238 1.068576813 -0.13002266 15.31656837 1.134758 -0.056362826 15.32353306 1.23200631 + -1.083186507 13.22800827 0.72296625 -0.58418071 13.19764328 0.90900499 -0.62729257 11.43884754 1.12309802 + -1.065110564 11.50035191 0.70917284 -1.23203027 11.60597801 0.18991897 -1.21743405 11.65394783 -0.25390083 + -1.012308478 11.70467091 -0.4960441 -0.65461785 11.78033638 -0.65890759 -0.2702657 11.86323357 -0.7705403 + -1.69913101 13.75435066 0.080481455 -1.58297086 13.56886673 0.24112701 -1.49031675 13.38838673 0.34368595 + -1.439098 12.96338654 0.37548509 -1.39279664 12.73374176 0.18484907; + setAttr ".vt[1162:1327]" -1.3921628 12.73749924 -0.20197077 -1.33869302 12.77767277 -0.57140231 + -1.24756503 13.11426067 -0.76187658 -1.38329005 13.48734379 -0.8046121 -1.58924782 13.78286076 -0.71838117 + -1.74021268 13.9019413 -0.54135412 -1.75976872 13.87557316 -0.15823759 -2.14951777 13.16989708 0.028508328 + -1.90396357 13.14706326 0.211943 -1.68457115 13.1087513 0.23161022 -1.56254876 13.074278831 0.088471726 + -1.48965907 13.023816109 -0.21996003 -1.39658964 13.12631702 -0.53045332 -1.58641303 13.23672676 -0.74091059 + -1.89335525 13.23176003 -0.76916832 -2.16276145 13.22267342 -0.61435187 -2.23164415 13.22933102 -0.2455028 + -1.21222949 12.91077995 -0.71523792 1.20393169 9.44025898 0.85121667 1.27283323 9.72514439 0.46017617 + 1.030815721 10.12021065 0.55849099 1.13876653 10.29289913 0.011660585 1.22257912 9.81996632 -0.13244937 + 0.66309524 9.025151253 1.18608224 0.72410876 9.90525913 -0.62350476 0.76660442 10.36813545 -0.41885775 + 0.43961188 8.50921917 1.099303365 0.49315798 8.40100574 1.021306634 1.03891933 5.054422855 0.88697958 + 0.58692837 6.56479836 0.98498112 0.3726218 6.71005774 -0.35092676 0.58985662 5.39427614 -0.20237339 + 0.23224264 6.57994652 0.67231494 1.34317458 6.76038885 -0.33885136 0.67504299 5.058180809 -0.15175079 + 0.42529187 4.98247433 0.42594153 0.47522289 4.50304937 0.2962217 0.4279466 5.3102355 0.51151764 + 0.75347686 4.23971844 0.52705276 1.0043781996 4.056382656 0.54827309 1.041778088 4.71236563 0.84025729 + 0.71884775 4.5022254 0.63284856 1.27570069 4.5169282 0.54013318 1.034293532 4.49405432 0.77360559 + 0.71166694 4.99971533 0.74955964 0.71077919 4.7253809 0.6971693 1.27640426 4.73079824 0.60820794 + 1.02156353 4.23025084 0.66264206 1.25859141 4.26112747 0.42735916 1.39573741 8.60988331 -0.49487698 + 1.37576973 7.63443136 -0.42611691 0.23679809 7.61134338 -0.39524314 0.77308756 8.61679649 -0.95550823 + 1.23972464 4.095407009 0.37089163 1.16646647 5.016129494 -0.04545575 1.19151771 4.8055644 -0.068218231 + 1.36903322 4.98824596 0.31443548 1.35252047 4.55985403 0.22791263 1.26522398 5.022899628 0.66050464 + 0.70154095 5.24078608 0.79540563 1.49064553 6.68411827 0.30955341 1.53493059 7.59433413 0.30190331 + 1.023600578 5.23672581 0.88407439 1.20537734 2.34184456 -0.0056892503 0.77142709 2.26977992 -0.61210799 + 0.73292994 2.82130003 -0.68114901 0.7077238 4.3834343 -0.34520954 0.6581105 2.26606226 -0.49982187 + 0.60070223 2.80711389 -0.54830563 0.58952945 4.12775946 0.18750575 0.50725937 2.86165833 -0.2604481 + 0.62733144 2.31508946 -0.175658 1.27846324 2.29820633 -0.27828148 1.39448667 2.91845703 -0.47614527 + 0.74477363 4.68912029 -0.1978538 0.71850383 4.8513546 -0.16113117 1.36174273 4.34491396 -0.1492247 + 1.2203449 4.60275602 -0.11301445 0.46885246 4.26418352 0.0025728571 0.59895188 4.3528986 -0.23869191 + 0.59639102 4.65466118 -0.089084551 0.78973609 7.64370012 -0.60853112 0.83169764 6.75467157 -0.44464999 + 1.28305185 5.25763559 0.68044674 1.36255252 5.30894804 0.32933486 1.18449557 5.35148096 -0.11173421 + 0.96699822 4.6754446 -0.21368361 0.93538117 4.84683895 -0.17999321 0.90130097 5.061037064 -0.17530383 + 0.85492778 5.39225864 -0.24407899 1.067870378 4.3843565 -0.37652901 0.85701066 4.38700962 -0.43274572 + 0.9514659 2.84007597 -0.74000758 0.95183754 2.26565027 -0.6491161 1.20085025 2.86284494 -0.66103625 + 1.14487743 2.298841 -0.58737522 0.78246224 4.073489666 0.43143767 0.55912137 4.25505686 0.21117592 + 1.00086283684 6.56979799 1.071010232 1.41802418 6.62678337 0.8105433 1.36598969 4.20544434 0.08716885 + 1.28001213 3.88267446 0.28996804 1.42349637 3.95087981 -0.051312156 1.42811775 3.98702836 -0.35552937 + 1.1848098 3.99521446 -0.54680133 0.94205618 3.98013258 -0.6374768 0.71632719 3.97777581 -0.57505488 + 0.55675399 3.96572471 -0.44351345 0.42272741 3.92606115 -0.13239941 0.61989915 3.86777282 0.13290767 + 1.34519732 4.31872654 0.14314574 1.31063545 3.41637707 0.17845625 1.48169041 3.45186734 -0.18369663 + 1.48274612 3.48345208 -0.46440452 1.23577547 3.47355556 -0.66268998 0.95241928 3.45802951 -0.7664659 + 0.70134962 3.46444678 -0.69864637 0.52918828 3.466043 -0.56295228 0.41219479 3.47912025 -0.22203389 + 0.6350255 3.43155289 0.029007999 0.78665447 8.883955 1.0073524714 0.10351342 8.74051571 -0.83118379 + 0.13623954 8.046209335 -0.65085334 0.15618011 7.95523453 0.79724932 0.11287121 7.91483641 0.16871667 + 0.21818677 6.64757252 0.080950901 0.13280129 7.51243973 0.78556478 0.099844702 7.55883217 0.15120623 + 0.46394295 5.37542725 -0.0099762464 0.52915782 5.036091805 -0.032660414 0.5718742 4.80943441 -0.049013048 + 0.44138283 4.73416996 0.36929616 0.70762843 9.86446095 1.18046188 0.4655458 10.39655685 -0.52140051 + 0.29227343 9.79662323 -0.7000556 0.76883346 3.8337431 0.35603225 0.78298897 3.3955245 0.24790761 + 0.78747171 2.34574485 0.048784748 1.0019823313 3.81331229 0.48470187 1.014687419 3.37912297 0.37243149 + 0.98626864 2.35708809 0.17760575 1.37488508 0.302203 -0.35502076 1.38555813 0.16242918 -0.34318638 + 1.34414923 0.057180189 -0.3151356 0.6869027 0.15893555 -0.10345125 0.68164086 0.4160744 -0.1127525 + 1.34149301 0.43139434 -0.35273087 0.69356972 0.66928709 -0.18465912 1.17634988 1.80141699 -0.033074126 + 0.67546999 1.81931686 -0.19529212 0.82983297 1.83391452 -0.58715475 0.76437473 0.47814524 -0.78976715 + 0.75412393 0.31077808 -0.80459309 1.5690093 0.18050267 0.96060652 1.61006498 0.17628002 0.94688386 + 1.69511855 0.19043261 0.81483412 1.70139742 0.14251947 0.92210567 1.69839549 0.099208951 1.055144072 + 1.68873572 0.061386507 1.1162585 1.46776545 0.18586695 1.039050341 1.45273137 0.18945776 1.052346706 + 1.4612174 0.14956266 1.19709897 1.46857131 0.12260288 1.28205264 1.30781507 0.21214847 1.096553445 + 1.32374549 0.1600935 1.20980477 1.33337379 0.12337313 1.30253112; + setAttr ".vt[1328:1493]" 1.28037727 0.221799 1.10756981 1.086762905 0.24051552 1.14533734 + 1.1427393 0.18194088 1.37082314 0.86412215 0.078583144 1.37246287 0.83218408 0.069803432 1.023941517 + 1.71268916 0.12912941 0.81160975 1.71248078 0.10844514 0.91785228 1.68421412 0.025372779 1.11097884 + 1.70267987 0.081324592 0.79669446 1.69176531 0.072152883 0.91827226 1.66350603 0.0015894331 1.097483635 + 1.59556377 0.04343595 0.95750284 1.59896791 0.023791866 1.10228825 1.31556368 0.042276271 1.085679889 + 1.34858775 0.080764949 1.21405983 1.34857023 0.056270674 1.28956449 1.43575644 0.032500222 1.050012231 + 1.45253038 0.071700707 1.18979526 1.46516263 0.049237795 1.2670027 1.46712565 0.034668282 1.020787239 + 1.64484286 0.012620586 1.15528965 1.26360989 0.041334942 1.099068284 1.065635324 0.04656855 1.13911092 + 1.12570369 0.016127139 1.34288788 1.10082889 0.12261061 1.14536548 1.16470599 0.087323293 1.34474993 + 1.12317359 0.23745428 1.13258338 1.12652791 0.12815543 1.15044904 1.30969501 0.095030144 1.11279178 + 1.59547818 0.12481735 0.95072865 1.59126925 0.075555414 1.12306082 1.128654 0.042948522 1.12695098 + 0.9861958 0.035094671 1.50419152 1.110829 0.043804742 1.48755252 0.91712326 0.010579755 1.35580289 + 1.44931078 0.10462482 1.057118177 1.29374075 0.094923548 1.11754382 0.77393579 0.16587041 1.047501802 + 0.89236575 0.17466214 1.39293182 0.9889636 0.1058335 1.52587748 1.10816431 0.11042321 1.50937498 + 1.60209334 0.098815233 1.13190877 1.603127 0.029321197 1.16785288 1.60484743 0.042674292 1.17541373 + 1.61467767 0.058253046 1.17648566 1.65364528 0.043619059 1.16659462 1.65268266 0.023209875 1.16272807 + 1.45826709 0.05973424 1.39452946 1.45167577 0.080319658 1.38625205 1.37663686 0.081607424 1.39735055 + 1.37307608 0.062974297 1.40137112 1.37543178 0.042958837 1.40199149 1.45567989 0.040143453 1.39121318 + 1.33129203 0.10731469 1.21494806 1.46559417 0.10704733 1.052136779 1.55325425 0.04543896 0.96988064 + 1.56903791 0.12218939 0.9627564 1.34067154 0.08532545 1.29644108 1.47433662 0.084431402 1.26734388 + 1.46719289 0.095094621 1.19180346 1.31461954 0.096263766 1.22481453 1.3288846 0.068814829 1.33059764 + 1.18312573 0.087716162 1.34940577 1.15637207 0.1263295 1.24891555 1.31851125 0.045268744 1.43724358 + 1.24134898 0.043777235 1.45007622 1.23766196 0.067736812 1.44984782 1.24255967 0.08784683 1.44723153 + 1.3152889 0.086719818 1.441517 1.32293785 0.06645678 1.44423747 1.32235694 0.020121977 1.32114851 + 1.3038708 0.077444091 1.23792112 1.18805099 0.043454003 1.33986735 1.16910493 0.077123433 1.25352585 + 1.18684137 0.13180125 1.35801923 1.15614426 0.15659125 1.25545788 1.31834805 0.1344997 1.3441155 + 1.31022978 0.17642361 1.24007189 1.58649695 0.13068368 1.12912273 1.58743083 0.1076216 1.20143628 + 1.47811854 0.12795512 1.14515364 1.47958279 0.10894805 1.21627891 1.47717631 0.073762164 1.12622118 + 1.47950256 0.020777896 1.19538569 1.57861841 0.078690596 1.11087453 1.58642602 0.034631316 1.17810965 + 1.57481694 0.043917358 1.28919435 1.57237554 0.062896065 1.28826332 1.51006222 0.063822776 1.30531633 + 1.50479031 0.042151619 1.30834031 1.50603592 0.026789499 1.29526246 1.57095289 0.02246885 1.27847481 + 1.46842468 0.091371439 1.13585758 1.46837687 0.072314501 1.20695055 1.59206021 0.076317072 1.18872428 + 1.59125805 0.094057016 1.11489964 0.643282 0.45195055 -0.67392325 0.62827277 0.29801646 -0.67430824 + 0.7199555 1.82286024 -0.47671312 1.044238329 1.82330728 -0.57945299 0.91293561 1.8295002 -0.6225704 + 0.90608692 0.48296532 -0.81482887 0.90994185 0.31782043 -0.84059501 0.93107498 0.058051884 -0.75377667 + 0.78807932 0.055733386 -0.69938838 0.94924015 -0.00091475592 -0.64058226 1.020888805 0.2187137 1.3897748 + 1.054890275 0.03019719 1.50298572 1.029056787 -0.010138905 1.34690678 1.053274035 0.11580727 1.52849019 + 1.18130481 0.34427217 1.026647091 1.34510171 0.31219137 0.98882794 1.37472832 0.2619864 1.074065089 + 1.39694309 0.19705543 1.20995092 1.40737998 0.16620912 1.29803014 1.40407932 0.054870285 1.19557631 + 1.40434301 0.013549879 1.26583278 1.19242775 0.31128016 1.098336697 1.41870689 0.087446235 1.40705073 + 1.41869295 0.059400693 1.40853477 1.41719747 0.026500653 1.40149796 1.27871132 0.033616059 1.45445824 + 1.27893722 0.068098724 1.46108103 1.27661097 0.0939762 1.4560647 1.25322342 0.0069201831 1.31920958 + 1.23416853 0.056334287 1.24475837 1.24842262 0.18251514 1.36652255 1.22411966 0.23374313 1.26117682 + 1.52396226 0.27399671 0.92233837 1.5322032 0.24485166 1.0049077272 1.5368675 0.17488135 1.15229976 + 1.53303933 0.13782573 1.21894145 1.53094912 0.042996664 1.11697769 1.5263797 -0.00091561553 1.18575799 + 1.53855479 0.064578421 1.30777073 1.53996813 0.039411023 1.31066513 1.53778672 0.012568147 1.29235661 + 1.63959491 0.24752951 0.85440952 1.65375495 0.21163096 0.9484545 1.65976357 0.15045586 1.080778122 + 1.65056014 0.052000739 0.92573953 1.62297773 -0.00091561553 1.094560266 1.62243748 0.014075131 1.15562654 + 1.62587821 0.031130781 1.1789645 1.6369257 0.053261865 1.18054819 1.64993978 0.09749566 1.13477612 + 1.047182322 0.47719193 -0.76755786 1.088149548 0.31679058 -0.79569525 1.098959208 0.15604191 -0.79194939 + 1.08036232 0.063125595 -0.75194085 0.95382261 0.3648825 1.064013124 0.6697619 0.26729047 -0.085845374 + 0.65039611 0.14935549 -0.63019252 0.75731677 0.14784765 -0.76075912 0.92243028 0.1493787 -0.81174099 + 0.70106184 0.053325478 -0.56464803 0.83741367 -0.00091475592 -0.58829397 0.76932579 -0.00091475592 -0.49589226 + 0.97941357 0.018388044 1.14287519 0.85224682 0.05586319 1.14334059 0.79378283 0.14634582 1.13943291 + 0.82283407 0.23736662 1.15543234 0.97040749 0.33188102 1.15713239 0.96607405 -0.00091561553 0.99428523 + 1.19192529 0.037484527 1.11526275 1.36754966 0.025358165 1.06985116; + setAttr ".vt[1494:1659]" 0.8096596 0.26132703 1.058126211 1.32873249 -0.00091561553 0.91267484 + 1.51393652 0.024640348 0.99502808 1.48855925 -0.00091561553 0.86470473 1.1510272 -0.00091561553 0.95456553 + 1.57546782 -0.00091561553 0.82848936 1.31109381 0.6199702 0.099262625 1.26327419 1.80771744 -0.30213135 + 1.00167799 0.27525437 1.31966269 1.13929391 0.21820134 1.28808749 1.15092671 0.11824182 1.2690922 + 1.1199069 0.059411865 1.25539577 1.0053079128 0.025778539 1.25888181 0.89559823 0.048072953 1.2757386 + 0.8344872 0.1077067 1.29268563 0.85698861 0.20105112 1.31422985 0.8273952 0.62691534 0.32697788 + 0.82605642 0.99872684 0.034048874 0.72298336 0.96087253 -0.21942112 0.78108037 0.99424458 -0.55001533 + 0.85806829 1.0061688423 -0.64021301 1.024424672 0.73633033 -0.70560789 0.91880131 0.74047387 -0.71576399 + 0.8115322 0.72857189 -0.69243038 0.70637727 0.70773715 -0.60644674 1.26016343 0.69512594 -0.37023962 + 1.23980105 0.76120031 -0.054602627 0.92342514 1.01049304 -0.64938474 1.023216009 1.010793805 -0.61377048 + 1.238289 0.98276383 -0.3503089 1.18376827 1.0094037056 -0.080029249 0.80954254 0.77601731 0.099962622 + 1.060262799 -0.00091475592 -0.63714522 1.25241673 -0.00091475592 -0.271929 1.14912057 -0.00091475592 -0.23021948 + 1.004171133 -0.00091475592 -0.18299051 0.87665486 -0.00091475592 -0.14393137 0.76663631 0.053096808 -0.12283687 + 1.64739311 0.018177427 0.80900663 1.70069766 0.067533933 1.038738728 1.68136978 0.043689549 1.025577903 + 1.64032781 0.026904693 1.025115013 1.60224092 0.040894795 1.033495784 1.59052241 0.10011332 1.066868186 + 1.59774625 0.13404839 1.079108596 1.064202547 0.6700815 0.30848473 1.0012345314 0.83166224 0.10193662 + 0.98340493 1.026443124 0.067257747 0.97315419 1.82839382 0.11916538 0.80170739 1.81822848 0.045235749 + 0.24195772 15.22966385 -0.30574942 0.64975953 15.3692503 0.17625031 0.77696526 15.78343296 0.30130538 + 0.59508812 15.26827431 0.32525456 0.48856822 15.068079948 0.15175632 0.55614036 15.33718109 0.1741066 + 0.63503408 16.20087624 0.56575841 0.24997868 16.69621468 0.70997655 0.44540641 15.14034176 -0.080664694 + 0.66595656 15.77148628 0.27958596 0.27387229 16.75072289 0.079248533 0.66033411 16.23870277 0.18488862 + 0.62862337 15.64702606 0.41107613 0.85487825 14.24641418 -0.55794013 0.9329775 14.15792656 -0.17190766 + 0.055401638 15.45932484 1.20453727 0.43311641 15.58750916 1.075014591 0.12171549 14.82025433 1.085306048 + 0.11401056 14.99105263 1.10948431 0.5627597 16.099069595 0.80639106 0.19982758 16.36986732 1.12949991 + 0.48185694 15.84601402 1.055336833 0.16320328 15.91368866 1.29799879 0.56629771 15.56540966 0.64835483 + 0.13184856 15.55892658 1.28508735 0.11116931 15.4428978 1.14520895 0.54449934 15.024586678 0.3210772 + 0.49527162 15.034637451 0.27410343 0.063832045 15.041158676 1.29462731 0.50720292 14.94906616 0.52390248 + 0.32431868 14.6332798 -0.43131524 0.51153195 14.44976521 -0.03834866 0.44502431 14.3584013 0.18513796 + 0.30324414 14.26520157 0.32797244 0.14734589 14.53156376 0.93686497 0.15017323 14.60122776 0.73042983 + 0.14177617 14.69508839 0.5482589 0.14195758 14.20965576 0.45513856 2.36031199 10.013544083 -0.36885402 + 2.28604579 11.41787624 -0.83215445 2.064279795 12.066934586 -0.83199525 2.13236761 11.22285175 -0.79354972 + 2.32981205 11.21992016 -0.8302778 2.26605392 10.033370018 -0.37771773 2.34427929 11.057483673 -0.77259135 + 2.15943766 11.058077812 -0.75009036 2.069601059 11.40353107 -0.80591774 2.17790985 12.058211327 -0.011919132 + 1.63991475 12.017400742 -0.42578274 2.4257021 12.11773205 -0.54649055 2.47812867 11.24799633 -0.74766505 + 2.56119084 11.37446404 -0.40087003 2.45154214 11.37515259 -0.21735168 2.57252765 10.122015 -0.013361268 + 2.48737812 10.034734726 -0.28929636 2.5466609 10.076881409 -0.14106983 2.51654553 10.18124294 0.13711098 + 2.27211428 12.08854866 -0.76657975 1.81652105 11.45838642 -0.54584026 1.85106182 11.43779755 -0.28525701 + 2.55451202 11.27661896 -0.62255758 2.58516097 11.31898499 -0.50867474 1.92065644 12.025392532 0.042997234 + 2.41609454 10.2291584 0.23837484 2.187814 10.23724365 0.25846905 2.051462173 10.21024799 0.17009164 + 1.99912393 10.10577106 -0.25406119 2.43170333 11.48265648 -0.75608349 1.85007179 11.25241089 -0.58628839 + 2.53804398 11.58791733 -0.55127585 2.4314754 11.55514908 -0.2612963 2.49365973 11.079717636 -0.67088526 + 2.57745957 11.11806774 -0.55020964 2.62535286 11.14412212 -0.41862869 2.56869125 11.17575359 -0.27339774 + 2.45427203 11.18317223 -0.10722602 2.031567335 11.096670151 -0.10621155 1.85659313 11.094105721 -0.59515989 + 1.96465135 10.1772604 0.023326775 1.88928533 11.072133064 -0.28107512 1.8898524 11.25790977 -0.29319414 + 2.024316549 11.37744808 -0.11967214 2.036547899 11.24494743 -0.13557371 2.20797801 11.44748306 -0.093522318 + 2.21540308 11.29978275 -0.10323452 2.21384668 11.13696194 -0.054367907 1.70841205 12.032687187 -0.13947149 + 1.81002748 12.021547318 -0.75517935 2.36888456 12.084700584 -0.24422695 2.11915469 8.83246422 0.69962293 + 2.52487421 8.58925056 0.20984069 2.43709326 8.5824728 0.12341703 2.45813966 8.26924229 0.88875353 + 2.56754041 8.15216064 0.52439898 2.55449986 7.88678217 0.56452203 2.53989434 8.17735767 0.69536483 + 2.52088451 7.93520832 0.76571703 2.45959353 7.83129263 0.40755579 2.46308351 7.8116641 0.46310487 + 2.4121449 7.7846899 0.43084827 2.40928555 7.79727554 0.42797387 2.40513754 7.91837072 0.89887094 + 2.46235871 7.80994463 0.65451932 2.50242972 7.82851553 0.32685578 2.4610846 7.81455517 0.22164823 + 2.39900374 7.81177855 0.19965687 2.42096758 7.8760891 0.18017879 2.5104723 8.16196156 0.20469899 + 2.44093704 8.15670872 0.13216163 2.40745735 7.90148926 0.86632383 2.31351757 8.043709755 1.080332041 + 2.53320146 7.8152709 0.57027495 2.49861169 7.85986519 0.78618032 2.43147731 8.035692215 0.99776995 + 2.33135748 8.30506039 0.99318099 1.99734545 8.77675438 0.81450266; + setAttr ".vt[1660:1825]" 2.24344563 8.036634445 1.07915926 1.91336346 8.67665577 0.95783055 + 2.45551467 7.81189585 0.67412823 2.36017632 7.62731647 0.66839725 2.33101702 7.63242722 0.66857255 + 2.41316462 7.60198832 0.5895564 2.37573433 7.59354639 0.4911668 2.32784104 7.59290123 0.47208643 + 2.3092792 7.5811758 0.68064028 2.31529427 7.55321407 0.47478479 2.33798742 7.57423592 0.67896777 + 2.39562273 7.54336786 0.59811938 2.30415654 7.52835321 0.67180026 2.27947092 7.55034351 0.6735549 + 2.3396194 7.49360609 0.59506583 2.31786013 7.50210094 0.49932337 2.28581142 7.5275445 0.48000619 + 2.20262313 7.4232235 0.66189826 2.17738366 7.44154072 0.66355109 2.23518276 7.39528751 0.59487092 + 2.21786761 7.39975405 0.51153219 2.19367266 7.41450644 0.49198869 2.14357829 7.40909719 0.66165572 + 2.16551566 7.38628006 0.49506944 2.16540217 7.38692284 0.66039431 2.20075893 7.34936476 0.60209769 + 2.18137932 7.36742163 0.51829213 1.96080673 7.2966342 0.51770568 1.95391273 7.29887056 0.51053184 + 1.92350614 7.29274702 0.56003708 1.93882632 7.28174734 0.5645594 1.93490469 7.3082428 0.61510706 + 1.94325185 7.30389786 0.60645306 2.079073429 7.31888247 0.5060491 2.061332226 7.34237385 0.64858752 + 2.093178034 7.3129344 0.58854753 2.12835884 7.37254047 0.65973699 2.11326385 7.39529753 0.66576934 + 2.14903355 7.33600807 0.59359461 2.14560223 7.34646845 0.51123023 2.13658333 7.36715984 0.4896405 + 2.03944397 7.35864067 0.65363002 2.062097549 7.33463049 0.48615167 2.35738158 7.54172421 0.49232507 + 2.16186619 7.7259922 1.13584089 2.12103558 7.74449587 1.12717378 2.23248768 7.6862998 1.081251502 + 2.22985625 7.66119957 0.98024911 2.19288135 7.667521 0.94003654 2.097034931 7.70157766 1.14291453 + 2.1777494 7.62833738 0.95509088 2.12904119 7.67398643 1.15097892 2.19294953 7.62400484 1.095996976 + 2.1970017 7.61426735 0.99875867 2.088177204 7.6426754 1.14412904 2.061268806 7.67145252 1.13497078 + 2.14563894 7.59443569 1.089550018 2.16107225 7.58612823 0.99908829 2.14636993 7.60828781 0.95922881 + 2.0010612011 7.57644558 1.13024032 1.9780407 7.59644508 1.11882699 2.056501865 7.53046417 1.080852389 + 2.069485426 7.52282858 0.99313748 2.052049637 7.53967667 0.96229362 1.93341684 7.56402683 1.11073363 + 2.010500669 7.51150417 0.96012682 1.95046186 7.54440308 1.11705542 2.0075078011 7.49045944 1.078668594 + 2.017516136 7.4970336 0.98619676 1.79201055 7.4385066 0.93411088 1.79106355 7.44578934 0.92282653 + 1.75728989 7.46468639 1.011202693 1.74812627 7.47514391 1.00537467 1.75019979 7.45244598 0.95851588 + 1.76055479 7.44395304 0.97365284 1.83692408 7.51097298 1.071065545 1.82808304 7.5288372 1.063702822 + 1.89249742 7.4712038 0.92190748 1.90021396 7.45710659 0.94239444 1.89867854 7.46687889 1.026582837 + 1.90297699 7.52705431 1.10255766 1.8857789 7.55192041 1.093786001 1.95288956 7.48129416 1.052892685 + 1.97198498 7.47972345 0.96746916 1.96542943 7.49738741 0.94353867 2.24723864 7.61684465 0.89968777 + 2.20536613 7.63371754 0.89842564 2.30904484 7.57924032 0.83211625 2.28773308 7.56945562 0.73706084 + 2.24835873 7.57816029 0.69737273 2.18506646 7.60258818 0.90553778 2.23689222 7.54577446 0.70170599 + 2.22163749 7.57913971 0.90526301 2.28295135 7.53504658 0.84084064 2.2647872 7.53120852 0.73571968 + 2.048218727 7.46485567 0.88438332 2.027499437 7.48657227 0.8818329 2.010012865 7.46827269 0.87739283 + 2.095659256 7.41849518 0.82865936 2.097610235 7.41688681 0.7313686 2.061560154 7.41963387 0.71023947 + 2.080015421 7.43444014 0.70830929 2.17687654 7.55955696 0.89524853 2.14990592 7.584167 0.89177537 + 2.22995758 7.51136589 0.83354461 2.22408271 7.5109334 0.73502588 2.20286655 7.52962351 0.70096338 + 2.025709867 7.44193888 0.88485473 2.065849304 7.39033556 0.82857448 2.074014425 7.3943367 0.73514223 + 1.78493428 7.38436413 0.79248196 1.77605093 7.38854027 0.7870611 1.774441 7.35924101 0.74021906 + 1.79296851 7.35051107 0.74885213 1.80688262 7.35489082 0.69271678 1.81764698 7.35346174 0.69725633 + 1.93819273 7.36795235 0.70116466 1.93818629 7.3657856 0.79483545 1.88793373 7.41492081 0.85217899 + 1.97870076 7.43886566 0.87521321 2.019462347 7.38108635 0.81716484 2.029609203 7.3913269 0.72004211 + 1.96794939 7.46362925 0.87055057 1.87481904 7.43577576 0.85116231 1.92955625 7.38393211 0.68169075 + 2.023268223 7.41064739 0.7003122 2.3637414 7.69829178 0.40749753 2.33154821 7.71215105 0.41474244 + 2.40092945 7.67374325 0.34449634 2.37244725 7.68710709 0.26121596 2.3320601 7.70215559 0.23829666 + 2.31127715 7.66904736 0.416015 2.31070089 7.65800238 0.24310957 2.33614802 7.65211582 0.41023108 + 2.36566687 7.62256527 0.34796011 2.34528303 7.63728094 0.2682994 2.30081797 7.61541367 0.40901458 + 2.27979636 7.63565826 0.41546026 2.32578206 7.58988094 0.34784222 2.30897307 7.60291004 0.27395621 + 2.28080416 7.62626457 0.24772537 2.23985052 7.57241344 0.40531415 2.26291275 7.54423666 0.34940147 + 2.25119591 7.55499363 0.27731445 2.22408175 7.57898903 0.25578693 2.21534324 7.59798861 0.40813464 + 2.18453169 7.57420158 0.40925756 2.19627261 7.54959345 0.26152721 2.011657715 7.467484 0.3094686 + 2.0013589859 7.47992563 0.3048718 1.9889847 7.48136711 0.34261596 2.0016698837 7.46644974 0.3475638 + 2.00046277046 7.49173403 0.38309777 2.0085644722 7.48086834 0.38331494 2.11419964 7.50642443 0.28181785 + 2.1586473 7.50876188 0.2825442 2.1014843 7.52434063 0.26589546 2.14386868 7.53632641 0.26299512 + 2.140661 7.56050587 0.40621704 2.096511126 7.53772259 0.40373442 2.11766934 7.5153966 0.39703143 + 2.15670753 7.52207994 0.40084988 2.13130474 7.48306942 0.35043305 2.16981936 7.49485159 0.35030237 + 1.72994435 8.38144493 1.098494887 1.9186548 8.24375916 1.17280257; + setAttr ".vt[1826:1991]" 1.92867208 8.20649815 1.13827419 1.83886194 8.34913158 1.22361016 + 1.7318207 8.013074875 1.17624044 1.73282933 8.0084276199 1.15954006 1.6060102 8.10223484 1.15672123 + 1.64706492 8.014917374 1.164837 1.65420389 8.029058456 1.19909978 1.76055479 8.21185017 1.21474171 + 1.73142874 8.16475487 1.21657228 1.79105175 8.26828957 1.21650696 1.69506609 8.3236084 1.10369813 + 1.66342771 8.25868893 1.10860252 1.84599292 8.12342834 1.16266561 1.88402903 8.18223953 1.16385579 + 1.85424018 8.10525417 1.13736427 1.89482927 8.15637493 1.12809241 1.8164326 8.065464973 1.14733136 + 1.80874491 8.078138351 1.16732788 2.093037128 8.77883053 0.58671457 2.16506648 8.66104507 0.42090216 + 2.32614994 8.59599686 0.11425356 2.2154038 8.60109901 0.19780466 2.17223024 7.97342539 0.8981055 + 2.22794867 7.87023926 0.85612732 2.16998529 7.90358639 0.93464214 2.20924497 7.94563103 0.78880286 + 2.23709035 7.90777349 0.67704672 2.23659706 7.82779598 0.71531552 2.24189115 7.83508873 0.80393702 + 2.29825115 7.79620028 0.65992361 2.3039546 7.78902292 0.61175096 2.30893517 7.81061172 0.39511555 + 2.32811546 7.78580904 0.45584008 2.27466369 7.86978149 0.50306869 2.29767036 7.78068924 0.53029829 + 2.28421545 7.83556747 0.30572852 2.29192352 7.90413761 0.28780389 2.33015776 7.88103867 0.1975342 + 2.31390214 7.81691742 0.21950699 2.22143674 8.10405636 0.61280668 2.17674351 8.097492218 0.73822367 + 2.25251436 8.1268177 0.22018559 2.33465433 8.14419365 0.12547527 2.19243503 8.014738083 1.048118711 + 1.98736024 8.61108875 0.64945567 1.89140868 8.50508022 0.86808228 1.97986555 8.71205616 0.71688068 + 1.89500999 8.5882988 0.89614481 2.23006201 7.6263113 0.54997033 2.27445984 7.63309288 0.65303069 + 2.29433179 7.60124588 0.47315866 2.27346945 7.59549427 0.66192997 2.27968311 7.57214212 0.47620678 + 2.21689939 7.58811426 0.5595578 2.24616456 7.57253599 0.65508395 2.2514441 7.55454016 0.48357227 + 2.12689114 7.47547531 0.5674848 2.14772654 7.46272612 0.64653891 2.15382171 7.44414091 0.48970592 + 2.12299466 7.43271494 0.64750326 2.14311457 7.41352034 0.49282718 2.23849654 7.59931517 0.55839843 + 2.10930395 7.40006113 0.48482648 2.0686059 7.45619678 0.55694634 2.085024834 7.4293313 0.64847261 + 1.98108232 7.41587925 0.54886782 2.006169796 7.39188385 0.63563627 2.030094862 7.36612654 0.47882825 + 2.11725616 7.44633961 0.57142854 2.078032494 7.72655869 0.98817235 2.084715128 7.75150919 1.096574545 + 2.15004992 7.67902279 0.9186635 2.080324411 7.71921539 1.11676013 2.14968371 7.65225887 0.93556392 + 2.053938866 7.6943574 0.99623382 2.041888237 7.69456196 1.10422683 2.11550999 7.6374464 0.93556672 + 1.97251534 7.61791182 0.9950189 1.96505713 7.61395931 1.093148589 2.024698496 7.56549311 0.9491291 + 1.93177569 7.58052492 1.092177868 2.00081133842 7.53375483 0.96200716 2.090817928 7.69733381 1.013480186 + 1.81642532 7.55216169 1.037855387 1.83893204 7.56239462 0.94998282 1.87772429 7.50441933 0.90894854 + 1.90848517 7.58738089 0.9780792 1.88126683 7.57484579 1.06897068 1.94984126 7.52960014 0.93109179 + 1.95898676 7.58366776 1.0066726208 2.14400697 7.63443661 0.75699729 2.15666056 7.64855814 0.86702108 + 2.20581985 7.59412432 0.68082708 2.1568284 7.62298536 0.88457739 2.20785666 7.5674901 0.6886881 + 2.0075335503 7.51144266 0.76129174 1.99265623 7.48566294 0.8596999 2.0055088997 7.50894928 0.85766917 + 2.054798126 7.46116638 0.69598877 2.036547899 7.44378328 0.69932443 2.11871576 7.60985041 0.76099223 + 2.12244511 7.60905743 0.86496353 2.17137027 7.55857992 0.68528241 1.86477482 7.45913744 0.82657981 + 1.95535469 7.490026 0.84636915 2.0040051937 7.44945145 0.68581253 1.91193235 7.41704941 0.67001259 + 1.96265066 7.50340509 0.74825442 1.86858165 7.47877979 0.72552127 1.99751878 7.48794317 0.76592195 + 2.24727201 7.73794508 0.31379598 2.2843051 7.72870445 0.39940986 2.29256153 7.71886635 0.24286962 + 2.27165985 7.69406462 0.4027614 2.28197527 7.67213535 0.25015813 2.22362351 7.68346643 0.31924069 + 2.24500275 7.66637707 0.40287587 2.25545096 7.64934492 0.25255239 2.16629457 7.63110876 0.3195565 + 2.19174004 7.61825991 0.39372134 2.20248938 7.60024977 0.26462901 2.17227077 7.59127188 0.39348552 + 2.17999911 7.56810808 0.26731625 2.24720669 7.69936275 0.32043886 2.13275313 7.56059933 0.26379263 + 2.091986895 7.54511929 0.26482469 2.064641237 7.58275509 0.32322332 2.11519742 7.60691786 0.32177711 + 2.082148314 7.56286812 0.39413843 2.12296796 7.58636951 0.3951965 2.15756035 7.60216141 0.32309765 + 1.74808288 8.3422451 1.036245823 1.7328459 8.36507416 1.063020468 1.90682995 8.20353413 1.095883012 + 1.65692103 8.24792957 1.062487364 1.69297135 8.32002544 1.052329063 1.71070135 8.29208279 1.018769383 + 1.67096317 8.22246265 1.028158307 1.88144076 8.15400314 1.07894063 1.84114861 8.10198593 1.093604088 + 1.64452755 8.17182064 1.049315929 1.63356686 8.1974411 1.080611229 1.79975915 8.057892799 1.10888767 + 1.61391163 8.072331429 1.11906755 1.60060453 8.095604897 1.12831604 1.72361767 8.0076789856 1.14359069 + 2.14890361 7.6140213 0.76949751 2.55777454 8.15997601 0.34039935 2.57764935 8.60929394 0.42991331 + 2.55234885 8.63929844 0.55447692 2.47662973 8.69547272 0.71657509 2.20734286 7.54348516 0.40427935 + 2.22464609 7.51418781 0.35217211 2.21552014 7.5258894 0.28176785 2.31975389 7.87249041 0.85443908 + 2.32432699 7.87757444 0.86407518 2.3789444 7.78632736 0.65964347 2.38900089 7.78199244 0.64981431 + 2.48480129 7.86937141 0.20924118 2.54242516 7.87422705 0.33361924 2.18286562 7.95761919 1.04397881 + 2.23096728 7.98170757 1.08290875 2.29595089 7.9834199 1.086011767 2.40541148 7.96159697 1.020627499 + 2.21140695 8.099415779 0.41627306 2.17810822 8.6387434 0.32211342; + setAttr ".vt[1992:2157]" 2.57666016 8.58649349 0.29752094 1.75245309 7.49715853 1.0060482025 + 1.75452757 7.48388624 0.94512916 1.79553628 7.45699692 0.91402596 2.083656788 8.64720631 1.066520929 + 2.082369566 8.29867458 1.026141167 2.13242221 8.33566952 1.037407756 2.17304564 8.40966606 1.061592102 + 2.19561505 8.7404747 0.93546724 1.77791703 7.41065454 0.78524858 1.772066 7.39781857 0.72266537 + 1.81182158 7.37596893 0.68050444 1.92484939 7.3254199 0.61141044 1.90833926 7.31968594 0.55026019 + 1.94177759 7.31375742 0.49955443 1.99958575 7.49672031 0.29829523 1.9860456 7.50691938 0.33516222 + 1.9977752 7.50703096 0.37927136 2.5769217 8.76407242 0.38975707 2.5514617 8.7337904 0.24250403 + 2.4288857 8.70300579 0.13526168 2.36298847 8.70323944 0.14458235 2.26191592 8.7238102 0.23657535 + 2.224576 8.758708 0.37523419 2.17415094 8.80803299 0.52455431 2.19424152 8.8573761 0.64134288 + 1.64126182 8.21205139 1.12345541 1.66086268 8.031516075 1.11469126 1.70635962 8.11158085 1.041209817 + 1.73655236 8.16307354 1.014558077 1.77645731 8.22317314 0.99640787 1.80956364 8.27306461 1.028599739 + 1.95927501 8.37060833 0.86683249 2.059145212 8.38459873 0.66124469 2.15188837 8.38930225 0.49884582 + 2.16031456 8.37851524 0.351127 2.19777513 8.37006283 0.18839711 2.31493735 8.38465977 0.10219509 + 2.43642497 8.39144802 0.11960617 2.51697516 8.38550186 0.20571737 2.57096934 8.38673878 0.33054262 + 2.58082461 8.39262009 0.47852021 2.55047131 8.42937851 0.62029856 2.47015071 8.49660015 0.79199183 + 2.32075071 8.61436558 0.91198099 2.41555166 8.73439789 0.77263576 2.46910429 8.83822823 0.66479486 + 1.88415253 8.40347576 1.18509924 1.76677918 8.41848469 1.077261329 1.76158464 8.38902569 1.036137462 + 1.76856327 8.35698128 1.006511569 1.82507157 8.28314018 1.0055801868 1.9257319 8.22069073 1.078356743 + 1.95460892 8.23625088 1.11740386 1.95171773 8.27950954 1.1488837 2.5444591 8.80494022 0.2040614 + 2.57628632 8.84575844 0.36334366 2.27145863 8.79918957 0.2113746 2.16548872 8.88121796 0.50412321 + 2.35779309 8.77138996 0.1249861 2.41333055 8.77560902 0.11473395 2.20144486 8.83965683 0.34609759 + 2.19430852 8.91290855 0.61448711 2.15009403 9.032530785 0.45393652 2.23680639 8.9448843 0.16138807 + 2.1732316 8.98478127 0.30600291 2.39531946 8.93527794 0.066684574 2.52847719 8.97435188 0.13245358 + 2.57180667 9.033509254 0.28488347 2.192662 9.078634262 0.56891388 2.33033466 8.93307114 0.084187433 + 2.46923041 9.10964775 0.55771852 2.46412897 8.91518307 0.63212866 2.29502153 8.80742073 0.80089259 + 2.33769512 8.86608219 0.70331657 2.36053133 8.93119812 0.6823554 2.36524725 9.11797523 0.62112367 + 0.77674991 13.75400734 0.45398888 1.071092963 13.72252178 0.33265331 0.38624901 13.74301815 0.60002935 + 0.30937406 13.83607578 0.43828803 0.66631025 13.83667183 0.29208735 0.96804661 13.81803703 0.13242421 + 0.80551654 14.025354385 -0.78324229 1.30624211 12.5441246 -0.60087663 1.40539217 12.50104618 -0.22133148 + 1.12455118 12.26206017 0.74944395 0.6844511 13.61013222 -0.98116452 1.40547049 12.53040314 0.24959615 + 1.98491693 13.66419315 -0.53947139 2.032367945 13.62514496 -0.16533019 1.51003861 12.84861374 -0.60289991 + 1.71079302 12.88578415 -0.77384156 1.48355114 12.79067135 -0.25395045 2.2892673 12.70070839 -0.56592524 + 1.88386214 12.79160404 0.21269965 1.42725265 12.82683945 0.45828784 2.058072805 12.84787273 -0.75449377 + 1.79088926 13.57951736 -0.71035331 1.41003847 13.065049171 -0.24947497 1.31556606 13.29976559 0.4433791 + 1.54730463 13.39888096 -0.74927473 1.42133343 13.088751793 -0.59855276 1.71069384 13.42432499 0.25216249 + 1.46718347 13.18249321 0.2493017 2.16145968 12.6807127 0.056893766 2.29952621 12.70200157 -0.20908445 + 1.43413365 13.11112976 0.073287733 1.58755243 12.83429241 0.05402863 1.94688582 13.54020882 0.10059192 + 0.97999811 10.71192169 0.63878596 1.066475272 10.75070572 0.1276101 0.85053098 10.77582264 -0.32022876 + 0.64293998 10.6592474 1.14812267 0.66504234 12.54983234 1.2036624 1.17069423 12.59638214 0.864793 + 0.49342054 12.69011116 -0.96158218 0.62558609 10.82671642 -0.48245335 0.66703361 12.22486782 1.13015342 + 2.11414456 8.12577343 0.89327228 2.16956854 8.15869713 1.027974844 2.21769428 8.20113468 1.040197253 + 1.36264348 4.77405119 0.27489069 0.31206375 14.75404739 0.46096042 0.32325059 14.69697094 0.57255757 + 0.31996453 14.64941406 0.76068747 0.41795364 14.86025238 0.84129953 0.46364823 15.47357845 0.93640858 + 0.88453066 0.5094893 0.62151951 1.18390107 0.51488197 0.59719098 1.43990171 0.45584226 0.39441675 + 1.54430342 0.32139659 0.21254538 1.5510534 0.23789874 0.16920488 1.53805041 0.12842192 0.16290662 + 1.51796293 0.052831173 0.18292925 1.4331001 -0.00091561553 0.21725024 1.3295716 -0.00091561553 0.24711138 + 1.17138135 -0.00091561553 0.2930305 1.0058252811 -0.00091561553 0.33922961 0.85591084 0.06889993 0.38314411 + 0.73064238 0.19383256 0.43544549 0.72893119 0.26518604 0.48009849 0.75315762 0.37578383 0.53454363 + 2.05269146 8.3516922 1.099716425 2.041057348 8.30483627 1.075307488 2.021178246 8.28352642 1.0080201626 + 1.90643716 8.35007477 0.92216772 1.84936559 8.4495945 0.91903639 1.83653212 8.49612427 0.9621287 + 1.83764136 8.54419231 1.026126385 1.9777447 8.52990532 1.14083338 0.25724614 15.6686697 -0.39350063 + 0.52440119 15.51026535 -0.12104277 0.56060791 15.25364685 0.28494483 0.56536531 7.51072979 1.037003517 + 0.97742754 7.5340848 1.12213933 1.44777143 7.55281305 0.82447916 1.51763916 8.51330376 0.29627627 + 1.43380439 8.4528389 0.79183424 0.55584639 8.057655334 1.043086529 0.9579888 8.23570156 1.10652745 + 2.53397512 9.069189072 0.40832716 2.53891897 8.87349033 0.48368144 2.54316998 8.79292965 0.50861174 + 0.97895712 0.068384998 1.51458645 1.052458048 0.068393596 1.51446223; + setAttr ".vt[2158:2225]" 1.11468387 0.075257979 1.49844623 0.57517529 13.14100742 -0.99861121 + 0.10402285 13.83220768 0.49529573 0.19688013 10.42873669 -0.48355907 0.33140272 10.89085388 -0.46522933 + 0.94250381 12.627491 -0.80679178 1.041543245 13.082061768 -0.88994098 1.16704488 13.49417591 -0.87474406 + 1.34872401 13.87493229 -0.73384964 1.4554714 14.046102524 -0.52919281 1.48007345 13.97735023 -0.15127115 + 1.41945505 13.80456448 0.058068465 1.34659576 13.62050533 0.22548962 0.4657903 14.54793549 -0.25559613 + 0.37272212 15.19937325 -0.25410026 0.42317244 15.62171936 -0.31548601 0.49596542 16.62443542 0.11330778 + 0.4706184 16.60032845 0.66704077 0.41734761 16.29612923 1.026978135 0.33969522 15.89920998 1.22281444 + 0.28531072 15.56566906 1.22065663 0.28802532 15.45867825 1.058277607 0.2877281 14.84006977 0.95352054 + 0.29813117 14.69559956 0.8800863 0.13298893 14.58813381 1.012080908 0.277978 16.27834129 -0.3512961 + 0.48110789 16.14053535 -0.24254926 0.6080488 15.91001701 -0.078181177 0.6352191 15.59236526 0.15670988 + 0.72224534 15.58388329 0.15616067 0.61977643 15.51837158 0.38238794 0.56295407 15.44569874 0.6157341 + 0.47094828 15.33652687 0.95962447 0.2869494 15.31706238 1.068576813 0.13124974 15.31656837 1.134758 + 0.057584103 15.32353306 1.23200631 1.081925511 13.22620201 0.72307736 0.58581507 13.19764423 0.9090156 + 0.63081473 11.43884754 1.12309802 1.068632722 11.50035191 0.70917284 1.23555243 11.60597801 0.18991897 + 1.22095633 11.65394783 -0.25390083 1.015830755 11.70467091 -0.4960441 0.65814 11.78033638 -0.65890759 + 0.27378789 11.86323357 -0.7705403 1.68814898 13.74210835 0.090414733 1.56221545 13.5593462 0.24625073 + 1.46722066 13.38139629 0.34132594 1.42310202 12.95831966 0.36827761 1.38071537 12.72755527 0.17464396 + 1.38477838 12.73019505 -0.21307436 1.33220363 12.7700634 -0.58143711 1.24390209 13.10765934 -0.77052492 + 1.38637805 13.47476959 -0.8116039 1.60280752 13.76541233 -0.71784103 1.75288999 13.88460732 -0.53190112 + 1.75988698 13.86080265 -0.14744635 2.12081337 13.16247082 0.088218488 1.85964203 13.13962746 0.23887132 + 1.64585412 13.097286224 0.23086295 1.53739405 13.061156273 0.075328499 1.49190664 13.0062255859 -0.24406725 + 1.4279381 13.095623016 -0.5679059 1.63955212 13.20402145 -0.75047755 1.9554981 13.20776081 -0.7330448 + 2.20664024 13.20668316 -0.54713988 2.23509717 13.21768951 -0.17654385 1.2077837 12.9069252 -0.72248197; + setAttr -s 4488 ".ed"; + setAttr ".ed[0:165]" 0 1 0 1 9 1 9 8 1 8 0 1 1 2 0 2 10 1 10 9 1 2 3 0 3 11 1 + 11 10 1 3 4 0 4 12 1 12 11 1 4 5 0 5 13 1 13 12 1 5 6 0 6 14 1 14 13 1 6 7 0 7 15 1 + 15 14 1 7 0 0 8 15 1 9 16 1 16 8 1 10 16 1 11 16 1 12 16 1 13 16 1 14 16 1 15 16 1 + 36 18 0 18 26 1 26 35 0 35 36 1 18 33 0 33 34 1 34 26 0 19 20 0 20 28 1 28 27 0 27 19 1 + 20 21 0 21 29 1 29 28 0 21 37 0 37 38 1 38 29 0 22 39 0 39 40 1 40 30 0 30 22 1 23 24 0 + 24 32 1 32 31 0 31 23 1 24 17 0 17 25 1 25 32 0 33 19 0 27 34 0 17 36 0 35 25 0 37 22 0 + 30 38 0 39 23 0 31 40 0 41 42 0 42 50 1 50 49 1 49 41 1 42 43 0 43 51 1 51 50 1 43 44 0 + 44 52 1 52 51 1 44 45 0 45 53 1 53 52 1 45 46 0 46 54 1 54 53 1 46 47 0 47 55 1 55 54 1 + 47 48 0 48 56 1 56 55 1 48 41 0 49 56 1 50 57 1 57 49 1 51 57 1 52 57 1 53 57 1 54 57 1 + 55 57 1 56 57 1 58 59 0 59 67 1 67 66 1 66 58 1 59 60 0 60 68 1 68 67 1 60 61 0 61 69 1 + 69 68 1 61 62 0 62 70 1 70 69 1 62 63 0 63 71 1 71 70 1 63 64 0 64 72 1 72 71 1 64 65 0 + 65 73 1 73 72 1 65 58 0 66 73 1 67 74 1 74 66 1 68 74 1 69 74 1 70 74 1 71 74 1 72 74 1 + 73 74 1 75 76 0 76 84 1 84 83 1 83 75 1 76 77 0 77 85 1 85 84 1 77 78 0 78 86 1 86 85 1 + 78 79 0 79 87 1 87 86 1 79 80 0 80 88 1 88 87 1 80 81 0 81 89 1 89 88 1 81 82 0 82 90 1 + 90 89 1 82 75 0 83 90 1 84 91 1 91 83 1 85 91 1 86 91 1 87 91 1 88 91 1 89 91 1 90 91 1 + 135 1103 1 1103 1104 1; + setAttr ".ed[166:331]" 1104 134 1 134 135 1 138 137 1 137 141 1 141 140 1 140 138 1 + 96 248 1 248 139 1 139 95 1 95 96 1 135 138 1 138 165 1 165 1103 1 140 168 1 168 165 1 + 125 1115 1 1115 94 1 94 125 1 249 250 1 250 140 1 141 249 1 250 237 1 237 168 1 135 136 1 + 136 137 1 127 142 1 142 92 1 92 127 1 240 93 1 93 92 1 92 239 1 239 240 1 240 238 1 + 238 97 1 97 93 1 225 251 1 251 252 1 252 235 1 235 225 1 251 254 1 254 255 1 255 252 1 + 218 228 1 228 227 1 227 217 1 217 218 1 179 256 1 256 255 1 255 227 1 227 179 1 228 188 1 + 188 179 1 256 253 1 253 252 1 253 187 1 187 235 1 254 217 1 184 183 1 183 180 1 180 181 1 + 181 184 1 223 233 1 233 232 1 232 222 1 222 223 1 181 232 1 233 184 1 233 234 1 234 186 1 + 186 184 1 186 187 1 187 183 1 228 229 1 229 189 1 189 188 1 234 235 1 189 210 1 210 211 1 + 211 188 1 220 230 1 230 229 1 229 219 1 219 220 1 218 219 1 193 202 1 202 206 1 206 192 1 + 192 193 1 230 210 1 182 196 1 196 195 1 195 182 1 207 190 1 190 196 1 182 207 1 202 190 1 + 207 206 1 180 209 1 209 208 1 208 181 1 208 231 1 231 232 1 231 221 1 221 222 1 231 230 1 + 220 221 1 208 210 1 209 211 1 238 197 1 197 168 1 237 238 1 237 98 1 98 97 1 197 166 1 + 166 165 1 177 1103 1 166 177 1 250 125 1 125 98 1 215 199 1 199 178 1 178 214 1 214 215 1 + 213 154 1 154 212 1 212 185 1 185 213 1 213 152 1 152 157 1 157 154 1 154 163 1 163 155 1 + 155 212 1 161 247 1 247 151 1 151 160 1 160 161 1 178 175 1 175 145 1 145 214 1 175 153 1 + 153 148 1 148 145 1 1102 1104 1 177 1102 1 164 158 1 158 173 1 173 226 1 226 164 1 + 171 193 1 193 173 1 173 1068 1 1068 171 1 158 162 1 162 1068 1 215 176 1 176 200 1 + 200 199 1 151 153 1 175 160 1 1105 239 1 239 143 1 143 1105 1 172 1068 1 162 174 1 + 174 172 1; + setAttr ".ed[332:497]" 236 134 1 1104 1106 1 1106 236 1 156 144 1 144 174 1 + 162 156 1 158 159 1 159 156 1 164 163 1 163 159 1 157 159 1 157 161 1 161 156 1 160 144 1 + 164 169 1 169 155 1 178 144 1 199 174 1 244 153 1 151 245 1 245 244 1 166 149 1 149 176 1 + 176 177 1 244 241 1 241 148 1 201 200 1 149 201 1 247 246 1 246 245 1 194 213 1 185 194 1 + 196 152 1 194 196 1 205 201 1 149 198 1 198 205 1 146 147 1 147 205 1 198 146 1 197 198 1 + 197 167 1 167 146 1 171 203 1 203 202 1 203 191 1 191 190 1 204 170 1 170 201 1 205 204 1 + 171 170 1 204 203 1 150 191 1 204 150 1 147 150 1 234 224 1 224 225 1 223 224 1 194 195 1 + 170 172 1 172 200 1 192 226 1 241 243 1 243 242 1 242 148 1 254 155 1 169 217 1 218 216 1 + 216 192 1 192 219 1 206 220 1 207 221 1 182 222 1 195 223 1 194 224 1 185 225 1 212 251 1 + 248 134 1 236 139 1 236 143 1 143 142 1 142 139 1 1106 1105 1 241 146 1 167 243 1 + 244 147 1 245 150 1 246 191 1 246 196 1 247 152 1 493 464 1 464 479 1 479 494 1 494 493 1 + 477 476 1 476 469 1 469 473 1 473 477 1 465 479 1 479 263 1 263 466 1 466 465 1 496 264 1 + 264 478 1 478 495 1 495 496 1 478 477 1 473 474 1 474 478 1 497 465 1 466 265 1 265 497 1 + 495 465 1 497 496 1 262 454 1 454 474 1 473 262 1 469 428 1 428 262 1 477 455 1 455 381 1 + 381 476 1 467 466 1 263 472 1 472 467 1 471 468 1 468 467 1 472 471 1 380 467 1 468 266 1 + 266 380 1 468 475 1 475 382 1 382 266 1 475 476 1 381 382 1 470 475 1 471 470 1 470 469 1 + 1085 1084 1 1084 484 1 484 485 1 485 1085 1 1088 261 1 261 464 1 464 1074 1 1074 1088 1 + 493 1075 1 1075 1074 1 493 454 1 454 1076 1 1076 1075 1 258 1079 1 1079 1078 1 1078 257 1 + 257 258 1 485 260 1 260 1086 1 1086 1085 1 260 433 1 433 1087 1 1087 1086 1 1084 1083 1 + 1083 483 1 483 484 1 1083 1082 1; + setAttr ".ed[498:663]" 1082 482 1 482 483 1 445 304 1 304 313 1 313 452 1 452 445 1 + 428 429 1 429 257 1 257 262 1 429 430 1 430 258 1 260 434 1 434 379 1 379 433 1 378 472 1 + 263 261 1 261 378 1 481 259 1 259 431 1 431 480 1 480 481 1 267 471 1 378 267 1 378 379 1 + 379 268 1 268 267 1 383 470 1 267 383 1 268 384 1 384 383 1 259 258 1 430 431 1 485 437 1 + 437 434 1 437 386 1 386 435 1 435 434 1 386 385 1 385 436 1 436 435 1 483 438 1 438 439 1 + 439 484 1 438 386 1 437 439 1 482 387 1 387 438 1 387 385 1 480 387 1 482 481 1 430 436 1 + 385 431 1 384 429 1 428 383 1 320 388 1 388 391 1 391 321 1 321 320 1 284 322 1 322 391 1 + 388 284 1 369 416 1 416 413 1 413 361 1 361 369 1 416 370 1 370 363 1 363 413 1 426 326 1 + 326 323 1 323 427 1 427 426 1 327 426 1 427 274 1 274 327 1 283 444 1 444 432 1 432 283 1 + 462 461 1 461 441 1 441 442 1 442 462 1 304 459 1 459 458 1 458 306 1 306 304 1 392 308 1 + 308 283 1 432 392 1 306 309 1 309 313 1 441 440 1 440 445 1 445 286 1 286 441 1 461 460 1 + 460 440 1 308 309 1 306 283 1 286 319 1 319 442 1 458 457 1 457 283 1 444 456 1 456 463 1 + 463 443 1 443 444 1 463 462 1 442 443 1 448 432 1 443 448 1 319 448 1 457 456 1 460 459 1 + 304 440 1 316 461 1 462 285 1 285 316 1 285 1110 1 1110 314 1 314 316 1 315 1112 1 + 1112 307 1 307 305 1 305 315 1 307 458 1 459 305 1 284 457 1 307 284 1 456 388 1 + 320 463 1 320 285 1 321 1110 1 1112 322 1 344 348 1 348 347 1 347 354 1 354 344 1 + 390 460 1 316 390 1 390 305 1 389 390 1 314 389 1 389 315 1 391 1111 1 1111 1110 1 + 1112 1111 1 282 392 1 392 393 1 393 279 1 279 282 1 392 399 1 399 308 1 282 399 1 + 279 310 1 310 318 1 318 282 1 295 303 1 303 318 1 310 295 1 449 452 1 452 303 1 295 449 1 + 446 407 1 407 353 1 353 303 1; + setAttr ".ed[664:829]" 303 446 1 353 342 1 342 318 1 313 355 1 355 407 1 446 313 1 + 310 335 1 335 296 1 296 295 1 359 282 1 342 359 1 342 343 1 343 358 1 358 359 1 353 352 1 + 352 343 1 309 345 1 345 355 1 308 357 1 357 345 1 407 406 1 406 352 1 355 354 1 354 406 1 + 399 409 1 409 357 1 359 409 1 356 349 1 349 348 1 344 356 1 343 351 1 351 350 1 350 358 1 + 352 346 1 346 351 1 345 344 1 357 356 1 406 403 1 403 346 1 347 403 1 409 408 1 408 356 1 + 358 408 1 403 404 1 404 351 1 348 404 1 349 405 1 405 404 1 405 350 1 408 405 1 276 394 1 + 394 393 1 393 276 1 394 279 1 410 275 1 275 276 1 393 410 1 275 336 1 336 317 1 317 276 1 + 298 317 1 336 301 1 301 298 1 336 374 1 374 364 1 364 301 1 296 397 1 397 447 1 447 295 1 + 397 299 1 299 298 1 298 447 1 279 280 1 280 335 1 299 341 1 341 317 1 395 394 1 276 277 1 + 277 395 1 278 396 1 396 395 1 277 278 1 395 280 1 396 281 1 281 280 1 297 398 1 398 397 1 + 296 297 1 398 300 1 300 299 1 281 339 1 339 335 1 339 297 1 300 340 1 340 341 1 277 341 1 + 340 278 1 375 374 1 374 362 1 362 363 1 363 375 1 365 364 1 375 365 1 330 400 1 400 396 1 + 278 330 1 297 333 1 333 402 1 402 398 1 402 334 1 334 300 1 329 340 1 334 329 1 329 330 1 + 331 332 1 332 339 1 281 331 1 332 333 1 400 331 1 400 401 1 401 332 1 329 401 1 402 401 1 + 419 270 1 270 269 1 269 410 1 410 419 1 338 311 1 311 293 1 293 337 1 337 338 1 453 451 1 + 451 337 1 293 453 1 1081 481 1 1082 1081 1 269 411 1 411 410 1 411 275 1 270 311 1 + 338 269 1 412 411 1 269 360 1 360 412 1 412 362 1 362 275 1 338 377 1 377 360 1 366 377 1 + 337 366 1 364 414 1 414 450 1 450 301 1 337 450 1 414 366 1 413 412 1 360 361 1 365 415 1 + 415 414 1 415 367 1 367 366 1 368 376 1 376 367 1 367 373 1 373 368 1 361 376 1; + setAttr ".ed[830:995]" 368 369 1 372 365 1 375 371 1 371 372 1 370 371 1 418 415 1 + 372 418 1 418 373 1 376 377 1 416 417 1 417 371 1 368 417 1 418 417 1 290 291 1 291 288 1 + 288 287 1 287 290 1 293 422 1 422 486 1 486 453 1 272 420 1 420 419 1 419 271 1 271 272 1 + 288 272 1 271 287 1 420 421 1 421 492 1 492 270 1 270 420 1 273 421 1 272 273 1 288 487 1 + 487 273 1 291 488 1 488 487 1 289 487 1 488 292 1 292 289 1 293 490 1 490 489 1 489 422 1 + 423 489 1 490 294 1 294 423 1 492 491 1 491 311 1 491 490 1 491 312 1 312 294 1 489 488 1 + 291 422 1 423 292 1 423 424 1 424 302 1 302 292 1 492 323 1 323 312 1 421 427 1 312 325 1 + 325 324 1 324 294 1 326 325 1 324 424 1 302 328 1 328 289 1 328 327 1 274 289 1 273 274 1 + 424 425 1 425 328 1 325 425 1 426 425 1 496 256 1 179 264 1 253 497 1 265 187 1 265 380 1 + 380 183 1 188 455 1 455 264 1 266 180 1 211 381 1 382 209 1 261 433 1 435 268 1 436 384 1 + 451 449 1 449 298 1 301 451 1 1088 1087 1 494 474 1 494 495 1 1081 1080 1 1080 259 1 + 290 486 1 129 1137 1 1137 508 1 508 101 1 101 129 1 1128 1138 1 1138 1139 1 1139 509 1 + 509 1128 1 1138 1127 1 1127 1098 1 1098 1139 1 129 124 1 124 1097 1 1097 1137 1 1140 503 1 + 503 499 1 499 1141 1 1141 1140 1 500 1141 1 1141 1142 1 1142 510 1 510 500 1 503 1099 1 + 1099 501 1 501 499 1 124 99 1 99 498 1 498 1097 1 1098 503 1 1140 1139 1 502 525 1 + 525 1099 1 503 502 1 507 510 1 510 504 1 504 509 1 509 507 1 1129 1128 1 504 1129 1 + 508 505 1 505 100 1 100 101 1 528 112 1 112 102 1 102 511 1 511 528 1 117 1029 1 + 1029 511 1 102 117 1 104 111 1 111 526 1 526 516 1 516 104 1 522 523 1 523 513 1 + 513 522 1 1072 527 1 527 1071 1 1071 1135 1 1135 1072 1 1071 532 1 532 1136 1 1136 1135 1 + 520 522 1 522 114 1 114 105 1 105 520 1 514 1132 1 1132 1131 1 1131 519 1; + setAttr ".ed[996:1161]" 519 514 1 1147 526 1 111 130 1 130 1147 1 1131 1130 1 + 1130 517 1 517 519 1 105 106 1 106 518 1 518 520 1 1130 1129 1 504 517 1 519 521 1 + 521 1073 1 1073 514 1 1069 534 1 534 533 1 533 1070 1 1070 1069 1 110 533 1 534 108 1 + 108 110 1 516 515 1 515 109 1 109 104 1 528 498 1 99 112 1 534 535 1 535 113 1 113 108 1 + 1073 1133 1 1133 1132 1 533 532 1 1071 1070 1 513 103 1 103 114 1 505 518 1 106 100 1 + 532 107 1 107 128 1 128 1136 1 110 107 1 564 1010 1 1010 1016 1 1016 541 1 541 564 1 + 537 544 1 544 539 1 539 540 1 540 537 1 538 585 1 585 544 1 537 538 1 539 543 1 543 542 1 + 542 540 1 543 541 1 541 536 1 536 542 1 544 556 1 556 566 1 566 539 1 575 564 1 543 575 1 + 566 575 1 572 571 1 571 551 1 551 554 1 554 572 1 579 560 1 560 545 1 545 581 1 581 579 1 + 579 557 1 557 584 1 584 560 1 580 578 1 578 557 1 579 580 1 583 562 1 562 563 1 563 574 1 + 574 583 1 573 561 1 561 562 1 583 573 1 540 548 1 548 565 1 565 537 1 545 586 1 586 568 1 + 568 581 1 586 547 1 547 567 1 567 568 1 567 558 1 558 559 1 559 567 1 567 549 1 549 550 1 + 550 568 1 536 552 1 552 569 1 569 542 1 573 572 1 554 561 1 552 553 1 553 570 1 570 569 1 + 567 565 1 548 558 1 555 565 1 547 555 1 555 538 1 571 570 1 553 551 1 557 556 1 556 546 1 + 546 584 1 581 582 1 582 580 1 575 577 1 577 576 1 576 564 1 563 576 1 577 574 1 578 566 1 + 569 548 1 570 558 1 571 559 1 549 559 1 572 549 1 573 550 1 585 546 1 550 582 1 574 580 1 + 582 583 1 578 577 1 1001 965 1 965 964 1 964 1002 1 1002 1001 1 1108 1002 1 964 1109 1 + 1109 1108 1 987 986 1 986 927 1 927 591 1 591 987 1 989 988 1 988 593 1 593 590 1 + 590 989 1 612 953 1 953 990 1 990 612 1 988 987 1 591 593 1 595 939 1 939 601 1 601 595 1 + 1067 952 1 952 953 1 612 1067 1 937 936 1 936 616 1; + setAttr ".ed[1162:1327]" 616 600 1 600 937 1 609 619 1 619 617 1 617 600 1 600 609 1 + 597 621 1 621 620 1 620 596 1 596 597 1 601 742 1 742 740 1 740 595 1 939 938 1 938 602 1 + 602 601 1 938 604 1 604 603 1 603 602 1 939 927 1 927 605 1 605 938 1 605 606 1 606 604 1 + 589 984 1 984 985 1 985 588 1 588 589 1 985 986 1 986 946 1 946 588 1 985 605 1 984 606 1 + 587 1019 1 1019 954 1 954 613 1 613 587 1 616 594 1 594 592 1 592 600 1 620 619 1 + 609 596 1 954 990 1 953 950 1 950 954 1 1020 992 1 992 991 1 991 1019 1 1019 1020 1 + 950 1096 1 1096 1095 1 1095 615 1 615 950 1 952 1090 1 1090 1089 1 1089 953 1 1067 1066 1 + 1066 951 1 951 952 1 951 1091 1 1091 1090 1 618 937 1 617 618 1 617 624 1 624 622 1 + 622 618 1 619 625 1 625 624 1 620 657 1 657 625 1 623 657 1 621 623 1 624 626 1 626 627 1 + 627 622 1 657 629 1 629 628 1 628 625 1 623 630 1 630 629 1 626 631 1 631 632 1 632 627 1 + 626 628 1 628 633 1 633 631 1 629 634 1 634 633 1 630 635 1 635 634 1 631 638 1 638 636 1 + 636 632 1 633 639 1 639 638 1 634 640 1 640 639 1 637 640 1 635 637 1 641 647 1 647 656 1 + 656 642 1 642 641 1 642 643 1 643 644 1 644 641 1 643 645 1 645 646 1 646 644 1 645 655 1 + 655 648 1 648 646 1 638 650 1 650 651 1 651 636 1 650 652 1 652 649 1 649 648 1 648 650 1 + 653 640 1 637 654 1 654 653 1 653 652 1 652 639 1 644 649 1 649 647 1 653 647 1 655 651 1 + 654 656 1 599 607 1 607 934 1 934 935 1 935 599 1 942 941 1 941 614 1 614 608 1 608 942 1 + 943 942 1 608 611 1 611 943 1 599 661 1 661 660 1 660 943 1 943 599 1 659 941 1 942 658 1 + 658 659 1 660 658 1 935 662 1 662 661 1 658 665 1 665 663 1 663 659 1 666 665 1 660 666 1 + 661 667 1 667 666 1 664 667 1 662 664 1 665 668 1 668 669 1 669 663 1 670 668 1 666 670 1 + 667 671 1 671 670 1; + setAttr ".ed[1328:1493]" 664 672 1 672 671 1 668 673 1 673 674 1 674 669 1 675 673 1 + 670 675 1 671 676 1 676 675 1 672 677 1 677 676 1 673 680 1 680 678 1 678 674 1 681 680 1 + 675 681 1 676 682 1 682 681 1 679 682 1 677 679 1 683 692 1 692 691 1 691 684 1 684 683 1 + 686 690 1 690 689 1 689 685 1 685 686 1 687 686 1 685 688 1 688 687 1 688 683 1 684 687 1 + 688 693 1 693 692 1 680 694 1 694 695 1 695 678 1 696 694 1 681 696 1 682 697 1 697 696 1 + 679 698 1 698 697 1 690 695 1 694 689 1 693 689 1 696 693 1 697 692 1 698 691 1 616 702 1 + 702 701 1 701 610 1 610 616 1 701 699 1 699 607 1 607 610 1 699 700 1 700 934 1 936 703 1 + 703 702 1 699 706 1 706 704 1 704 700 1 701 707 1 707 706 1 702 708 1 708 707 1 705 708 1 + 703 705 1 709 721 1 721 711 1 711 710 1 710 709 1 712 722 1 722 721 1 709 712 1 713 723 1 + 723 722 1 712 713 1 714 723 1 713 715 1 715 714 1 706 716 1 716 717 1 717 704 1 707 718 1 + 718 716 1 708 719 1 719 718 1 705 720 1 720 719 1 716 709 1 710 717 1 718 712 1 719 713 1 + 720 715 1 725 737 1 737 732 1 732 724 1 724 725 1 724 727 1 727 726 1 726 725 1 727 729 1 + 729 728 1 728 726 1 729 730 1 730 738 1 738 728 1 733 734 1 734 731 1 731 732 1 732 733 1 + 734 735 1 735 730 1 730 731 1 736 733 1 737 736 1 735 739 1 739 738 1 721 733 1 736 711 1 + 722 734 1 723 735 1 714 739 1 731 727 1 741 598 1 598 595 1 740 741 1 602 743 1 743 742 1 + 744 743 1 603 744 1 740 747 1 747 745 1 745 741 1 742 748 1 748 747 1 743 749 1 749 748 1 + 746 749 1 744 746 1 747 750 1 750 751 1 751 745 1 748 752 1 752 750 1 749 753 1 753 752 1 + 746 754 1 754 753 1 750 755 1 755 759 1 759 751 1 752 756 1 756 755 1 753 757 1 757 756 1 + 754 758 1 758 757 1 755 931 1 931 760 1 760 759 1 932 931 1 756 932 1; + setAttr ".ed[1494:1659]" 757 933 1 933 932 1 761 933 1 758 761 1 762 768 1 768 770 1 + 770 763 1 763 762 1 763 764 1 764 765 1 765 762 1 764 766 1 766 767 1 767 765 1 766 773 1 + 773 774 1 774 767 1 768 776 1 776 777 1 777 769 1 769 768 1 769 771 1 771 770 1 772 775 1 + 775 774 1 773 772 1 775 777 1 776 774 1 931 775 1 772 760 1 932 777 1 933 769 1 761 771 1 + 765 776 1 781 778 1 778 994 1 994 993 1 993 781 1 993 1000 1 1000 779 1 779 781 1 + 780 779 1 1000 999 1 999 780 1 782 797 1 797 796 1 796 783 1 783 782 1 786 782 1 + 783 785 1 785 786 1 786 784 1 784 972 1 972 788 1 788 786 1 787 792 1 792 797 1 797 788 1 + 788 787 1 791 790 1 790 789 1 789 787 1 787 791 1 789 793 1 793 792 1 793 795 1 795 794 1 + 794 792 1 794 796 1 972 791 1 972 921 1 921 914 1 914 791 1 784 924 1 924 921 1 781 789 1 + 790 778 1 779 793 1 780 795 1 785 924 1 930 929 1 929 988 1 989 930 1 999 998 1 998 913 1 + 913 780 1 1003 1007 1 1007 969 1 969 968 1 968 1003 1 798 799 1 799 969 1 969 970 1 + 970 798 1 1004 1008 1 1008 971 1 971 970 1 970 1004 1 1006 1005 1 1005 967 1 967 966 1 + 966 1006 1 800 967 1 967 968 1 968 801 1 801 800 1 800 589 1 589 966 1 826 824 1 + 824 799 1 798 826 1 806 819 1 819 820 1 820 805 1 805 806 1 806 813 1 813 944 1 944 819 1 + 803 808 1 808 805 1 805 803 1 808 807 1 807 806 1 806 808 1 937 810 1 810 809 1 809 936 1 + 813 812 1 812 811 1 811 816 1 816 813 1 806 809 1 810 813 1 934 808 1 803 935 1 802 823 1 + 823 940 1 940 804 1 804 802 1 810 814 1 814 813 1 815 816 1 811 815 1 817 816 1 815 818 1 + 818 817 1 817 822 1 822 821 1 821 816 1 800 983 1 983 984 1 982 981 1 981 944 1 944 821 1 + 821 982 1 983 822 1 822 606 1 983 982 1 597 812 1 812 830 1 830 621 1 618 829 1 829 810 1 + 604 817 1 818 603 1 811 891 1; + setAttr ".ed[1660:1825]" 891 890 1 890 815 1 890 892 1 892 818 1 978 1065 1 1065 820 1 + 820 979 1 979 978 1 827 825 1 825 824 1 826 827 1 978 951 1 1066 1065 1 613 826 1 + 798 587 1 613 615 1 615 827 1 1094 1093 1 1093 825 1 827 1094 1 1095 1094 1 598 811 1 + 597 598 1 841 828 1 828 829 1 829 831 1 831 841 1 841 832 1 832 830 1 830 828 1 833 841 1 + 831 834 1 834 833 1 833 835 1 835 832 1 834 837 1 837 836 1 836 833 1 836 838 1 838 835 1 + 848 836 1 837 839 1 839 848 1 848 840 1 840 838 1 848 843 1 843 842 1 842 840 1 844 843 1 + 839 844 1 846 958 1 958 959 1 959 845 1 845 846 1 959 960 1 960 847 1 847 845 1 622 831 1 + 832 623 1 627 834 1 835 630 1 632 837 1 838 635 1 636 839 1 840 637 1 642 960 1 959 643 1 + 958 645 1 654 842 1 842 847 1 847 656 1 651 844 1 846 655 1 843 845 1 844 846 1 803 851 1 + 851 662 1 941 940 1 823 614 1 940 850 1 850 849 1 849 804 1 850 852 1 852 862 1 862 849 1 + 862 853 1 853 851 1 851 849 1 852 855 1 855 854 1 854 862 1 854 856 1 856 853 1 855 858 1 + 858 857 1 857 854 1 857 859 1 859 856 1 858 860 1 860 869 1 869 857 1 869 861 1 861 859 1 + 864 863 1 863 947 1 947 948 1 948 864 1 948 949 1 949 865 1 865 864 1 860 867 1 867 866 1 + 866 869 1 866 868 1 868 861 1 867 863 1 864 866 1 865 868 1 659 850 1 663 852 1 853 664 1 + 669 855 1 856 672 1 674 858 1 859 677 1 678 860 1 861 679 1 947 686 1 687 948 1 684 949 1 + 863 690 1 695 867 1 868 698 1 865 691 1 700 871 1 871 808 1 809 872 1 872 703 1 926 870 1 + 870 871 1 871 873 1 873 926 1 926 874 1 874 872 1 872 870 1 889 875 1 875 877 1 877 876 1 + 876 889 1 889 879 1 879 878 1 878 875 1 880 926 1 873 881 1 881 880 1 880 882 1 882 874 1 + 881 877 1 875 880 1 878 882 1 883 888 1 888 887 1 887 884 1 884 883 1 885 887 1 888 886 1; + setAttr ".ed[1826:1991]" 886 885 1 887 889 1 876 884 1 885 879 1 883 955 1 955 956 1 + 956 888 1 956 957 1 957 886 1 704 873 1 874 705 1 711 876 1 877 710 1 715 878 1 879 714 1 + 717 881 1 882 720 1 726 956 1 955 725 1 728 957 1 737 883 1 884 736 1 885 739 1 738 886 1 + 903 890 1 891 893 1 893 903 1 903 894 1 894 892 1 895 903 1 893 896 1 896 895 1 895 897 1 + 897 894 1 896 899 1 899 898 1 898 895 1 898 900 1 900 897 1 910 898 1 899 901 1 901 910 1 + 910 902 1 902 900 1 904 907 1 907 906 1 906 905 1 905 904 1 907 909 1 909 908 1 908 906 1 + 908 963 1 963 962 1 962 906 1 962 961 1 961 905 1 907 910 1 901 909 1 904 902 1 892 744 1 + 745 893 1 891 741 1 894 746 1 751 896 1 897 754 1 759 899 1 900 758 1 760 901 1 902 761 1 + 771 904 1 905 770 1 773 908 1 909 772 1 766 963 1 961 763 1 977 997 1 997 996 1 996 911 1 + 911 977 1 977 913 1 998 997 1 912 911 1 996 995 1 995 912 1 911 916 1 916 976 1 976 977 1 + 976 918 1 918 913 1 914 917 1 917 916 1 916 915 1 915 914 1 917 975 1 975 976 1 975 919 1 + 919 918 1 917 920 1 920 974 1 974 975 1 921 920 1 974 922 1 922 919 1 920 923 1 923 973 1 + 973 974 1 924 923 1 973 925 1 925 922 1 918 795 1 796 922 1 925 783 1 973 785 1 915 790 1 + 919 794 1 915 912 1 912 778 1 995 994 1 969 945 1 945 801 1 592 591 1 939 592 1 930 991 1 + 992 930 1 801 982 1 608 612 1 612 590 1 590 611 1 611 599 1 593 594 1 594 611 1 945 981 1 + 596 595 1 981 980 1 980 819 1 945 799 1 799 980 1 1001 1006 1 966 965 1 1007 1004 1 + 1005 1003 1 978 825 1 1093 1092 1 1092 978 1 979 824 1 1089 1096 1 962 764 1 1008 1021 1 + 1021 1020 1 1020 971 1 587 971 1 979 980 1 987 928 1 928 946 1 929 928 1 989 990 1 + 990 991 1 1108 1107 1 1107 1014 1 1014 1002 1 1007 1011 1 1011 1009 1 1009 1004 1 + 1015 1022 1 1022 1021 1 1008 1015 1; + setAttr ".ed[1992:2157]" 1012 1006 1 1001 1013 1 1013 1012 1 1014 1013 1 1011 576 1 + 563 1009 1 1013 552 1 536 1012 1 1016 1012 1 1016 1005 1 1010 1003 1 1009 1015 1 + 1011 1010 1 1015 562 1 561 1022 1 553 1014 1 1107 551 1 554 1017 1 1017 1022 1 1017 1018 1 + 1018 1021 1 1018 992 1 1026 1114 1 1114 535 1 535 531 1 531 1026 1 115 1114 1 1026 1025 1 + 1025 115 1 1061 1060 1 1060 1149 1 1149 1148 1 1148 1061 1 1158 1049 1 1049 1159 1 + 1159 1158 1 1150 132 1 132 121 1 121 1064 1 1064 1150 1 1153 1152 1 1152 1034 1 1034 1031 1 + 1031 1153 1 1148 1046 1 1046 1042 1 1042 1061 1 1049 1050 1 1050 1160 1 1160 1159 1 + 1030 1154 1 1154 1153 1 1031 1030 1 1162 1045 1 1045 1048 1 1048 1163 1 1163 1162 1 + 1061 1032 1 1032 1064 1 1064 1060 1 118 1033 1 1033 1029 1 117 118 1 131 1149 1 1060 119 1 + 119 131 1 1113 1033 1 118 126 1 126 1113 1 1053 1045 1 1162 1161 1 1161 1053 1 1152 1151 1 + 1151 1032 1 1032 1034 1 1151 1150 1 1167 1166 1 1166 1044 1 1044 1035 1 1035 1167 1 + 1041 1171 1 1171 1170 1 1170 1041 1 1054 1039 1 1039 1173 1 1173 1172 1 1172 1054 1 + 584 1054 1 1054 1041 1 1041 560 1 1172 1171 1 1051 545 1 1041 1051 1 1178 1052 1 + 1052 1051 1 1051 1169 1 1169 1178 1 1040 1177 1 1177 1176 1 1176 1043 1 1043 1040 1 + 1038 1037 1 1037 585 1 538 1038 1 555 1043 1 1043 1038 1 547 1040 1 546 1039 1 1178 1177 1 + 1040 1052 1 1039 1037 1 1037 1174 1 1174 1173 1 1175 1174 1 1038 1175 1 1166 1165 1 + 1165 1047 1 1047 1044 1 121 119 1 1176 1175 1 1170 1169 1 133 1156 1 1156 1062 1 + 1062 122 1 122 133 1 1050 1053 1 1161 1160 1 248 1059 1 1059 1056 1 1056 136 1 136 248 1 + 96 120 1 120 1059 1 1056 1057 1 1057 137 1 1057 1058 1 1058 141 1 1063 1116 1 1116 1115 1 + 1115 249 1 249 1063 1 1042 1034 1 1155 1154 1 1030 1117 1 1117 1155 1 1164 1048 1 + 1048 1047 1 1165 1164 1 1058 1063 1 586 1052 1 812 814 1 814 828 1 809 807 1 807 870 1 + 803 804 1 1065 802 1 802 805 1 1066 823 1 1067 614 1 1092 1091 1 588 965 1 1147 1146 1 + 1146 516 1 1144 1072 1 1072 1134 1 1134 1145 1; + setAttr ".ed[2158:2323]" 1145 1144 1 1078 1077 1 1077 262 1 1080 1079 1 1077 1076 1 + 169 216 1 1070 524 1 524 525 1 525 1069 1 527 524 1 1069 531 1 226 216 1 240 243 1 + 167 238 1 392 1074 1 1075 392 1 410 1075 1 1076 410 1 1077 271 1 419 1076 1 1078 287 1 + 1079 290 1 1080 486 1 1081 453 1 1082 451 1 1083 449 1 1084 452 1 1085 445 1 1086 286 1 + 1087 319 1 1088 448 1 1074 432 1 1090 999 1 1000 1089 1 1091 998 1 1092 997 1 1093 996 1 + 1094 995 1 1095 994 1 1096 993 1 507 500 1 524 501 1 1075 393 1 451 450 1 449 447 1 + 452 446 1 242 1100 1 1100 145 1 1101 214 1 1100 1101 1 1101 1102 1 1102 215 1 239 242 1 + 1105 1100 1 1106 1101 1 1107 1017 1 1108 1018 1 1109 992 1 929 1109 1 964 928 1 965 946 1 + 594 607 1 594 610 1 592 609 1 592 596 1 1111 389 1 1142 1143 1 1143 521 1 521 510 1 + 1164 1179 1 1179 1163 1 1062 1113 1 126 122 1 1114 116 1 116 113 1 127 95 1 1116 123 1 + 123 94 1 1156 1155 1 1117 1062 1 1118 1113 1 1117 1118 1 1118 1119 1 1119 1033 1 + 1119 1120 1 1120 1029 1 1120 1121 1 1121 511 1 1024 1124 1 1124 1046 1 1046 1024 1 + 1097 1127 1 1138 1137 1 1128 508 1 1129 505 1 1130 518 1 1131 520 1 1132 522 1 1133 523 1 + 1146 1145 1 1134 516 1 1135 1134 1 515 1136 1 128 109 1 1144 1143 1 1143 527 1 501 1142 1 + 1140 507 1 1145 1133 1 1073 1144 1 1146 523 1 1147 513 1 130 103 1 510 517 1 525 531 1 + 1149 1025 1 1025 1023 1 1023 1148 1 131 115 1 1023 1024 1 120 132 1 1150 1059 1 1151 1056 1 + 1152 1057 1 1153 1058 1 1154 1063 1 1155 1116 1 1156 123 1 133 123 1 1126 506 1 506 1098 1 + 1127 1126 1 506 502 1 1028 1027 1 1027 530 1 530 529 1 529 1028 1 1125 528 1 511 512 1 + 512 1125 1 530 502 1 506 529 1 1125 529 1 1126 1125 1 530 531 1 1055 1157 1 1157 1168 1 + 1168 1036 1 1036 1055 1 1027 1026 1 1028 1024 1 1023 1027 1 1168 1167 1 1035 1036 1 + 1055 1049 1 1158 1157 1 1121 1122 1 1122 512 1 1028 512 1 1122 1123 1 1123 1028 1 + 1123 1124 1 1126 498 1 115 116 1 527 501 1 515 1134 1; + setAttr ".ed[2324:2489]" 1123 1157 1 1158 1124 1 1159 1046 1 1160 1042 1 1161 1034 1 + 1162 1031 1 1163 1030 1 1164 1118 1 1117 1179 1 1165 1119 1 1166 1120 1 1167 1121 1 + 1168 1122 1 1055 1169 1 1170 1049 1 1171 1050 1 1172 1053 1 1173 1045 1 1174 1048 1 + 1175 1047 1 1176 1044 1 1177 1035 1 1178 1036 1 1181 1180 1 1180 2150 1 2150 2149 1 + 2149 1181 1 1184 1186 1 1186 1187 1 1187 1183 1 1183 1184 1 95 1185 1 1185 1294 1 + 1294 96 1 2149 1211 1 1211 1184 1 1184 1181 1 1211 1214 1 1214 1186 1 94 2161 1 2161 125 1 + 1295 1187 1 1186 1296 1 1296 1295 1 1214 1283 1 1283 1296 1 1183 1182 1 1182 1181 1 + 92 1188 1 1188 127 1 1286 1285 1 1285 92 1 93 1286 1 97 1284 1 1284 1286 1 1271 1281 1 + 1281 1298 1 1298 1297 1 1297 1271 1 1298 1301 1 1301 1300 1 1300 1297 1 1264 1263 1 + 1263 1273 1 1273 1274 1 1274 1264 1 1225 1273 1 1273 1301 1 1301 1302 1 1302 1225 1 + 1225 1234 1 1234 1274 1 1298 1299 1 1299 1302 1 1281 1233 1 1233 1299 1 1263 1300 1 + 1230 1227 1 1227 1226 1 1226 1229 1 1229 1230 1 1269 1268 1 1268 1278 1 1278 1279 1 + 1279 1269 1 1230 1279 1 1278 1227 1 1230 1232 1 1232 1280 1 1280 1279 1 1229 1233 1 + 1233 1232 1 1234 1235 1 1235 1275 1 1275 1274 1 1281 1280 1 1234 1257 1 1257 1256 1 + 1256 1235 1 1266 1265 1 1265 1275 1 1275 1276 1 1276 1266 1 1265 1264 1 1239 1238 1 + 1238 1252 1 1252 1248 1 1248 1239 1 1256 1276 1 1228 1241 1 1241 1242 1 1242 1228 1 + 1253 1228 1 1242 1236 1 1236 1253 1 1252 1253 1 1236 1248 1 1227 1254 1 1254 1255 1 + 1255 1226 1 1278 1277 1 1277 1254 1 1268 1267 1 1267 1277 1 1267 1266 1 1276 1277 1 + 1256 1254 1 1257 1255 1 1284 1283 1 1214 1243 1 1243 1284 1 98 1283 1 1211 1212 1 + 1212 1243 1 1223 1212 1 2149 1223 1 125 1296 1 1261 1260 1 1260 1224 1 1224 1245 1 + 1245 1261 1 1259 1231 1 1231 1258 1 1258 1200 1 1200 1259 1 1200 1203 1 1203 1198 1 + 1198 1259 1 1258 1201 1 1201 1209 1 1209 1200 1 1207 1206 1 1206 1197 1 1197 1293 1 + 1293 1207 1 1260 1191 1 1191 1221 1 1221 1224 1 1191 1194 1 1194 1199 1 1199 1221 1 + 2148 1223 1 2150 2148 1 1210 1272 1 1272 1219 1 1219 1204 1; + setAttr ".ed[2490:2655]" 1204 1210 1 1217 2114 1 2114 1219 1 1219 1239 1 1239 1217 1 + 2114 1208 1 1208 1204 1 1245 1246 1 1246 1222 1 1222 1261 1 1206 1221 1 1199 1197 1 + 2151 1189 1 1189 1285 1 1285 2151 1 1218 1220 1 1220 1208 1 2114 1218 1 1282 2152 1 + 2152 2150 1 1180 1282 1 1202 1208 1 1220 1190 1 1190 1202 1 1202 1205 1 1205 1204 1 + 1205 1209 1 1209 1210 1 1205 1203 1 1202 1207 1 1207 1203 1 1190 1206 1 1201 1215 1 + 1215 1210 1 1190 1224 1 1220 1245 1 1290 1291 1 1291 1197 1 1199 1290 1 1223 1222 1 + 1222 1195 1 1195 1212 1 1194 1287 1 1287 1290 1 1247 1195 1 1246 1247 1 1291 1292 1 + 1292 1293 1 1240 1231 1 1259 1240 1 1242 1240 1 1198 1242 1 1251 1244 1 1244 1195 1 + 1247 1251 1 1192 1244 1 1251 1193 1 1193 1192 1 1244 1243 1 1192 1213 1 1213 1243 1 + 1248 1249 1 1249 1217 1 1236 1237 1 1237 1249 1 1250 1251 1 1247 1216 1 1216 1250 1 + 1249 1250 1 1216 1217 1 1196 1250 1 1237 1196 1 1196 1193 1 1271 1270 1 1270 1280 1 + 1270 1269 1 1241 1240 1 1246 1218 1 1218 1216 1 1272 1238 1 1194 1288 1 1288 1289 1 + 1289 1287 1 1263 1215 1 1201 1300 1 1265 1238 1 1238 1262 1 1262 1264 1 1266 1252 1 + 1267 1253 1 1268 1228 1 1269 1241 1 1270 1240 1 1271 1231 1 1297 1258 1 1185 1282 1 + 1180 1294 1 1185 1188 1 1188 1189 1 1189 1282 1 2151 2152 1 1289 1213 1 1192 1287 1 + 1193 1290 1 1196 1291 1 1237 1292 1 1242 1292 1 1198 1293 1 1539 1540 1 1540 1525 1 + 1525 1510 1 1510 1539 1 1523 1519 1 1519 1515 1 1515 1522 1 1522 1523 1 1511 1512 1 + 1512 1309 1 1309 1525 1 1525 1511 1 1542 1541 1 1541 1524 1 1524 1310 1 1310 1542 1 + 1524 1520 1 1520 1519 1 1523 1524 1 1543 1311 1 1311 1512 1 1511 1543 1 1542 1543 1 + 1511 1541 1 1308 1519 1 1520 1500 1 1500 1308 1 1308 1474 1 1474 1515 1 1522 1427 1 + 1427 1501 1 1501 1523 1 1513 1518 1 1518 1309 1 1512 1513 1 1517 1518 1 1513 1514 1 + 1514 1517 1 1426 1312 1 1312 1514 1 1513 1426 1 1312 1428 1 1428 1521 1 1521 1514 1 + 1428 1427 1 1522 1521 1 1516 1517 1 1521 1516 1 1515 1516 1 2131 1531 1 1531 1530 1 + 1530 2130 1 2130 2131 1 2134 2120 1 2120 1510 1 1510 1307 1 1307 2134 1 2120 2121 1; + setAttr ".ed[2656:2821]" 2121 1539 1 2121 2122 1 2122 1500 1 1500 1539 1 1304 1303 1 + 1303 2124 1 2124 2125 1 2125 1304 1 2131 2132 1 2132 1306 1 1306 1531 1 2132 2133 1 + 2133 1479 1 1479 1306 1 1530 1529 1 1529 2129 1 2129 2130 1 1529 1528 1 1528 2128 1 + 2128 2129 1 1491 1498 1 1498 1359 1 1359 1350 1 1350 1491 1 1308 1303 1 1303 1475 1 + 1475 1474 1 1304 1476 1 1476 1475 1 1479 1425 1 1425 1480 1 1480 1306 1 1424 1307 1 + 1307 1309 1 1518 1424 1 1527 1526 1 1526 1477 1 1477 1305 1 1305 1527 1 1313 1424 1 + 1517 1313 1 1313 1314 1 1314 1425 1 1425 1424 1 1429 1313 1 1516 1429 1 1429 1430 1 + 1430 1314 1 1477 1476 1 1304 1305 1 1480 1483 1 1483 1531 1 1480 1481 1 1481 1432 1 + 1432 1483 1 1481 1482 1 1482 1431 1 1431 1432 1 1530 1485 1 1485 1484 1 1484 1529 1 + 1485 1483 1 1432 1484 1 1484 1433 1 1433 1528 1 1431 1433 1 1527 1528 1 1433 1526 1 + 1477 1431 1 1482 1476 1 1429 1474 1 1475 1430 1 1366 1367 1 1367 1437 1 1437 1434 1 + 1434 1366 1 1330 1434 1 1437 1368 1 1368 1330 1 1415 1407 1 1407 1459 1 1459 1462 1 + 1462 1415 1 1459 1409 1 1409 1416 1 1416 1462 1 1472 1473 1 1473 1369 1 1369 1372 1 + 1372 1472 1 1373 1320 1 1320 1473 1 1472 1373 1 1329 1478 1 1478 1490 1 1490 1329 1 + 1508 1488 1 1488 1487 1 1487 1507 1 1507 1508 1 1350 1352 1 1352 1504 1 1504 1505 1 + 1505 1350 1 1438 1478 1 1329 1354 1 1354 1438 1 1359 1355 1 1355 1352 1 1487 1332 1 + 1332 1491 1 1491 1486 1 1486 1487 1 1486 1506 1 1506 1507 1 1329 1352 1 1355 1354 1 + 1488 1365 1 1365 1332 1 1329 1503 1 1503 1504 1 1490 1489 1 1489 1509 1 1509 1502 1 + 1502 1490 1 1489 1488 1 1508 1509 1 1494 1489 1 1478 1494 1 1494 1365 1 1502 1503 1 + 1486 1350 1 1505 1506 1 1362 1331 1 1331 1508 1 1507 1362 1 1362 1360 1 1360 2156 1 + 2156 1331 1 1361 1351 1 1351 1353 1 1353 2158 1 2158 1361 1 1351 1505 1 1504 1353 1 + 1330 1353 1 1503 1330 1 1509 1366 1 1434 1502 1 1331 1366 1 2156 1367 1 1368 2158 1 + 1390 1400 1 1400 1393 1 1393 1394 1 1394 1390 1 1436 1362 1 1506 1436 1 1351 1436 1 + 1435 1360 1 1436 1435 1 1361 1435 1 2156 2157 1 2157 1437 1 2157 2158 1 1328 1325 1; + setAttr ".ed[2822:2987]" 1325 1439 1 1439 1438 1 1438 1328 1 1354 1445 1 1445 1438 1 + 1445 1328 1 1328 1364 1 1364 1356 1 1356 1325 1 1341 1356 1 1364 1349 1 1349 1341 1 + 1495 1341 1 1349 1498 1 1498 1495 1 1492 1349 1 1349 1399 1 1399 1453 1 1453 1492 1 + 1364 1388 1 1388 1399 1 1359 1492 1 1453 1401 1 1401 1359 1 1341 1342 1 1342 1381 1 + 1381 1356 1 1405 1388 1 1328 1405 1 1405 1404 1 1404 1389 1 1389 1388 1 1389 1398 1 + 1398 1399 1 1401 1391 1 1391 1355 1 1391 1403 1 1403 1354 1 1398 1452 1 1452 1453 1 + 1452 1400 1 1400 1401 1 1403 1455 1 1455 1445 1 1455 1405 1 1402 1390 1 1394 1395 1 + 1395 1402 1 1404 1396 1 1396 1397 1 1397 1389 1 1397 1392 1 1392 1398 1 1390 1391 1 + 1402 1403 1 1392 1449 1 1449 1452 1 1449 1393 1 1402 1454 1 1454 1455 1 1454 1404 1 + 1397 1450 1 1450 1449 1 1450 1394 1 1450 1451 1 1451 1395 1 1396 1451 1 1451 1454 1 + 1322 1439 1 1439 1440 1 1440 1322 1 1325 1440 1 1456 1439 1 1322 1321 1 1321 1456 1 + 1322 1363 1 1363 1382 1 1382 1321 1 1344 1347 1 1347 1382 1 1363 1344 1 1347 1410 1 + 1410 1420 1 1420 1382 1 1341 1493 1 1493 1443 1 1443 1342 1 1493 1344 1 1344 1345 1 + 1345 1443 1 1381 1326 1 1326 1325 1 1363 1387 1 1387 1345 1 1441 1323 1 1323 1322 1 + 1440 1441 1 1324 1323 1 1441 1442 1 1442 1324 1 1326 1441 1 1326 1327 1 1327 1442 1 + 1343 1342 1 1443 1444 1 1444 1343 1 1345 1346 1 1346 1444 1 1381 1385 1 1385 1327 1 + 1343 1385 1 1387 1386 1 1386 1346 1 1324 1386 1 1387 1323 1 1421 1409 1 1409 1408 1 + 1408 1420 1 1420 1421 1 1411 1421 1 1410 1411 1 1376 1324 1 1442 1446 1 1446 1376 1 + 1444 1448 1 1448 1379 1 1379 1343 1 1346 1380 1 1380 1448 1 1375 1380 1 1386 1375 1 + 1376 1375 1 1377 1327 1 1385 1378 1 1378 1377 1 1379 1378 1 1377 1446 1 1378 1447 1 + 1447 1446 1 1447 1375 1 1447 1448 1 1465 1456 1 1456 1315 1 1315 1316 1 1316 1465 1 + 1384 1383 1 1383 1339 1 1339 1357 1 1357 1384 1 1499 1339 1 1383 1497 1 1497 1499 1 + 2127 2128 1 1527 2127 1 1456 1457 1 1457 1315 1 1321 1457 1 1315 1384 1 1357 1316 1 + 1458 1406 1 1406 1315 1 1457 1458 1 1321 1408 1 1408 1458 1 1406 1423 1 1423 1384 1; + setAttr ".ed[2988:3153]" 1412 1383 1 1423 1412 1 1347 1496 1 1496 1460 1 1460 1410 1 + 1412 1460 1 1496 1383 1 1407 1406 1 1458 1459 1 1460 1461 1 1461 1411 1 1412 1413 1 + 1413 1461 1 1414 1419 1 1419 1413 1 1413 1422 1 1422 1414 1 1415 1414 1 1422 1407 1 + 1418 1417 1 1417 1421 1 1411 1418 1 1417 1416 1 1464 1418 1 1461 1464 1 1419 1464 1 + 1423 1422 1 1417 1463 1 1463 1462 1 1463 1414 1 1463 1464 1 1336 1333 1 1333 1334 1 + 1334 1337 1 1337 1336 1 1499 1532 1 1532 1468 1 1468 1339 1 1318 1317 1 1317 1465 1 + 1465 1466 1 1466 1318 1 1333 1317 1 1318 1334 1 1466 1316 1 1316 1538 1 1538 1467 1 + 1467 1466 1 1319 1318 1 1467 1319 1 1319 1533 1 1533 1334 1 1533 1534 1 1534 1337 1 + 1335 1338 1 1338 1534 1 1533 1335 1 1468 1535 1 1535 1536 1 1536 1339 1 1469 1340 1 + 1340 1536 1 1535 1469 1 1357 1537 1 1537 1538 1 1536 1537 1 1340 1358 1 1358 1537 1 + 1468 1337 1 1534 1535 1 1338 1469 1 1338 1348 1 1348 1470 1 1470 1469 1 1358 1369 1 + 1369 1538 1 1473 1467 1 1340 1370 1 1370 1371 1 1371 1358 1 1371 1372 1 1470 1370 1 + 1335 1374 1 1374 1348 1 1335 1320 1 1373 1374 1 1320 1319 1 1374 1471 1 1471 1470 1 + 1471 1371 1 1471 1472 1 1310 1225 1 1302 1542 1 1233 1311 1 1543 1299 1 1229 1426 1 + 1426 1311 1 1310 1501 1 1501 1234 1 1226 1312 1 1427 1257 1 1255 1428 1 1479 1307 1 + 1314 1481 1 1430 1482 1 1497 1347 1 1344 1495 1 1495 1497 1 2133 2134 1 1520 1540 1 + 1541 1540 1 1305 2126 1 2126 2127 1 1532 1336 1 101 1554 1 1554 2183 1 2183 129 1 + 2174 1555 1 1555 2185 1 2185 2184 1 2184 2174 1 2185 2144 1 2144 2173 1 2173 2184 1 + 2183 2143 1 2143 124 1 2186 2187 1 2187 1545 1 1545 1549 1 1549 2186 1 1546 1556 1 + 1556 2188 1 2188 2187 1 2187 1546 1 1545 1547 1 1547 2145 1 2145 1549 1 2143 1544 1 + 1544 99 1 2185 2186 1 1549 2144 1 1548 1549 1 2145 1571 1 1571 1548 1 1553 1555 1 + 1555 1550 1 1550 1556 1 1556 1553 1 2175 1550 1 2174 2175 1 100 1551 1 1551 1554 1 + 1574 1557 1 1557 102 1 112 1574 1 1557 2075 1 2075 117 1 104 1562 1 1562 1572 1 1572 111 1 + 1568 1559 1 1559 1569 1 1569 1568 1 2118 2181 1 2181 2117 1 2117 1573 1; + setAttr ".ed[3154:3319]" 1573 2118 1 2181 2182 1 2182 1578 1 1578 2117 1 1566 105 1 + 114 1568 1 1568 1566 1 1560 1565 1 1565 2177 1 2177 2178 1 2178 1560 1 2193 130 1 + 1572 2193 1 1565 1563 1 1563 2176 1 2176 2177 1 1566 1564 1 1564 106 1 1563 1550 1 + 2175 2176 1 1560 2119 1 2119 1567 1 1567 1565 1 2115 2116 1 2116 1579 1 1579 1580 1 + 1580 2115 1 108 1580 1 1579 110 1 109 1561 1 1561 1562 1 1544 1574 1 113 1581 1 1581 1580 1 + 2178 2179 1 2179 2119 1 2116 2117 1 1578 1579 1 103 1559 1 1564 1551 1 2182 128 1 + 107 1578 1 1610 1587 1 1587 2062 1 2062 2056 1 2056 1610 1 1583 1586 1 1586 1585 1 + 1585 1590 1 1590 1583 1 1584 1583 1 1590 1631 1 1631 1584 1 1586 1588 1 1588 1589 1 + 1589 1585 1 1588 1582 1 1582 1587 1 1587 1589 1 1585 1612 1 1612 1602 1 1602 1590 1 + 1621 1589 1 1610 1621 1 1621 1612 1 1618 1600 1 1600 1597 1 1597 1617 1 1617 1618 1 + 1625 1627 1 1627 1591 1 1591 1606 1 1606 1625 1 1606 1630 1 1630 1603 1 1603 1625 1 + 1626 1625 1 1603 1624 1 1624 1626 1 1629 1620 1 1620 1609 1 1609 1608 1 1608 1629 1 + 1619 1629 1 1608 1607 1 1607 1619 1 1583 1611 1 1611 1594 1 1594 1586 1 1627 1614 1 + 1614 1632 1 1632 1591 1 1614 1613 1 1613 1593 1 1593 1632 1 1613 1605 1 1605 1604 1 + 1604 1613 1 1614 1596 1 1596 1595 1 1595 1613 1 1588 1615 1 1615 1598 1 1598 1582 1 + 1607 1600 1 1618 1619 1 1615 1616 1 1616 1599 1 1599 1598 1 1604 1594 1 1611 1613 1 + 1601 1593 1 1611 1601 1 1584 1601 1 1597 1599 1 1616 1617 1 1630 1592 1 1592 1602 1 + 1602 1603 1 1626 1628 1 1628 1627 1 1610 1622 1 1622 1623 1 1623 1621 1 1620 1623 1 + 1622 1609 1 1612 1624 1 1594 1615 1 1604 1616 1 1605 1617 1 1595 1618 1 1605 1595 1 + 1596 1619 1 1592 1631 1 1628 1596 1 1629 1628 1 1626 1620 1 1623 1624 1 2047 2048 1 + 2048 2010 1 2010 2011 1 2011 2047 1 2154 2155 1 2155 2010 1 2048 2154 1 2033 1637 1 + 1637 1973 1 1973 2032 1 2032 2033 1 2035 1636 1 1636 1639 1 1639 2034 1 2034 2035 1 + 1658 2036 1 2036 1999 1 1999 1658 1 1639 1637 1 2033 2034 1 1641 1647 1 1647 1985 1 + 1985 1641 1 2113 1658 1 1999 1998 1 1998 2113 1 1983 1646 1 1646 1662 1; + setAttr ".ed[3320:3485]" 1662 1982 1 1982 1983 1 1655 1646 1 1646 1663 1 1663 1665 1 + 1665 1655 1 1643 1642 1 1642 1666 1 1666 1667 1 1667 1643 1 1641 1786 1 1786 1788 1 + 1788 1647 1 1647 1648 1 1648 1984 1 1984 1985 1 1648 1649 1 1649 1650 1 1650 1984 1 + 1984 1651 1 1651 1973 1 1973 1985 1 1650 1652 1 1652 1651 1 1635 1634 1 1634 2031 1 + 2031 2030 1 2030 1635 1 1634 1992 1 1992 2032 1 2032 2031 1 1651 2031 1 1652 2030 1 + 1633 1659 1 1659 2000 1 2000 2065 1 2065 1633 1 1646 1638 1 1638 1640 1 1640 1662 1 + 1642 1655 1 1665 1666 1 2000 1996 1 1996 1999 1 2036 2000 1 2066 2065 1 2065 2037 1 + 2037 2038 1 2038 2066 1 1996 1661 1 1661 2141 1 2141 2142 1 2142 1996 1 1999 2135 1 + 2135 2136 1 2136 1998 1 1998 1997 1 1997 2112 1 2112 2113 1 2136 2137 1 2137 1997 1 + 1664 1663 1 1983 1664 1 1664 1668 1 1668 1670 1 1670 1663 1 1670 1671 1 1671 1665 1 + 1671 1703 1 1703 1666 1 1669 1667 1 1703 1669 1 1668 1673 1 1673 1672 1 1672 1670 1 + 1671 1674 1 1674 1675 1 1675 1703 1 1675 1676 1 1676 1669 1 1673 1678 1 1678 1677 1 + 1677 1672 1 1677 1679 1 1679 1674 1 1674 1672 1 1679 1680 1 1680 1675 1 1680 1681 1 + 1681 1676 1 1678 1682 1 1682 1684 1 1684 1677 1 1684 1685 1 1685 1679 1 1685 1686 1 + 1686 1680 1 1683 1681 1 1686 1683 1 1687 1688 1 1688 1702 1 1702 1693 1 1693 1687 1 + 1687 1690 1 1690 1689 1 1689 1688 1 1690 1692 1 1692 1691 1 1691 1689 1 1692 1694 1 + 1694 1701 1 1701 1691 1 1682 1697 1 1697 1696 1 1696 1684 1 1696 1694 1 1694 1695 1 + 1695 1698 1 1698 1696 1 1699 1700 1 1700 1683 1 1686 1699 1 1685 1698 1 1698 1699 1 + 1693 1695 1 1695 1690 1 1693 1699 1 1697 1701 1 1702 1700 1 1645 1981 1 1981 1980 1 + 1980 1653 1 1653 1645 1 1988 1654 1 1654 1660 1 1660 1987 1 1987 1988 1 1989 1657 1 + 1657 1654 1 1988 1989 1 1645 1989 1 1989 1706 1 1706 1707 1 1707 1645 1 1705 1704 1 + 1704 1988 1 1987 1705 1 1704 1706 1 1707 1708 1 1708 1981 1 1705 1709 1 1709 1711 1 + 1711 1704 1 1712 1706 1 1711 1712 1 1712 1713 1 1713 1707 1 1710 1708 1 1713 1710 1 + 1709 1715 1 1715 1714 1 1714 1711 1 1716 1712 1 1714 1716 1 1716 1717 1 1717 1713 1; + setAttr ".ed[3486:3651]" 1717 1718 1 1718 1710 1 1715 1720 1 1720 1719 1 1719 1714 1 + 1721 1716 1 1719 1721 1 1721 1722 1 1722 1717 1 1722 1723 1 1723 1718 1 1720 1724 1 + 1724 1726 1 1726 1719 1 1727 1721 1 1726 1727 1 1727 1728 1 1728 1722 1 1725 1723 1 + 1728 1725 1 1729 1730 1 1730 1737 1 1737 1738 1 1738 1729 1 1732 1731 1 1731 1735 1 + 1735 1736 1 1736 1732 1 1733 1734 1 1734 1731 1 1732 1733 1 1733 1730 1 1729 1734 1 + 1738 1739 1 1739 1734 1 1724 1741 1 1741 1740 1 1740 1726 1 1742 1727 1 1740 1742 1 + 1742 1743 1 1743 1728 1 1743 1744 1 1744 1725 1 1735 1740 1 1741 1736 1 1739 1742 1 + 1735 1739 1 1738 1743 1 1737 1744 1 1662 1656 1 1656 1747 1 1747 1748 1 1748 1662 1 + 1656 1653 1 1653 1745 1 1745 1747 1 1980 1746 1 1746 1745 1 1748 1749 1 1749 1982 1 + 1746 1750 1 1750 1752 1 1752 1745 1 1752 1753 1 1753 1747 1 1753 1754 1 1754 1748 1 + 1751 1749 1 1754 1751 1 1755 1756 1 1756 1757 1 1757 1767 1 1767 1755 1 1758 1755 1 + 1767 1768 1 1768 1758 1 1759 1758 1 1768 1769 1 1769 1759 1 1760 1761 1 1761 1759 1 + 1769 1760 1 1750 1763 1 1763 1762 1 1762 1752 1 1762 1764 1 1764 1753 1 1764 1765 1 + 1765 1754 1 1765 1766 1 1766 1751 1 1763 1756 1 1755 1762 1 1758 1764 1 1759 1765 1 + 1761 1766 1 1771 1770 1 1770 1778 1 1778 1783 1 1783 1771 1 1771 1772 1 1772 1773 1 + 1773 1770 1 1772 1774 1 1774 1775 1 1775 1773 1 1774 1784 1 1784 1776 1 1776 1775 1 + 1779 1778 1 1778 1777 1 1777 1780 1 1780 1779 1 1777 1776 1 1776 1781 1 1781 1780 1 + 1782 1783 1 1779 1782 1 1784 1785 1 1785 1781 1 1757 1782 1 1779 1767 1 1780 1768 1 + 1781 1769 1 1785 1760 1 1773 1777 1 1787 1786 1 1641 1644 1 1644 1787 1 1788 1789 1 + 1789 1648 1 1790 1649 1 1789 1790 1 1787 1791 1 1791 1793 1 1793 1786 1 1793 1794 1 + 1794 1788 1 1794 1795 1 1795 1789 1 1792 1790 1 1795 1792 1 1791 1797 1 1797 1796 1 + 1796 1793 1 1796 1798 1 1798 1794 1 1798 1799 1 1799 1795 1 1799 1800 1 1800 1792 1 + 1797 1805 1 1805 1801 1 1801 1796 1 1801 1802 1 1802 1798 1 1802 1803 1 1803 1799 1 + 1803 1804 1 1804 1800 1 1805 1806 1 1806 1977 1 1977 1801 1 1978 1802 1 1977 1978 1; + setAttr ".ed[3652:3817]" 1978 1979 1 1979 1803 1 1807 1804 1 1979 1807 1 1808 1809 1 + 1809 1816 1 1816 1814 1 1814 1808 1 1808 1811 1 1811 1810 1 1810 1809 1 1811 1813 1 + 1813 1812 1 1812 1810 1 1813 1820 1 1820 1819 1 1819 1812 1 1814 1815 1 1815 1823 1 + 1823 1822 1 1822 1814 1 1816 1817 1 1817 1815 1 1818 1819 1 1820 1821 1 1821 1818 1 + 1820 1822 1 1823 1821 1 1806 1818 1 1821 1977 1 1823 1978 1 1815 1979 1 1817 1807 1 + 1822 1811 1 1827 2039 1 2039 2040 1 2040 1824 1 1824 1827 1 1827 1825 1 1825 2046 1 + 2046 2039 1 1826 2045 1 2045 2046 1 1825 1826 1 1828 1829 1 1829 1842 1 1842 1843 1 + 1843 1828 1 1832 1831 1 1831 1829 1 1828 1832 1 1832 1834 1 1834 2018 1 2018 1830 1 + 1830 1832 1 1833 1834 1 1834 1843 1 1843 1838 1 1838 1833 1 1837 1833 1 1833 1835 1 + 1835 1836 1 1836 1837 1 1838 1839 1 1839 1835 1 1838 1840 1 1840 1841 1 1841 1839 1 + 1842 1840 1 1837 2018 1 1837 1960 1 1960 1967 1 1967 2018 1 1967 1970 1 1970 1830 1 + 1824 1836 1 1835 1827 1 1839 1825 1 1841 1826 1 1970 1831 1 1976 2035 1 2034 1975 1 + 1975 1976 1 1826 1959 1 1959 2044 1 2044 2045 1 2049 2014 1 2014 2015 1 2015 2053 1 + 2053 2049 1 1844 2016 1 2016 2015 1 2015 1845 1 1845 1844 1 2050 2016 1 2016 2017 1 + 2017 2054 1 2054 2050 1 2052 2012 1 2012 2013 1 2013 2051 1 2051 2052 1 1846 1847 1 + 1847 2014 1 2014 2013 1 2013 1846 1 2012 1635 1 1635 1846 1 1872 1844 1 1845 1870 1 + 1870 1872 1 1852 1851 1 1851 1866 1 1866 1865 1 1865 1852 1 1865 1990 1 1990 1859 1 + 1859 1852 1 1849 1851 1 1851 1854 1 1854 1849 1 1854 1852 1 1852 1853 1 1853 1854 1 + 1982 1855 1 1855 1856 1 1856 1983 1 1859 1862 1 1862 1857 1 1857 1858 1 1858 1859 1 + 1859 1856 1 1855 1852 1 1981 1849 1 1854 1980 1 1848 1850 1 1850 1986 1 1986 1869 1 + 1869 1848 1 1859 1860 1 1860 1856 1 1861 1857 1 1862 1861 1 1863 1864 1 1864 1861 1 + 1862 1863 1 1862 1867 1 1867 1868 1 1868 1863 1 2030 2029 1 2029 1846 1 2028 1867 1 + 1867 1990 1 1990 2027 1 2027 2028 1 1652 1868 1 1868 2029 1 2028 2029 1 1667 1876 1 + 1876 1858 1 1858 1643 1 1856 1875 1 1875 1664 1 1649 1864 1 1863 1650 1 1861 1936 1; + setAttr ".ed[3818:3983]" 1936 1937 1 1937 1857 1 1864 1938 1 1938 1936 1 2024 2025 1 + 2025 1866 1 1866 2111 1 2111 2024 1 1873 1872 1 1870 1871 1 1871 1873 1 2111 2112 1 + 1997 2024 1 1633 1844 1 1872 1659 1 1873 1661 1 1661 1659 1 2140 1873 1 1871 2139 1 + 2139 2140 1 2140 2141 1 1644 1643 1 1857 1644 1 1887 1877 1 1877 1875 1 1875 1874 1 + 1874 1887 1 1874 1876 1 1876 1878 1 1878 1887 1 1879 1880 1 1880 1877 1 1887 1879 1 + 1878 1881 1 1881 1879 1 1879 1882 1 1882 1883 1 1883 1880 1 1881 1884 1 1884 1882 1 + 1894 1885 1 1885 1883 1 1882 1894 1 1884 1886 1 1886 1894 1 1886 1888 1 1888 1889 1 + 1889 1894 1 1890 1885 1 1889 1890 1 1892 1891 1 1891 2005 1 2005 2004 1 2004 1892 1 + 1891 1893 1 1893 2006 1 2006 2005 1 1877 1668 1 1669 1878 1 1880 1673 1 1676 1881 1 + 1883 1678 1 1681 1884 1 1885 1682 1 1683 1886 1 1689 2005 1 2006 1688 1 1691 2004 1 + 1702 1893 1 1893 1888 1 1888 1700 1 1890 1697 1 1701 1892 1 1891 1889 1 1892 1890 1 + 1708 1897 1 1897 1849 1 1660 1869 1 1986 1987 1 1850 1895 1 1895 1896 1 1896 1986 1 + 1895 1908 1 1908 1898 1 1898 1896 1 1895 1897 1 1897 1899 1 1899 1908 1 1908 1900 1 + 1900 1901 1 1901 1898 1 1899 1902 1 1902 1900 1 1900 1903 1 1903 1904 1 1904 1901 1 + 1902 1905 1 1905 1903 1 1903 1915 1 1915 1906 1 1906 1904 1 1905 1907 1 1907 1915 1 + 1910 1994 1 1994 1993 1 1993 1909 1 1909 1910 1 1910 1911 1 1911 1995 1 1995 1994 1 + 1915 1912 1 1912 1913 1 1913 1906 1 1907 1914 1 1914 1912 1 1912 1910 1 1909 1913 1 + 1914 1911 1 1896 1705 1 1898 1709 1 1710 1899 1 1901 1715 1 1718 1902 1 1904 1720 1 + 1723 1905 1 1906 1724 1 1725 1907 1 1994 1733 1 1732 1993 1 1995 1730 1 1736 1909 1 + 1913 1741 1 1744 1914 1 1737 1911 1 1854 1917 1 1917 1746 1 1749 1918 1 1918 1855 1 + 1972 1919 1 1919 1917 1 1917 1916 1 1916 1972 1 1916 1918 1 1918 1920 1 1920 1972 1 + 1935 1922 1 1922 1923 1 1923 1921 1 1921 1935 1 1921 1924 1 1924 1925 1 1925 1935 1 + 1926 1927 1 1927 1919 1 1972 1926 1 1920 1928 1 1928 1926 1 1926 1921 1 1923 1927 1 + 1928 1924 1 1929 1930 1 1930 1933 1 1933 1934 1 1934 1929 1 1931 1932 1 1932 1934 1; + setAttr ".ed[3984:4149]" 1933 1931 1 1930 1922 1 1935 1933 1 1925 1931 1 1934 2002 1 + 2002 2001 1 2001 1929 1 1932 2003 1 2003 2002 1 1919 1750 1 1751 1920 1 1756 1923 1 + 1922 1757 1 1760 1925 1 1924 1761 1 1927 1763 1 1766 1928 1 1771 2001 1 2002 1772 1 + 2003 1774 1 1782 1930 1 1929 1783 1 1785 1931 1 1932 1784 1 1949 1939 1 1939 1937 1 + 1936 1949 1 1938 1940 1 1940 1949 1 1941 1942 1 1942 1939 1 1949 1941 1 1940 1943 1 + 1943 1941 1 1941 1944 1 1944 1945 1 1945 1942 1 1943 1946 1 1946 1944 1 1956 1947 1 + 1947 1945 1 1944 1956 1 1946 1948 1 1948 1956 1 1950 1951 1 1951 1952 1 1952 1953 1 + 1953 1950 1 1952 1954 1 1954 1955 1 1955 1953 1 1952 2008 1 2008 2009 1 2009 1954 1 + 1951 2007 1 2007 2008 1 1955 1947 1 1956 1953 1 1948 1950 1 1790 1938 1 1787 1937 1 + 1939 1791 1 1792 1940 1 1942 1797 1 1800 1943 1 1945 1805 1 1804 1946 1 1947 1806 1 + 1807 1948 1 1816 1951 1 1950 1817 1 1818 1955 1 1954 1819 1 2009 1812 1 1809 2007 1 + 2023 1957 1 1957 2042 1 2042 2043 1 2043 2023 1 2043 2044 1 1959 2023 1 1958 2041 1 + 2041 2042 1 1957 1958 1 2023 2022 1 2022 1962 1 1962 1957 1 1959 1964 1 1964 2022 1 + 1960 1961 1 1961 1962 1 1962 1963 1 1963 1960 1 2022 2021 1 2021 1963 1 1964 1965 1 + 1965 2021 1 2021 2020 1 2020 1966 1 1966 1963 1 1966 1967 1 1965 1968 1 1968 2020 1 + 2020 2019 1 2019 1969 1 1969 1966 1 1969 1970 1 1968 1971 1 1971 2019 1 1841 1964 1 + 1829 1971 1 1968 1842 1 1831 2019 1 1836 1961 1 1840 1965 1 1824 1958 1 1958 1961 1 + 2040 2041 1 1847 1991 1 1991 2015 1 1638 1985 1 1637 1638 1 1976 2038 1 2037 1976 1 + 2028 1847 1 1657 1636 1 1636 1658 1 1658 1654 1 1645 1657 1 1657 1640 1 1640 1639 1 + 2027 1991 1 1641 1642 1 1865 2026 1 2026 2027 1 2026 1845 1 1845 1991 1 2011 2012 1 + 2052 2047 1 2050 2053 1 2049 2051 1 2024 2138 1 2138 2139 1 1871 2024 1 1870 2025 1 + 2142 2135 1 1810 2008 1 2017 2066 1 2066 2067 1 2067 2054 1 2017 1633 1 2026 2025 1 + 1992 1974 1 1974 2033 1 1974 1975 1 2037 2036 1 2036 2035 1 2048 2060 1 2060 2153 1 + 2153 2154 1 2050 2055 1 2055 2057 1 2057 2053 1 2061 2054 1 2067 2068 1 2068 2061 1; + setAttr ".ed[4150:4315]" 2058 2059 1 2059 2047 1 2052 2058 1 2059 2060 1 2055 1609 1 + 1622 2057 1 2058 1582 1 1598 2059 1 2058 2062 1 2051 2062 1 2049 2056 1 2061 2055 1 + 2056 2057 1 2068 1607 1 1608 2061 1 1597 2153 1 2060 1599 1 2068 2063 1 2063 1600 1 + 2067 2064 1 2064 2063 1 2038 2064 1 2072 1577 1 1577 1581 1 1581 2160 1 2160 2072 1 + 115 2071 1 2071 2072 1 2160 115 1 2107 2194 1 2194 2195 1 2195 2106 1 2106 2107 1 + 2204 2205 1 2205 2095 1 2095 2204 1 2196 2110 1 2110 121 1 132 2196 1 2199 2077 1 + 2077 2080 1 2080 2198 1 2198 2199 1 2107 2088 1 2088 2092 1 2092 2194 1 2205 2206 1 + 2206 2096 1 2096 2095 1 2076 2077 1 2199 2200 1 2200 2076 1 2208 2209 1 2209 2094 1 + 2094 2091 1 2091 2208 1 2106 2110 1 2110 2078 1 2078 2107 1 2075 2079 1 2079 118 1 + 119 2106 1 2195 131 1 2159 126 1 2079 2159 1 2099 2207 1 2207 2208 1 2091 2099 1 + 2080 2078 1 2078 2197 1 2197 2198 1 2196 2197 1 2213 2081 1 2081 2090 1 2090 2212 1 + 2212 2213 1 2087 2216 1 2216 2217 1 2217 2087 1 2100 2218 1 2218 2219 1 2219 2085 1 + 2085 2100 1 1606 2087 1 2087 2100 1 2100 1630 1 2217 2218 1 2097 2087 1 1591 2097 1 + 2224 2215 1 2215 2097 1 2097 2098 1 2098 2224 1 2086 2089 1 2089 2222 1 2222 2223 1 + 2223 2086 1 2084 1584 1 1631 2083 1 2083 2084 1 2084 2089 1 2089 1601 1 2086 1593 1 + 2085 1592 1 2098 2086 1 2223 2224 1 2219 2220 1 2220 2083 1 2083 2085 1 2221 2084 1 + 2220 2221 1 2090 2093 1 2093 2211 1 2211 2212 1 2221 2222 1 2215 2216 1 122 2108 1 + 2108 2202 1 2202 133 1 2206 2207 1 2099 2096 1 1294 1182 1 1182 2102 1 2102 2105 1 + 2105 1294 1 2105 120 1 1183 2103 1 2103 2102 1 1187 2104 1 2104 2103 1 2109 1295 1 + 1295 2161 1 2161 2162 1 2162 2109 1 2080 2088 1 2201 2163 1 2163 2076 1 2200 2201 1 + 2210 2211 1 2093 2094 1 2094 2210 1 2109 2104 1 2098 1632 1 1874 1860 1 1860 1858 1 + 1916 1853 1 1853 1855 1 1850 1849 1 1851 1848 1 1848 2111 1 1869 2112 1 1660 2113 1 + 2137 2138 1 2011 1634 1 1562 2192 1 2192 2193 1 2190 2191 1 2191 2180 1 2180 2118 1 + 2118 2190 1 1308 2123 1 2123 2124 1 2125 2126 1 2122 2123 1 1262 1215 1 2115 1571 1; + setAttr ".ed[4316:4481]" 1571 1570 1 1570 2116 1 1570 1573 1 1577 2115 1 1262 1272 1 + 1284 1213 1 1289 1286 1 1438 2121 1 2120 1438 1 1456 2122 1 2121 1456 1 2122 1465 1 + 1317 2123 1 1333 2124 1 1336 2125 1 1532 2126 1 1499 2127 1 1497 2128 1 1495 2129 1 + 1498 2130 1 1491 2131 1 1332 2132 1 1365 2133 1 1494 2134 1 1478 2120 1 2135 2046 1 + 2045 2136 1 2044 2137 1 2043 2138 1 2042 2139 1 2041 2140 1 2040 2141 1 2039 2142 1 + 1546 1553 1 1547 1570 1 1439 2121 1 1496 1497 1 1493 1495 1 1492 1498 1 1191 2146 1 + 2146 1288 1 2147 2146 1 1260 2147 1 1261 2148 1 2148 2147 1 1288 1285 1 2146 2151 1 + 2147 2152 1 2063 2153 1 2064 2154 1 2038 2155 1 1974 2010 1 2155 1975 1 1992 2011 1 + 1653 1640 1 1656 1640 1 1655 1638 1 1642 1638 1 1435 2157 1 1556 1567 1 1567 2189 1 + 2189 2188 1 2209 2225 1 2225 2210 1 2159 2108 1 116 2160 1 123 2162 1 2108 2163 1 + 2201 2202 1 2164 2163 1 2159 2164 1 2079 2165 1 2165 2164 1 2075 2166 1 2166 2165 1 + 1557 2167 1 2167 2166 1 2070 2092 1 2092 2170 1 2170 2070 1 2183 2184 1 2173 2143 1 + 1554 2174 1 1551 2175 1 1564 2176 1 1566 2177 1 1568 2178 1 1569 2179 1 1562 2180 1 + 2191 2192 1 2180 2181 1 2182 1561 1 1573 2189 1 2189 2190 1 2188 1547 1 1553 2186 1 + 2190 2119 1 2179 2191 1 1569 2192 1 1559 2193 1 1563 1556 1 1577 1571 1 2194 2069 1 + 2069 2071 1 2071 2195 1 2070 2069 1 2105 2196 1 2102 2197 1 2103 2198 1 2104 2199 1 + 2109 2200 1 2162 2201 1 123 2202 1 2172 2173 1 2144 1552 1 1552 2172 1 1548 1552 1 + 2074 1575 1 1575 1576 1 1576 2073 1 2073 2074 1 2171 1558 1 1558 1557 1 1574 2171 1 + 1575 1552 1 1548 1576 1 2171 2172 1 1575 2171 1 1577 1576 1 2101 2082 1 2082 2214 1 + 2214 2203 1 2203 2101 1 2072 2073 1 2073 2069 1 2070 2074 1 2082 2081 1 2213 2214 1 + 2203 2204 1 2095 2101 1 1558 2168 1 2168 2167 1 2074 2169 1 2169 2168 1 1558 2074 1 + 2170 2169 1 1544 2172 1 1547 1573 1 2180 1561 1 2170 2204 1 2203 2169 1 2092 2205 1 + 2088 2206 1 2080 2207 1 2077 2208 1 2076 2209 1 2225 2163 1 2164 2210 1 2165 2211 1 + 2166 2212 1 2167 2213 1 2168 2214 1 2095 2216 1 2215 2101 1 2096 2217 1 2099 2218 1; + setAttr ".ed[4482:4487]" 2091 2219 1 2094 2220 1 2093 2221 1 2090 2222 1 2081 2223 1 + 2082 2224 1; + setAttr -s 2226 ".n"; + setAttr ".n[0:165]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[166:331]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[332:497]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[498:663]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[664:829]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[830:995]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[996:1161]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[1162:1327]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[1328:1493]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[1494:1659]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[1660:1825]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[1826:1991]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[1992:2157]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[2158:2225]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr -s 2268 -ch 8920 ".fc"; + setAttr ".fc[0:499]" -type "polyFaces" + f 4 0 1 2 3 + mu 0 4 0 1 2 3 + f 4 4 5 6 -2 + mu 0 4 1 4 5 2 + f 4 7 8 9 -6 + mu 0 4 4 6 7 5 + f 4 10 11 12 -9 + mu 0 4 6 8 9 7 + f 4 13 14 15 -12 + mu 0 4 8 10 11 9 + f 4 16 17 18 -15 + mu 0 4 10 12 13 11 + f 4 19 20 21 -18 + mu 0 4 12 14 15 13 + f 4 22 -4 23 -21 + mu 0 4 14 0 3 15 + f 3 -3 24 25 + mu 0 3 3 2 16 + f 3 -7 26 -25 + mu 0 3 2 5 16 + f 3 -10 27 -27 + mu 0 3 5 7 16 + f 3 -13 28 -28 + mu 0 3 7 9 16 + f 3 -16 29 -29 + mu 0 3 9 11 16 + f 3 -19 30 -30 + mu 0 3 11 13 16 + f 3 -22 31 -31 + mu 0 3 13 15 16 + f 3 -24 -26 -32 + mu 0 3 15 3 16 + f 4 32 33 34 35 + mu 0 4 17 18 19 20 + f 4 36 37 38 -34 + mu 0 4 21 22 23 24 + f 4 39 40 41 42 + mu 0 4 25 26 27 28 + f 4 43 44 45 -41 + mu 0 4 26 29 30 27 + f 4 46 47 48 -45 + mu 0 4 29 31 32 30 + f 4 49 50 51 52 + mu 0 4 33 34 35 36 + f 4 53 54 55 56 + mu 0 4 37 38 39 40 + f 4 57 58 59 -55 + mu 0 4 38 41 42 39 + f 4 60 -43 61 -38 + mu 0 4 22 25 28 23 + f 4 62 -36 63 -59 + mu 0 4 41 17 20 42 + f 4 64 -53 65 -48 + mu 0 4 31 33 36 32 + f 4 66 -57 67 -51 + mu 0 4 34 37 40 35 + f 4 68 69 70 71 + mu 0 4 43 44 45 46 + f 4 72 73 74 -70 + mu 0 4 44 47 48 45 + f 4 75 76 77 -74 + mu 0 4 47 49 50 48 + f 4 78 79 80 -77 + mu 0 4 49 51 52 50 + f 4 81 82 83 -80 + mu 0 4 51 53 54 52 + f 4 84 85 86 -83 + mu 0 4 53 55 56 54 + f 4 87 88 89 -86 + mu 0 4 55 57 58 56 + f 4 90 -72 91 -89 + mu 0 4 57 43 46 58 + f 3 -71 92 93 + mu 0 3 46 45 59 + f 3 -75 94 -93 + mu 0 3 45 48 59 + f 3 -78 95 -95 + mu 0 3 48 50 59 + f 3 -81 96 -96 + mu 0 3 50 52 59 + f 3 -84 97 -97 + mu 0 3 52 54 59 + f 3 -87 98 -98 + mu 0 3 54 56 59 + f 3 -90 99 -99 + mu 0 3 56 58 59 + f 3 -92 -94 -100 + mu 0 3 58 46 59 + f 4 100 101 102 103 + mu 0 4 60 61 62 63 + f 4 104 105 106 -102 + mu 0 4 61 64 65 62 + f 4 107 108 109 -106 + mu 0 4 64 66 67 65 + f 4 110 111 112 -109 + mu 0 4 66 68 69 67 + f 4 113 114 115 -112 + mu 0 4 68 70 71 69 + f 4 116 117 118 -115 + mu 0 4 70 72 73 71 + f 4 119 120 121 -118 + mu 0 4 72 74 75 73 + f 4 122 -104 123 -121 + mu 0 4 74 60 63 75 + f 3 -103 124 125 + mu 0 3 63 62 76 + f 3 -107 126 -125 + mu 0 3 62 65 76 + f 3 -110 127 -127 + mu 0 3 65 67 76 + f 3 -113 128 -128 + mu 0 3 67 69 76 + f 3 -116 129 -129 + mu 0 3 69 71 76 + f 3 -119 130 -130 + mu 0 3 71 73 76 + f 3 -122 131 -131 + mu 0 3 73 75 76 + f 3 -124 -126 -132 + mu 0 3 75 63 76 + f 4 132 133 134 135 + mu 0 4 77 78 79 80 + f 4 136 137 138 -134 + mu 0 4 78 81 82 79 + f 4 139 140 141 -138 + mu 0 4 81 83 84 82 + f 4 142 143 144 -141 + mu 0 4 83 85 86 84 + f 4 145 146 147 -144 + mu 0 4 85 87 88 86 + f 4 148 149 150 -147 + mu 0 4 87 89 90 88 + f 4 151 152 153 -150 + mu 0 4 89 91 92 90 + f 4 154 -136 155 -153 + mu 0 4 91 77 80 92 + f 3 -135 156 157 + mu 0 3 80 79 93 + f 3 -139 158 -157 + mu 0 3 79 82 93 + f 3 -142 159 -159 + mu 0 3 82 84 93 + f 3 -145 160 -160 + mu 0 3 84 86 93 + f 3 -148 161 -161 + mu 0 3 86 88 93 + f 3 -151 162 -162 + mu 0 3 88 90 93 + f 3 -154 163 -163 + mu 0 3 90 92 93 + f 3 -156 -158 -164 + mu 0 3 92 80 93 + f 4 164 165 166 167 + mu 0 4 94 95 96 97 + f 4 168 169 170 171 + mu 0 4 98 99 100 101 + f 4 172 173 174 175 + mu 0 4 102 103 104 105 + f 4 176 177 178 -165 + mu 0 4 94 106 107 95 + f 4 -172 179 180 -178 + mu 0 4 106 108 109 107 + f 3 181 182 183 + mu 0 3 110 111 112 + f 4 184 185 -171 186 + mu 0 4 113 114 115 116 + f 4 187 188 -180 -186 + mu 0 4 117 118 109 108 + f 4 189 190 -169 -177 + mu 0 4 119 120 121 122 + f 3 191 192 193 + mu 0 3 123 124 125 + f 4 194 195 196 197 + mu 0 4 126 127 128 129 + f 4 198 199 200 -195 + mu 0 4 126 130 131 127 + f 4 201 202 203 204 + mu 0 4 132 133 134 135 + f 4 205 206 207 -203 + mu 0 4 133 136 137 134 + f 4 208 209 210 211 + mu 0 4 138 139 140 141 + f 4 212 213 214 215 + mu 0 4 142 143 137 140 + f 4 -210 216 217 -216 + mu 0 4 140 139 144 142 + f 4 -208 -214 218 219 + mu 0 4 134 137 143 145 + f 4 -204 -220 220 221 + mu 0 4 135 134 145 146 + f 4 -211 -215 -207 222 + mu 0 4 141 140 137 136 + f 4 223 224 225 226 + mu 0 4 147 148 149 150 + f 4 227 228 229 230 + mu 0 4 151 152 153 154 + f 4 231 -229 232 -227 + mu 0 4 150 153 152 147 + f 4 233 234 235 -233 + mu 0 4 152 155 156 147 + f 4 -236 236 237 -224 + mu 0 4 147 156 157 148 + f 4 -217 238 239 240 + mu 0 4 144 139 158 159 + f 4 -237 -235 241 -222 + mu 0 4 157 156 155 160 + f 4 242 243 244 -241 + mu 0 4 159 161 162 144 + f 4 245 246 247 248 + mu 0 4 163 164 158 165 + f 4 -248 -239 -209 249 + mu 0 4 165 158 139 138 + f 4 250 251 252 253 + mu 0 4 166 167 168 169 + f 4 -247 254 -243 -240 + mu 0 4 158 164 161 159 + f 3 255 256 257 + mu 0 3 170 171 172 + f 4 258 259 -256 260 + mu 0 4 173 174 171 170 + f 4 -252 261 -259 262 + mu 0 4 168 167 174 173 + f 4 263 264 265 -226 + mu 0 4 149 175 176 150 + f 4 266 267 -232 -266 + mu 0 4 176 177 153 150 + f 4 -230 -268 268 269 + mu 0 4 154 153 177 178 + f 4 -269 270 -246 271 + mu 0 4 178 177 164 163 + f 4 272 -255 -271 -267 + mu 0 4 176 161 164 177 + f 4 -265 273 -244 -273 + mu 0 4 176 175 162 161 + f 4 274 275 -189 276 + mu 0 4 130 179 109 118 + f 4 -200 -277 277 278 + mu 0 4 131 130 118 180 + f 4 -181 -276 279 280 + mu 0 4 107 109 179 181 + f 4 281 -179 -281 282 + mu 0 4 182 95 107 181 + f 4 -188 283 284 -278 + mu 0 4 118 117 183 180 + f 4 285 286 287 288 + mu 0 4 184 185 186 187 + f 4 289 290 291 292 + mu 0 4 188 189 190 191 + f 4 293 294 295 -290 + mu 0 4 188 192 193 189 + f 4 296 297 298 -291 + mu 0 4 189 194 195 190 + f 4 299 300 301 302 + mu 0 4 196 197 198 199 + f 4 303 304 305 -288 + mu 0 4 186 200 201 187 + f 4 306 307 308 -305 + mu 0 4 200 202 203 201 + f 4 309 -166 -282 310 + mu 0 4 204 96 95 182 + f 4 311 312 313 314 + mu 0 4 205 206 207 208 + f 4 315 316 317 318 + mu 0 4 209 166 207 210 + f 4 319 320 -318 -313 + mu 0 4 206 211 210 207 + f 4 321 322 323 -286 + mu 0 4 184 212 213 185 + f 4 324 -307 325 -302 + mu 0 4 198 202 200 199 + f 3 326 327 328 + mu 0 3 214 215 216 + f 4 329 -321 330 331 + mu 0 4 217 210 211 218 + f 4 332 -167 333 334 + mu 0 4 219 97 96 220 + f 4 335 336 -331 337 + mu 0 4 221 222 218 211 + f 4 -338 -320 338 339 + mu 0 4 221 211 206 223 + f 4 -312 340 341 -339 + mu 0 4 206 205 194 223 + f 4 -296 342 -342 -297 + mu 0 4 189 193 223 194 + f 4 343 344 -340 -343 + mu 0 4 193 196 221 223 + f 4 345 -336 -345 -303 + mu 0 4 199 222 221 196 + f 4 346 347 -298 -341 + mu 0 4 205 224 195 194 + f 4 -304 348 -346 -326 + mu 0 4 200 186 222 199 + f 4 -287 349 -337 -349 + mu 0 4 186 185 218 222 + f 4 350 -325 351 352 + mu 0 4 225 226 227 228 + f 4 353 354 355 -283 + mu 0 4 181 229 212 182 + f 4 -308 -351 356 357 + mu 0 4 230 226 225 231 + f 4 358 -323 -355 359 + mu 0 4 232 213 212 229 + f 4 -352 -301 360 361 + mu 0 4 228 227 233 234 + f 3 362 -293 363 + mu 0 3 235 236 237 + f 4 364 -294 -363 365 + mu 0 4 171 238 236 235 + f 4 366 -360 367 368 + mu 0 4 239 232 229 240 + f 4 369 370 -369 371 + mu 0 4 241 242 239 240 + f 4 -354 -280 372 -368 + mu 0 4 229 181 179 240 + f 4 -373 373 374 -372 + mu 0 4 240 179 243 241 + f 4 -251 -316 375 376 + mu 0 4 167 166 209 244 + f 4 -262 -377 377 378 + mu 0 4 174 167 244 245 + f 4 379 380 -367 381 + mu 0 4 246 247 232 239 + f 4 -376 382 -380 383 + mu 0 4 244 209 247 246 + f 4 384 -378 -384 385 + mu 0 4 248 245 244 246 + f 4 386 -386 -382 -371 + mu 0 4 242 248 246 239 + f 4 -205 -242 387 388 + mu 0 4 249 160 155 250 + f 4 -388 -234 -228 389 + mu 0 4 250 155 152 151 + f 3 390 -257 -366 + mu 0 3 235 172 171 + f 4 391 392 -359 -381 + mu 0 4 247 217 213 232 + f 4 -319 -330 -392 -383 + mu 0 4 209 210 217 247 + f 4 -254 393 -314 -317 + mu 0 4 166 169 208 207 + f 4 -358 394 395 396 + mu 0 4 230 231 251 252 + f 4 -223 397 -348 398 + mu 0 4 141 136 195 224 + f 4 399 400 401 -250 + mu 0 4 138 253 169 165 + f 4 402 -249 -402 -253 + mu 0 4 168 163 165 169 + f 4 -263 403 -272 -403 + mu 0 4 168 173 178 163 + f 4 404 -270 -404 -261 + mu 0 4 170 154 178 173 + f 4 405 -231 -405 -258 + mu 0 4 172 151 154 170 + f 4 406 -390 -406 -391 + mu 0 4 235 250 151 172 + f 4 -389 -407 -364 407 + mu 0 4 249 250 235 237 + f 4 408 -202 -408 -292 + mu 0 4 190 133 132 191 + f 4 -398 -206 -409 -299 + mu 0 4 195 136 133 190 + f 4 -174 409 -333 410 + mu 0 4 104 103 254 255 + f 4 411 412 413 -411 + mu 0 4 256 257 258 259 + f 4 -335 414 -329 -412 + mu 0 4 219 220 214 216 + f 4 415 -375 416 -395 + mu 0 4 231 241 243 251 + f 4 417 -370 -416 -357 + mu 0 4 225 242 241 231 + f 4 418 -387 -418 -353 + mu 0 4 228 248 242 225 + f 4 419 -385 -419 -362 + mu 0 4 234 245 248 228 + f 4 -260 -379 -420 420 + mu 0 4 171 174 245 234 + f 4 421 -365 -421 -361 + mu 0 4 233 238 171 234 + f 4 -344 -295 -422 -300 + mu 0 4 196 193 192 197 + f 4 422 423 424 425 + mu 0 4 260 261 262 263 + f 4 426 427 428 429 + mu 0 4 264 265 266 267 + f 4 430 431 432 433 + mu 0 4 268 262 269 270 + f 4 434 435 436 437 + mu 0 4 271 272 273 274 + f 4 438 -430 439 440 + mu 0 4 273 264 267 275 + f 4 441 -434 442 443 + mu 0 4 276 268 270 277 + f 4 444 -442 445 -438 + mu 0 4 274 268 276 271 + f 4 446 447 -440 448 + mu 0 4 278 279 275 267 + f 4 449 450 -449 -429 + mu 0 4 266 280 278 267 + f 4 451 452 453 -427 + mu 0 4 264 281 282 265 + f 4 454 -433 455 456 + mu 0 4 283 284 285 286 + f 4 457 458 -457 459 + mu 0 4 287 288 283 286 + f 4 460 -459 461 462 + mu 0 4 289 283 288 290 + f 4 -462 463 464 465 + mu 0 4 290 288 291 292 + f 4 -465 466 -454 467 + mu 0 4 292 291 265 282 + f 4 468 -464 -458 469 + mu 0 4 293 291 288 287 + f 4 -467 -469 470 -428 + mu 0 4 265 291 293 266 + f 4 471 472 473 474 + mu 0 4 294 295 296 297 + f 4 475 476 477 478 + mu 0 4 298 299 261 300 + f 4 -478 -423 479 480 + mu 0 4 300 261 260 301 + f 4 -480 481 482 483 + mu 0 4 301 260 279 302 + f 4 484 485 486 487 + mu 0 4 303 304 305 306 + f 4 -475 488 489 490 + mu 0 4 294 297 307 308 + f 4 -490 491 492 493 + mu 0 4 308 307 309 310 + f 4 494 495 496 -473 + mu 0 4 295 311 312 296 + f 4 497 498 499 -496 + mu 0 4 311 313 314 312 + f 4 500 501 502 503 + mu 0 4 315 316 317 318 + f 4 504 505 506 -451 + mu 0 4 280 319 306 278 + f 4 507 508 -488 -506 + mu 0 4 319 320 303 306 + f 4 509 510 511 -492 + mu 0 4 307 321 322 309 + f 4 512 -456 513 514 + mu 0 4 323 286 285 324 + f 4 515 516 517 518 + mu 0 4 325 326 327 328 + f 4 519 -460 -513 520 + mu 0 4 329 287 286 323 + f 4 521 522 523 -521 + mu 0 4 323 322 330 329 + f 4 524 -470 -520 525 + mu 0 4 331 293 287 329 + f 4 -524 526 527 -526 + mu 0 4 329 330 332 331 + f 4 -517 528 -509 529 + mu 0 4 327 326 303 320 + f 4 -489 530 531 -510 + mu 0 4 307 297 333 321 + f 4 532 533 534 -532 + mu 0 4 333 334 335 321 + f 4 535 536 537 -534 + mu 0 4 334 336 337 335 + f 4 538 539 540 -497 + mu 0 4 312 338 339 296 + f 4 541 -533 542 -540 + mu 0 4 338 334 333 339 + f 4 543 544 -539 -500 + mu 0 4 314 340 338 312 + f 4 -536 -542 -545 545 + mu 0 4 336 334 338 340 + f 4 546 -544 547 -519 + mu 0 4 328 340 314 325 + f 4 548 -537 549 -530 + mu 0 4 320 337 336 327 + f 4 -528 550 -505 551 + mu 0 4 331 332 319 280 + f 4 -471 -525 -552 -450 + mu 0 4 266 293 331 280 + f 4 552 553 554 555 + mu 0 4 341 342 343 344 + f 4 556 557 -554 558 + mu 0 4 345 346 343 342 + f 4 559 560 561 562 + mu 0 4 347 348 349 350 + f 4 -561 563 564 565 + mu 0 4 349 348 351 352 + f 4 566 567 568 569 + mu 0 4 353 354 355 356 + f 4 570 -570 571 572 + mu 0 4 357 353 356 358 + f 3 573 574 575 + mu 0 3 359 360 361 + f 4 576 577 578 579 + mu 0 4 362 363 364 365 + f 4 580 581 582 583 + mu 0 4 316 366 367 368 + f 4 584 585 -576 586 + mu 0 4 369 370 359 361 + f 4 -584 587 588 -502 + mu 0 4 316 368 371 317 + f 4 589 590 591 592 + mu 0 4 364 372 315 373 + f 4 593 594 -590 -578 + mu 0 4 363 374 372 364 + f 4 595 -588 596 -586 + mu 0 4 370 375 376 359 + f 4 -579 -593 597 598 + mu 0 4 365 364 373 377 + f 4 -583 599 600 -597 + mu 0 4 376 378 379 359 + f 4 601 602 603 604 + mu 0 4 360 380 381 382 + f 4 605 -580 606 -604 + mu 0 4 381 383 384 382 + f 4 607 -575 -605 608 + mu 0 4 385 361 360 382 + f 4 -607 -599 609 -609 + mu 0 4 382 384 386 385 + f 4 -601 610 -602 -574 + mu 0 4 359 379 380 360 + f 4 611 -581 612 -595 + mu 0 4 374 366 316 372 + f 4 613 -577 614 615 + mu 0 4 387 363 362 388 + f 4 616 617 618 -616 + mu 0 4 389 390 391 392 + f 4 619 620 621 622 + mu 0 4 393 394 395 396 + f 4 623 -582 624 -622 + mu 0 4 397 367 366 398 + f 4 625 -600 -624 626 + mu 0 4 345 379 378 399 + f 4 627 -553 628 -603 + mu 0 4 380 342 341 381 + f 4 -615 -606 -629 629 + mu 0 4 389 383 381 341 + f 4 -556 630 -617 -630 + mu 0 4 341 344 390 389 + f 4 -557 -627 -621 631 + mu 0 4 346 345 399 394 + f 4 632 633 634 635 + mu 0 4 400 401 402 403 + f 4 -626 -559 -628 -611 + mu 0 4 379 345 342 380 + f 4 636 -594 -614 637 + mu 0 4 404 374 363 387 + f 4 -625 -612 -637 638 + mu 0 4 398 366 374 404 + f 4 639 -638 -619 640 + mu 0 4 405 404 387 406 + f 4 -623 -639 -640 641 + mu 0 4 407 398 404 405 + f 4 -631 -555 642 643 + mu 0 4 390 344 343 408 + f 4 -643 -558 -632 644 + mu 0 4 408 343 346 394 + f 4 645 646 647 648 + mu 0 4 409 369 410 411 + f 3 649 650 -585 + mu 0 3 369 412 370 + f 3 651 -650 -646 + mu 0 3 409 412 369 + f 4 652 653 654 -649 + mu 0 4 411 413 414 409 + f 4 655 656 -654 657 + mu 0 4 415 416 417 418 + f 4 658 659 -656 660 + mu 0 4 419 318 416 415 + f 4 661 662 663 664 + mu 0 4 420 421 422 416 + f 4 -664 665 666 -657 + mu 0 4 416 422 423 417 + f 4 667 668 -662 669 + mu 0 4 317 424 421 420 + f 4 670 671 672 -658 + mu 0 4 418 425 426 415 + f 4 673 -655 -667 674 + mu 0 4 427 409 414 428 + f 4 675 676 677 -675 + mu 0 4 428 429 430 427 + f 4 678 679 -676 -666 + mu 0 4 422 431 432 423 + f 4 -589 680 681 -668 + mu 0 4 317 371 433 424 + f 4 -681 -596 682 683 + mu 0 4 434 375 370 435 + f 4 684 685 -679 -663 + mu 0 4 421 436 431 422 + f 4 686 687 -685 -669 + mu 0 4 424 403 436 421 + f 4 688 689 -683 -651 + mu 0 4 412 437 435 370 + f 4 690 -689 -652 -674 + mu 0 4 427 437 412 409 + f 4 691 692 -633 693 + mu 0 4 438 439 440 441 + f 4 694 695 696 -677 + mu 0 4 429 442 443 430 + f 4 697 698 -695 -680 + mu 0 4 431 444 445 432 + f 4 -682 699 -636 -687 + mu 0 4 424 433 400 403 + f 4 -700 -684 700 -694 + mu 0 4 441 434 435 438 + f 4 -686 701 702 -698 + mu 0 4 431 436 446 444 + f 4 -702 -688 -635 703 + mu 0 4 446 436 403 402 + f 4 704 705 -701 -690 + mu 0 4 437 447 438 435 + f 4 706 -705 -691 -678 + mu 0 4 430 447 437 427 + f 4 707 708 -699 -703 + mu 0 4 446 448 445 444 + f 4 -634 709 -708 -704 + mu 0 4 402 401 448 446 + f 4 -693 710 711 -710 + mu 0 4 440 439 449 450 + f 4 -712 712 -696 -709 + mu 0 4 450 449 443 442 + f 4 -692 -706 713 -711 + mu 0 4 439 438 447 449 + f 4 -714 -707 -697 -713 + mu 0 4 449 447 430 443 + f 3 714 715 716 + mu 0 3 451 452 410 + f 3 -716 717 -648 + mu 0 3 410 452 411 + f 4 718 719 -717 720 + mu 0 4 453 454 451 410 + f 4 721 722 723 -720 + mu 0 4 454 455 456 451 + f 4 724 -723 725 726 + mu 0 4 457 458 459 460 + f 4 727 728 729 -726 + mu 0 4 459 461 462 460 + f 4 -673 730 731 732 + mu 0 4 415 426 463 464 + f 4 -732 733 734 735 + mu 0 4 464 463 465 457 + f 4 736 737 -671 -653 + mu 0 4 411 466 467 413 + f 4 -735 738 739 -725 + mu 0 4 457 465 468 458 + f 4 740 -715 741 742 + mu 0 4 469 452 451 470 + f 4 743 744 -743 745 + mu 0 4 471 472 469 470 + f 4 -741 746 -737 -718 + mu 0 4 452 469 466 411 + f 4 -747 -745 747 748 + mu 0 4 466 469 472 473 + f 4 749 750 -731 751 + mu 0 4 474 475 463 426 + f 4 -734 -751 752 753 + mu 0 4 465 463 475 476 + f 4 -749 754 755 -738 + mu 0 4 466 473 477 467 + f 4 -672 -756 756 -752 + mu 0 4 426 425 478 474 + f 4 -754 757 758 -739 + mu 0 4 465 476 479 468 + f 4 759 -759 760 -746 + mu 0 4 470 480 481 471 + f 4 -742 -724 -740 -760 + mu 0 4 470 451 456 480 + f 4 761 762 763 764 + mu 0 4 482 483 484 352 + f 4 765 -729 -762 766 + mu 0 4 485 462 461 486 + f 4 767 768 -744 769 + mu 0 4 487 488 472 471 + f 4 770 771 772 -750 + mu 0 4 474 489 490 475 + f 4 -773 773 774 -753 + mu 0 4 475 490 491 476 + f 4 775 -758 -775 776 + mu 0 4 492 479 476 491 + f 4 -761 -776 777 -770 + mu 0 4 471 481 493 487 + f 4 778 779 -755 780 + mu 0 4 494 495 477 473 + f 4 -780 781 -771 -757 + mu 0 4 478 496 489 474 + f 4 -769 782 -781 -748 + mu 0 4 472 488 494 473 + f 4 -779 -783 783 784 + mu 0 4 495 494 488 497 + f 4 -784 -768 -778 785 + mu 0 4 497 488 487 493 + f 4 -774 786 -786 -777 + mu 0 4 491 490 498 492 + f 4 -787 -772 -782 -785 + mu 0 4 498 490 489 496 + f 4 787 788 789 790 + mu 0 4 499 500 501 453 + f 4 791 792 793 794 + mu 0 4 502 503 504 505 + f 4 795 796 -794 797 + mu 0 4 506 507 505 504 + f 4 798 -548 -499 799 + mu 0 4 508 325 314 313 + f 3 800 801 -790 + mu 0 3 501 509 453 + f 3 -802 802 -719 + mu 0 3 453 509 454 + f 4 -789 803 -792 804 + mu 0 4 501 500 510 511 + f 4 805 -801 806 807 + mu 0 4 512 509 501 513 + f 4 -806 808 809 -803 + mu 0 4 509 512 484 454 + f 4 810 811 -807 -805 + mu 0 4 511 514 513 501 + f 4 812 -811 -795 813 + mu 0 4 515 516 502 505 + f 4 -810 -763 -728 -722 + mu 0 4 454 484 483 455 + f 4 -730 814 815 816 + mu 0 4 460 462 517 518 + f 4 -814 817 -816 818 + mu 0 4 515 505 518 517 + f 4 -562 819 -808 820 + mu 0 4 350 349 512 513 + f 4 -809 -820 -566 -764 + mu 0 4 484 512 349 352 + f 4 821 822 -815 -766 + mu 0 4 485 519 517 462 + f 4 823 824 -819 -823 + mu 0 4 519 520 515 517 + f 4 825 826 827 828 + mu 0 4 521 522 520 523 + f 4 -563 829 -826 830 + mu 0 4 347 350 524 525 + f 4 831 -767 832 833 + mu 0 4 526 485 486 527 + f 4 -833 -765 -565 834 + mu 0 4 528 482 352 351 + f 4 835 -822 -832 836 + mu 0 4 529 519 485 526 + f 4 -824 -836 837 -828 + mu 0 4 520 519 529 523 + f 4 838 -813 -825 -827 + mu 0 4 522 516 515 520 + f 4 -812 -839 -830 -821 + mu 0 4 513 514 524 350 + f 4 -835 -564 839 840 + mu 0 4 528 351 348 530 + f 4 -840 -560 -831 841 + mu 0 4 530 348 347 525 + f 4 -838 842 -842 -829 + mu 0 4 523 529 531 521 + f 4 -843 -837 -834 -841 + mu 0 4 531 529 526 527 + f 4 843 844 845 846 + mu 0 4 532 533 534 535 + f 4 -798 847 848 849 + mu 0 4 506 504 536 537 + f 4 850 851 852 853 + mu 0 4 538 539 499 540 + f 4 -846 854 -854 855 + mu 0 4 535 534 538 540 + f 4 856 857 858 859 + mu 0 4 539 541 542 500 + f 4 860 -857 -851 861 + mu 0 4 543 541 539 538 + f 4 862 863 -862 -855 + mu 0 4 534 544 543 538 + f 4 864 865 -863 -845 + mu 0 4 533 545 544 534 + f 4 866 -866 867 868 + mu 0 4 546 544 545 547 + f 4 869 870 871 -848 + mu 0 4 504 548 549 536 + f 4 872 -871 873 874 + mu 0 4 550 549 548 551 + f 4 875 876 -804 -859 + mu 0 4 542 552 510 500 + f 4 -877 877 -870 -793 + mu 0 4 503 553 548 504 + f 4 -874 -878 878 879 + mu 0 4 551 548 553 554 + f 4 880 -865 881 -872 + mu 0 4 549 545 533 536 + f 4 -868 -881 -873 882 + mu 0 4 547 545 549 550 + f 4 883 884 885 -883 + mu 0 4 550 555 556 547 + f 4 -879 -876 886 887 + mu 0 4 557 552 542 355 + f 4 -858 888 -569 -887 + mu 0 4 542 541 356 355 + f 4 889 890 891 -880 + mu 0 4 554 558 559 551 + f 4 -568 892 -890 -888 + mu 0 4 355 354 560 557 + f 4 -892 893 -884 -875 + mu 0 4 551 559 555 550 + f 4 894 895 -869 -886 + mu 0 4 556 561 546 547 + f 4 -896 896 -573 897 + mu 0 4 546 562 357 358 + f 4 898 -572 -889 -861 + mu 0 4 543 358 356 541 + f 4 899 900 -895 -885 + mu 0 4 555 563 561 556 + f 4 -891 901 -900 -894 + mu 0 4 559 558 563 555 + f 4 -893 -567 902 -902 + mu 0 4 560 354 353 564 + f 4 -903 -571 -897 -901 + mu 0 4 564 353 357 562 + f 4 903 -213 904 -435 + mu 0 4 271 143 142 272 + f 4 905 -444 906 -221 + mu 0 4 145 276 277 146 + f 4 -904 -446 -906 -219 + mu 0 4 143 271 276 145 + f 4 907 908 -238 -907 + mu 0 4 565 289 148 157 + f 4 909 910 -905 -218 + mu 0 4 144 281 272 142 + f 4 -909 -463 911 -225 + mu 0 4 148 289 290 149 + f 4 912 -453 -910 -245 + mu 0 4 162 282 281 144 + f 4 -466 913 -264 -912 + mu 0 4 290 292 175 149 + f 4 -913 -274 -914 -468 + mu 0 4 282 162 175 292 + f 4 -522 -515 914 -512 + mu 0 4 322 323 324 309 + f 4 -523 -511 -535 915 + mu 0 4 330 322 321 335 + f 4 -916 -538 916 -527 + mu 0 4 330 335 337 332 + f 4 -917 -549 -508 -551 + mu 0 4 332 337 320 319 + f 4 -543 -531 -474 -541 + mu 0 4 339 333 297 296 + f 4 -436 -911 -452 -439 + mu 0 4 273 272 281 264 + f 4 -461 -908 -443 -455 + mu 0 4 283 289 565 284 + f 4 917 918 -727 919 + mu 0 4 507 419 457 460 + f 4 -864 -867 -898 -899 + mu 0 4 543 544 546 358 + f 4 920 -493 -915 -476 + mu 0 4 298 566 567 299 + f 4 -426 921 -448 -482 + mu 0 4 260 263 275 279 + f 4 -441 -922 922 -437 + mu 0 4 273 275 263 274 + f 4 -431 -445 -923 -425 + mu 0 4 262 268 274 263 + f 4 -546 -547 -518 -550 + mu 0 4 336 340 328 327 + f 4 -799 923 924 -516 + mu 0 4 325 508 568 326 + f 4 -477 -514 -432 -424 + mu 0 4 261 299 269 262 + f 4 -882 -844 925 -849 + mu 0 4 536 533 532 537 + f 4 926 927 928 929 + mu 0 4 569 570 571 572 + f 4 930 931 932 933 + mu 0 4 573 574 575 576 + f 4 934 935 936 -932 + mu 0 4 574 577 578 575 + f 4 937 938 939 -927 + mu 0 4 569 579 580 570 + f 4 940 941 942 943 + mu 0 4 581 582 583 584 + f 4 944 945 946 947 + mu 0 4 585 584 586 587 + f 4 948 949 950 -942 + mu 0 4 582 588 589 583 + f 4 951 952 953 -939 + mu 0 4 579 590 591 580 + f 4 -937 954 -941 955 + mu 0 4 575 578 582 581 + f 4 956 957 -949 958 + mu 0 4 592 593 588 582 + f 4 959 960 961 962 + mu 0 4 594 587 595 576 + f 4 963 -934 -962 964 + mu 0 4 596 573 576 595 + f 4 -929 965 966 967 + mu 0 4 572 571 597 598 + f 4 968 969 970 971 + mu 0 4 599 600 601 602 + f 4 972 973 -971 974 + mu 0 4 603 604 602 601 + f 4 975 976 977 978 + mu 0 4 605 606 607 608 + f 3 979 980 981 + mu 0 3 609 610 611 + f 4 982 983 984 985 + mu 0 4 612 613 614 615 + f 4 -985 986 987 988 + mu 0 4 615 614 616 617 + f 4 989 990 991 992 + mu 0 4 618 609 619 620 + f 4 993 994 995 996 + mu 0 4 621 622 623 624 + f 4 997 -977 998 999 + mu 0 4 625 607 606 626 + f 4 -996 1000 1001 1002 + mu 0 4 624 623 627 628 + f 4 -993 1003 1004 1005 + mu 0 4 618 620 629 630 + f 4 1006 -965 1007 -1002 + mu 0 4 627 596 595 628 + f 4 1008 1009 1010 -997 + mu 0 4 624 631 632 621 + f 4 1011 1012 1013 1014 + mu 0 4 633 634 635 636 + f 4 1015 -1013 1016 1017 + mu 0 4 637 635 634 638 + f 4 1018 1019 1020 -979 + mu 0 4 608 639 640 605 + f 4 -969 1021 -953 1022 + mu 0 4 600 599 591 590 + f 4 1023 1024 1025 -1017 + mu 0 4 634 641 642 638 + f 4 1026 1027 -994 -1011 + mu 0 4 632 643 622 621 + f 4 1028 -987 1029 -1014 + mu 0 4 635 616 614 636 + f 4 1030 1031 -991 -982 + mu 0 4 611 644 619 609 + f 4 1032 -1005 1033 -967 + mu 0 4 597 630 629 598 + f 4 1034 1035 1036 -988 + mu 0 4 616 645 646 617 + f 4 1037 -1035 -1029 -1016 + mu 0 4 637 645 616 635 + f 4 1038 1039 1040 1041 + mu 0 4 647 648 649 650 + f 4 1042 1043 1044 1045 + mu 0 4 651 652 653 654 + f 4 1046 1047 -1043 1048 + mu 0 4 655 656 652 651 + f 4 -1045 1049 1050 1051 + mu 0 4 654 653 657 658 + f 4 -1051 1052 1053 1054 + mu 0 4 658 657 650 659 + f 4 1055 1056 1057 -1044 + mu 0 4 652 660 661 653 + f 4 1058 -1042 -1053 1059 + mu 0 4 662 647 650 657 + f 4 -1058 1060 -1060 -1050 + mu 0 4 653 661 662 657 + f 4 1061 1062 1063 1064 + mu 0 4 663 664 665 666 + f 4 1065 1066 1067 1068 + mu 0 4 667 668 669 670 + f 4 1069 1070 1071 -1066 + mu 0 4 667 671 672 668 + f 4 1072 1073 -1070 1074 + mu 0 4 673 674 671 667 + f 4 1075 1076 1077 1078 + mu 0 4 675 676 677 678 + f 4 1079 1080 -1076 1081 + mu 0 4 679 680 676 675 + f 4 1082 1083 1084 -1046 + mu 0 4 681 682 683 684 + f 4 -1068 1085 1086 1087 + mu 0 4 670 669 685 686 + f 4 1088 1089 1090 -1087 + mu 0 4 685 687 688 686 + f 3 1091 1092 1093 + mu 0 3 688 689 690 + f 4 -1091 1094 1095 1096 + mu 0 4 686 688 691 692 + f 4 1097 1098 1099 -1055 + mu 0 4 693 694 695 696 + f 4 1100 -1065 1101 -1080 + mu 0 4 679 663 666 680 + f 4 1102 1103 1104 -1099 + mu 0 4 694 697 698 695 + f 4 1105 -1084 1106 -1092 + mu 0 4 688 683 682 689 + f 4 1107 -1106 -1090 1108 + mu 0 4 699 683 688 687 + f 4 -1049 -1085 -1108 1109 + mu 0 4 700 684 683 699 + f 4 1110 -1104 1111 -1063 + mu 0 4 664 698 697 665 + f 4 1112 1113 1114 -1071 + mu 0 4 671 660 701 672 + f 4 -1069 1115 1116 -1075 + mu 0 4 667 670 702 673 + f 4 1117 1118 1119 -1059 + mu 0 4 662 703 704 647 + f 4 1120 -1119 1121 -1078 + mu 0 4 677 704 703 678 + f 4 -1113 -1074 1122 -1057 + mu 0 4 660 671 674 661; + setAttr ".fc[500:999]" + f 4 -1100 1123 -1083 -1052 + mu 0 4 696 695 682 681 + f 4 -1105 1124 -1107 -1124 + mu 0 4 695 698 689 682 + f 4 1125 -1093 -1125 -1111 + mu 0 4 664 690 689 698 + f 4 1126 -1126 -1062 1127 + mu 0 4 691 690 664 663 + f 4 -1096 -1128 -1101 1128 + mu 0 4 692 691 663 679 + f 4 1129 -1114 -1056 -1048 + mu 0 4 656 701 660 652 + f 4 -1116 -1088 -1097 1130 + mu 0 4 702 670 686 692 + f 4 1131 -1117 1132 -1079 + mu 0 4 678 673 702 675 + f 4 -1123 1133 -1118 -1061 + mu 0 4 661 674 703 662 + f 4 -1122 -1134 -1073 -1132 + mu 0 4 678 703 674 673 + f 4 1134 1135 1136 1137 + mu 0 4 705 706 707 708 + f 4 1138 -1137 1139 1140 + mu 0 4 709 708 707 710 + f 4 1141 1142 1143 1144 + mu 0 4 711 712 713 714 + f 4 1145 1146 1147 1148 + mu 0 4 715 716 717 718 + f 3 1149 1150 1151 + mu 0 3 719 720 721 + f 4 1152 -1145 1153 -1147 + mu 0 4 716 711 714 717 + f 3 1154 1155 1156 + mu 0 3 722 723 724 + f 4 1157 1158 -1150 1159 + mu 0 4 725 726 720 719 + f 4 1160 1161 1162 1163 + mu 0 4 727 728 729 730 + f 4 1164 1165 1166 1167 + mu 0 4 731 732 733 730 + f 4 1168 1169 1170 1171 + mu 0 4 734 735 736 737 + f 4 -1157 1172 1173 1174 + mu 0 4 722 724 738 739 + f 4 1175 1176 1177 -1156 + mu 0 4 723 740 741 724 + f 4 -1177 1178 1179 1180 + mu 0 4 741 740 742 743 + f 4 1181 1182 1183 -1176 + mu 0 4 723 713 744 740 + f 4 -1184 1184 1185 -1179 + mu 0 4 740 744 745 742 + f 4 1186 1187 1188 1189 + mu 0 4 746 747 748 749 + f 4 1190 1191 1192 -1189 + mu 0 4 748 712 750 749 + f 4 -1183 -1143 -1191 1193 + mu 0 4 744 713 712 748 + f 4 1194 -1185 -1194 -1188 + mu 0 4 747 745 744 748 + f 4 1195 1196 1197 1198 + mu 0 4 751 752 753 754 + f 4 -1163 1199 1200 1201 + mu 0 4 730 729 755 756 + f 4 -1171 1202 -1165 1203 + mu 0 4 737 736 732 731 + f 4 1204 -1151 1205 1206 + mu 0 4 753 721 720 757 + f 4 1207 1208 1209 1210 + mu 0 4 758 759 760 752 + f 4 1211 1212 1213 1214 + mu 0 4 757 761 762 763 + f 4 1215 1216 1217 -1159 + mu 0 4 726 764 765 720 + f 4 1218 1219 1220 -1158 + mu 0 4 766 767 768 769 + f 4 -1221 1221 1222 -1216 + mu 0 4 769 768 770 771 + f 4 1223 -1164 -1167 1224 + mu 0 4 772 727 730 733 + f 4 1225 1226 1227 -1225 + mu 0 4 733 773 774 772 + f 4 1228 1229 -1226 -1166 + mu 0 4 732 775 773 733 + f 4 1230 1231 -1229 -1203 + mu 0 4 736 776 775 732 + f 4 1232 -1231 -1170 1233 + mu 0 4 777 776 736 735 + f 4 -1227 1234 1235 1236 + mu 0 4 774 773 778 779 + f 4 1237 1238 1239 -1232 + mu 0 4 776 780 781 775 + f 4 -1238 -1233 1240 1241 + mu 0 4 780 776 777 782 + f 4 1242 1243 1244 -1236 + mu 0 4 778 783 784 779 + f 4 1245 1246 1247 -1243 + mu 0 4 778 781 785 783 + f 4 -1239 1248 1249 -1247 + mu 0 4 781 780 786 785 + f 4 1250 1251 -1249 -1242 + mu 0 4 782 787 786 780 + f 4 1252 1253 1254 -1244 + mu 0 4 783 788 789 784 + f 4 1255 1256 -1253 -1248 + mu 0 4 785 790 788 783 + f 4 1257 1258 -1256 -1250 + mu 0 4 786 791 790 785 + f 4 1259 -1258 -1252 1260 + mu 0 4 792 791 786 787 + f 4 -1240 -1246 -1235 -1230 + mu 0 4 775 781 778 773 + f 4 1261 1262 1263 1264 + mu 0 4 793 794 795 796 + f 4 1265 1266 1267 -1265 + mu 0 4 796 797 798 793 + f 4 1268 1269 1270 -1267 + mu 0 4 797 799 800 798 + f 4 1271 1272 1273 -1270 + mu 0 4 799 801 802 800 + f 4 -1254 1274 1275 1276 + mu 0 4 789 788 803 804 + f 4 1277 1278 1279 1280 + mu 0 4 803 805 806 802 + f 4 1281 -1260 1282 1283 + mu 0 4 807 791 792 808 + f 4 1284 1285 -1259 -1282 + mu 0 4 807 805 790 791 + f 4 -1286 -1278 -1275 -1257 + mu 0 4 790 805 803 788 + f 4 1286 1287 -1262 -1268 + mu 0 4 798 806 794 793 + f 4 -1280 -1287 -1271 -1274 + mu 0 4 802 806 798 800 + f 4 -1279 -1285 1288 -1288 + mu 0 4 806 805 807 794 + f 4 1289 -1276 -1281 -1273 + mu 0 4 801 804 803 802 + f 4 -1284 1290 -1263 -1289 + mu 0 4 807 808 795 794 + f 4 1291 1292 1293 1294 + mu 0 4 809 810 811 812 + f 4 1295 1296 1297 1298 + mu 0 4 813 814 815 816 + f 4 1299 -1299 1300 1301 + mu 0 4 817 813 816 818 + f 4 1302 1303 1304 1305 + mu 0 4 809 819 820 817 + f 4 1306 -1296 1307 1308 + mu 0 4 821 814 813 822 + f 4 1309 -1308 -1300 -1305 + mu 0 4 820 822 813 817 + f 4 -1303 -1295 1310 1311 + mu 0 4 819 809 812 823 + f 4 1312 1313 1314 -1309 + mu 0 4 822 824 825 821 + f 4 1315 -1313 -1310 1316 + mu 0 4 826 824 822 820 + f 4 -1304 1317 1318 -1317 + mu 0 4 820 819 827 826 + f 4 1319 -1318 -1312 1320 + mu 0 4 828 827 819 823 + f 4 -1314 1321 1322 1323 + mu 0 4 825 824 829 830 + f 4 1324 -1322 -1316 1325 + mu 0 4 831 829 824 826 + f 4 1326 1327 -1326 -1319 + mu 0 4 827 832 831 826 + f 4 -1327 -1320 1328 1329 + mu 0 4 832 827 828 833 + f 4 1330 1331 1332 -1323 + mu 0 4 829 834 835 830 + f 4 1333 -1331 -1325 1334 + mu 0 4 836 834 829 831 + f 4 -1328 1335 1336 -1335 + mu 0 4 831 832 837 836 + f 4 1337 1338 -1336 -1330 + mu 0 4 833 838 837 832 + f 4 1339 1340 1341 -1332 + mu 0 4 834 839 840 835 + f 4 1342 -1340 -1334 1343 + mu 0 4 841 839 834 836 + f 4 1344 1345 -1344 -1337 + mu 0 4 837 842 841 836 + f 4 1346 -1345 -1339 1347 + mu 0 4 843 842 837 838 + f 4 1348 1349 1350 1351 + mu 0 4 844 845 846 847 + f 4 1352 1353 1354 1355 + mu 0 4 848 849 850 851 + f 4 1356 -1356 1357 1358 + mu 0 4 852 848 851 853 + f 4 1359 -1352 1360 -1359 + mu 0 4 853 844 847 852 + f 4 -1360 1361 1362 -1349 + mu 0 4 844 853 854 845 + f 4 -1341 1363 1364 1365 + mu 0 4 840 839 855 856 + f 4 1366 -1364 -1343 1367 + mu 0 4 857 855 839 841 + f 4 1368 1369 -1368 -1346 + mu 0 4 842 858 857 841 + f 4 -1369 -1347 1370 1371 + mu 0 4 858 842 843 859 + f 4 -1354 1372 -1365 1373 + mu 0 4 850 849 856 855 + f 4 1374 -1374 -1367 1375 + mu 0 4 854 850 855 857 + f 4 -1370 1376 -1363 -1376 + mu 0 4 857 858 845 854 + f 4 -1350 -1377 -1372 1377 + mu 0 4 846 845 858 859 + f 4 -1358 -1355 -1375 -1362 + mu 0 4 853 851 850 854 + f 4 1378 1379 1380 1381 + mu 0 4 729 860 861 862 + f 4 -1381 1382 1383 1384 + mu 0 4 862 861 863 810 + f 4 -1384 1385 1386 -1293 + mu 0 4 810 863 864 811 + f 4 -1162 1387 1388 -1379 + mu 0 4 729 728 865 860 + f 4 1389 1390 1391 -1386 + mu 0 4 863 866 867 864 + f 4 1392 1393 -1390 -1383 + mu 0 4 861 868 866 863 + f 4 1394 1395 -1393 -1380 + mu 0 4 860 869 868 861 + f 4 1396 -1395 -1389 1397 + mu 0 4 870 869 860 865 + f 4 1398 1399 1400 1401 + mu 0 4 871 872 873 874 + f 4 1402 1403 -1399 1404 + mu 0 4 875 876 872 871 + f 4 1405 1406 -1403 1407 + mu 0 4 877 878 876 875 + f 4 1408 -1406 1409 1410 + mu 0 4 879 878 877 880 + f 4 -1391 1411 1412 1413 + mu 0 4 867 866 881 882 + f 4 1414 1415 -1412 -1394 + mu 0 4 868 883 881 866 + f 4 1416 1417 -1415 -1396 + mu 0 4 869 884 883 868 + f 4 -1417 -1397 1418 1419 + mu 0 4 884 869 870 885 + f 4 1420 -1402 1421 -1413 + mu 0 4 881 871 874 882 + f 4 -1416 1422 -1405 -1421 + mu 0 4 881 883 875 871 + f 4 -1418 1423 -1408 -1423 + mu 0 4 883 884 877 875 + f 4 1424 -1410 -1424 -1420 + mu 0 4 885 880 877 884 + f 4 1425 1426 1427 1428 + mu 0 4 886 887 888 889 + f 4 1429 1430 1431 -1429 + mu 0 4 889 890 891 886 + f 4 1432 1433 1434 -1431 + mu 0 4 890 892 893 891 + f 4 1435 1436 1437 -1434 + mu 0 4 892 894 895 893 + f 4 1438 1439 1440 1441 + mu 0 4 896 897 898 888 + f 4 1442 1443 1444 -1440 + mu 0 4 897 899 894 898 + f 4 1445 -1442 -1427 1446 + mu 0 4 900 896 888 887 + f 4 -1437 -1444 1447 1448 + mu 0 4 895 894 899 901 + f 4 -1400 1449 -1446 1450 + mu 0 4 873 872 896 900 + f 4 1451 -1439 -1450 -1404 + mu 0 4 876 897 896 872 + f 4 1452 -1443 -1452 -1407 + mu 0 4 878 899 897 876 + f 4 -1453 -1409 1453 -1448 + mu 0 4 899 878 879 901 + f 4 -1441 1454 -1430 -1428 + mu 0 4 888 898 890 889 + f 4 -1455 -1445 -1436 -1433 + mu 0 4 890 898 894 892 + f 4 1455 1456 -1175 1457 + mu 0 4 902 903 722 739 + f 4 1458 1459 -1173 -1178 + mu 0 4 741 904 738 724 + f 4 1460 -1459 -1181 1461 + mu 0 4 905 904 741 743 + f 4 1462 1463 1464 -1458 + mu 0 4 739 906 907 902 + f 4 1465 1466 -1463 -1174 + mu 0 4 738 908 906 739 + f 4 1467 1468 -1466 -1460 + mu 0 4 904 909 908 738 + f 4 1469 -1468 -1461 1470 + mu 0 4 910 909 904 905 + f 4 -1464 1471 1472 1473 + mu 0 4 907 906 911 912 + f 4 1474 1475 -1472 -1467 + mu 0 4 908 913 911 906 + f 4 1476 1477 -1475 -1469 + mu 0 4 909 914 913 908 + f 4 -1477 -1470 1478 1479 + mu 0 4 914 909 910 915 + f 4 1480 1481 1482 -1473 + mu 0 4 911 916 917 912 + f 4 -1476 1483 1484 -1481 + mu 0 4 911 913 918 916 + f 4 -1478 1485 1486 -1484 + mu 0 4 913 914 919 918 + f 4 1487 1488 -1486 -1480 + mu 0 4 915 920 919 914 + f 4 1489 1490 1491 -1482 + mu 0 4 916 921 922 917 + f 4 1492 -1490 -1485 1493 + mu 0 4 923 921 916 918 + f 4 1494 1495 -1494 -1487 + mu 0 4 919 924 923 918 + f 4 1496 -1495 -1489 1497 + mu 0 4 925 924 919 920 + f 4 1498 1499 1500 1501 + mu 0 4 926 927 928 929 + f 4 1502 1503 1504 -1502 + mu 0 4 929 930 931 926 + f 4 1505 1506 1507 -1504 + mu 0 4 930 932 933 931 + f 4 1508 1509 1510 -1507 + mu 0 4 932 934 935 933 + f 4 1511 1512 1513 1514 + mu 0 4 927 936 937 938 + f 4 1515 1516 -1500 -1515 + mu 0 4 938 939 928 927 + f 4 1517 1518 -1510 1519 + mu 0 4 940 941 935 934 + f 4 1520 -1513 1521 -1519 + mu 0 4 941 937 936 935 + f 4 -1491 1522 -1518 1523 + mu 0 4 922 921 941 940 + f 4 1524 -1521 -1523 -1493 + mu 0 4 923 937 941 921 + f 4 1525 -1514 -1525 -1496 + mu 0 4 924 938 937 923 + f 4 -1526 -1497 1526 -1516 + mu 0 4 938 924 925 939 + f 4 1527 -1512 -1499 -1505 + mu 0 4 931 936 927 926 + f 4 -1522 -1528 -1508 -1511 + mu 0 4 935 936 931 933 + f 4 1528 1529 1530 1531 + mu 0 4 942 943 944 945 + f 4 1532 1533 1534 -1532 + mu 0 4 945 946 947 942 + f 4 1535 -1534 1536 1537 + mu 0 4 948 947 946 949 + f 4 1538 1539 1540 1541 + mu 0 4 950 951 952 953 + f 4 1542 -1542 1543 1544 + mu 0 4 954 950 953 955 + f 4 1545 1546 1547 1548 + mu 0 4 954 956 957 958 + f 4 1549 1550 1551 1552 + mu 0 4 959 960 951 958 + f 4 1553 1554 1555 1556 + mu 0 4 961 962 963 959 + f 4 1557 1558 -1550 -1556 + mu 0 4 963 964 960 959 + f 4 1559 1560 1561 -1559 + mu 0 4 964 965 966 960 + f 4 -1540 -1551 -1562 1562 + mu 0 4 952 951 960 966 + f 4 -1557 -1553 -1548 1563 + mu 0 4 961 959 958 957 + f 4 1564 1565 1566 -1564 + mu 0 4 957 967 968 969 + f 4 -1547 1567 1568 -1565 + mu 0 4 957 956 970 967 + f 4 1569 -1555 1570 -1529 + mu 0 4 942 963 962 943 + f 4 -1535 1571 -1558 -1570 + mu 0 4 942 947 964 963 + f 4 -1560 -1572 -1536 1572 + mu 0 4 965 964 947 948 + f 4 -1546 -1545 1573 -1568 + mu 0 4 956 954 955 970 + f 4 -1552 -1539 -1543 -1549 + mu 0 4 958 951 950 954 + f 4 1574 1575 -1146 1576 + mu 0 4 971 972 716 715 + f 4 1577 1578 1579 -1538 + mu 0 4 973 974 975 976 + f 4 1580 1581 1582 1583 + mu 0 4 977 978 979 980 + f 4 1584 1585 1586 1587 + mu 0 4 981 982 979 983 + f 4 1588 1589 1590 1591 + mu 0 4 984 985 986 983 + f 4 1592 1593 1594 1595 + mu 0 4 987 988 989 990 + f 4 1596 1597 1598 1599 + mu 0 4 991 989 980 992 + f 4 -1595 -1597 1600 1601 + mu 0 4 990 989 991 993 + f 4 1602 1603 -1585 1604 + mu 0 4 994 995 982 981 + f 4 1605 1606 1607 1608 + mu 0 4 996 997 998 999 + f 4 1609 1610 1611 -1606 + mu 0 4 996 1000 1001 997 + f 3 1612 1613 1614 + mu 0 3 1002 1003 999 + f 3 1615 1616 1617 + mu 0 3 1003 1004 996 + f 4 1618 1619 1620 -1161 + mu 0 4 1005 1006 1007 1008 + f 4 1621 1622 1623 1624 + mu 0 4 1000 1009 1010 1011 + f 4 1625 -1620 1626 -1610 + mu 0 4 996 1007 1006 1000 + f 4 1627 -1613 1628 -1294 + mu 0 4 1012 1003 1002 1013 + f 4 1629 1630 1631 1632 + mu 0 4 1014 1015 1016 1017 + f 3 1633 1634 -1627 + mu 0 3 1006 1018 1000 + f 3 1635 -1624 1636 + mu 0 3 1019 1011 1010 + f 4 1637 -1636 1638 1639 + mu 0 4 1020 1011 1019 1021 + f 4 1640 1641 1642 -1638 + mu 0 4 1020 1022 1023 1011 + f 4 -1601 1643 1644 -1187 + mu 0 4 993 991 1024 1025 + f 4 1645 1646 1647 1648 + mu 0 4 1026 1027 1001 1023 + f 4 -1645 1649 1650 -1195 + mu 0 4 1025 1024 1022 1028 + f 4 1651 -1649 -1642 -1650 + mu 0 4 1024 1026 1023 1022 + f 4 1652 1653 1654 -1169 + mu 0 4 1029 1009 1030 1031 + f 4 1655 1656 -1619 -1224 + mu 0 4 1032 1033 1006 1005 + f 4 1657 -1640 1658 -1180 + mu 0 4 1034 1020 1021 1035 + f 4 1659 1660 1661 -1637 + mu 0 4 1010 1036 1037 1019 + f 4 -1662 1662 1663 -1639 + mu 0 4 1019 1037 1038 1021 + f 4 -1651 -1641 -1658 -1186 + mu 0 4 1028 1022 1020 1034 + f 4 -1648 -1611 -1625 -1643 + mu 0 4 1023 1001 1000 1011 + f 4 1664 1665 1666 1667 + mu 0 4 1039 1040 998 1041 + f 4 1668 1669 -1603 1670 + mu 0 4 1042 1043 995 994 + f 4 1671 -1220 1672 -1665 + mu 0 4 1039 768 767 1040 + f 4 1673 -1605 1674 -1199 + mu 0 4 1044 994 981 751 + f 4 1675 1676 -1671 -1674 + mu 0 4 1044 1045 1042 994 + f 4 1677 1678 -1669 1679 + mu 0 4 1046 1047 1043 1042 + f 4 -1214 1680 -1680 -1677 + mu 0 4 1045 1048 1046 1042 + f 4 1681 -1623 -1653 1682 + mu 0 4 1049 1010 1009 1029 + f 4 1683 1684 1685 1686 + mu 0 4 1050 1051 1033 1052 + f 4 -1684 1687 1688 1689 + mu 0 4 1051 1050 1053 1030 + f 4 1690 -1687 1691 1692 + mu 0 4 1054 1050 1052 1055 + f 4 -1691 1693 1694 -1688 + mu 0 4 1050 1054 1056 1053 + f 4 -1693 1695 1696 1697 + mu 0 4 1054 1055 1057 1058 + f 4 -1694 -1698 1698 1699 + mu 0 4 1056 1054 1058 1059 + f 4 1700 -1697 1701 1702 + mu 0 4 1060 1058 1057 1061 + f 4 -1701 1703 1704 -1699 + mu 0 4 1058 1060 1062 1059 + f 4 1705 1706 1707 -1704 + mu 0 4 1060 1063 1064 1062 + f 4 1708 -1706 -1703 1709 + mu 0 4 1065 1063 1060 1061 + f 4 1710 1711 1712 1713 + mu 0 4 1066 1067 1068 1069 + f 4 -1713 1714 1715 1716 + mu 0 4 1069 1068 1070 1071 + f 4 1717 -1686 -1656 -1228 + mu 0 4 1072 1052 1033 1032 + f 4 -1655 -1689 1718 -1234 + mu 0 4 1031 1030 1053 1073 + f 4 1719 -1692 -1718 -1237 + mu 0 4 1074 1055 1052 1072 + f 4 -1719 -1695 1720 -1241 + mu 0 4 1073 1053 1056 1075 + f 4 1721 -1696 -1720 -1245 + mu 0 4 1076 1057 1055 1074 + f 4 -1721 -1700 1722 -1251 + mu 0 4 1075 1056 1059 1077 + f 4 1723 -1702 -1722 -1255 + mu 0 4 1078 1061 1057 1076 + f 4 -1723 -1705 1724 -1261 + mu 0 4 1077 1059 1062 1079 + f 4 1725 -1715 1726 -1266 + mu 0 4 1080 1070 1068 1081 + f 4 -1727 -1712 1727 -1269 + mu 0 4 1081 1068 1067 1082 + f 4 1728 1729 1730 -1291 + mu 0 4 1083 1064 1071 1084 + f 4 1731 -1710 -1724 -1277 + mu 0 4 1085 1065 1061 1078 + f 4 -1728 -1711 1732 -1272 + mu 0 4 1082 1067 1066 1086 + f 4 -1731 -1716 -1726 -1264 + mu 0 4 1084 1071 1070 1080 + f 4 1733 -1717 -1730 -1707 + mu 0 4 1063 1069 1071 1064 + f 4 -1725 -1708 -1729 -1283 + mu 0 4 1079 1062 1064 1083 + f 4 1734 -1714 -1734 -1709 + mu 0 4 1065 1066 1069 1063 + f 4 -1733 -1735 -1732 -1290 + mu 0 4 1086 1066 1065 1085 + f 4 -1629 1735 1736 -1311 + mu 0 4 1013 1002 1087 1088 + f 4 1737 -1631 1738 -1297 + mu 0 4 1089 1016 1015 1090 + f 4 -1632 1739 1740 1741 + mu 0 4 1017 1016 1091 1092 + f 4 -1741 1742 1743 1744 + mu 0 4 1092 1091 1093 1094 + f 4 -1745 1745 1746 1747 + mu 0 4 1092 1094 1095 1087 + f 4 -1744 1748 1749 1750 + mu 0 4 1094 1093 1096 1097 + f 4 -1751 1751 1752 -1746 + mu 0 4 1094 1097 1098 1095 + f 4 -1750 1753 1754 1755 + mu 0 4 1097 1096 1099 1100 + f 4 -1752 -1756 1756 1757 + mu 0 4 1098 1097 1100 1101 + f 4 -1755 1758 1759 1760 + mu 0 4 1100 1099 1102 1103 + f 4 -1761 1761 1762 -1757 + mu 0 4 1100 1103 1104 1101 + f 4 1763 1764 1765 1766 + mu 0 4 1105 1106 1107 1108 + f 4 -1767 1767 1768 1769 + mu 0 4 1105 1108 1109 1110 + f 4 -1760 1770 1771 1772 + mu 0 4 1103 1102 1111 1112 + f 4 -1773 1773 1774 -1762 + mu 0 4 1103 1112 1113 1104 + f 4 -1772 1775 -1764 1776 + mu 0 4 1112 1111 1106 1105 + f 4 -1774 -1777 -1770 1777 + mu 0 4 1113 1112 1105 1110 + f 4 1778 -1740 -1738 -1307 + mu 0 4 1114 1091 1016 1089 + f 4 1779 -1743 -1779 -1315 + mu 0 4 1115 1093 1091 1114 + f 4 -1737 -1747 1780 -1321 + mu 0 4 1088 1087 1095 1116 + f 4 1781 -1749 -1780 -1324 + mu 0 4 1117 1096 1093 1115 + f 4 -1781 -1753 1782 -1329 + mu 0 4 1116 1095 1098 1118 + f 4 1783 -1754 -1782 -1333 + mu 0 4 1119 1099 1096 1117 + f 4 -1783 -1758 1784 -1338 + mu 0 4 1118 1098 1101 1120 + f 4 1785 -1759 -1784 -1342 + mu 0 4 1121 1102 1099 1119 + f 4 -1785 -1763 1786 -1348 + mu 0 4 1120 1101 1104 1122 + f 4 -1766 1787 -1357 1788 + mu 0 4 1108 1107 1123 1124 + f 4 1789 -1768 -1789 -1361 + mu 0 4 1125 1109 1108 1124 + f 4 -1788 -1765 1790 -1353 + mu 0 4 1123 1107 1106 1126 + f 4 1791 -1771 -1786 -1366 + mu 0 4 1127 1111 1102 1121 + f 4 -1787 -1775 1792 -1371 + mu 0 4 1122 1104 1113 1128 + f 4 -1791 -1776 -1792 -1373 + mu 0 4 1126 1106 1111 1127 + f 4 -1793 -1778 1793 -1378 + mu 0 4 1128 1113 1110 1129 + f 4 -1794 -1769 -1790 -1351 + mu 0 4 1129 1110 1109 1125 + f 4 1794 1795 -1628 -1387 + mu 0 4 1130 1131 1003 1012 + f 4 -1621 1796 1797 -1388 + mu 0 4 1008 1007 1132 1133 + f 4 1798 1799 1800 1801 + mu 0 4 1134 1135 1131 1136 + f 4 -1799 1802 1803 1804 + mu 0 4 1135 1134 1137 1132 + f 4 1805 1806 1807 1808 + mu 0 4 1138 1139 1140 1141 + f 4 -1806 1809 1810 1811 + mu 0 4 1139 1138 1142 1143 + f 4 1812 -1802 1813 1814 + mu 0 4 1144 1134 1136 1145 + f 4 -1813 1815 1816 -1803 + mu 0 4 1134 1144 1146 1137 + f 4 -1815 1817 -1807 1818 + mu 0 4 1144 1145 1140 1139 + f 4 -1816 -1819 -1812 1819 + mu 0 4 1146 1144 1139 1143 + f 4 1820 1821 1822 1823 + mu 0 4 1147 1148 1149 1150 + f 4 1824 -1822 1825 1826 + mu 0 4 1151 1149 1148 1152 + f 4 1827 -1809 1828 -1823 + mu 0 4 1149 1138 1141 1150 + f 4 -1828 -1825 1829 -1810 + mu 0 4 1138 1149 1151 1142 + f 4 1830 1831 1832 -1821 + mu 0 4 1147 1153 1154 1148 + f 4 -1833 1833 1834 -1826 + mu 0 4 1148 1154 1155 1152 + f 4 1835 -1801 -1795 -1392 + mu 0 4 1156 1136 1131 1130 + f 4 -1798 -1804 1836 -1398 + mu 0 4 1133 1132 1137 1157 + f 4 1837 -1808 1838 -1401 + mu 0 4 1158 1141 1140 1159 + f 4 1839 -1811 1840 -1411 + mu 0 4 1160 1143 1142 1161 + f 4 1841 -1814 -1836 -1414 + mu 0 4 1162 1145 1136 1156 + f 4 -1837 -1817 1842 -1419 + mu 0 4 1157 1137 1146 1163 + f 4 -1839 -1818 -1842 -1422 + mu 0 4 1159 1140 1145 1162 + f 4 -1843 -1820 -1840 -1425 + mu 0 4 1163 1146 1143 1160 + f 4 1843 -1832 1844 -1432 + mu 0 4 1164 1154 1153 1165 + f 4 1845 -1834 -1844 -1435 + mu 0 4 1166 1155 1154 1164 + f 4 1846 -1824 1847 -1447 + mu 0 4 1167 1147 1150 1168 + f 4 -1848 -1829 -1838 -1451 + mu 0 4 1168 1150 1141 1158 + f 4 -1841 -1830 1848 -1454 + mu 0 4 1161 1142 1151 1169 + f 4 -1845 -1831 -1847 -1426 + mu 0 4 1165 1153 1147 1167 + f 4 1849 -1835 -1846 -1438 + mu 0 4 1170 1152 1155 1166 + f 4 -1849 -1827 -1850 -1449 + mu 0 4 1169 1151 1152 1170 + f 4 1850 -1661 1851 1852 + mu 0 4 1171 1037 1036 1172 + f 4 -1851 1853 1854 -1663 + mu 0 4 1037 1171 1173 1038 + f 4 1855 -1853 1856 1857 + mu 0 4 1174 1171 1172 1175 + f 4 -1856 1858 1859 -1854 + mu 0 4 1171 1174 1176 1173 + f 4 -1858 1860 1861 1862 + mu 0 4 1174 1175 1177 1178 + f 4 -1859 -1863 1863 1864 + mu 0 4 1176 1174 1178 1179 + f 4 1865 -1862 1866 1867 + mu 0 4 1180 1178 1177 1181 + f 4 -1866 1868 1869 -1864 + mu 0 4 1178 1180 1182 1179 + f 4 1870 1871 1872 1873 + mu 0 4 1183 1184 1185 1186 + f 4 1874 1875 1876 -1872 + mu 0 4 1184 1187 1188 1185 + f 4 1877 1878 1879 -1877 + mu 0 4 1188 1189 1190 1185 + f 4 -1880 1880 1881 -1873 + mu 0 4 1185 1190 1191 1186 + f 4 1882 -1868 1883 -1875 + mu 0 4 1184 1180 1181 1187 + f 4 -1883 -1871 1884 -1869 + mu 0 4 1180 1184 1183 1182 + f 4 -1659 -1664 1885 -1462 + mu 0 4 1035 1021 1038 1192 + f 4 1886 -1852 1887 -1465 + mu 0 4 1193 1172 1036 1194 + f 4 -1886 -1855 1888 -1471 + mu 0 4 1192 1038 1173 1195 + f 4 1889 -1857 -1887 -1474 + mu 0 4 1196 1175 1172 1193 + f 4 -1889 -1860 1890 -1479 + mu 0 4 1195 1173 1176 1197 + f 4 1891 -1861 -1890 -1483 + mu 0 4 1198 1177 1175 1196 + f 4 -1891 -1865 1892 -1488 + mu 0 4 1197 1176 1179 1199 + f 4 1893 -1867 -1892 -1492 + mu 0 4 1200 1181 1177 1198 + f 4 -1893 -1870 1894 -1498 + mu 0 4 1199 1179 1182 1201 + f 4 1895 -1874 1896 -1517 + mu 0 4 1202 1183 1186 1203 + f 4 1897 -1876 1898 -1520 + mu 0 4 1204 1188 1187 1205 + f 4 1899 -1878 -1898 -1509 + mu 0 4 1206 1189 1188 1204 + f 4 -1897 -1882 1900 -1501 + mu 0 4 1203 1186 1191 1207 + f 4 -1899 -1884 -1894 -1524 + mu 0 4 1205 1187 1181 1200 + f 4 -1895 -1885 -1896 -1527 + mu 0 4 1201 1182 1183 1202 + f 4 1901 1902 1903 1904 + mu 0 4 1208 1209 1210 1211 + f 4 1905 -1579 1906 -1902 + mu 0 4 1208 975 974 1209 + f 4 1907 -1904 1908 1909 + mu 0 4 1212 1211 1210 1213 + f 4 -1905 1910 1911 1912 + mu 0 4 1208 1211 1214 1215 + f 4 1913 1914 -1906 -1913 + mu 0 4 1215 1216 975 1208 + f 4 1915 1916 1917 1918 + mu 0 4 968 1217 1214 1218 + f 4 -1912 -1917 1919 1920 + mu 0 4 1215 1214 1217 1219 + f 4 1921 1922 -1914 -1921 + mu 0 4 1219 1220 1216 1215 + f 4 -1920 1923 1924 1925 + mu 0 4 1219 1217 1221 1222 + f 4 1926 -1924 -1916 -1566 + mu 0 4 967 1221 1217 968 + f 4 1927 1928 -1922 -1926 + mu 0 4 1222 1223 1220 1219 + f 4 -1925 1929 1930 1931 + mu 0 4 1222 1221 1224 1225 + f 4 1932 -1930 -1927 -1569 + mu 0 4 970 1224 1221 967 + f 4 1933 1934 -1928 -1932 + mu 0 4 1225 1226 1223 1222 + f 4 -1580 -1915 1935 -1573 + mu 0 4 976 975 1216 1227 + f 4 1936 -1935 1937 -1541 + mu 0 4 1228 1223 1226 1229 + f 4 -1544 -1938 -1934 1938 + mu 0 4 1230 1229 1226 1225 + f 4 -1567 -1919 1939 -1554 + mu 0 4 969 968 1218 1231 + f 4 -1936 -1923 1940 -1561 + mu 0 4 1227 1216 1220 1232 + f 4 -1941 -1929 -1937 -1563 + mu 0 4 1232 1220 1223 1228 + f 4 -1940 1941 1942 -1571 + mu 0 4 1231 1218 1212 1233 + f 4 -1943 -1910 1943 -1530 + mu 0 4 1233 1212 1213 1234 + f 4 -1583 1944 1945 -1599 + mu 0 4 980 979 1235 992 + f 4 1946 -1144 -1182 1947 + mu 0 4 756 714 713 723 + f 3 1948 -1209 1949 + mu 0 3 971 760 759 + f 4 -1644 -1600 1950 -1652 + mu 0 4 1024 991 992 1026 + f 4 -1301 1951 1952 1953 + mu 0 4 818 816 719 718 + f 3 1954 -1306 -1302 + mu 0 3 818 809 817 + f 4 -1954 -1148 1955 1956 + mu 0 4 818 718 717 755 + f 4 -1951 -1946 1957 -1646 + mu 0 4 1026 992 1235 1027 + f 4 -1956 -1154 -1947 -1201 + mu 0 4 755 717 714 756 + f 4 -1457 -1683 -1172 1958 + mu 0 4 722 903 734 737 + f 4 1959 1960 -1612 -1647 + mu 0 4 1027 1236 997 1001 + f 4 -1958 1961 1962 -1960 + mu 0 4 1027 1235 982 1236 + f 4 -1939 -1931 -1933 -1574 + mu 0 4 1230 1225 1224 970 + f 4 1963 -1596 1964 -1135 + mu 0 4 705 1237 1238 706 + f 4 -1587 -1582 1965 -1592 + mu 0 4 983 979 978 984 + f 3 -1586 -1962 -1945 + mu 0 3 979 982 1235 + f 4 1966 -1584 -1598 -1594 + mu 0 4 988 977 980 989 + f 4 1967 -1679 1968 1969 + mu 0 4 1039 1043 1047 1239 + f 4 1970 -1670 -1968 -1668 + mu 0 4 1041 995 1043 1039 + f 4 -1198 -1207 -1215 -1676 + mu 0 4 754 753 757 763 + f 4 -1206 -1218 1971 -1212 + mu 0 4 757 720 765 761 + f 4 -1901 -1881 1972 -1503 + mu 0 4 1207 1191 1190 1240 + f 4 -1973 -1879 -1900 -1506 + mu 0 4 1240 1190 1189 1206 + f 4 1973 1974 1975 -1590 + mu 0 4 985 1241 758 986 + f 4 -1196 1976 -1976 -1211 + mu 0 4 752 751 986 758 + f 4 -1963 -1604 -1971 1977 + mu 0 4 1236 982 995 1041 + f 4 1978 1979 -1192 -1142 + mu 0 4 711 1242 750 712 + f 4 -1576 1980 -1979 -1153 + mu 0 4 716 972 1242 711 + f 4 1981 1982 -1949 -1577 + mu 0 4 715 721 760 971 + f 4 -1210 -1983 -1205 -1197 + mu 0 4 752 760 721 753 + f 4 1983 1984 1985 -1139 + mu 0 4 1243 1244 1245 1246 + f 4 -1966 1986 1987 1988 + mu 0 4 1247 1248 1249 1250 + f 4 1989 1990 -1974 1991 + mu 0 4 1251 1252 1253 1254 + f 4 1992 -1964 1993 1994 + mu 0 4 1255 1256 1257 1258 + f 4 -1138 -1986 1995 -1994 + mu 0 4 1257 1246 1245 1258 + f 4 -1988 1996 -1121 1997 + mu 0 4 1250 1249 704 677 + f 4 1998 -1098 1999 -1995 + mu 0 4 1258 694 693 1255 + f 4 -1054 -1041 2000 -2000 + mu 0 4 659 650 649 1259 + f 4 -2001 2001 -1593 -1993 + mu 0 4 1259 649 1260 1261 + f 4 2002 -1967 -2002 -1040 + mu 0 4 648 1262 1260 649 + f 4 2003 -1992 -1589 -1989 + mu 0 4 1250 1251 1254 1247 + f 4 -1120 -1997 2004 -1039 + mu 0 4 647 704 1249 648 + f 4 -2005 -1987 -1581 -2003 + mu 0 4 648 1249 1248 1262 + f 4 -1990 2005 -1081 2006 + mu 0 4 1252 1251 676 680 + f 4 -2006 -2004 -1998 -1077 + mu 0 4 676 1251 1250 677 + f 4 2007 -1985 2008 -1112 + mu 0 4 697 1245 1244 665 + f 4 -1996 -2008 -1103 -1999 + mu 0 4 1258 1245 697 694 + f 4 -1102 2009 2010 -2007 + mu 0 4 680 666 1263 1252 + f 4 -2011 2011 2012 -1991 + mu 0 4 1252 1263 1264 1253 + f 4 -2013 2013 -1208 -1975 + mu 0 4 1241 1265 759 758 + f 4 2014 2015 2016 2017 + mu 0 4 1266 1267 641 1268 + f 4 2018 -2015 2019 2020 + mu 0 4 1269 1267 1266 1270 + f 4 2021 2022 2023 2024 + mu 0 4 1271 1272 1273 1274 + f 3 2025 2026 2027 + mu 0 3 1275 1276 1277 + f 4 2028 2029 2030 2031 + mu 0 4 1278 1279 1280 1281 + f 4 2032 2033 2034 2035 + mu 0 4 1282 1283 1284 1285 + f 4 -2025 2036 2037 2038 + mu 0 4 1271 1274 1286 1287 + f 4 -2027 2039 2040 2041 + mu 0 4 1288 1289 1290 1291 + f 4 2042 2043 -2036 2044 + mu 0 4 1292 1293 1282 1285 + f 4 2045 2046 2047 2048 + mu 0 4 1294 1295 1296 1297 + f 4 2049 2050 2051 -2022 + mu 0 4 1271 1298 1281 1272 + f 4 2052 2053 -973 2054 + mu 0 4 1299 1300 1301 1302 + f 4 2055 -2023 2056 2057 + mu 0 4 1303 1273 1272 1304 + f 4 2058 -2053 2059 2060 + mu 0 4 1305 1300 1299 1306 + f 4 2061 -2046 2062 2063 + mu 0 4 1307 1308 1309 1310 + f 4 -2034 2064 2065 2066 + mu 0 4 1284 1283 1311 1298 + f 4 -2066 2067 -2032 -2051 + mu 0 4 1298 1311 1278 1281 + f 4 2068 2069 2070 2071 + mu 0 4 1312 1313 1314 1315 + f 3 2072 2073 2074 + mu 0 3 1316 1317 1318 + f 4 2075 2076 2077 2078 + mu 0 4 1319 1320 1321 1322 + f 4 -1072 2079 2080 2081 + mu 0 4 668 672 1319 1316 + f 4 -2081 -2079 2082 -2073 + mu 0 4 1316 1319 1322 1317 + f 4 2083 -1067 -2082 2084 + mu 0 4 1323 669 668 1316 + f 4 2085 2086 2087 2088 + mu 0 4 1324 1325 1323 1326 + f 4 2089 2090 2091 2092 + mu 0 4 1327 1328 1329 1330 + f 4 2093 2094 -1047 2095 + mu 0 4 1331 1332 656 655 + f 4 -1110 2096 2097 -2096 + mu 0 4 700 699 1330 1333 + f 4 -1109 2098 -2093 -2097 + mu 0 4 699 687 1327 1330 + f 4 -1115 2099 -2076 -2080 + mu 0 4 672 701 1320 1319 + f 4 2100 -2090 2101 -2086 + mu 0 4 1324 1328 1327 1325 + f 4 -2077 2102 2103 2104 + mu 0 4 1321 1320 1332 1334 + f 4 2105 -2104 -2094 2106 + mu 0 4 1335 1334 1332 1331 + f 4 2107 2108 2109 -2070 + mu 0 4 1336 1337 1338 1339 + f 4 -2057 -2052 -2031 2110 + mu 0 4 1304 1272 1281 1280 + f 4 -2092 2111 -2107 -2098 + mu 0 4 1330 1329 1340 1333 + f 4 2112 -2088 -2085 -2075 + mu 0 4 1318 1326 1323 1316 + f 4 2113 2114 2115 2116 + mu 0 4 1341 1342 1343 1344 + f 4 2117 -2064 2118 -2041 + mu 0 4 1345 1346 1347 1348 + f 4 2119 2120 2121 2122 + mu 0 4 103 1349 1350 1351 + f 4 2123 2124 -2120 -173 + mu 0 4 102 1352 1349 103 + f 4 2125 2126 -191 -2122 + mu 0 4 1350 1353 1354 1351 + f 4 -2127 2127 2128 -170 + mu 0 4 1354 1353 1355 1356 + f 4 2129 2130 2131 2132 + mu 0 4 1357 1358 1359 1360 + f 4 2133 -2067 -2050 -2039 + mu 0 4 1287 1284 1298 1271 + f 4 2134 -2043 2135 2136 + mu 0 4 1361 1293 1292 1362 + f 4 2137 2138 -2109 2139 + mu 0 4 1363 1364 1338 1337 + f 4 -187 -2129 2140 -2133 + mu 0 4 1360 1356 1355 1357 + f 4 -2102 -2099 -1089 2141 + mu 0 4 1325 1327 687 685 + f 4 -2103 -2100 -1130 -2095 + mu 0 4 1332 1320 701 656 + f 4 -1918 -1911 -1908 -1942 + mu 0 4 1218 1214 1211 1212 + f 4 -1888 -1660 -1682 -1456 + mu 0 4 1194 1036 1010 1049 + f 4 2142 2143 -1690 -1654 + mu 0 4 1009 1018 1051 1030 + f 4 2144 2145 -1805 -1797 + mu 0 4 1007 1004 1135 1132 + f 4 -1657 -1685 -2144 -1634 + mu 0 4 1006 1033 1051 1018 + f 4 2146 -1742 -1748 -1736 + mu 0 4 1002 1017 1092 1087 + f 4 -1796 -1800 -2146 -1616 + mu 0 4 1003 1131 1135 1004 + f 4 -1666 2147 2148 -1608 + mu 0 4 998 1040 1014 999 + f 4 -1673 2149 -1630 -2148 + mu 0 4 1040 767 1015 1014 + f 4 -1739 -2150 -1219 2150 + mu 0 4 1090 1015 767 766 + f 4 -2151 -1160 -1952 -1298 + mu 0 4 815 725 719 816 + f 4 2151 -1222 -1672 -1970 + mu 0 4 1239 770 768 1039 + f 4 -1978 -1667 -1607 -1961 + mu 0 4 1236 1041 998 997 + f 4 -1633 -2147 -1615 -2149 + mu 0 4 1014 1017 1002 999 + f 3 -1617 -2145 -1626 + mu 0 3 996 1004 1007 + f 3 -1635 -2143 -1622 + mu 0 3 1000 1018 1009 + f 4 -1965 -1602 -1190 2152 + mu 0 4 706 1238 746 749 + f 4 -978 -998 2153 2154 + mu 0 4 608 607 625 1365 + f 4 2155 2156 2157 2158 + mu 0 4 1366 612 1367 1368 + f 4 -487 2159 2160 -507 + mu 0 4 306 305 1369 278; + setAttr ".fc[1000:1499]" + f 4 -925 2161 -485 -529 + mu 0 4 326 568 304 303 + f 4 -447 -2161 2162 -483 + mu 0 4 279 278 1369 302 + f 4 -350 -324 -393 -332 + mu 0 4 218 185 213 217 + f 4 -400 -212 -399 2163 + mu 0 4 253 138 141 224 + f 4 -1086 -2084 -2087 -2142 + mu 0 4 685 669 1323 1325 + f 4 2164 2165 2166 -1015 + mu 0 4 636 1370 593 633 + f 4 2167 -2165 -1030 -984 + mu 0 4 613 1370 636 614 + f 4 -2017 -1024 -1012 2168 + mu 0 4 1268 641 634 633 + f 4 2169 -2164 -347 -315 + mu 0 4 208 253 224 205 + f 4 -199 2170 -417 2171 + mu 0 4 130 126 251 243 + f 3 2172 -481 2173 + mu 0 3 369 300 301 + f 3 2174 -484 2175 + mu 0 3 453 301 302 + f 4 2176 -853 2177 -2163 + mu 0 4 1369 540 499 302 + f 4 2178 -856 -2177 -2160 + mu 0 4 305 535 540 1369 + f 4 2179 -847 -2179 -486 + mu 0 4 304 532 535 305 + f 4 2180 -926 -2180 -2162 + mu 0 4 568 537 532 304 + f 4 2181 -850 -2181 -924 + mu 0 4 508 506 537 568 + f 4 -2182 -800 2182 -796 + mu 0 4 506 508 313 507 + f 4 -918 -2183 -498 2183 + mu 0 4 419 507 313 311 + f 4 -659 -2184 -495 2184 + mu 0 4 318 419 311 295 + f 4 -504 -2185 -472 2185 + mu 0 4 315 318 295 294 + f 4 -2186 -491 2186 -592 + mu 0 4 315 294 308 373 + f 4 -2187 -494 2187 -598 + mu 0 4 373 308 310 377 + f 4 -610 -2188 -921 2188 + mu 0 4 385 386 566 298 + f 4 -2189 -479 2189 -608 + mu 0 4 385 298 300 361 + f 4 2190 -1537 2191 -1217 + mu 0 4 764 949 946 765 + f 4 -1223 2192 -1578 -2191 + mu 0 4 771 770 974 973 + f 4 -1907 -2193 -2152 2193 + mu 0 4 1209 974 770 1239 + f 4 2194 -1903 -2194 -1969 + mu 0 4 1047 1210 1209 1239 + f 4 -1909 -2195 -1678 2195 + mu 0 4 1213 1210 1047 1046 + f 4 2196 -1944 -2196 -1681 + mu 0 4 1048 1234 1213 1046 + f 4 2197 -1531 -2197 -1213 + mu 0 4 761 945 944 762 + f 4 -1972 -2192 -1533 -2198 + mu 0 4 761 765 946 945 + f 3 -960 2198 -948 + mu 0 3 587 594 585 + f 4 -958 -2166 2199 -950 + mu 0 4 588 593 1370 589 + f 3 -587 -2190 -2173 + mu 0 3 369 361 300 + f 3 -2174 2200 -647 + mu 0 3 369 301 410 + f 3 -721 -2201 -2175 + mu 0 3 453 410 301 + f 3 -2176 -2178 -791 + mu 0 3 453 302 499 + f 3 -852 -860 -788 + mu 0 3 499 539 500 + f 3 2201 -818 -797 + mu 0 3 507 518 505 + f 3 -2202 -920 -817 + mu 0 3 518 507 460 + f 3 2202 -736 -919 + mu 0 3 419 464 457 + f 3 -2203 -661 -733 + mu 0 3 464 419 415 + f 3 2203 -665 -660 + mu 0 3 318 420 416 + f 3 -670 -2204 -503 + mu 0 3 317 420 318 + f 3 -591 -613 -501 + mu 0 3 315 372 316 + f 3 -401 -2170 -394 + mu 0 3 169 253 208 + f 4 -309 -397 2204 2205 + mu 0 4 201 203 1371 1372 + f 4 2206 -306 -2206 2207 + mu 0 4 1373 187 201 1372 + f 4 -289 -2207 2208 2209 + mu 0 4 184 187 1373 204 + f 4 -2210 -311 -356 -322 + mu 0 4 184 204 182 212 + f 4 -2171 -198 2210 -396 + mu 0 4 251 126 129 252 + f 4 -2205 -2211 -327 2211 + mu 0 4 1372 1371 215 214 + f 4 -2212 -415 2212 -2208 + mu 0 4 1372 214 220 1373 + f 4 -310 -2209 -2213 -334 + mu 0 4 96 204 1373 220 + f 3 -2172 -374 -275 + mu 0 3 130 243 179 + f 4 -410 -2123 -190 -168 + mu 0 4 1374 1375 1376 1377 + f 4 -1129 -1082 -1133 -1131 + mu 0 4 692 679 675 702 + f 4 -2010 -1064 -2009 2213 + mu 0 4 1263 666 665 1244 + f 4 -2012 -2214 -1984 2214 + mu 0 4 1264 1263 1244 1243 + f 4 2215 -2014 -2215 -1141 + mu 0 4 710 759 1265 709 + f 4 -1981 2216 -1140 2217 + mu 0 4 1242 972 710 707 + f 4 -1591 -1977 -1675 -1588 + mu 0 4 983 986 751 981 + f 3 -1614 -1618 -1609 + mu 0 3 999 1003 996 + f 4 -1953 -1152 -1982 -1149 + mu 0 4 718 719 721 715 + f 4 -1575 -1950 -2216 -2217 + mu 0 4 972 971 759 710 + f 4 2218 -1980 -2218 -1136 + mu 0 4 706 750 1242 707 + f 3 -2153 -1193 -2219 + mu 0 3 706 749 750 + f 4 -1957 2219 -1292 -1955 + mu 0 4 818 755 810 809 + f 3 2220 -1385 -2220 + mu 0 3 755 862 810 + f 3 -1382 -2221 -1200 + mu 0 3 729 862 755 + f 3 -1202 2221 -1168 + mu 0 3 730 756 731 + f 3 -1204 -2222 2222 + mu 0 3 737 731 756 + f 4 -1959 -2223 -1948 -1155 + mu 0 4 722 737 756 723 + f 3 -1095 -1094 -1127 + mu 0 3 691 688 690 + f 4 -618 -644 2223 -641 + mu 0 4 1378 390 408 1379 + f 4 -2224 -645 -620 -642 + mu 0 4 1379 408 394 393 + f 4 -947 2224 2225 2226 + mu 0 4 587 586 1380 631 + f 4 -2048 -2138 2227 2228 + mu 0 4 1381 1382 1383 1384 + f 4 2229 -2061 2230 -2116 + mu 0 4 1343 1305 1306 1344 + f 4 2231 2232 -1025 -2016 + mu 0 4 1267 1385 642 641 + f 4 2233 -175 -414 -192 + mu 0 4 123 105 104 1386 + f 4 -328 -197 -193 -413 + mu 0 4 1387 215 1388 1389 + f 4 2234 2235 -183 -2131 + mu 0 4 1358 1390 1391 1359 + f 4 2236 -2137 2237 -2115 + mu 0 4 1342 1361 1362 1343 + f 4 2238 -2230 -2238 2239 + mu 0 4 1392 1393 1394 1395 + f 4 -2239 2240 2241 -2059 + mu 0 4 1396 1397 1398 1399 + f 4 -2054 -2242 2242 2243 + mu 0 4 1400 1399 1398 1401 + f 4 -974 -2244 2244 2245 + mu 0 4 1402 1403 1404 1405 + f 3 2246 2247 2248 + mu 0 3 1406 1407 1286 + f 4 -284 -185 -2132 -182 + mu 0 4 110 1408 1409 111 + f 4 -940 2249 -935 2250 + mu 0 4 570 580 577 574 + f 4 -928 -2251 -931 2251 + mu 0 4 571 570 574 573 + f 4 -966 -2252 -964 2252 + mu 0 4 597 571 573 596 + f 4 -1033 -2253 -1007 2253 + mu 0 4 630 597 596 627 + f 4 2254 -1006 -2254 -1001 + mu 0 4 623 618 630 627 + f 4 2255 -990 -2255 -995 + mu 0 4 622 609 618 623 + f 4 -1028 2256 -980 -2256 + mu 0 4 622 643 610 609 + f 4 -2155 2257 -2158 2258 + mu 0 4 608 1365 1368 1367 + f 3 2259 -2157 -986 + mu 0 3 615 1367 612 + f 4 -1020 2260 -1037 2261 + mu 0 4 640 639 617 646 + f 4 -983 -2156 2262 2263 + mu 0 4 613 612 1366 1380 + f 4 -951 2264 -946 -943 + mu 0 4 583 589 586 584 + f 4 -963 -933 -956 2265 + mu 0 4 594 576 575 581 + f 4 -2199 -2266 -944 -945 + mu 0 4 585 594 581 584 + f 4 2266 -1027 2267 -2159 + mu 0 4 1368 643 632 1366 + f 4 -2267 -2258 2268 -2257 + mu 0 4 643 1368 1365 610 + f 4 -2269 -2154 2269 -981 + mu 0 4 610 1365 625 611 + f 4 2270 -1031 -2270 -1000 + mu 0 4 626 644 611 625 + f 4 -1010 -2226 -2263 -2268 + mu 0 4 632 631 1380 1366 + f 3 -1008 -961 2271 + mu 0 3 628 595 587 + f 3 -2167 2272 -2169 + mu 0 3 633 593 1268 + f 4 -2024 2273 2274 2275 + mu 0 4 1274 1273 1270 1410 + f 4 -2021 -2274 -2056 2276 + mu 0 4 1269 1270 1273 1303 + f 4 -2276 2277 -2249 -2037 + mu 0 4 1274 1410 1406 1286 + f 4 -2125 2278 -2029 2279 + mu 0 4 1349 1352 1279 1278 + f 4 2280 -2121 -2280 -2068 + mu 0 4 1311 1350 1349 1278 + f 4 2281 -2126 -2281 -2065 + mu 0 4 1283 1353 1350 1311 + f 4 -2128 -2282 -2033 2282 + mu 0 4 1355 1353 1283 1282 + f 4 2283 -2141 -2283 -2044 + mu 0 4 1293 1357 1355 1282 + f 4 -2130 -2284 -2135 2284 + mu 0 4 1358 1357 1293 1361 + f 4 -2235 -2285 -2237 2285 + mu 0 4 1390 1358 1361 1342 + f 3 -2286 -2114 2286 + mu 0 3 1390 1342 1341 + f 4 2287 2288 -936 2289 + mu 0 4 1411 1412 578 577 + f 4 2290 -959 -955 -2289 + mu 0 4 1412 592 582 578 + f 4 2291 2292 2293 2294 + mu 0 4 1413 1414 1415 1416 + f 4 2295 -972 2296 2297 + mu 0 4 1417 599 602 1418 + f 4 -2294 2298 -2291 2299 + mu 0 4 1416 1415 592 1412 + f 4 2300 -2300 -2288 2301 + mu 0 4 1417 1416 1412 1411 + f 4 -957 -2299 2302 -2273 + mu 0 4 593 592 1415 1268 + f 4 2303 2304 2305 2306 + mu 0 4 1419 1420 1421 1422 + f 4 2307 -2018 -2303 -2293 + mu 0 4 1414 1266 1268 1415 + f 4 2308 -2278 2309 -2292 + mu 0 4 1413 1406 1410 1414 + f 4 -2310 -2275 -2020 -2308 + mu 0 4 1414 1410 1270 1266 + f 4 2310 -2072 2311 -2306 + mu 0 4 1423 1312 1315 1424 + f 4 -2304 2312 -2026 2313 + mu 0 4 1425 1426 1427 1428 + f 4 -2297 -2246 2314 2315 + mu 0 4 1429 1402 1405 1430 + f 4 2316 -2316 2317 2318 + mu 0 4 1431 1432 1433 1434 + f 4 -2309 -2319 2319 -2247 + mu 0 4 1435 1436 1437 1438 + f 4 -2296 -2302 2320 -1022 + mu 0 4 599 1417 1411 591 + f 4 -2321 -2290 -2250 -954 + mu 0 4 591 1411 577 580 + f 4 -2301 -2298 -2317 -2295 + mu 0 4 1416 1417 1418 1413 + f 3 2321 -2232 -2019 + mu 0 3 1269 1385 1267 + f 3 2322 -2200 -2168 + mu 0 3 613 589 1370 + f 4 -989 -2261 2323 -2260 + mu 0 4 615 617 639 1367 + f 4 -2272 -2227 -1009 -1003 + mu 0 4 628 587 631 624 + f 4 -2264 -2225 -2265 -2323 + mu 0 4 613 1380 586 589 + f 3 -1019 -2259 -2324 + mu 0 3 639 608 1367 + f 4 2324 -2314 2325 -2320 + mu 0 4 1437 1425 1428 1438 + f 4 -2326 -2028 2326 -2248 + mu 0 4 1407 1275 1277 1286 + f 4 -2327 -2042 2327 -2038 + mu 0 4 1439 1288 1291 1440 + f 4 2328 -2134 -2328 -2119 + mu 0 4 1347 1441 1442 1348 + f 4 2329 -2035 -2329 -2063 + mu 0 4 1309 1443 1444 1310 + f 4 -2330 -2049 2330 -2045 + mu 0 4 1445 1294 1297 1446 + f 4 -2228 2331 -2240 2332 + mu 0 4 1384 1383 1392 1395 + f 4 -2332 -2140 2333 -2241 + mu 0 4 1397 1363 1337 1398 + f 4 -2243 -2334 -2108 2334 + mu 0 4 1401 1398 1337 1336 + f 4 -2245 -2335 -2069 2335 + mu 0 4 1405 1404 1313 1312 + f 4 -2315 -2336 -2311 2336 + mu 0 4 1430 1405 1312 1423 + f 4 -2325 -2318 -2337 -2305 + mu 0 4 1420 1434 1433 1421 + f 4 -2313 2337 -2113 2338 + mu 0 4 1447 1448 1326 1318 + f 4 2339 -2040 -2339 -2074 + mu 0 4 1317 1449 1447 1318 + f 4 2340 -2118 -2340 -2083 + mu 0 4 1322 1450 1449 1317 + f 4 2341 -2062 -2341 -2078 + mu 0 4 1321 1295 1450 1322 + f 4 -2342 -2105 2342 -2047 + mu 0 4 1295 1321 1334 1296 + f 4 -2139 -2343 -2106 2343 + mu 0 4 1451 1296 1334 1335 + f 4 2344 -2110 -2344 -2112 + mu 0 4 1329 1452 1453 1340 + f 4 2345 -2071 -2345 -2091 + mu 0 4 1328 1454 1452 1329 + f 4 -2312 -2346 -2101 2346 + mu 0 4 1455 1454 1328 1324 + f 4 -2307 -2347 -2089 -2338 + mu 0 4 1448 1455 1324 1326 + f 4 -2331 -2229 -2333 -2136 + mu 0 4 1456 1381 1384 1395 + f 4 2347 2348 2349 2350 + mu 0 4 1457 1458 1459 1460 + f 4 2351 2352 2353 2354 + mu 0 4 1461 1462 1463 1464 + f 4 -176 2355 2356 2357 + mu 0 4 102 105 1465 1466 + f 4 -2351 2358 2359 2360 + mu 0 4 1457 1460 1467 1468 + f 4 -2360 2361 2362 -2352 + mu 0 4 1468 1467 1469 1470 + f 3 -184 2363 2364 + mu 0 3 1471 1472 1473 + f 4 2365 -2353 2366 2367 + mu 0 4 1474 1475 1476 1477 + f 4 -2367 -2363 2368 2369 + mu 0 4 1478 1470 1469 1479 + f 4 -2361 -2355 2370 2371 + mu 0 4 1480 1481 1482 1483 + f 3 -194 2372 2373 + mu 0 3 123 125 1484 + f 4 2374 2375 -196 2376 + mu 0 4 1485 1486 1487 1488 + f 4 -2377 -201 2377 2378 + mu 0 4 1485 1488 1489 1490 + f 4 2379 2380 2381 2382 + mu 0 4 1491 1492 1493 1494 + f 4 -2382 2383 2384 2385 + mu 0 4 1494 1493 1495 1496 + f 4 2386 2387 2388 2389 + mu 0 4 1497 1498 1499 1500 + f 4 2390 2391 2392 2393 + mu 0 4 1501 1499 1495 1502 + f 4 -2391 2394 2395 -2389 + mu 0 4 1499 1501 1503 1500 + f 4 2396 2397 -2393 -2384 + mu 0 4 1493 1504 1502 1495 + f 4 2398 2399 -2397 -2381 + mu 0 4 1492 1505 1504 1493 + f 4 2400 -2385 -2392 -2388 + mu 0 4 1498 1496 1495 1499 + f 4 2401 2402 2403 2404 + mu 0 4 1506 1507 1508 1509 + f 4 2405 2406 2407 2408 + mu 0 4 1510 1511 1512 1513 + f 4 -2402 2409 -2408 2410 + mu 0 4 1507 1506 1513 1512 + f 4 -2410 2411 2412 2413 + mu 0 4 1513 1506 1514 1515 + f 4 -2405 2414 2415 -2412 + mu 0 4 1506 1509 1516 1514 + f 4 2416 2417 2418 -2396 + mu 0 4 1503 1517 1518 1500 + f 4 -2399 2419 -2413 -2416 + mu 0 4 1516 1519 1515 1514 + f 4 -2417 2420 2421 2422 + mu 0 4 1517 1503 1520 1521 + f 4 2423 2424 2425 2426 + mu 0 4 1522 1523 1518 1524 + f 4 2427 -2390 -2419 -2425 + mu 0 4 1523 1497 1500 1518 + f 4 2428 2429 2430 2431 + mu 0 4 1525 1526 1527 1528 + f 4 -2418 -2423 2432 -2426 + mu 0 4 1518 1517 1521 1524 + f 3 2433 2434 2435 + mu 0 3 1529 1530 1531 + f 4 2436 -2436 2437 2438 + mu 0 4 1532 1529 1531 1533 + f 4 2439 -2439 2440 -2431 + mu 0 4 1527 1532 1533 1528 + f 4 -2403 2441 2442 2443 + mu 0 4 1508 1507 1534 1535 + f 4 -2442 -2411 2444 2445 + mu 0 4 1534 1507 1512 1536 + f 4 2446 2447 -2445 -2407 + mu 0 4 1511 1537 1536 1512 + f 4 2448 -2427 2449 -2448 + mu 0 4 1537 1522 1524 1536 + f 4 -2446 -2450 -2433 2450 + mu 0 4 1534 1536 1524 1521 + f 4 -2451 -2422 2451 -2443 + mu 0 4 1534 1521 1520 1535 + f 4 2452 -2369 2453 2454 + mu 0 4 1490 1479 1469 1538 + f 4 -279 2455 -2453 -2378 + mu 0 4 1489 1539 1479 1490 + f 4 2456 2457 -2454 -2362 + mu 0 4 1467 1540 1538 1469 + f 4 2458 -2457 -2359 2459 + mu 0 4 1541 1540 1467 1460 + f 4 -2456 -285 2460 -2370 + mu 0 4 1479 1539 1542 1478 + f 4 2461 2462 2463 2464 + mu 0 4 1543 1544 1545 1546 + f 4 2465 2466 2467 2468 + mu 0 4 1547 1548 1549 1550 + f 4 -2469 2469 2470 2471 + mu 0 4 1547 1550 1551 1552 + f 4 -2468 2472 2473 2474 + mu 0 4 1550 1549 1553 1554 + f 4 2475 2476 2477 2478 + mu 0 4 1555 1556 1557 1558 + f 4 -2463 2479 2480 2481 + mu 0 4 1545 1544 1559 1560 + f 4 -2481 2482 2483 2484 + mu 0 4 1560 1559 1561 1562 + f 4 2485 -2460 -2350 2486 + mu 0 4 1563 1541 1460 1459 + f 4 2487 2488 2489 2490 + mu 0 4 1564 1565 1566 1567 + f 4 2491 2492 2493 2494 + mu 0 4 1568 1569 1566 1525 + f 4 -2490 -2493 2495 2496 + mu 0 4 1567 1566 1569 1570 + f 4 -2465 2497 2498 2499 + mu 0 4 1543 1546 1571 1572 + f 4 -2477 2500 -2485 2501 + mu 0 4 1557 1556 1560 1562 + f 3 2502 2503 2504 + mu 0 3 1573 1574 1575 + f 4 2505 2506 -2496 2507 + mu 0 4 1576 1577 1570 1569 + f 4 2508 2509 -2349 2510 + mu 0 4 1578 1579 1459 1458 + f 4 2511 -2507 2512 2513 + mu 0 4 1580 1570 1577 1581 + f 4 2514 2515 -2497 -2512 + mu 0 4 1580 1582 1567 1570 + f 4 -2516 2516 2517 -2491 + mu 0 4 1567 1582 1554 1564 + f 4 -2475 -2517 2518 -2470 + mu 0 4 1550 1554 1582 1551 + f 4 -2519 -2515 2519 2520 + mu 0 4 1551 1582 1580 1555 + f 4 -2476 -2520 -2514 2521 + mu 0 4 1556 1555 1580 1581 + f 4 -2518 -2474 2522 2523 + mu 0 4 1564 1554 1553 1583 + f 4 -2501 -2522 2524 -2482 + mu 0 4 1560 1556 1581 1545 + f 4 -2525 -2513 2525 -2464 + mu 0 4 1545 1581 1577 1546 + f 4 2526 2527 -2502 2528 + mu 0 4 1584 1585 1586 1587 + f 4 -2459 2529 2530 2531 + mu 0 4 1540 1541 1572 1588 + f 4 2532 2533 -2529 -2484 + mu 0 4 1589 1590 1584 1587 + f 4 2534 -2531 -2499 2535 + mu 0 4 1591 1588 1572 1571 + f 4 2536 2537 -2478 -2528 + mu 0 4 1585 1592 1593 1586 + f 3 2538 -2466 2539 + mu 0 3 1594 1595 1596 + f 4 2540 -2540 -2472 2541 + mu 0 4 1531 1594 1596 1597 + f 4 2542 2543 -2535 2544 + mu 0 4 1598 1599 1588 1591 + f 4 2545 -2543 2546 2547 + mu 0 4 1600 1599 1598 1601 + f 4 -2544 2548 -2458 -2532 + mu 0 4 1588 1599 1538 1540 + f 4 -2546 2549 2550 -2549 + mu 0 4 1599 1600 1602 1538 + f 4 2551 2552 -2495 -2432 + mu 0 4 1528 1603 1568 1525 + f 4 2553 2554 -2552 -2441 + mu 0 4 1533 1604 1603 1528 + f 4 2555 -2545 2556 2557 + mu 0 4 1605 1598 1591 1606 + f 4 2558 -2558 2559 -2553 + mu 0 4 1603 1605 1606 1568 + f 4 2560 -2559 -2555 2561 + mu 0 4 1607 1605 1603 1604 + f 4 -2547 -2556 -2561 2562 + mu 0 4 1601 1598 1605 1607 + f 4 2563 2564 -2420 -2380 + mu 0 4 1608 1609 1515 1519 + f 4 2565 -2409 -2414 -2565 + mu 0 4 1609 1510 1513 1515 + f 3 -2541 -2435 2566 + mu 0 3 1594 1531 1530 + f 4 -2557 -2536 2567 2568 + mu 0 4 1606 1591 1571 1576 + f 4 -2560 -2569 -2508 -2492 + mu 0 4 1568 1606 1576 1569 + f 4 -2494 -2489 2569 -2429 + mu 0 4 1525 1566 1565 1526 + f 4 2570 2571 2572 -2533 + mu 0 4 1589 1610 1611 1590 + f 4 2573 -2523 2574 -2401 + mu 0 4 1498 1583 1553 1496 + f 4 -2428 2575 2576 2577 + mu 0 4 1497 1523 1526 1612 + f 4 -2430 -2576 -2424 2578 + mu 0 4 1527 1526 1523 1522 + f 4 -2579 -2449 2579 -2440 + mu 0 4 1527 1522 1537 1532 + f 4 -2437 -2580 -2447 2580 + mu 0 4 1529 1532 1537 1511 + f 4 -2434 -2581 -2406 2581 + mu 0 4 1530 1529 1511 1510 + f 4 -2567 -2582 -2566 2582 + mu 0 4 1594 1530 1510 1609 + f 4 2583 -2539 -2583 -2564 + mu 0 4 1608 1595 1594 1609 + f 4 -2467 -2584 -2383 2584 + mu 0 4 1549 1548 1491 1494 + f 4 -2473 -2585 -2386 -2575 + mu 0 4 1553 1549 1494 1496 + f 4 2585 -2511 2586 -2357 + mu 0 4 1465 1613 1614 1466 + f 4 -2586 2587 2588 2589 + mu 0 4 1615 1616 1617 1618 + f 4 -2590 -2503 2590 -2509 + mu 0 4 1578 1574 1573 1579 + f 4 -2573 2591 -2550 2592 + mu 0 4 1590 1611 1602 1600 + f 4 -2534 -2593 -2548 2593 + mu 0 4 1584 1590 1600 1601 + f 4 -2527 -2594 -2563 2594 + mu 0 4 1585 1584 1601 1607 + f 4 -2537 -2595 -2562 2595 + mu 0 4 1592 1585 1607 1604 + f 4 2596 -2596 -2554 -2438 + mu 0 4 1531 1592 1604 1533 + f 4 -2538 -2597 -2542 2597 + mu 0 4 1593 1592 1531 1597 + f 4 -2479 -2598 -2471 -2521 + mu 0 4 1555 1558 1552 1551 + f 4 2598 2599 2600 2601 + mu 0 4 1619 1620 1621 1622 + f 4 2602 2603 2604 2605 + mu 0 4 1623 1624 1625 1626 + f 4 2606 2607 2608 2609 + mu 0 4 1627 1628 1629 1621 + f 4 2610 2611 2612 2613 + mu 0 4 1630 1631 1632 1633 + f 4 2614 2615 -2603 2616 + mu 0 4 1632 1634 1624 1623 + f 4 2617 2618 -2607 2619 + mu 0 4 1635 1636 1628 1627 + f 4 -2611 2620 -2620 2621 + mu 0 4 1631 1630 1635 1627 + f 4 2622 -2616 2623 2624 + mu 0 4 1637 1624 1634 1638 + f 4 -2604 -2623 2625 2626 + mu 0 4 1625 1624 1637 1639 + f 4 -2606 2627 2628 2629 + mu 0 4 1623 1626 1640 1641 + f 4 2630 2631 -2608 2632 + mu 0 4 1642 1643 1644 1645 + f 4 2633 -2631 2634 2635 + mu 0 4 1646 1643 1642 1647 + f 4 2636 2637 -2635 2638 + mu 0 4 1648 1649 1647 1642 + f 4 2639 2640 2641 -2638 + mu 0 4 1649 1650 1651 1647 + f 4 2642 -2628 2643 -2641 + mu 0 4 1650 1640 1626 1651 + f 4 2644 -2636 -2642 2645 + mu 0 4 1652 1646 1647 1651 + f 4 -2605 2646 -2646 -2644 + mu 0 4 1626 1625 1652 1651 + f 4 2647 2648 2649 2650 + mu 0 4 1653 1654 1655 1656 + f 4 2651 2652 2653 2654 + mu 0 4 1657 1658 1622 1659 + f 4 2655 2656 -2602 -2653 + mu 0 4 1658 1660 1619 1622 + f 4 2657 2658 2659 -2657 + mu 0 4 1660 1661 1638 1619 + f 4 2660 2661 2662 2663 + mu 0 4 1662 1663 1664 1665 + f 4 2664 2665 2666 -2648 + mu 0 4 1653 1666 1667 1654 + f 4 2667 2668 2669 -2666 + mu 0 4 1666 1668 1669 1667 + f 4 -2650 2670 2671 2672 + mu 0 4 1656 1655 1670 1671 + f 4 -2672 2673 2674 2675 + mu 0 4 1671 1670 1672 1673 + f 4 2676 2677 2678 2679 + mu 0 4 1674 1675 1676 1677 + f 4 -2626 2680 2681 2682 + mu 0 4 1639 1637 1663 1678 + f 4 -2682 -2661 2683 2684 + mu 0 4 1678 1663 1662 1679 + f 4 -2670 2685 2686 2687 + mu 0 4 1667 1669 1680 1681 + f 4 2688 2689 -2632 2690 + mu 0 4 1682 1683 1644 1643 + f 4 2691 2692 2693 2694 + mu 0 4 1684 1685 1686 1687 + f 4 2695 -2691 -2634 2696 + mu 0 4 1688 1682 1643 1646 + f 4 -2696 2697 2698 2699 + mu 0 4 1682 1688 1689 1680 + f 4 2700 -2697 -2645 2701 + mu 0 4 1690 1688 1646 1652 + f 4 -2701 2702 2703 -2698 + mu 0 4 1688 1690 1691 1689 + f 4 2704 -2684 2705 -2694 + mu 0 4 1686 1679 1662 1687 + f 4 -2688 2706 2707 -2667 + mu 0 4 1667 1681 1692 1654 + f 4 -2707 2708 2709 2710 + mu 0 4 1692 1681 1693 1694 + f 4 -2710 2711 2712 2713 + mu 0 4 1694 1693 1695 1696 + f 4 -2671 2714 2715 2716 + mu 0 4 1670 1655 1697 1698 + f 4 -2716 2717 -2711 2718 + mu 0 4 1698 1697 1692 1694 + f 4 -2674 -2717 2719 2720 + mu 0 4 1672 1670 1698 1699 + f 4 2721 -2720 -2719 -2714 + mu 0 4 1696 1699 1698 1694 + f 4 -2692 2722 -2721 2723 + mu 0 4 1685 1684 1672 1699 + f 4 -2705 2724 -2713 2725 + mu 0 4 1679 1686 1696 1695 + f 4 2726 -2683 2727 -2703 + mu 0 4 1690 1639 1678 1691 + f 4 -2627 -2727 -2702 -2647 + mu 0 4 1625 1639 1690 1652 + f 4 2728 2729 2730 2731 + mu 0 4 1700 1701 1702 1703 + f 4 2732 -2731 2733 2734 + mu 0 4 1704 1703 1702 1705 + f 4 2735 2736 2737 2738 + mu 0 4 1706 1707 1708 1709 + f 4 2739 2740 2741 -2738 + mu 0 4 1708 1710 1711 1709 + f 4 2742 2743 2744 2745 + mu 0 4 1712 1713 1714 1715 + f 4 2746 2747 -2743 2748 + mu 0 4 1716 1717 1713 1712 + f 3 2749 2750 2751 + mu 0 3 1718 1719 1720 + f 4 2752 2753 2754 2755 + mu 0 4 1721 1722 1723 1724 + f 4 2756 2757 2758 2759 + mu 0 4 1677 1725 1726 1727 + f 4 2760 -2750 2761 2762 + mu 0 4 1728 1719 1718 1729 + f 4 -2679 2763 2764 -2757 + mu 0 4 1677 1676 1730 1725 + f 4 2765 2766 2767 2768 + mu 0 4 1723 1731 1674 1732 + f 4 -2755 -2769 2769 2770 + mu 0 4 1724 1723 1732 1733 + f 4 -2762 2771 -2765 2772 + mu 0 4 1729 1718 1734 1735 + f 4 2773 2774 -2766 -2754 + mu 0 4 1722 1736 1731 1723 + f 4 -2772 2775 2776 -2758 + mu 0 4 1734 1718 1737 1738 + f 4 2777 2778 2779 2780 + mu 0 4 1720 1739 1740 1741 + f 4 -2779 2781 -2753 2782 + mu 0 4 1740 1739 1742 1743 + f 4 2783 -2778 -2751 2784 + mu 0 4 1744 1739 1720 1719 + f 4 -2784 2785 -2774 -2782 + mu 0 4 1739 1744 1745 1742 + f 4 -2752 -2781 2786 -2776 + mu 0 4 1718 1720 1741 1737 + f 4 -2770 2787 -2760 2788 + mu 0 4 1733 1732 1677 1727 + f 4 2789 2790 -2756 2791 + mu 0 4 1746 1747 1721 1724 + f 4 -2790 2792 2793 2794 + mu 0 4 1748 1749 1750 1751 + f 4 2795 2796 2797 2798 + mu 0 4 1752 1753 1754 1755 + f 4 -2797 2799 -2759 2800 + mu 0 4 1756 1757 1727 1726 + f 4 2801 -2801 -2777 2802 + mu 0 4 1704 1758 1738 1737 + f 4 -2780 2803 -2732 2804 + mu 0 4 1741 1740 1700 1703 + f 4 2805 -2804 -2783 -2791 + mu 0 4 1748 1700 1740 1743 + f 4 -2806 -2795 2806 -2729 + mu 0 4 1700 1748 1751 1701 + f 4 2807 -2798 -2802 -2735 + mu 0 4 1705 1755 1758 1704 + f 4 2808 2809 2810 2811 + mu 0 4 1759 1760 1761 1762 + f 4 -2787 -2805 -2733 -2803 + mu 0 4 1737 1741 1703 1704 + f 4 2812 -2792 -2771 2813 + mu 0 4 1763 1746 1724 1733 + f 4 2814 -2814 -2789 -2800 + mu 0 4 1757 1763 1733 1727 + f 4 2815 -2793 -2813 2816 + mu 0 4 1764 1765 1746 1763 + f 4 2817 -2817 -2815 -2796 + mu 0 4 1766 1764 1763 1757 + f 4 2818 2819 -2730 -2807 + mu 0 4 1751 1767 1702 1701 + f 4 2820 -2808 -2734 -2820 + mu 0 4 1767 1755 1705 1702 + f 4 2821 2822 2823 2824 + mu 0 4 1768 1769 1770 1728 + f 3 -2763 2825 2826 + mu 0 3 1728 1729 1771 + f 3 -2825 -2827 2827 + mu 0 3 1768 1728 1771 + f 4 -2822 2828 2829 2830 + mu 0 4 1769 1768 1772 1773 + f 4 2831 -2830 2832 2833 + mu 0 4 1774 1775 1776 1777 + f 4 2834 -2834 2835 2836 + mu 0 4 1778 1774 1777 1675 + f 4 2837 2838 2839 2840 + mu 0 4 1779 1777 1780 1781 + f 4 -2833 2841 2842 -2839 + mu 0 4 1777 1776 1782 1780 + f 4 2843 -2841 2844 2845 + mu 0 4 1676 1779 1781 1783 + f 4 -2832 2846 2847 2848 + mu 0 4 1775 1774 1784 1785 + f 4 2849 -2842 -2829 2850 + mu 0 4 1786 1787 1772 1768 + f 4 -2850 2851 2852 2853 + mu 0 4 1787 1786 1788 1789 + f 4 -2843 -2854 2854 2855 + mu 0 4 1780 1782 1790 1791 + f 4 -2846 2856 2857 -2764 + mu 0 4 1676 1783 1792 1730 + f 4 2858 2859 -2773 -2858 + mu 0 4 1793 1794 1729 1735 + f 4 -2840 -2856 2860 2861 + mu 0 4 1781 1780 1791 1795 + f 4 -2845 -2862 2862 2863 + mu 0 4 1783 1781 1795 1760 + f 4 -2826 -2860 2864 2865 + mu 0 4 1771 1729 1794 1796 + f 4 -2851 -2828 -2866 2866 + mu 0 4 1786 1768 1771 1796 + f 4 2867 -2812 2868 2869 + mu 0 4 1797 1798 1799 1800 + f 4 -2853 2870 2871 2872 + mu 0 4 1789 1788 1801 1802 + f 4 -2855 -2873 2873 2874 + mu 0 4 1791 1790 1803 1804 + f 4 -2864 -2809 2875 -2857 + mu 0 4 1783 1760 1759 1792 + f 4 -2868 2876 -2859 -2876 + mu 0 4 1798 1797 1794 1793 + f 4 -2875 2877 2878 -2861 + mu 0 4 1791 1804 1805 1795 + f 4 2879 -2810 -2863 -2879 + mu 0 4 1805 1761 1760 1795 + f 4 -2865 -2877 2880 2881 + mu 0 4 1796 1794 1797 1806 + f 4 -2852 -2867 -2882 2882 + mu 0 4 1788 1786 1796 1806 + f 4 -2878 -2874 2883 2884 + mu 0 4 1805 1804 1803 1807 + f 4 -2880 -2885 2885 -2811 + mu 0 4 1761 1805 1807 1762 + f 4 -2886 2886 2887 -2869 + mu 0 4 1799 1808 1809 1800 + f 4 -2884 -2872 2888 -2887 + mu 0 4 1808 1802 1801 1809 + f 4 -2888 2889 -2881 -2870 + mu 0 4 1800 1809 1806 1797 + f 4 -2889 -2871 -2883 -2890 + mu 0 4 1809 1801 1788 1806 + f 3 2890 2891 2892 + mu 0 3 1810 1770 1811 + f 3 -2823 2893 -2892 + mu 0 3 1770 1769 1811 + f 4 2894 -2891 2895 2896 + mu 0 4 1812 1770 1810 1813 + f 4 -2896 2897 2898 2899 + mu 0 4 1813 1810 1814 1815 + f 4 2900 2901 -2899 2902 + mu 0 4 1816 1817 1818 1819 + f 4 -2902 2903 2904 2905 + mu 0 4 1818 1817 1820 1821 + f 4 2906 2907 2908 -2847 + mu 0 4 1774 1822 1823 1784 + f 4 2909 2910 2911 -2908 + mu 0 4 1822 1816 1824 1823 + f 4 -2831 -2849 2912 2913 + mu 0 4 1769 1773 1825 1826 + f 4 -2903 2914 2915 -2911 + mu 0 4 1816 1819 1827 1824 + f 4 2916 2917 -2893 2918 + mu 0 4 1828 1829 1810 1811 + f 4 2919 -2917 2920 2921 + mu 0 4 1830 1829 1828 1831 + f 4 -2894 -2914 2922 -2919 + mu 0 4 1811 1769 1826 1828 + f 4 2923 2924 -2921 -2923 + mu 0 4 1826 1832 1831 1828 + f 4 2925 -2909 2926 2927 + mu 0 4 1833 1784 1823 1834 + f 4 2928 2929 -2927 -2912 + mu 0 4 1824 1835 1834 1823 + f 4 -2913 2930 2931 -2924 + mu 0 4 1826 1825 1836 1832 + f 4 -2926 2932 -2931 -2848 + mu 0 4 1784 1833 1837 1785 + f 4 -2916 2933 2934 -2929 + mu 0 4 1824 1827 1838 1835 + f 4 -2920 2935 -2934 2936 + mu 0 4 1829 1830 1839 1840 + f 4 -2937 -2915 -2898 -2918 + mu 0 4 1829 1840 1814 1810 + f 4 2937 2938 2939 2940 + mu 0 4 1841 1710 1842 1843 + f 4 2941 -2941 -2905 2942 + mu 0 4 1844 1845 1821 1820 + f 4 2943 -2922 2944 2945 + mu 0 4 1846 1830 1831 1847 + f 4 -2928 2946 2947 2948 + mu 0 4 1833 1834 1848 1849 + f 4 -2930 2949 2950 -2947 + mu 0 4 1834 1835 1850 1848 + f 4 2951 -2950 -2935 2952 + mu 0 4 1851 1850 1835 1838 + f 4 -2944 2953 -2953 -2936 + mu 0 4 1830 1846 1852 1839 + f 4 2954 -2932 2955 2956 + mu 0 4 1853 1832 1836 1854 + f 4 -2933 -2949 2957 -2956 + mu 0 4 1837 1833 1849 1855 + f 4 -2925 -2955 2958 -2945 + mu 0 4 1831 1832 1853 1847 + f 4 2959 2960 -2959 -2957 + mu 0 4 1854 1856 1847 1853 + f 4 2961 -2954 -2946 -2961 + mu 0 4 1856 1852 1846 1847 + f 4 -2952 -2962 2962 -2951 + mu 0 4 1850 1851 1857 1848 + f 4 -2960 -2958 -2948 -2963 + mu 0 4 1857 1855 1849 1848 + f 4 2963 2964 2965 2966 + mu 0 4 1858 1812 1859 1860 + f 4 2967 2968 2969 2970 + mu 0 4 1861 1862 1863 1864 + f 4 2971 -2969 2972 2973 + mu 0 4 1865 1863 1862 1866 + f 4 2974 -2675 -2723 2975 + mu 0 4 1867 1673 1672 1684 + f 3 -2965 2976 2977 + mu 0 3 1859 1812 1868 + f 3 -2897 2978 -2977 + mu 0 3 1812 1813 1868 + f 4 2979 -2971 2980 -2966 + mu 0 4 1859 1869 1870 1860 + f 4 2981 2982 -2978 2983 + mu 0 4 1871 1872 1859 1868 + f 4 -2979 2984 2985 -2984 + mu 0 4 1868 1813 1842 1871 + f 4 -2980 -2983 2986 2987 + mu 0 4 1869 1859 1872 1873 + f 4 2988 -2968 -2988 2989 + mu 0 4 1874 1862 1861 1875 + f 4 -2900 -2906 -2940 -2985 + mu 0 4 1813 1815 1843 1842 + f 4 2990 2991 2992 -2904 + mu 0 4 1817 1876 1877 1820 + f 4 2993 -2992 2994 -2989 + mu 0 4 1874 1877 1876 1862 + f 4 2995 -2982 2996 -2737 + mu 0 4 1707 1872 1871 1708 + f 4 -2939 -2740 -2997 -2986 + mu 0 4 1842 1710 1708 1871 + f 4 -2943 -2993 2997 2998 + mu 0 4 1844 1820 1877 1878 + f 4 -2998 -2994 2999 3000 + mu 0 4 1878 1877 1874 1879 + f 4 3001 3002 3003 3004 + mu 0 4 1880 1881 1879 1882 + f 4 3005 -3005 3006 -2736 + mu 0 4 1706 1883 1884 1707 + f 4 3007 3008 -2942 3009 + mu 0 4 1885 1886 1845 1844 + f 4 3010 -2741 -2938 -3009 + mu 0 4 1887 1711 1710 1841 + f 4 3011 -3010 -2999 3012 + mu 0 4 1888 1885 1844 1878 + f 4 -3003 3013 -3013 -3001 + mu 0 4 1879 1881 1888 1878 + f 4 -3004 -3000 -2990 3014 + mu 0 4 1882 1879 1874 1875 + f 4 -2996 -3007 -3015 -2987 + mu 0 4 1872 1707 1884 1873 + f 4 3015 3016 -2742 -3011 + mu 0 4 1887 1889 1709 1711 + f 4 3017 -3006 -2739 -3017 + mu 0 4 1889 1883 1706 1709 + f 4 -3002 -3018 3018 -3014 + mu 0 4 1881 1880 1890 1888 + f 4 -3016 -3008 -3012 -3019 + mu 0 4 1890 1886 1885 1888 + f 4 3019 3020 3021 3022 + mu 0 4 1891 1892 1893 1894 + f 4 3023 3024 3025 -2972 + mu 0 4 1865 1895 1896 1863 + f 4 3026 3027 3028 3029 + mu 0 4 1897 1898 1858 1899 + f 4 3030 -3027 3031 -3021 + mu 0 4 1892 1898 1897 1893 + f 4 3032 3033 3034 3035 + mu 0 4 1899 1860 1900 1901 + f 4 3036 -3030 -3036 3037 + mu 0 4 1902 1897 1899 1901 + f 4 -3032 -3037 3038 3039 + mu 0 4 1893 1897 1902 1903 + f 4 -3022 -3040 3040 3041 + mu 0 4 1894 1893 1903 1904 + f 4 3042 3043 -3041 3044 + mu 0 4 1905 1906 1904 1903 + f 4 -3026 3045 3046 3047 + mu 0 4 1863 1896 1907 1908 + f 4 3048 3049 -3047 3050 + mu 0 4 1909 1910 1908 1907 + f 4 -3034 -2981 3051 3052 + mu 0 4 1900 1860 1870 1911 + f 4 -2970 -3048 3053 -3052 + mu 0 4 1864 1863 1908 1912 + f 4 3054 3055 -3054 -3050 + mu 0 4 1910 1913 1912 1908 + f 4 -3046 3056 -3042 3057 + mu 0 4 1907 1896 1894 1904 + f 4 3058 -3051 -3058 -3044 + mu 0 4 1906 1909 1907 1904 + f 4 -3059 3059 3060 3061 + mu 0 4 1909 1906 1914 1915 + f 4 3062 3063 -3053 -3056 + mu 0 4 1916 1714 1900 1911 + f 4 -3064 -2744 3064 -3035 + mu 0 4 1900 1714 1713 1901 + f 4 -3055 3065 3066 3067 + mu 0 4 1913 1910 1917 1918 + f 4 -3063 -3068 3068 -2745 + mu 0 4 1714 1916 1919 1715 + f 4 -3049 -3062 3069 -3066 + mu 0 4 1910 1909 1915 1917 + f 4 -3060 -3043 3070 3071 + mu 0 4 1914 1906 1905 1920 + f 4 3072 -2747 3073 -3071 + mu 0 4 1905 1717 1716 1921 + f 4 -3038 -3065 -2748 3074 + mu 0 4 1902 1901 1713 1717 + f 4 -3061 -3072 3075 3076 + mu 0 4 1915 1914 1920 1922 + f 4 -3070 -3077 3077 -3067 + mu 0 4 1917 1915 1922 1918; + setAttr ".fc[1500:1999]" + f 4 -3078 3078 -2746 -3069 + mu 0 4 1919 1923 1712 1715 + f 4 -3076 -3074 -2749 -3079 + mu 0 4 1923 1921 1716 1712 + f 4 -2614 3079 -2394 3080 + mu 0 4 1630 1633 1501 1502 + f 4 -2400 3081 -2618 3082 + mu 0 4 1504 1505 1636 1635 + f 4 -2398 -3083 -2621 -3081 + mu 0 4 1502 1504 1635 1630 + f 4 -3082 -2415 3083 3084 + mu 0 4 1924 1516 1509 1648 + f 4 -2395 -3080 3085 3086 + mu 0 4 1503 1501 1633 1641 + f 4 -2404 3087 -2637 -3084 + mu 0 4 1509 1508 1649 1648 + f 4 -2421 -3087 -2629 3088 + mu 0 4 1520 1503 1641 1640 + f 4 -3088 -2444 3089 -2640 + mu 0 4 1649 1508 1535 1650 + f 4 -2643 -3090 -2452 -3089 + mu 0 4 1640 1650 1535 1520 + f 4 -2686 3090 -2689 -2700 + mu 0 4 1680 1669 1683 1682 + f 4 3091 -2709 -2687 -2699 + mu 0 4 1689 1693 1681 1680 + f 4 -2704 3092 -2712 -3092 + mu 0 4 1689 1691 1695 1693 + f 4 -2728 -2685 -2726 -3093 + mu 0 4 1691 1678 1679 1695 + f 4 -2715 -2649 -2708 -2718 + mu 0 4 1697 1655 1654 1692 + f 4 -2617 -2630 -3086 -2613 + mu 0 4 1632 1623 1641 1633 + f 4 -2633 -2619 -3085 -2639 + mu 0 4 1642 1645 1924 1648 + f 4 3093 -2901 3094 3095 + mu 0 4 1866 1817 1816 1778 + f 4 -3075 -3073 -3045 -3039 + mu 0 4 1902 1717 1905 1903 + f 4 -2655 -3091 -2669 3096 + mu 0 4 1657 1659 1925 1926 + f 4 -2660 -2624 3097 -2599 + mu 0 4 1619 1638 1634 1620 + f 4 -2612 3098 -3098 -2615 + mu 0 4 1632 1631 1620 1634 + f 4 -2600 -3099 -2622 -2610 + mu 0 4 1621 1620 1631 1627 + f 4 -2725 -2693 -2724 -2722 + mu 0 4 1696 1686 1685 1699 + f 4 -2695 3099 3100 -2976 + mu 0 4 1684 1687 1927 1867 + f 4 -2601 -2609 -2690 -2654 + mu 0 4 1622 1621 1629 1659 + f 4 -3025 3101 -3023 -3057 + mu 0 4 1896 1895 1891 1894 + f 4 -930 3102 3103 3104 + mu 0 4 1928 1929 1930 1931 + f 4 3105 3106 3107 3108 + mu 0 4 1932 1933 1934 1935 + f 4 -3108 3109 3110 3111 + mu 0 4 1935 1934 1936 1937 + f 4 -3105 3112 3113 -938 + mu 0 4 1928 1931 1938 1939 + f 4 3114 3115 3116 3117 + mu 0 4 1940 1941 1942 1943 + f 4 3118 3119 3120 3121 + mu 0 4 1944 1945 1946 1941 + f 4 -3117 3122 3123 3124 + mu 0 4 1943 1942 1947 1948 + f 4 -3114 3125 3126 -952 + mu 0 4 1939 1938 1949 1950 + f 4 3127 -3118 3128 -3110 + mu 0 4 1934 1940 1943 1936 + f 4 3129 -3125 3130 3131 + mu 0 4 1951 1943 1948 1952 + f 4 3132 3133 3134 3135 + mu 0 4 1953 1933 1954 1945 + f 4 3136 -3134 -3106 3137 + mu 0 4 1955 1954 1933 1932 + f 4 -968 3138 3139 -3103 + mu 0 4 1929 1956 1957 1930 + f 4 3140 3141 -970 3142 + mu 0 4 1958 1959 1960 1961 + f 4 -975 -3142 3143 3144 + mu 0 4 1962 1960 1959 1963 + f 4 3145 3146 3147 -976 + mu 0 4 605 1964 1965 606 + f 3 3148 3149 3150 + mu 0 3 1966 1967 1968 + f 4 3151 3152 3153 3154 + mu 0 4 1969 1970 1971 1972 + f 4 3155 3156 3157 -3153 + mu 0 4 1970 1973 1974 1971 + f 4 3158 -992 3159 3160 + mu 0 4 1975 620 619 1966 + f 4 3161 3162 3163 3164 + mu 0 4 1976 1977 1978 1979 + f 4 3165 -999 -3148 3166 + mu 0 4 1980 626 606 1965 + f 4 3167 3168 3169 -3163 + mu 0 4 1977 1981 1982 1978 + f 4 3170 3171 -1004 -3159 + mu 0 4 1975 1983 629 620 + f 4 -3169 3172 -3137 3173 + mu 0 4 1982 1981 1954 1955 + f 4 -3162 3174 3175 3176 + mu 0 4 1977 1976 1984 1985 + f 4 3177 3178 3179 3180 + mu 0 4 1986 1987 1988 1989 + f 4 -1018 3181 -3180 3182 + mu 0 4 637 638 1989 1988 + f 4 -3146 -1021 3183 3184 + mu 0 4 1964 605 640 1990 + f 4 -1023 -3127 3185 -3143 + mu 0 4 1961 1950 1949 1958 + f 4 -3182 -1026 3186 3187 + mu 0 4 1989 638 642 1991 + f 4 -3175 -3165 3188 3189 + mu 0 4 1984 1976 1979 1992 + f 4 -3179 3190 -3158 3191 + mu 0 4 1988 1987 1971 1974 + f 4 -3149 -3160 -1032 3192 + mu 0 4 1967 1966 619 644 + f 4 -3139 -1034 -3172 3193 + mu 0 4 1957 1956 629 1983 + f 4 -3157 3194 -1036 3195 + mu 0 4 1974 1973 646 645 + f 4 -3183 -3192 -3196 -1038 + mu 0 4 637 1988 1974 645 + f 4 3196 3197 3198 3199 + mu 0 4 1993 1994 1995 1996 + f 4 3200 3201 3202 3203 + mu 0 4 1997 1998 1999 2000 + f 4 3204 -3204 3205 3206 + mu 0 4 2001 1997 2000 2002 + f 4 3207 3208 3209 -3202 + mu 0 4 1998 2003 2004 1999 + f 4 3210 3211 3212 -3209 + mu 0 4 2003 2005 1994 2004 + f 4 -3203 3213 3214 3215 + mu 0 4 2000 1999 2006 2007 + f 4 3216 -3213 -3197 3217 + mu 0 4 2008 2004 1994 1993 + f 4 -3210 -3217 3218 -3214 + mu 0 4 1999 2004 2008 2006 + f 4 3219 3220 3221 3222 + mu 0 4 2009 2010 2011 2012 + f 4 3223 3224 3225 3226 + mu 0 4 2013 2014 2015 2016 + f 4 -3227 3227 3228 3229 + mu 0 4 2013 2016 2017 2018 + f 4 3230 -3230 3231 3232 + mu 0 4 2019 2013 2018 2020 + f 4 3233 3234 3235 3236 + mu 0 4 2021 2022 2023 2024 + f 4 3237 -3237 3238 3239 + mu 0 4 2025 2021 2024 2026 + f 4 -3201 3240 3241 3242 + mu 0 4 2027 2028 2029 2030 + f 4 3243 3244 3245 -3225 + mu 0 4 2014 2031 2032 2015 + f 4 -3245 3246 3247 3248 + mu 0 4 2032 2031 2033 2034 + f 3 3249 3250 3251 + mu 0 3 2033 2035 2036 + f 4 3252 3253 3254 -3247 + mu 0 4 2031 2037 2038 2033 + f 4 -3211 3255 3256 3257 + mu 0 4 2039 2040 2041 2042 + f 4 -3240 3258 -3220 3259 + mu 0 4 2025 2026 2010 2009 + f 4 -3257 3260 3261 3262 + mu 0 4 2042 2041 2043 2044 + f 4 -3252 3263 -3242 3264 + mu 0 4 2033 2036 2030 2029 + f 4 3265 -3248 -3265 3266 + mu 0 4 2045 2034 2033 2029 + f 4 3267 -3267 -3241 -3205 + mu 0 4 2046 2045 2029 2028 + f 4 -3222 3268 -3262 3269 + mu 0 4 2012 2011 2044 2043 + f 4 -3229 3270 3271 3272 + mu 0 4 2018 2017 2047 2007 + f 4 -3231 3273 3274 -3224 + mu 0 4 2013 2019 2048 2014 + f 4 -3218 3275 3276 3277 + mu 0 4 2008 1993 2049 2050 + f 4 -3235 3278 -3277 3279 + mu 0 4 2023 2022 2050 2049 + f 4 -3215 3280 -3232 -3273 + mu 0 4 2007 2006 2020 2018 + f 4 -3208 -3243 3281 -3256 + mu 0 4 2040 2027 2030 2041 + f 4 -3282 -3264 3282 -3261 + mu 0 4 2041 2030 2036 2043 + f 4 -3270 -3283 -3251 3283 + mu 0 4 2012 2043 2036 2035 + f 4 3284 -3223 -3284 3285 + mu 0 4 2038 2009 2012 2035 + f 4 3286 -3260 -3285 -3254 + mu 0 4 2037 2025 2009 2038 + f 4 -3206 -3216 -3272 3287 + mu 0 4 2002 2000 2007 2047 + f 4 3288 -3253 -3244 -3275 + mu 0 4 2048 2037 2031 2014 + f 4 -3234 3289 -3274 3290 + mu 0 4 2022 2021 2048 2019 + f 4 -3219 -3278 3291 -3281 + mu 0 4 2006 2008 2050 2020 + f 4 -3291 -3233 -3292 -3279 + mu 0 4 2022 2019 2020 2050 + f 4 3292 3293 3294 3295 + mu 0 4 2051 2052 2053 2054 + f 4 3296 3297 -3294 3298 + mu 0 4 2055 2056 2053 2052 + f 4 3299 3300 3301 3302 + mu 0 4 2057 2058 2059 2060 + f 4 3303 3304 3305 3306 + mu 0 4 2061 2062 2063 2064 + f 3 3307 3308 3309 + mu 0 3 2065 2066 2067 + f 4 -3306 3310 -3300 3311 + mu 0 4 2064 2063 2058 2057 + f 3 3312 3313 3314 + mu 0 3 2068 2069 2070 + f 4 3315 -3310 3316 3317 + mu 0 4 2071 2065 2067 2072 + f 4 3318 3319 3320 3321 + mu 0 4 2073 2074 2075 2076 + f 4 3322 3323 3324 3325 + mu 0 4 2077 2074 2078 2079 + f 4 3326 3327 3328 3329 + mu 0 4 2080 2081 2082 2083 + f 4 3330 3331 3332 -3313 + mu 0 4 2068 2084 2085 2069 + f 4 -3314 3333 3334 3335 + mu 0 4 2070 2069 2086 2087 + f 4 3336 3337 3338 -3335 + mu 0 4 2086 2088 2089 2087 + f 4 -3336 3339 3340 3341 + mu 0 4 2070 2087 2090 2059 + f 4 -3339 3342 3343 -3340 + mu 0 4 2087 2089 2091 2090 + f 4 3344 3345 3346 3347 + mu 0 4 2092 2093 2094 2095 + f 4 -3346 3348 3349 3350 + mu 0 4 2094 2093 2096 2060 + f 4 3351 -3351 -3302 -3341 + mu 0 4 2090 2094 2060 2059 + f 4 -3347 -3352 -3344 3352 + mu 0 4 2095 2094 2090 2091 + f 4 3353 3354 3355 3356 + mu 0 4 2097 2098 2099 2100 + f 4 3357 3358 3359 -3320 + mu 0 4 2074 2101 2102 2075 + f 4 3360 -3326 3361 -3328 + mu 0 4 2081 2077 2079 2082 + f 4 3362 3363 -3309 3364 + mu 0 4 2099 2103 2067 2066 + f 4 3365 3366 3367 3368 + mu 0 4 2104 2100 2105 2106 + f 4 3369 3370 3371 3372 + mu 0 4 2103 2107 2108 2109 + f 4 -3317 3373 3374 3375 + mu 0 4 2072 2067 2110 2111 + f 4 -3318 3376 3377 3378 + mu 0 4 2112 2113 2114 2115 + f 4 -3376 3379 3380 -3377 + mu 0 4 2113 2116 2117 2114 + f 4 3381 -3324 -3319 3382 + mu 0 4 2118 2078 2074 2073 + f 4 -3382 3383 3384 3385 + mu 0 4 2078 2118 2119 2120 + f 4 -3325 -3386 3386 3387 + mu 0 4 2079 2078 2120 2121 + f 4 -3362 -3388 3388 3389 + mu 0 4 2082 2079 2121 2122 + f 4 3390 -3329 -3390 3391 + mu 0 4 2123 2083 2082 2122 + f 4 3392 3393 3394 -3385 + mu 0 4 2119 2124 2125 2120 + f 4 -3389 3395 3396 3397 + mu 0 4 2122 2121 2126 2127 + f 4 3398 3399 -3392 -3398 + mu 0 4 2127 2128 2123 2122 + f 4 -3394 3400 3401 3402 + mu 0 4 2125 2124 2129 2130 + f 4 -3403 3403 3404 3405 + mu 0 4 2125 2130 2131 2126 + f 4 -3405 3406 3407 -3397 + mu 0 4 2126 2131 2132 2127 + f 4 -3399 -3408 3408 3409 + mu 0 4 2128 2127 2132 2133 + f 4 -3402 3410 3411 3412 + mu 0 4 2130 2129 2134 2135 + f 4 -3404 -3413 3413 3414 + mu 0 4 2131 2130 2135 2136 + f 4 -3407 -3415 3415 3416 + mu 0 4 2132 2131 2136 2137 + f 4 3417 -3409 -3417 3418 + mu 0 4 2138 2133 2132 2137 + f 4 -3387 -3395 -3406 -3396 + mu 0 4 2121 2120 2125 2126 + f 4 3419 3420 3421 3422 + mu 0 4 2139 2140 2141 2142 + f 4 -3420 3423 3424 3425 + mu 0 4 2140 2139 2143 2144 + f 4 -3425 3426 3427 3428 + mu 0 4 2144 2143 2145 2146 + f 4 -3428 3429 3430 3431 + mu 0 4 2146 2145 2147 2148 + f 4 3432 3433 3434 -3412 + mu 0 4 2134 2149 2150 2135 + f 4 3435 3436 3437 3438 + mu 0 4 2150 2147 2151 2152 + f 4 3439 3440 -3419 3441 + mu 0 4 2153 2154 2138 2137 + f 4 -3442 -3416 3442 3443 + mu 0 4 2153 2137 2136 2152 + f 4 -3414 -3435 -3439 -3443 + mu 0 4 2136 2135 2150 2152 + f 4 -3424 -3423 3444 3445 + mu 0 4 2143 2139 2142 2151 + f 4 -3430 -3427 -3446 -3437 + mu 0 4 2147 2145 2143 2151 + f 4 -3445 3446 -3444 -3438 + mu 0 4 2151 2142 2153 2152 + f 4 -3431 -3436 -3434 3447 + mu 0 4 2148 2147 2150 2149 + f 4 -3447 -3422 3448 -3440 + mu 0 4 2153 2142 2141 2154 + f 4 3449 3450 3451 3452 + mu 0 4 2155 2156 2157 2158 + f 4 3453 3454 3455 3456 + mu 0 4 2159 2160 2161 2162 + f 4 3457 3458 -3454 3459 + mu 0 4 2163 2164 2160 2159 + f 4 3460 3461 3462 3463 + mu 0 4 2155 2163 2165 2166 + f 4 3464 3465 -3457 3466 + mu 0 4 2167 2168 2159 2162 + f 4 -3462 -3460 -3466 3467 + mu 0 4 2165 2163 2159 2168 + f 4 3468 3469 -3450 -3464 + mu 0 4 2166 2169 2156 2155 + f 4 -3465 3470 3471 3472 + mu 0 4 2168 2167 2170 2171 + f 4 3473 -3468 -3473 3474 + mu 0 4 2172 2165 2168 2171 + f 4 -3474 3475 3476 -3463 + mu 0 4 2165 2172 2173 2166 + f 4 3477 -3469 -3477 3478 + mu 0 4 2174 2169 2166 2173 + f 4 3479 3480 3481 -3472 + mu 0 4 2170 2175 2176 2171 + f 4 3482 -3475 -3482 3483 + mu 0 4 2177 2172 2171 2176 + f 4 -3476 -3483 3484 3485 + mu 0 4 2173 2172 2177 2178 + f 4 3486 3487 -3479 -3486 + mu 0 4 2178 2179 2174 2173 + f 4 -3481 3488 3489 3490 + mu 0 4 2176 2175 2180 2181 + f 4 3491 -3484 -3491 3492 + mu 0 4 2182 2177 2176 2181 + f 4 -3492 3493 3494 -3485 + mu 0 4 2177 2182 2183 2178 + f 4 -3487 -3495 3495 3496 + mu 0 4 2179 2178 2183 2184 + f 4 -3490 3497 3498 3499 + mu 0 4 2181 2180 2185 2186 + f 4 3500 -3493 -3500 3501 + mu 0 4 2187 2182 2181 2186 + f 4 -3494 -3501 3502 3503 + mu 0 4 2183 2182 2187 2188 + f 4 3504 -3496 -3504 3505 + mu 0 4 2189 2184 2183 2188 + f 4 3506 3507 3508 3509 + mu 0 4 2190 2191 2192 2193 + f 4 3510 3511 3512 3513 + mu 0 4 2194 2195 2196 2197 + f 4 3514 3515 -3511 3516 + mu 0 4 2198 2199 2195 2194 + f 4 -3515 3517 -3507 3518 + mu 0 4 2199 2198 2191 2190 + f 4 -3510 3519 3520 -3519 + mu 0 4 2190 2193 2200 2199 + f 4 3521 3522 3523 -3499 + mu 0 4 2185 2201 2202 2186 + f 4 3524 -3502 -3524 3525 + mu 0 4 2203 2187 2186 2202 + f 4 -3503 -3525 3526 3527 + mu 0 4 2188 2187 2203 2204 + f 4 3528 3529 -3506 -3528 + mu 0 4 2204 2205 2189 2188 + f 4 3530 -3523 3531 -3513 + mu 0 4 2196 2202 2201 2197 + f 4 3532 -3526 -3531 3533 + mu 0 4 2200 2203 2202 2196 + f 4 -3533 -3520 3534 -3527 + mu 0 4 2203 2200 2193 2204 + f 4 3535 -3529 -3535 -3509 + mu 0 4 2192 2205 2204 2193 + f 4 -3521 -3534 -3512 -3516 + mu 0 4 2199 2200 2196 2195 + f 4 3536 3537 3538 3539 + mu 0 4 2075 2206 2207 2208 + f 4 3540 3541 3542 -3538 + mu 0 4 2206 2158 2209 2207 + f 4 -3452 3543 3544 -3542 + mu 0 4 2158 2157 2210 2209 + f 4 -3540 3545 3546 -3321 + mu 0 4 2075 2208 2211 2076 + f 4 -3545 3547 3548 3549 + mu 0 4 2209 2210 2212 2213 + f 4 -3543 -3550 3550 3551 + mu 0 4 2207 2209 2213 2214 + f 4 -3539 -3552 3552 3553 + mu 0 4 2208 2207 2214 2215 + f 4 3554 -3546 -3554 3555 + mu 0 4 2216 2211 2208 2215 + f 4 3556 3557 3558 3559 + mu 0 4 2217 2218 2219 2220 + f 4 3560 -3560 3561 3562 + mu 0 4 2221 2217 2220 2222 + f 4 3563 -3563 3564 3565 + mu 0 4 2223 2221 2222 2224 + f 4 3566 3567 -3566 3568 + mu 0 4 2225 2226 2223 2224 + f 4 3569 3570 3571 -3549 + mu 0 4 2212 2227 2228 2213 + f 4 -3551 -3572 3572 3573 + mu 0 4 2214 2213 2228 2229 + f 4 -3553 -3574 3574 3575 + mu 0 4 2215 2214 2229 2230 + f 4 3576 3577 -3556 -3576 + mu 0 4 2230 2231 2216 2215 + f 4 -3571 3578 -3557 3579 + mu 0 4 2228 2227 2218 2217 + f 4 -3580 -3561 3580 -3573 + mu 0 4 2228 2217 2221 2229 + f 4 -3581 -3564 3581 -3575 + mu 0 4 2229 2221 2223 2230 + f 4 -3577 -3582 -3568 3582 + mu 0 4 2231 2230 2223 2226 + f 4 3583 3584 3585 3586 + mu 0 4 2232 2233 2234 2235 + f 4 -3584 3587 3588 3589 + mu 0 4 2233 2232 2236 2237 + f 4 -3589 3590 3591 3592 + mu 0 4 2237 2236 2238 2239 + f 4 -3592 3593 3594 3595 + mu 0 4 2239 2238 2240 2241 + f 4 3596 3597 3598 3599 + mu 0 4 2242 2234 2243 2244 + f 4 -3599 3600 3601 3602 + mu 0 4 2244 2243 2241 2245 + f 4 3603 -3586 -3597 3604 + mu 0 4 2246 2235 2234 2242 + f 4 3605 3606 -3602 -3595 + mu 0 4 2240 2247 2245 2241 + f 4 3607 -3605 3608 -3559 + mu 0 4 2219 2246 2242 2220 + f 4 -3562 -3609 -3600 3609 + mu 0 4 2222 2220 2242 2244 + f 4 -3565 -3610 -3603 3610 + mu 0 4 2224 2222 2244 2245 + f 4 -3607 3611 -3569 -3611 + mu 0 4 2245 2247 2225 2224 + f 4 -3585 -3590 3612 -3598 + mu 0 4 2234 2233 2237 2243 + f 4 -3593 -3596 -3601 -3613 + mu 0 4 2237 2239 2241 2243 + f 4 3613 -3331 3614 3615 + mu 0 4 2248 2084 2068 2249 + f 4 -3334 -3333 3616 3617 + mu 0 4 2086 2069 2085 2250 + f 4 3618 -3337 -3618 3619 + mu 0 4 2251 2088 2086 2250 + f 4 -3614 3620 3621 3622 + mu 0 4 2084 2248 2252 2253 + f 4 -3332 -3623 3623 3624 + mu 0 4 2085 2084 2253 2254 + f 4 -3617 -3625 3625 3626 + mu 0 4 2250 2085 2254 2255 + f 4 3627 -3620 -3627 3628 + mu 0 4 2256 2251 2250 2255 + f 4 3629 3630 3631 -3622 + mu 0 4 2252 2257 2258 2253 + f 4 -3624 -3632 3632 3633 + mu 0 4 2254 2253 2258 2259 + f 4 -3626 -3634 3634 3635 + mu 0 4 2255 2254 2259 2260 + f 4 3636 3637 -3629 -3636 + mu 0 4 2260 2261 2256 2255 + f 4 -3631 3638 3639 3640 + mu 0 4 2258 2257 2262 2263 + f 4 -3641 3641 3642 -3633 + mu 0 4 2258 2263 2264 2259 + f 4 -3643 3643 3644 -3635 + mu 0 4 2259 2264 2265 2260 + f 4 -3637 -3645 3645 3646 + mu 0 4 2261 2260 2265 2266 + f 4 -3640 3647 3648 3649 + mu 0 4 2263 2262 2267 2268 + f 4 3650 -3642 -3650 3651 + mu 0 4 2269 2264 2263 2268 + f 4 -3644 -3651 3652 3653 + mu 0 4 2265 2264 2269 2270 + f 4 3654 -3646 -3654 3655 + mu 0 4 2271 2266 2265 2270 + f 4 3656 3657 3658 3659 + mu 0 4 2272 2273 2274 2275 + f 4 -3657 3660 3661 3662 + mu 0 4 2273 2272 2276 2277 + f 4 -3662 3663 3664 3665 + mu 0 4 2277 2276 2278 2279 + f 4 -3665 3666 3667 3668 + mu 0 4 2279 2278 2280 2281 + f 4 3669 3670 3671 3672 + mu 0 4 2275 2282 2283 2284 + f 4 -3670 -3659 3673 3674 + mu 0 4 2282 2275 2274 2285 + f 4 3675 -3668 3676 3677 + mu 0 4 2286 2281 2280 2287 + f 4 -3677 3678 -3672 3679 + mu 0 4 2287 2280 2284 2283 + f 4 3680 -3678 3681 -3649 + mu 0 4 2267 2286 2287 2268 + f 4 -3652 -3682 -3680 3682 + mu 0 4 2269 2268 2287 2283 + f 4 -3653 -3683 -3671 3683 + mu 0 4 2270 2269 2283 2282 + f 4 -3675 3684 -3656 -3684 + mu 0 4 2282 2285 2271 2270 + f 4 -3661 -3660 -3673 3685 + mu 0 4 2276 2272 2275 2284 + f 4 -3667 -3664 -3686 -3679 + mu 0 4 2280 2278 2276 2284 + f 4 3686 3687 3688 3689 + mu 0 4 2288 2289 2290 2291 + f 4 -3687 3690 3691 3692 + mu 0 4 2289 2288 2292 2293 + f 4 3693 3694 -3692 3695 + mu 0 4 2294 2295 2293 2292 + f 4 3696 3697 3698 3699 + mu 0 4 2296 2297 2298 2299 + f 4 3700 3701 -3697 3702 + mu 0 4 2300 2301 2297 2296 + f 4 3703 3704 3705 3706 + mu 0 4 2300 2302 2303 2304 + f 4 3707 3708 3709 3710 + mu 0 4 2305 2302 2299 2306 + f 4 3711 3712 3713 3714 + mu 0 4 2307 2305 2308 2309 + f 4 -3713 -3711 3715 3716 + mu 0 4 2308 2305 2306 2310 + f 4 -3716 3717 3718 3719 + mu 0 4 2310 2306 2311 2312 + f 4 3720 -3718 -3710 -3699 + mu 0 4 2298 2311 2306 2299 + f 4 3721 -3705 -3708 -3712 + mu 0 4 2307 2303 2302 2305 + f 4 -3722 3722 3723 3724 + mu 0 4 2303 2313 2314 2315 + f 4 -3725 3725 3726 -3706 + mu 0 4 2303 2315 2316 2304 + f 4 -3690 3727 -3714 3728 + mu 0 4 2288 2291 2309 2308 + f 4 -3729 -3717 3729 -3691 + mu 0 4 2288 2308 2310 2292 + f 4 3730 -3696 -3730 -3720 + mu 0 4 2312 2294 2292 2310 + f 4 -3727 3731 -3701 -3707 + mu 0 4 2304 2316 2301 2300 + f 4 -3704 -3703 -3700 -3709 + mu 0 4 2302 2300 2296 2299 + f 4 3732 -3307 3733 3734 + mu 0 4 2317 2061 2064 2318 + f 4 -3694 3735 3736 3737 + mu 0 4 2319 2320 2321 2322 + f 4 3738 3739 3740 3741 + mu 0 4 2323 2324 2325 2326 + f 4 3742 3743 3744 3745 + mu 0 4 2327 2328 2325 2329 + f 4 3746 3747 3748 3749 + mu 0 4 2330 2328 2331 2332 + f 4 3750 3751 3752 3753 + mu 0 4 2333 2334 2335 2336 + f 4 3754 3755 3756 3757 + mu 0 4 2337 2338 2324 2335 + f 4 3758 3759 -3758 -3752 + mu 0 4 2334 2339 2337 2335 + f 4 3760 -3746 3761 3762 + mu 0 4 2340 2327 2329 2341 + f 4 3763 3764 3765 3766 + mu 0 4 2342 2343 2344 2345 + f 4 -3767 3767 3768 3769 + mu 0 4 2342 2345 2346 2347 + f 3 3770 3771 3772 + mu 0 3 2348 2343 2349 + f 3 3773 3774 3775 + mu 0 3 2349 2342 2350 + f 4 -3322 3776 3777 3778 + mu 0 4 2351 2352 2353 2354 + f 4 3779 3780 3781 3782 + mu 0 4 2347 2355 2356 2357 + f 4 -3770 3783 -3778 3784 + mu 0 4 2342 2347 2354 2353 + f 4 -3451 3785 -3773 3786 + mu 0 4 2358 2359 2348 2349 + f 4 3787 3788 3789 3790 + mu 0 4 2360 2361 2362 2363 + f 3 -3784 3791 3792 + mu 0 3 2354 2347 2364 + f 3 3793 -3781 3794 + mu 0 3 2365 2356 2355 + f 4 3795 3796 -3795 3797 + mu 0 4 2366 2367 2365 2355 + f 4 -3798 3798 3799 3800 + mu 0 4 2366 2355 2368 2369 + f 4 -3348 3801 3802 -3760 + mu 0 4 2339 2370 2371 2337 + f 4 3803 3804 3805 3806 + mu 0 4 2372 2368 2346 2373 + f 4 -3353 3807 3808 -3802 + mu 0 4 2370 2374 2369 2371 + f 4 -3809 -3800 -3804 3809 + mu 0 4 2371 2369 2368 2372 + f 4 -3330 3810 3811 3812 + mu 0 4 2375 2376 2377 2357 + f 4 -3383 -3779 3813 3814 + mu 0 4 2378 2351 2354 2379 + f 4 -3338 3815 -3796 3816 + mu 0 4 2380 2381 2367 2366 + f 4 -3794 3817 3818 3819 + mu 0 4 2356 2365 2382 2383 + f 4 -3797 3820 3821 -3818 + mu 0 4 2365 2367 2384 2382 + f 4 -3343 -3817 -3801 -3808 + mu 0 4 2374 2380 2366 2369 + f 4 -3799 -3780 -3769 -3805 + mu 0 4 2368 2355 2347 2346 + f 4 3822 3823 3824 3825 + mu 0 4 2385 2386 2344 2387 + f 4 3826 -3763 3827 3828 + mu 0 4 2388 2340 2341 2389 + f 4 -3826 3829 -3378 3830 + mu 0 4 2385 2387 2115 2114 + f 4 -3354 3831 -3761 3832 + mu 0 4 2390 2097 2327 2340 + f 4 -3833 -3827 3833 3834 + mu 0 4 2390 2340 2388 2391 + f 4 3835 -3829 3836 3837 + mu 0 4 2392 2388 2389 2393 + f 4 -3834 -3836 3838 -3371 + mu 0 4 2391 2388 2392 2394 + f 4 3839 -3813 -3782 3840 + mu 0 4 2395 2375 2357 2356 + f 4 3841 3842 3843 3844 + mu 0 4 2396 2397 2379 2398 + f 4 3845 3846 3847 -3845 + mu 0 4 2398 2377 2399 2396 + f 4 3848 3849 -3842 3850 + mu 0 4 2400 2401 2397 2396 + f 4 -3848 3851 3852 -3851 + mu 0 4 2396 2399 2402 2400 + f 4 3853 3854 3855 -3849 + mu 0 4 2400 2403 2404 2401 + f 4 3856 3857 -3854 -3853 + mu 0 4 2402 2405 2403 2400 + f 4 3858 3859 -3855 3860 + mu 0 4 2406 2407 2404 2403 + f 4 -3858 3861 3862 -3861 + mu 0 4 2403 2405 2408 2406 + f 4 -3863 3863 3864 3865 + mu 0 4 2406 2408 2409 2410 + f 4 3866 -3859 -3866 3867 + mu 0 4 2411 2407 2406 2410 + f 4 3868 3869 3870 3871 + mu 0 4 2412 2413 2414 2415 + f 4 3872 3873 3874 -3870 + mu 0 4 2413 2416 2417 2414 + f 4 -3384 -3815 -3843 3875 + mu 0 4 2418 2378 2379 2397 + f 4 -3391 3876 -3847 -3811 + mu 0 4 2376 2419 2399 2377 + f 4 -3393 -3876 -3850 3877 + mu 0 4 2420 2418 2397 2401 + f 4 -3400 3878 -3852 -3877 + mu 0 4 2419 2421 2402 2399 + f 4 -3401 -3878 -3856 3879 + mu 0 4 2422 2420 2401 2404 + f 4 -3410 3880 -3857 -3879 + mu 0 4 2421 2423 2405 2402 + f 4 -3411 -3880 -3860 3881 + mu 0 4 2424 2422 2404 2407 + f 4 -3418 3882 -3862 -3881 + mu 0 4 2423 2425 2408 2405 + f 4 -3426 3883 -3875 3884 + mu 0 4 2426 2427 2414 2417 + f 4 -3429 3885 -3871 -3884 + mu 0 4 2427 2428 2415 2414 + f 4 -3449 3886 3887 3888 + mu 0 4 2429 2430 2416 2409 + f 4 -3433 -3882 -3867 3889 + mu 0 4 2431 2424 2407 2411 + f 4 -3432 3890 -3872 -3886 + mu 0 4 2428 2432 2412 2415 + f 4 -3421 -3885 -3874 -3887 + mu 0 4 2430 2426 2417 2416 + f 4 -3865 -3888 -3873 3891 + mu 0 4 2410 2409 2416 2413 + f 4 -3441 -3889 -3864 -3883 + mu 0 4 2425 2429 2409 2408 + f 4 -3868 -3892 -3869 3892 + mu 0 4 2411 2410 2413 2412 + f 4 -3448 -3890 -3893 -3891 + mu 0 4 2432 2431 2411 2412 + f 4 -3470 3893 3894 -3786 + mu 0 4 2359 2433 2434 2348 + f 4 -3456 3895 -3790 3896 + mu 0 4 2435 2436 2363 2362 + f 4 3897 3898 3899 -3789 + mu 0 4 2361 2437 2438 2362 + f 4 3900 3901 3902 -3899 + mu 0 4 2437 2439 2440 2438 + f 4 3903 3904 3905 -3901 + mu 0 4 2437 2434 2441 2439 + f 4 3906 3907 3908 -3902 + mu 0 4 2439 2442 2443 2440 + f 4 -3906 3909 3910 -3907 + mu 0 4 2439 2441 2444 2442 + f 4 3911 3912 3913 -3908 + mu 0 4 2442 2445 2446 2443 + f 4 3914 3915 -3912 -3911 + mu 0 4 2444 2447 2445 2442 + f 4 3916 3917 3918 -3913 + mu 0 4 2445 2448 2449 2446 + f 4 -3916 3919 3920 -3917 + mu 0 4 2445 2447 2450 2448 + f 4 3921 3922 3923 3924 + mu 0 4 2451 2452 2453 2454 + f 4 3925 3926 3927 -3922 + mu 0 4 2451 2455 2456 2452 + f 4 3928 3929 3930 -3918 + mu 0 4 2448 2457 2458 2449 + f 4 -3921 3931 3932 -3929 + mu 0 4 2448 2450 2459 2457 + f 4 3933 -3925 3934 -3930 + mu 0 4 2457 2451 2454 2458 + f 4 3935 -3926 -3934 -3933 + mu 0 4 2459 2455 2451 2457 + f 4 -3467 -3897 -3900 3936 + mu 0 4 2460 2435 2362 2438 + f 4 -3471 -3937 -3903 3937 + mu 0 4 2461 2460 2438 2440 + f 4 -3478 3938 -3905 -3894 + mu 0 4 2433 2462 2441 2434 + f 4 -3480 -3938 -3909 3939 + mu 0 4 2463 2461 2440 2443 + f 4 -3488 3940 -3910 -3939 + mu 0 4 2462 2464 2444 2441 + f 4 -3489 -3940 -3914 3941 + mu 0 4 2465 2463 2443 2446 + f 4 -3497 3942 -3915 -3941 + mu 0 4 2464 2466 2447 2444 + f 4 -3498 -3942 -3919 3943 + mu 0 4 2467 2465 2446 2449 + f 4 -3505 3944 -3920 -3943 + mu 0 4 2466 2468 2450 2447 + f 4 3945 -3517 3946 -3923 + mu 0 4 2452 2469 2470 2453 + f 4 -3518 -3946 -3928 3947 + mu 0 4 2471 2469 2452 2456 + f 4 -3514 3948 -3924 -3947 + mu 0 4 2470 2472 2454 2453 + f 4 -3522 -3944 -3931 3949 + mu 0 4 2473 2467 2449 2458 + f 4 -3530 3950 -3932 -3945 + mu 0 4 2468 2474 2459 2450 + f 4 -3532 -3950 -3935 -3949 + mu 0 4 2472 2473 2458 2454 + f 4 -3536 3951 -3936 -3951 + mu 0 4 2474 2475 2455 2459 + f 4 -3508 -3948 -3927 -3952 + mu 0 4 2475 2471 2456 2455 + f 4 -3544 -3787 3952 3953 + mu 0 4 2476 2358 2349 2477 + f 4 -3547 3954 3955 -3777 + mu 0 4 2352 2478 2479 2353 + f 4 3956 3957 3958 3959 + mu 0 4 2480 2481 2477 2482 + f 4 3960 3961 3962 -3960 + mu 0 4 2482 2479 2483 2480 + f 4 3963 3964 3965 3966 + mu 0 4 2484 2485 2486 2487 + f 4 3967 3968 3969 -3967 + mu 0 4 2487 2488 2489 2484 + f 4 3970 3971 -3957 3972 + mu 0 4 2490 2491 2481 2480 + f 4 -3963 3973 3974 -3973 + mu 0 4 2480 2483 2492 2490 + f 4 3975 -3966 3976 -3971 + mu 0 4 2490 2487 2486 2491 + f 4 3977 -3968 -3976 -3975 + mu 0 4 2492 2488 2487 2490 + f 4 3978 3979 3980 3981 + mu 0 4 2493 2494 2495 2496 + f 4 3982 3983 -3981 3984 + mu 0 4 2497 2498 2496 2495 + f 4 -3980 3985 -3964 3986 + mu 0 4 2495 2494 2485 2484 + f 4 -3970 3987 -3985 -3987 + mu 0 4 2484 2489 2497 2495 + f 4 -3982 3988 3989 3990 + mu 0 4 2493 2496 2499 2500 + f 4 -3984 3991 3992 -3989 + mu 0 4 2496 2498 2501 2499 + f 4 -3548 -3954 -3958 3993 + mu 0 4 2502 2476 2477 2481 + f 4 -3555 3994 -3962 -3955 + mu 0 4 2478 2503 2483 2479 + f 4 -3558 3995 -3965 3996 + mu 0 4 2504 2505 2486 2485 + f 4 -3567 3997 -3969 3998 + mu 0 4 2506 2507 2489 2488 + f 4 -3570 -3994 -3972 3999 + mu 0 4 2508 2502 2481 2491 + f 4 -3578 4000 -3974 -3995 + mu 0 4 2503 2509 2492 2483 + f 4 -3579 -4000 -3977 -3996 + mu 0 4 2505 2508 2491 2486 + f 4 -3583 -3999 -3978 -4001 + mu 0 4 2509 2506 2488 2492 + f 4 -3588 4001 -3990 4002 + mu 0 4 2510 2511 2500 2499 + f 4 -3591 -4003 -3993 4003 + mu 0 4 2512 2510 2499 2501 + f 4 -3604 4004 -3979 4005 + mu 0 4 2513 2514 2494 2493 + f 4 -3608 -3997 -3986 -4005 + mu 0 4 2514 2504 2485 2494 + f 4 -3612 4006 -3988 -3998 + mu 0 4 2507 2515 2497 2489 + f 4 -3587 -4006 -3991 -4002 + mu 0 4 2511 2513 2493 2500 + f 4 -3594 -4004 -3992 4007 + mu 0 4 2516 2512 2501 2498 + f 4 -3606 -4008 -3983 -4007 + mu 0 4 2515 2516 2498 2497 + f 4 4008 4009 -3819 4010 + mu 0 4 2517 2518 2383 2382 + f 4 -3822 4011 4012 -4011 + mu 0 4 2382 2384 2519 2517 + f 4 4013 4014 -4009 4015 + mu 0 4 2520 2521 2518 2517 + f 4 -4013 4016 4017 -4016 + mu 0 4 2517 2519 2522 2520 + f 4 4018 4019 4020 -4014 + mu 0 4 2520 2523 2524 2521 + f 4 4021 4022 -4019 -4018 + mu 0 4 2522 2525 2523 2520 + f 4 4023 4024 -4020 4025 + mu 0 4 2526 2527 2524 2523 + f 4 -4023 4026 4027 -4026 + mu 0 4 2523 2525 2528 2526 + f 4 4028 4029 4030 4031 + mu 0 4 2529 2530 2531 2532 + f 4 -4031 4032 4033 4034 + mu 0 4 2532 2531 2533 2534 + f 4 -4033 4035 4036 4037 + mu 0 4 2533 2531 2535 2536 + f 4 -4030 4038 4039 -4036 + mu 0 4 2531 2530 2537 2535 + f 4 -4035 4040 -4024 4041 + mu 0 4 2532 2534 2527 2526 + f 4 -4028 4042 -4032 -4042 + mu 0 4 2526 2528 2529 2532 + f 4 -3619 4043 -3821 -3816 + mu 0 4 2381 2538 2384 2367 + f 4 -3621 4044 -4010 4045 + mu 0 4 2539 2540 2383 2518 + f 4 -3628 4046 -4012 -4044 + mu 0 4 2538 2541 2519 2384 + f 4 -3630 -4046 -4015 4047 + mu 0 4 2542 2539 2518 2521 + f 4 -3638 4048 -4017 -4047 + mu 0 4 2541 2543 2522 2519 + f 4 -3639 -4048 -4021 4049 + mu 0 4 2544 2542 2521 2524 + f 4 -3647 4050 -4022 -4049 + mu 0 4 2543 2545 2525 2522 + f 4 -3648 -4050 -4025 4051 + mu 0 4 2546 2544 2524 2527 + f 4 -3655 4052 -4027 -4051 + mu 0 4 2545 2547 2528 2525 + f 4 -3674 4053 -4029 4054 + mu 0 4 2548 2549 2530 2529 + f 4 -3676 4055 -4034 4056 + mu 0 4 2550 2551 2534 2533 + f 4 -3669 -4057 -4038 4057 + mu 0 4 2552 2550 2533 2536 + f 4 -3658 4058 -4039 -4054 + mu 0 4 2549 2553 2537 2530 + f 4 -3681 -4052 -4041 -4056 + mu 0 4 2551 2546 2527 2534 + f 4 -3685 -4055 -4043 -4053 + mu 0 4 2547 2548 2529 2528 + f 4 4059 4060 4061 4062 + mu 0 4 2554 2555 2556 2557 + f 4 -4063 4063 -3737 4064 + mu 0 4 2554 2557 2322 2321 + f 4 4065 4066 -4061 4067 + mu 0 4 2558 2559 2556 2555 + f 4 4068 4069 4070 -4060 + mu 0 4 2554 2560 2561 2555 + f 4 -4069 -4065 4071 4072 + mu 0 4 2560 2554 2321 2562 + f 4 4073 4074 4075 4076 + mu 0 4 2314 2563 2561 2564 + f 4 4077 4078 -4076 -4070 + mu 0 4 2560 2565 2564 2561 + f 4 -4078 -4073 4079 4080 + mu 0 4 2565 2560 2562 2566 + f 4 4081 4082 4083 -4079 + mu 0 4 2565 2567 2568 2564 + f 4 -3724 -4077 -4084 4084 + mu 0 4 2315 2314 2564 2568 + f 4 -4082 -4081 4085 4086 + mu 0 4 2567 2565 2566 2569 + f 4 4087 4088 4089 -4083 + mu 0 4 2567 2570 2571 2568 + f 4 -3726 -4085 -4090 4090 + mu 0 4 2316 2315 2568 2571 + f 4 -4088 -4087 4091 4092 + mu 0 4 2570 2567 2569 2572 + f 4 -3731 4093 -4072 -3736 + mu 0 4 2320 2573 2562 2321 + f 4 -3698 4094 -4092 4095 + mu 0 4 2574 2575 2572 2569 + f 4 4096 -4093 -4095 -3702 + mu 0 4 2576 2570 2572 2575 + f 4 -3715 4097 -4074 -3723 + mu 0 4 2313 2577 2563 2314 + f 4 -3719 4098 -4080 -4094 + mu 0 4 2573 2578 2566 2562 + f 4 -3721 -4096 -4086 -4099 + mu 0 4 2578 2574 2569 2566 + f 4 -3728 4099 4100 -4098 + mu 0 4 2577 2579 2558 2563 + f 4 -3689 4101 -4066 -4100 + mu 0 4 2579 2580 2559 2558 + f 4 -3756 4102 4103 -3740 + mu 0 4 2324 2338 2581 2325 + f 4 4104 -3342 -3301 4105 + mu 0 4 2101 2070 2059 2058 + f 3 4106 -3368 4107 + mu 0 3 2317 2106 2105 + f 4 -3810 4108 -3755 -3803 + mu 0 4 2371 2372 2338 2337 + f 4 4109 4110 4111 -3459 + mu 0 4 2164 2062 2065 2160 + f 3 -3458 -3461 4112 + mu 0 3 2164 2163 2155 + f 4 4113 4114 -3305 -4110 + mu 0 4 2164 2102 2063 2062 + f 4 -3807 4115 -4103 -4109 + mu 0 4 2372 2373 2581 2338 + f 4 -3359 -4106 -3311 -4115 + mu 0 4 2102 2101 2058 2063 + f 4 4116 -3327 -3840 -3615 + mu 0 4 2068 2081 2080 2249 + f 4 -3806 -3768 4117 4118 + mu 0 4 2373 2346 2345 2582 + f 4 -4119 4119 4120 -4116 + mu 0 4 2373 2582 2329 2581 + f 4 -3732 -4091 -4089 -4097 + mu 0 4 2576 2316 2571 2570 + f 4 -3296 4121 -3751 4122 + mu 0 4 2051 2054 2583 2584 + f 4 -3747 4123 -3741 -3744 + mu 0 4 2328 2330 2326 2325 + f 3 -4104 -4121 -3745 + mu 0 3 2325 2581 2329 + f 4 -3753 -3757 -3739 4124 + mu 0 4 2336 2335 2324 2323 + f 4 4125 4126 -3837 4127 + mu 0 4 2385 2585 2393 2389 + f 4 -3823 -4128 -3828 4128 + mu 0 4 2386 2385 2389 2341 + f 4 -3835 -3370 -3363 -3355 + mu 0 4 2098 2107 2103 2099 + f 4 -3373 4129 -3374 -3364 + mu 0 4 2103 2109 2110 2067 + f 4 -3663 4130 -4040 -4059 + mu 0 4 2553 2586 2535 2537 + f 4 -3666 -4058 -4037 -4131 + mu 0 4 2586 2552 2536 2535; + setAttr ".fc[2000:2267]" + f 4 -3749 4131 4132 4133 + mu 0 4 2332 2331 2104 2587 + f 4 -3366 -4132 4134 -3357 + mu 0 4 2100 2104 2331 2097 + f 4 4135 -4129 -3762 -4120 + mu 0 4 2582 2386 2341 2329 + f 4 -3303 -3350 4136 4137 + mu 0 4 2057 2060 2096 2588 + f 4 -3312 -4138 4138 -3734 + mu 0 4 2064 2057 2588 2318 + f 4 -3733 -4108 4139 4140 + mu 0 4 2061 2317 2105 2066 + f 4 -3356 -3365 -4140 -3367 + mu 0 4 2100 2099 2066 2105 + f 4 -3299 4141 4142 4143 + mu 0 4 2589 2590 2591 2592 + f 4 4144 4145 4146 -4124 + mu 0 4 2593 2594 2595 2596 + f 4 4147 -4134 4148 4149 + mu 0 4 2597 2598 2599 2600 + f 4 4150 4151 -4123 4152 + mu 0 4 2601 2602 2603 2604 + f 4 -4152 4153 -4142 -3293 + mu 0 4 2603 2602 2591 2590 + f 4 4154 -3280 4155 -4146 + mu 0 4 2594 2023 2049 2595 + f 4 -4151 4156 -3258 4157 + mu 0 4 2602 2601 2039 2042 + f 4 -4157 4158 -3198 -3212 + mu 0 4 2005 2605 1995 1994 + f 4 -4153 -3754 4159 -4159 + mu 0 4 2605 2606 2607 1995 + f 4 -3199 -4160 -4125 4160 + mu 0 4 1996 1995 2607 2608 + f 4 -4145 -3750 -4148 4161 + mu 0 4 2594 2593 2598 2597 + f 4 -3200 4162 -4156 -3276 + mu 0 4 1993 1996 2595 2049 + f 4 -4161 -3742 -4147 -4163 + mu 0 4 1996 2608 2596 2595 + f 4 4163 -3239 4164 -4150 + mu 0 4 2600 2026 2024 2597 + f 4 -3236 -4155 -4162 -4165 + mu 0 4 2024 2023 2594 2597 + f 4 -3269 4165 -4143 4166 + mu 0 4 2044 2011 2592 2591 + f 4 -4158 -3263 -4167 -4154 + mu 0 4 2602 2042 2044 2591 + f 4 -4164 4167 4168 -3259 + mu 0 4 2026 2600 2609 2010 + f 4 -4149 4169 4170 -4168 + mu 0 4 2600 2599 2610 2609 + f 4 -4133 -3369 4171 -4170 + mu 0 4 2587 2104 2106 2611 + f 4 4172 4173 4174 4175 + mu 0 4 2612 2613 1991 2614 + f 4 4176 4177 -4176 4178 + mu 0 4 1269 2615 2612 2614 + f 4 4179 4180 4181 4182 + mu 0 4 2616 2617 2618 2619 + f 3 4183 4184 4185 + mu 0 3 2620 2621 2622 + f 4 4186 4187 -2030 4188 + mu 0 4 2623 2624 1280 1279 + f 4 4189 4190 4191 4192 + mu 0 4 2625 2626 2627 2628 + f 4 4193 4194 4195 -4180 + mu 0 4 2616 2629 2630 2617 + f 4 4196 4197 4198 -4185 + mu 0 4 2631 2632 2633 2634 + f 4 4199 -4190 4200 4201 + mu 0 4 2635 2626 2625 2636 + f 4 4202 4203 4204 4205 + mu 0 4 2637 2638 2639 2640 + f 4 -4183 4206 4207 4208 + mu 0 4 2616 2619 2624 2641 + f 4 -2055 -3145 4209 4210 + mu 0 4 2642 2643 2644 2645 + f 4 -2058 4211 -4182 4212 + mu 0 4 1303 1304 2619 2618 + f 4 4213 -2060 -4211 4214 + mu 0 4 2646 2647 2642 2645 + f 4 4215 4216 -4206 4217 + mu 0 4 2648 2649 2650 2651 + f 4 4218 4219 4220 -4192 + mu 0 4 2627 2641 2652 2628 + f 4 -4208 -4187 4221 -4220 + mu 0 4 2641 2624 2623 2652 + f 4 4222 4223 4224 4225 + mu 0 4 2653 2654 2655 2656 + f 3 4226 4227 4228 + mu 0 3 2657 2658 2659 + f 4 4229 4230 4231 4232 + mu 0 4 2660 2661 2662 2663 + f 4 4233 4234 4235 -3228 + mu 0 4 2016 2657 2660 2017 + f 4 -4229 4236 -4230 -4235 + mu 0 4 2657 2659 2661 2660 + f 4 4237 -4234 -3226 4238 + mu 0 4 2664 2657 2016 2015 + f 4 4239 4240 4241 4242 + mu 0 4 2665 2666 2664 2667 + f 4 4243 4244 4245 4246 + mu 0 4 2668 2669 2670 2671 + f 4 4247 -3207 4248 4249 + mu 0 4 2672 2001 2002 2673 + f 4 -4248 4250 4251 -3268 + mu 0 4 2046 2674 2669 2045 + f 4 -4252 -4244 4252 -3266 + mu 0 4 2045 2669 2668 2034 + f 4 -4236 -4233 4253 -3271 + mu 0 4 2017 2660 2663 2047 + f 4 -4243 4254 -4247 4255 + mu 0 4 2665 2667 2668 2671 + f 4 4256 4257 4258 -4232 + mu 0 4 2662 2675 2673 2663 + f 4 4259 -4250 -4258 4260 + mu 0 4 2676 2672 2673 2675 + f 4 -4225 4261 4262 4263 + mu 0 4 2677 2678 2679 2680 + f 4 -2111 -4188 -4207 -4212 + mu 0 4 1304 1280 2624 2619 + f 4 -4251 -4260 4264 -4245 + mu 0 4 2669 2674 2681 2670 + f 4 -4227 -4238 -4241 4265 + mu 0 4 2658 2657 2664 2666 + f 4 -2117 4266 4267 4268 + mu 0 4 2682 2683 2684 2685 + f 4 -4198 4269 -4216 4270 + mu 0 4 2686 2687 2688 2689 + f 4 4271 4272 4273 4274 + mu 0 4 1466 2690 2691 2692 + f 4 -2358 -4275 4275 -2124 + mu 0 4 102 1466 2692 1352 + f 4 -4273 -2371 4276 4277 + mu 0 4 2691 2690 2693 2694 + f 4 -2354 4278 4279 -4277 + mu 0 4 2693 2695 2696 2694 + f 4 4280 4281 4282 4283 + mu 0 4 2697 2698 2699 2700 + f 4 -4194 -4209 -4219 4284 + mu 0 4 2629 2616 2641 2627 + f 4 4285 4286 -4202 4287 + mu 0 4 2701 2702 2635 2636 + f 4 4288 -4263 4289 4290 + mu 0 4 2703 2680 2679 2704 + f 4 -4281 4291 -4279 -2366 + mu 0 4 2698 2697 2696 2695 + f 4 4292 -3249 -4253 -4255 + mu 0 4 2667 2032 2034 2668 + f 4 -4249 -3288 -4254 -4259 + mu 0 4 2673 2002 2047 2663 + f 4 -4101 -4068 -4071 -4075 + mu 0 4 2563 2558 2555 2561 + f 4 -3616 -3841 -3820 -4045 + mu 0 4 2540 2395 2356 2383 + f 4 -3812 -3846 4293 4294 + mu 0 4 2357 2377 2398 2364 + f 4 -3956 -3961 4295 4296 + mu 0 4 2353 2479 2482 2350 + f 4 -3793 -4294 -3844 -3814 + mu 0 4 2354 2364 2398 2379 + f 4 -3895 -3904 -3898 4297 + mu 0 4 2348 2434 2437 2361 + f 4 -3776 -4296 -3959 -3953 + mu 0 4 2349 2350 2482 2477 + f 4 -3765 4298 4299 -3825 + mu 0 4 2344 2343 2360 2387 + f 4 -4300 -3791 4300 -3830 + mu 0 4 2387 2360 2363 2115 + f 4 4301 -3379 -4301 -3896 + mu 0 4 2436 2112 2115 2363 + f 4 -3455 -4112 -3316 -4302 + mu 0 4 2161 2160 2065 2071 + f 4 -4126 -3831 -3381 4302 + mu 0 4 2585 2385 2114 2117 + f 4 -4118 -3766 -3824 -4136 + mu 0 4 2582 2345 2344 2386 + f 4 -4299 -3771 -4298 -3788 + mu 0 4 2360 2343 2348 2361 + f 3 -3785 -4297 -3775 + mu 0 3 2342 2353 2350 + f 3 -3783 -4295 -3792 + mu 0 3 2347 2357 2364 + f 4 4303 -3345 -3759 -4122 + mu 0 4 2054 2093 2092 2583 + f 4 4304 4305 -3167 -3147 + mu 0 4 1964 2705 1980 1965 + f 4 4306 4307 4308 4309 + mu 0 4 2706 2707 2708 1969 + f 4 -2681 4310 4311 -2662 + mu 0 4 1663 1637 2709 1664 + f 4 -2706 -2664 4312 -3100 + mu 0 4 1687 1662 1665 1927 + f 4 -2659 4313 -4311 -2625 + mu 0 4 1638 1661 2709 1637 + f 4 -2506 -2568 -2498 -2526 + mu 0 4 1577 1576 1571 1546 + f 4 4314 -2574 -2387 -2578 + mu 0 4 1612 1583 1498 1497 + f 4 -4293 -4242 -4239 -3246 + mu 0 4 2032 2667 2664 2015 + f 4 -3178 4315 4316 4317 + mu 0 4 1987 1986 1952 2710 + f 4 -3154 -3191 -4318 4318 + mu 0 4 1972 1971 1987 2710 + f 4 4319 -3181 -3188 -4174 + mu 0 4 2613 1986 1989 1991 + f 4 -2488 -2524 -4315 4320 + mu 0 4 1565 1564 1583 1612 + f 4 4321 -2592 4322 -2379 + mu 0 4 1490 1602 1611 1485 + f 3 4323 -2656 4324 + mu 0 3 1728 1660 1658 + f 3 4325 -2658 4326 + mu 0 3 1812 1661 1660 + f 4 -4314 4327 -3028 4328 + mu 0 4 2709 1661 1858 1898 + f 4 -4312 -4329 -3031 4329 + mu 0 4 1664 2709 1898 1892 + f 4 -2663 -4330 -3020 4330 + mu 0 4 1665 1664 1892 1891 + f 4 -4313 -4331 -3102 4331 + mu 0 4 1927 1665 1891 1895 + f 4 -3101 -4332 -3024 4332 + mu 0 4 1867 1927 1895 1865 + f 4 -2974 4333 -2975 -4333 + mu 0 4 1865 1866 1673 1867 + f 4 4334 -2676 -4334 -3096 + mu 0 4 1778 1671 1673 1866 + f 4 4335 -2673 -4335 -2837 + mu 0 4 1675 1656 1671 1778 + f 4 4336 -2651 -4336 -2677 + mu 0 4 1674 1653 1656 1675 + f 4 -2767 4337 -2665 -4337 + mu 0 4 1674 1731 1666 1653 + f 4 -2775 4338 -2668 -4338 + mu 0 4 1731 1736 1668 1666 + f 4 4339 -3097 -4339 -2786 + mu 0 4 1744 1657 1926 1745 + f 4 -2785 4340 -2652 -4340 + mu 0 4 1744 1719 1658 1657 + f 4 -3375 4341 -3695 4342 + mu 0 4 2111 2110 2293 2295 + f 4 -4343 -3738 4343 -3380 + mu 0 4 2116 2319 2322 2117 + f 4 4344 -4303 -4344 -4064 + mu 0 4 2557 2585 2117 2322 + f 4 -4127 -4345 -4062 4345 + mu 0 4 2393 2585 2557 2556 + f 4 4346 -3838 -4346 -4067 + mu 0 4 2559 2392 2393 2556 + f 4 -3839 -4347 -4102 4347 + mu 0 4 2394 2392 2559 2580 + f 4 -3372 -4348 -3688 4348 + mu 0 4 2109 2108 2290 2289 + f 4 -4349 -3693 -4342 -4130 + mu 0 4 2109 2289 2293 2110 + f 3 -3119 4349 -3136 + mu 0 3 1945 1944 1953 + f 4 -3124 4350 -4317 -3131 + mu 0 4 1948 1947 2710 1952 + f 3 -4325 -4341 -2761 + mu 0 3 1728 1658 1719 + f 3 -2824 4351 -4324 + mu 0 3 1728 1770 1660 + f 3 -4327 -4352 -2895 + mu 0 3 1812 1660 1770 + f 3 -2964 -4328 -4326 + mu 0 3 1812 1858 1661 + f 3 -2967 -3033 -3029 + mu 0 3 1858 1860 1899 + f 3 -2973 -2995 4352 + mu 0 3 1866 1862 1876 + f 3 -2991 -3094 -4353 + mu 0 3 1876 1817 1866 + f 3 -3095 -2910 4353 + mu 0 3 1778 1816 1822 + f 3 -2907 -2835 -4354 + mu 0 3 1822 1774 1778 + f 3 -2836 -2838 4354 + mu 0 3 1675 1777 1779 + f 3 -2678 -4355 -2844 + mu 0 3 1676 1675 1779 + f 3 -2680 -2788 -2768 + mu 0 3 1674 1677 1732 + f 3 -2570 -4321 -2577 + mu 0 3 1526 1565 1612 + f 4 4355 4356 -2571 -2483 + mu 0 4 1559 2711 2712 1561 + f 4 4357 -4356 -2480 4358 + mu 0 4 2713 2711 1559 1544 + f 4 4359 4360 -4359 -2462 + mu 0 4 1543 1563 2713 1544 + f 4 -2500 -2530 -2486 -4360 + mu 0 4 1543 1572 1541 1563 + f 4 -2572 4361 -2375 -4323 + mu 0 4 1611 1610 1486 1485 + f 4 4362 -2505 -4362 -4357 + mu 0 4 2711 1573 1575 2712 + f 4 -4358 4363 -2591 -4363 + mu 0 4 2711 2713 1579 1573 + f 4 -2510 -4364 -4361 -2487 + mu 0 4 1459 1579 2713 1563 + f 3 -2455 -2551 -4322 + mu 0 3 1490 1538 1602 + f 4 -2348 -2372 -4272 -2587 + mu 0 4 2714 2715 2716 2717 + f 4 -3289 -3290 -3238 -3287 + mu 0 4 2037 2048 2021 2025 + f 4 4364 -4166 -3221 -4169 + mu 0 4 2609 2592 2011 2010 + f 4 4365 -4144 -4365 -4171 + mu 0 4 2610 2589 2592 2609 + f 4 -3297 -4366 -4172 4366 + mu 0 4 2056 2055 2611 2106 + f 4 4367 -3298 4368 -4139 + mu 0 4 2588 2053 2056 2318 + f 4 -3743 -3832 -4135 -3748 + mu 0 4 2328 2327 2097 2331 + f 3 -3764 -3774 -3772 + mu 0 3 2343 2342 2349 + f 4 -3304 -4141 -3308 -4111 + mu 0 4 2062 2061 2066 2065 + f 4 -4369 -4367 -4107 -3735 + mu 0 4 2318 2056 2106 2317 + f 4 -3295 -4368 -4137 4369 + mu 0 4 2054 2053 2588 2096 + f 3 -4370 -3349 -4304 + mu 0 3 2054 2096 2093 + f 4 -4113 -3453 4370 -4114 + mu 0 4 2164 2155 2158 2102 + f 3 -4371 -3541 4371 + mu 0 3 2102 2158 2206 + f 3 -3360 -4372 -3537 + mu 0 3 2075 2102 2206 + f 3 -3323 4372 -3358 + mu 0 3 2074 2077 2101 + f 3 4373 -4373 -3361 + mu 0 3 2081 2101 2077 + f 4 -3315 -4105 -4374 -4117 + mu 0 4 2068 2070 2101 2081 + f 3 -3286 -3250 -3255 + mu 0 3 2038 2035 2033 + f 4 -2816 4374 -2819 -2794 + mu 0 4 2718 2719 1767 1751 + f 4 -2818 -2799 -2821 -4375 + mu 0 4 2719 1752 1755 1767 + f 4 4375 4376 4377 -3120 + mu 0 4 1945 1985 2720 1946 + f 4 4378 4379 -4291 -4204 + mu 0 4 2721 2722 2723 2724 + f 4 -4267 -2231 -4214 4380 + mu 0 4 2684 2683 2647 2646 + f 4 -4175 -3187 -2233 4381 + mu 0 4 2614 1991 642 1385 + f 4 -2374 -2588 -2356 -2234 + mu 0 4 123 2725 1465 105 + f 4 -2589 -2373 -2376 -2504 + mu 0 4 2726 2727 2728 1575 + f 4 -4283 -2364 -2236 4382 + mu 0 4 2700 2699 2729 2730 + f 4 -4268 4383 -4286 4384 + mu 0 4 2685 2684 2702 2701 + f 4 4385 -4384 -4381 4386 + mu 0 4 2731 2732 2733 2734 + f 4 -4215 4387 4388 -4387 + mu 0 4 2735 2736 2737 2738 + f 4 4389 4390 -4388 -4210 + mu 0 4 2739 2740 2737 2736 + f 4 4391 4392 -4390 -3144 + mu 0 4 2741 2742 2743 2744 + f 3 4393 4394 4395 + mu 0 3 2745 2630 2746 + f 4 -2365 -4282 -2368 -2461 + mu 0 4 1471 1473 2747 2748 + f 4 4396 -3112 4397 -3113 + mu 0 4 1931 1935 1937 1938 + f 4 4398 -3109 -4397 -3104 + mu 0 4 1930 1932 1935 1931 + f 4 4399 -3138 -4399 -3140 + mu 0 4 1957 1955 1932 1930 + f 4 4400 -3174 -4400 -3194 + mu 0 4 1983 1982 1955 1957 + f 4 -3170 -4401 -3171 4401 + mu 0 4 1978 1982 1983 1975 + f 4 -3164 -4402 -3161 4402 + mu 0 4 1979 1978 1975 1966 + f 4 -4403 -3151 4403 -3189 + mu 0 4 1979 1966 1968 1992 + f 4 4404 -4308 4405 -4305 + mu 0 4 1964 2708 2707 2705 + f 3 -3152 -4309 4406 + mu 0 3 1970 1969 2708 + f 4 -2262 -3195 4407 -3184 + mu 0 4 640 646 1973 1990 + f 4 4408 4409 -4310 -3155 + mu 0 4 1972 2720 2706 1969 + f 4 -3116 -3121 4410 -3123 + mu 0 4 1942 1941 1946 1947 + f 4 4411 -3128 -3107 -3133 + mu 0 4 1953 1940 1934 1933 + f 4 -3122 -3115 -4412 -4350 + mu 0 4 1944 1941 1940 1953 + f 4 -4307 4412 -3190 4413 + mu 0 4 2707 2706 1984 1992 + f 4 -4404 4414 -4406 -4414 + mu 0 4 1992 1968 2705 2707 + f 4 -3150 4415 -4306 -4415 + mu 0 4 1968 1967 1980 2705 + f 4 -3166 -4416 -3193 -2271 + mu 0 4 626 1980 1967 644 + f 4 -4413 -4410 -4377 -3176 + mu 0 4 1984 2706 2720 1985 + f 3 4416 -3135 -3173 + mu 0 3 1981 1945 1954 + f 3 -4320 4417 -4316 + mu 0 3 1986 2613 1952 + f 4 4418 4419 4420 -4181 + mu 0 4 2617 2749 2615 2618 + f 4 -2277 -4213 -4421 -4177 + mu 0 4 1269 1303 2618 2615 + f 4 -4196 -4394 4421 -4419 + mu 0 4 2617 2630 2745 2749 + f 4 4422 -4189 -2279 -4276 + mu 0 4 2692 2623 1279 1352 + f 4 -4222 -4423 -4274 4423 + mu 0 4 2652 2623 2692 2691 + f 4 -4221 -4424 -4278 4424 + mu 0 4 2628 2652 2691 2694 + f 4 4425 -4193 -4425 -4280 + mu 0 4 2696 2625 2628 2694 + f 4 -4201 -4426 -4292 4426 + mu 0 4 2636 2625 2696 2697 + f 4 4427 -4288 -4427 -4284 + mu 0 4 2700 2701 2636 2697 + f 4 4428 -4385 -4428 -4383 + mu 0 4 2730 2685 2701 2700 + f 3 -2287 -4269 -4429 + mu 0 3 2730 2682 2685 + f 4 4429 -3111 4430 4431 + mu 0 4 2750 1937 1936 2751 + f 4 -4431 -3129 -3130 4432 + mu 0 4 2751 1936 1943 1951 + f 4 4433 4434 4435 4436 + mu 0 4 2752 2753 2754 2755 + f 4 4437 4438 -3141 4439 + mu 0 4 2756 2757 1959 1958 + f 4 4440 -4433 4441 -4435 + mu 0 4 2753 2751 1951 2754 + f 4 4442 -4432 -4441 4443 + mu 0 4 2756 2750 2751 2753 + f 4 -4418 4444 -4442 -3132 + mu 0 4 1952 2613 2754 1951 + f 4 4445 4446 4447 4448 + mu 0 4 2758 2759 2760 2761 + f 4 -4436 -4445 -4173 4449 + mu 0 4 2755 2754 2613 2612 + f 4 -4437 4450 -4422 4451 + mu 0 4 2752 2755 2749 2745 + f 4 -4450 -4178 -4420 -4451 + mu 0 4 2755 2612 2615 2749 + f 4 -4447 4452 -4223 4453 + mu 0 4 2762 2763 2654 2653 + f 4 4454 -4186 4455 -4449 + mu 0 4 2764 2765 2766 2767 + f 4 4456 4457 -4392 -4439 + mu 0 4 2768 2769 2742 2741 + f 4 4458 4459 -4457 4460 + mu 0 4 2770 2771 2772 2773 + f 4 -4396 4461 -4459 -4452 + mu 0 4 2774 2775 2776 2777 + f 4 -3186 4462 -4443 -4440 + mu 0 4 1958 1949 2750 2756 + f 4 -3126 -4398 -4430 -4463 + mu 0 4 1949 1938 1937 2750 + f 4 -4434 -4461 -4438 -4444 + mu 0 4 2753 2752 2757 2756 + f 3 -4179 -4382 -2322 + mu 0 3 1269 2614 1385 + f 3 -4319 -4351 4463 + mu 0 3 1972 2710 1947 + f 4 -4407 4464 -4408 -3156 + mu 0 4 1970 2708 1990 1973 + f 4 -3168 -3177 -4376 -4417 + mu 0 4 1981 1977 1985 1945 + f 4 -4464 -4411 -4378 -4409 + mu 0 4 1972 1947 1946 2720 + f 3 -4465 -4405 -3185 + mu 0 3 1990 2708 1964 + f 4 -4462 4465 -4455 4466 + mu 0 4 2776 2775 2765 2764 + f 4 -4395 4467 -4184 -4466 + mu 0 4 2746 2630 2621 2620 + f 4 -4195 4468 -4197 -4468 + mu 0 4 2778 2779 2632 2631 + f 4 -4270 -4469 -4285 4469 + mu 0 4 2688 2687 2780 2781 + f 4 -4217 -4470 -4191 4470 + mu 0 4 2650 2649 2782 2783 + f 4 -4200 4471 -4203 -4471 + mu 0 4 2784 2785 2638 2637 + f 4 4472 -4386 4473 -4380 + mu 0 4 2722 2732 2731 2723 + f 4 -4389 4474 -4289 -4474 + mu 0 4 2738 2737 2680 2703 + f 4 4475 -4264 -4475 -4391 + mu 0 4 2740 2677 2680 2737 + f 4 4476 -4226 -4476 -4393 + mu 0 4 2742 2653 2656 2743 + f 4 4477 -4454 -4477 -4458 + mu 0 4 2769 2762 2653 2742 + f 4 -4448 -4478 -4460 -4467 + mu 0 4 2761 2760 2772 2771 + f 4 4478 -4266 4479 -4456 + mu 0 4 2786 2658 2666 2787 + f 4 -4228 -4479 -4199 4480 + mu 0 4 2659 2658 2786 2788 + f 4 -4237 -4481 -4271 4481 + mu 0 4 2661 2659 2788 2789 + f 4 -4231 -4482 -4218 4482 + mu 0 4 2662 2661 2789 2640 + f 4 -4205 4483 -4257 -4483 + mu 0 4 2640 2639 2675 2662 + f 4 4484 -4261 -4484 -4290 + mu 0 4 2790 2676 2675 2639 + f 4 -4265 -4485 -4262 4485 + mu 0 4 2670 2681 2791 2792 + f 4 -4246 -4486 -4224 4486 + mu 0 4 2671 2670 2792 2793 + f 4 4487 -4256 -4487 -4453 + mu 0 4 2794 2665 2671 2793 + f 4 -4480 -4240 -4488 -4446 + mu 0 4 2787 2666 2665 2794 + f 4 -4287 -4473 -4379 -4472 + mu 0 4 2795 2732 2722 2721; + setAttr ".cd" -type "dataPolyComponent" Index_Data Edge 0 ; + setAttr ".cvd" -type "dataPolyComponent" Index_Data Vertex 0 ; + setAttr ".hfd" -type "dataPolyComponent" Index_Data Face 0 ; +createNode transform -n "allCamera:FIR001"; + addAttr -ci true -sn "resWidth" -ln "resWidth" -at "long"; + addAttr -ci true -sn "resHeight" -ln "resHeight" -at "long"; + setAttr ".resWidth" 1024; + setAttr ".resHeight" 1024; +createNode transform -n "allCamera:frame_1_128" -p "allCamera:FIR001"; +createNode transform -n "allCamera:cam" -p "allCamera:FIR001"; + setAttr ".t" -type "double3" 0 17.5 35 ; + setAttr -av ".tx"; + setAttr -av ".ty"; + setAttr -av ".tz"; + setAttr ".r" -type "double3" 0 0 0 ; + setAttr -av ".rx"; + setAttr -av ".ry"; + setAttr -av ".rz"; +createNode camera -n "allCamera:camShape" -p "allCamera:cam"; + setAttr -k off ".v"; + setAttr ".cap" -type "double2" 1.4173 0.9449 ; + setAttr ".ff" 0; + setAttr ".ovr" 1.3; + setAttr -av ".fl" 50; + setAttr ".coi" 9.1119298380547384; + setAttr ".imn" -type "string" "cam1"; + setAttr ".den" -type "string" "cam1_depth"; + setAttr ".man" -type "string" "cam1_mask"; + setAttr ".tp" -type "double3" -5.9604644761512837e-009 17.147936230092046 -1.1920928955772014e-008 ; + setAttr ".dr" yes; +createNode mentalrayItemsList -s -n "mentalrayItemsList"; +createNode mentalrayGlobals -s -n "mentalrayGlobals"; + addAttr -s false -ci true -h true -sn "sunAndSkyShader" -ln "sunAndSkyShader" -at "message"; + setAttr ".rvb" 3; + setAttr ".ivb" no; +createNode mentalrayOptions -s -n "miDefaultOptions"; + addAttr -ci true -m -sn "stringOptions" -ln "stringOptions" -at "compound" -nc + 3; + addAttr -ci true -sn "name" -ln "name" -dt "string" -p "stringOptions"; + addAttr -ci true -sn "value" -ln "value" -dt "string" -p "stringOptions"; + addAttr -ci true -sn "type" -ln "type" -dt "string" -p "stringOptions"; + setAttr ".splck" yes; + setAttr ".fil" 0; + setAttr ".rflr" 1; + setAttr ".rfrr" 1; + setAttr ".maxr" 2; + setAttr ".shrd" 2; + setAttr -s 48 ".stringOptions"; + setAttr ".stringOptions[0].name" -type "string" "rast motion factor"; + setAttr ".stringOptions[0].value" -type "string" "1.0"; + setAttr ".stringOptions[0].type" -type "string" "scalar"; + setAttr ".stringOptions[1].name" -type "string" "rast transparency depth"; + setAttr ".stringOptions[1].value" -type "string" "8"; + setAttr ".stringOptions[1].type" -type "string" "integer"; + setAttr ".stringOptions[2].name" -type "string" "rast useopacity"; + setAttr ".stringOptions[2].value" -type "string" "true"; + setAttr ".stringOptions[2].type" -type "string" "boolean"; + setAttr ".stringOptions[3].name" -type "string" "importon"; + setAttr ".stringOptions[3].value" -type "string" "false"; + setAttr ".stringOptions[3].type" -type "string" "boolean"; + setAttr ".stringOptions[4].name" -type "string" "importon density"; + setAttr ".stringOptions[4].value" -type "string" "1.0"; + setAttr ".stringOptions[4].type" -type "string" "scalar"; + setAttr ".stringOptions[5].name" -type "string" "importon merge"; + setAttr ".stringOptions[5].value" -type "string" "0.0"; + setAttr ".stringOptions[5].type" -type "string" "scalar"; + setAttr ".stringOptions[6].name" -type "string" "importon trace depth"; + setAttr ".stringOptions[6].value" -type "string" "0"; + setAttr ".stringOptions[6].type" -type "string" "integer"; + setAttr ".stringOptions[7].name" -type "string" "importon traverse"; + setAttr ".stringOptions[7].value" -type "string" "true"; + setAttr ".stringOptions[7].type" -type "string" "boolean"; + setAttr ".stringOptions[8].name" -type "string" "shadowmap pixel samples"; + setAttr ".stringOptions[8].value" -type "string" "3"; + setAttr ".stringOptions[8].type" -type "string" "integer"; + setAttr ".stringOptions[9].name" -type "string" "ambient occlusion"; + setAttr ".stringOptions[9].value" -type "string" "false"; + setAttr ".stringOptions[9].type" -type "string" "boolean"; + setAttr ".stringOptions[10].name" -type "string" "ambient occlusion rays"; + setAttr ".stringOptions[10].value" -type "string" "256"; + setAttr ".stringOptions[10].type" -type "string" "integer"; + setAttr ".stringOptions[11].name" -type "string" "ambient occlusion cache"; + setAttr ".stringOptions[11].value" -type "string" "false"; + setAttr ".stringOptions[11].type" -type "string" "boolean"; + setAttr ".stringOptions[12].name" -type "string" "ambient occlusion cache density"; + setAttr ".stringOptions[12].value" -type "string" "1.0"; + setAttr ".stringOptions[12].type" -type "string" "scalar"; + setAttr ".stringOptions[13].name" -type "string" "ambient occlusion cache points"; + setAttr ".stringOptions[13].value" -type "string" "64"; + setAttr ".stringOptions[13].type" -type "string" "integer"; + setAttr ".stringOptions[14].name" -type "string" "irradiance particles"; + setAttr ".stringOptions[14].value" -type "string" "false"; + setAttr ".stringOptions[14].type" -type "string" "boolean"; + setAttr ".stringOptions[15].name" -type "string" "irradiance particles rays"; + setAttr ".stringOptions[15].value" -type "string" "256"; + setAttr ".stringOptions[15].type" -type "string" "integer"; + setAttr ".stringOptions[16].name" -type "string" "irradiance particles interpolate"; + setAttr ".stringOptions[16].value" -type "string" "1"; + setAttr ".stringOptions[16].type" -type "string" "integer"; + setAttr ".stringOptions[17].name" -type "string" "irradiance particles interppoints"; + setAttr ".stringOptions[17].value" -type "string" "64"; + setAttr ".stringOptions[17].type" -type "string" "integer"; + setAttr ".stringOptions[18].name" -type "string" "irradiance particles indirect passes"; + setAttr ".stringOptions[18].value" -type "string" "0"; + setAttr ".stringOptions[18].type" -type "string" "integer"; + setAttr ".stringOptions[19].name" -type "string" "irradiance particles scale"; + setAttr ".stringOptions[19].value" -type "string" "1.0"; + setAttr ".stringOptions[19].type" -type "string" "scalar"; + setAttr ".stringOptions[20].name" -type "string" "irradiance particles env"; + setAttr ".stringOptions[20].value" -type "string" "true"; + setAttr ".stringOptions[20].type" -type "string" "boolean"; + setAttr ".stringOptions[21].name" -type "string" "irradiance particles env rays"; + setAttr ".stringOptions[21].value" -type "string" "256"; + setAttr ".stringOptions[21].type" -type "string" "integer"; + setAttr ".stringOptions[22].name" -type "string" "irradiance particles env scale"; + setAttr ".stringOptions[22].value" -type "string" "1"; + setAttr ".stringOptions[22].type" -type "string" "integer"; + setAttr ".stringOptions[23].name" -type "string" "irradiance particles rebuild"; + setAttr ".stringOptions[23].value" -type "string" "true"; + setAttr ".stringOptions[23].type" -type "string" "boolean"; + setAttr ".stringOptions[24].name" -type "string" "irradiance particles file"; + setAttr ".stringOptions[24].value" -type "string" ""; + setAttr ".stringOptions[24].type" -type "string" "string"; + setAttr ".stringOptions[25].name" -type "string" "geom displace motion factor"; + setAttr ".stringOptions[25].value" -type "string" "1.0"; + setAttr ".stringOptions[25].type" -type "string" "scalar"; + setAttr ".stringOptions[26].name" -type "string" "contrast all buffers"; + setAttr ".stringOptions[26].value" -type "string" "true"; + setAttr ".stringOptions[26].type" -type "string" "boolean"; + setAttr ".stringOptions[27].name" -type "string" "finalgather normal tolerance"; + setAttr ".stringOptions[27].value" -type "string" "25.842"; + setAttr ".stringOptions[27].type" -type "string" "scalar"; + setAttr ".stringOptions[28].name" -type "string" "trace camera clip"; + setAttr ".stringOptions[28].value" -type "string" "false"; + setAttr ".stringOptions[28].type" -type "string" "boolean"; + setAttr ".stringOptions[29].name" -type "string" "unified sampling"; + setAttr ".stringOptions[29].value" -type "string" "true"; + setAttr ".stringOptions[29].type" -type "string" "boolean"; + setAttr ".stringOptions[30].name" -type "string" "samples quality"; + setAttr ".stringOptions[30].value" -type "string" "0.25 0.25 0.25 0.25"; + setAttr ".stringOptions[30].type" -type "string" "color"; + setAttr ".stringOptions[31].name" -type "string" "samples min"; + setAttr ".stringOptions[31].value" -type "string" "1.0"; + setAttr ".stringOptions[31].type" -type "string" "scalar"; + setAttr ".stringOptions[32].name" -type "string" "samples max"; + setAttr ".stringOptions[32].value" -type "string" "100.0"; + setAttr ".stringOptions[32].type" -type "string" "scalar"; + setAttr ".stringOptions[33].name" -type "string" "samples error cutoff"; + setAttr ".stringOptions[33].value" -type "string" "0.0 0.0 0.0 0.0"; + setAttr ".stringOptions[33].type" -type "string" "color"; + setAttr ".stringOptions[34].name" -type "string" "samples per object"; + setAttr ".stringOptions[34].value" -type "string" "false"; + setAttr ".stringOptions[34].type" -type "string" "boolean"; + setAttr ".stringOptions[35].name" -type "string" "progressive"; + setAttr ".stringOptions[35].value" -type "string" "false"; + setAttr ".stringOptions[35].type" -type "string" "boolean"; + setAttr ".stringOptions[36].name" -type "string" "progressive max time"; + setAttr ".stringOptions[36].value" -type "string" "0"; + setAttr ".stringOptions[36].type" -type "string" "integer"; + setAttr ".stringOptions[37].name" -type "string" "progressive subsampling size"; + setAttr ".stringOptions[37].value" -type "string" "4"; + setAttr ".stringOptions[37].type" -type "string" "integer"; + setAttr ".stringOptions[38].name" -type "string" "iray"; + setAttr ".stringOptions[38].value" -type "string" "false"; + setAttr ".stringOptions[38].type" -type "string" "boolean"; + setAttr ".stringOptions[39].name" -type "string" "light relative scale"; + setAttr ".stringOptions[39].value" -type "string" "0.31831"; + setAttr ".stringOptions[39].type" -type "string" "scalar"; + setAttr ".stringOptions[40].name" -type "string" "trace camera motion vectors"; + setAttr ".stringOptions[40].value" -type "string" "false"; + setAttr ".stringOptions[40].type" -type "string" "boolean"; + setAttr ".stringOptions[41].name" -type "string" "ray differentials"; + setAttr ".stringOptions[41].value" -type "string" "true"; + setAttr ".stringOptions[41].type" -type "string" "boolean"; + setAttr ".stringOptions[42].name" -type "string" "environment lighting mode"; + setAttr ".stringOptions[42].value" -type "string" "off"; + setAttr ".stringOptions[42].type" -type "string" "string"; + setAttr ".stringOptions[43].name" -type "string" "environment lighting quality"; + setAttr ".stringOptions[43].value" -type "string" "0.2"; + setAttr ".stringOptions[43].type" -type "string" "scalar"; + setAttr ".stringOptions[44].name" -type "string" "environment lighting shadow"; + setAttr ".stringOptions[44].value" -type "string" "transparent"; + setAttr ".stringOptions[44].type" -type "string" "string"; + setAttr ".stringOptions[45].name" -type "string" "environment lighting resolution"; + setAttr ".stringOptions[45].value" -type "string" "512"; + setAttr ".stringOptions[45].type" -type "string" "integer"; + setAttr ".stringOptions[46].name" -type "string" "environment lighting shader samples"; + setAttr ".stringOptions[46].value" -type "string" "2"; + setAttr ".stringOptions[46].type" -type "string" "integer"; + setAttr ".stringOptions[47].name" -type "string" "environment lighting scale"; + setAttr ".stringOptions[47].value" -type "string" "1.0 1.0 1.0"; + setAttr ".stringOptions[47].type" -type "string" "color"; +createNode mentalrayFramebuffer -s -n "miDefaultFramebuffer"; + setAttr ".dat" 2; +createNode lightLinker -s -n "lightLinker1"; + setAttr -s 6 ".lnk"; + setAttr -s 6 ".slnk"; +createNode displayLayerManager -n "layerManager"; + setAttr ".cdl" 1; + setAttr -s 2 ".dli[1]" 1; + setAttr -s 2 ".dli"; +createNode displayLayer -n "defaultLayer"; +createNode renderLayerManager -n "renderLayerManager"; + setAttr -s 2 ".rlmi"; + setAttr ".rlmi[2]" 1; +createNode renderLayer -n "defaultRenderLayer"; + setAttr ".g" yes; + setAttr ".rndr" no; +createNode ramp -n "ramp1"; + setAttr -s 2 ".cel"; + setAttr ".cel[0].ep" 0; + setAttr ".cel[0].ec" -type "float3" 1 1 1 ; + setAttr ".cel[2].ep" 1; + setAttr ".cel[2].ec" -type "float3" 0.15700001 0.15700001 0.15700001 ; +createNode partition -n "ffxPrefsPartition"; + addAttr -ci true -sn "ffxLocPrefClearRAMas" -ln "ffxLocPrefClearRAMas" -dv 1 -min + 0 -max 1 -at "bool"; + addAttr -ci true -sn "ffxLocPrefSnapshotOpt" -ln "ffxLocPrefSnapshotOpt" -min 0 + -max 2 -at "long"; + addAttr -ci true -sn "ffxLocPrefNthFrame" -ln "ffxLocPrefNthFrame" -dv 1 -min 1 + -at "long"; + addAttr -ci true -sn "ffxLocPrefFrameList" -ln "ffxLocPrefFrameList" -dt "string"; + addAttr -ci true -sn "ffxLocPrefDelSnaOnScEx" -ln "ffxLocPrefDelSnaOnScEx" -min + 0 -max 1 -at "bool"; + addAttr -ci true -sn "ffxLocPrefAbToStpCon" -ln "ffxLocPrefAbToStpCon" -dv 1 -min + 0 -max 1 -at "bool"; +lockNode -l 1 ; +createNode ffxTurbulenceShader -n "ffxTurbulenceShader1"; + setAttr ".vpar" -type "stringArray" 0 ; + setAttr ".upar" -type "stringArray" 0 ; + setAttr ".glo" 1; +lockNode -l 1 ; +createNode shadingEngine -n "fumeFX1SG"; + setAttr ".ihi" 0; + setAttr ".ro" yes; +createNode materialInfo -n "materialInfo1"; +createNode fractal -n "fractal1"; + setAttr ".lmn" 0.15000000596046448; + setAttr ".in" yes; +createNode place2dTexture -n "place2dTexture1"; +createNode expression -n "expression1"; + setAttr -k on ".nds"; + setAttr ".ixp" -type "string" ""; +createNode ramp -n "ramp2"; + setAttr -s 3 ".cel"; + setAttr ".cel[0].ep" 0.023560209199786186; + setAttr ".cel[0].ec" -type "float3" 1 1 1 ; + setAttr ".cel[2].ep" 1; + setAttr ".cel[2].ec" -type "float3" 0 0 0 ; + setAttr ".cel[3].ep" 0; + setAttr ".cel[3].ec" -type "float3" 0.31099999 0.31099999 0.31099999 ; +createNode ramp -n "ramp3"; + setAttr -s 3 ".cel"; + setAttr ".cel[0].ep" 0; + setAttr ".cel[0].ec" -type "float3" 1 0 0 ; + setAttr ".cel[1].ep" 1; + setAttr ".cel[1].ec" -type "float3" 0 0 1 ; + setAttr ".cel[2].ep" 0.5; + setAttr ".cel[2].ec" -type "float3" 0 1 0 ; +createNode polySphere -n "polySphere2"; + setAttr ".r" 2.05462553503612; +createNode deleteComponent -n "deleteComponent1"; + setAttr ".dc" -type "componentList" 2 "f[0:199]" "f[360:379]"; +createNode geoConnector -n "geoConnector2"; +createNode deleteComponent -n "deleteComponent2"; + setAttr ".dc" -type "componentList" 1 "f[0:19]"; +createNode deleteComponent -n "deleteComponent3"; + setAttr ".dc" -type "componentList" 1 "f[0:19]"; +createNode deleteComponent -n "deleteComponent4"; + setAttr ".dc" -type "componentList" 1 "f[0:19]"; +createNode arrayMapper -n "arrayMapper4"; +createNode ramp -n "ramp4"; + setAttr -s 3 ".cel"; + setAttr ".cel[0].ep" 0; + setAttr ".cel[0].ec" -type "float3" 1 1 1 ; + setAttr ".cel[1].ep" 0.5; + setAttr ".cel[1].ec" -type "float3" 0.5 0.5 0.5 ; + setAttr ".cel[2].ep" 1; + setAttr ".cel[2].ec" -type "float3" 0 0 0 ; +createNode deleteComponent -n "deleteComponent5"; + setAttr ".dc" -type "componentList" 1 "f[0:19]"; +createNode deleteComponent -n "deleteComponent6"; + setAttr ".dc" -type "componentList" 1 "f[0:19]"; +createNode shadingEngine -n "fumeFX_A1SG1"; + setAttr ".ihi" 0; + setAttr ".ro" yes; +createNode materialInfo -n "materialInfo2"; +createNode expression -n "ffxMRVolShape11_linkExp"; + setAttr -k on ".nds"; + setAttr -s 2 ".in"; + setAttr -s 2 ".in"; + setAttr -s 2 ".out"; + setAttr ".ixp" -type "string" ".O[0] = .I[0];\n.O[1] = .I[1];"; +createNode displayLayer -n "layer1"; + setAttr ".do" 1; +createNode animCurveTU -n "fxBonFire_emitter_rate"; + setAttr ".tan" 2; + setAttr ".wgt" no; + setAttr -s 3 ".ktv[0:2]" 1 0 2 1000 4 0; +createNode VRaySettingsNode -s -n "vraySettings"; + setAttr ".pe" 2; + setAttr ".se" 3; + setAttr ".cmph" 60; + setAttr ".cfile" -type "string" ""; + setAttr ".cfile2" -type "string" ""; + setAttr ".casf" -type "string" ""; + setAttr ".casf2" -type "string" ""; + setAttr ".st" 2; + setAttr ".msr" 2; + setAttr ".sd" 1000; + setAttr ".ss" 0.01; + setAttr ".pfts" 20; + setAttr ".ufg" yes; + setAttr ".fnm" -type "string" ""; + setAttr ".lcfnm" -type "string" ""; + setAttr ".asf" -type "string" ""; + setAttr ".lcasf" -type "string" ""; + setAttr ".urtrshd" yes; + setAttr ".rtrshd" 2; + setAttr ".icits" 10; + setAttr ".ifile" -type "string" ""; + setAttr ".ifile2" -type "string" ""; + setAttr ".iasf" -type "string" ""; + setAttr ".iasf2" -type "string" ""; + setAttr ".pmfile" -type "string" ""; + setAttr ".pmfile2" -type "string" ""; + setAttr ".pmasf" -type "string" ""; + setAttr ".pmasf2" -type "string" ""; + setAttr ".dmcstd" yes; + setAttr ".cmao" 2; + setAttr ".cg" 2.2000000476837158; + setAttr ".mtah" yes; + setAttr ".srflc" 1; + setAttr ".seu" yes; + setAttr ".gormio" yes; + setAttr ".wi" 1024; + setAttr ".he" 1024; + setAttr ".aspr" 1; + setAttr ".exratr" -type "string" ""; + setAttr ".jpegq" 100; + setAttr ".animtp" 1; + setAttr ".animbo" yes; + setAttr ".imgfs" -type "string" "tif"; + setAttr ".bkc" -type "string" "map1"; + setAttr ".vfbOn" yes; + setAttr ".vfbSA" -type "Int32Array" 251 998 14 2416 32 1060 1132 + 0 0 28 53 -1073691583 0 78 53 0 -2048 -2048 1024 + 1024 453 0 -1073741824 0 -1073741824 0 1072693248 0 1072693248 886 1 + 3 1 0 0 0 0 1 0 5 0 1065353216 3 + 1 0 0 0 0 1 0 5 0 1065353216 3 1 + 1065353216 0 0 0 1 0 5 0 1065353216 1 3 2 + 1065353216 1065353216 1065353216 1065353216 1 0 5 0 0 0 0 1 + 0 5 0 1065353216 1 137531 65536 1 1313131313 65536 944879383 0 + -525502228 1065353216 1621981420 1034147594 1053609164 1065353216 2 0 0 -1097805629 -1097805629 1049678019 + 1049678019 0 2 1065353216 1065353216 -1097805629 -1097805629 1049678019 1049678019 0 2 1 + 2 -1 0 0 0 1869111636 24941 7733280 7471201 6357097 7077986 7536741 + 7798816 7077993 2097260 6619234 6881312 7602286 7471205 7274608 6357100 6619252 2097252 7209065 + 7274612 7602208 6619240 7536672 7471220 7209065 16777215 0 70 1 32 53 + 1632775510 1868963961 1632444530 622879097 2036429430 1936876918 544108393 1701978236 1919247470 1835627552 1915035749 1701080677 + 1835627634 12901 1378702848 1713404257 1293972079 543258977 808660531 540094510 1701978236 1919247470 1835627552 807411813 + 807411816 892477549 7549742 16777216 16777216 0 0 0 0 1 1 0 + 0 0 0 1 1 0 0 11 1936614732 1701209669 7566435 1 + 0 1 0 1101004800 1101004800 1082130432 0 0 0 1077936128 0 0 + 0 1 0 1 1112014848 1101004800 1 0 0 0 0 82176 + 0 16576 0 0 0 0 16448 0 65536 65536 0 0 + 0 65536 0 0 0 0 0 0 0 0 0 0 + 0 0 65536 536870912 536888779 ; + setAttr ".resf" yes; + setAttr ".mSceneName" -type "string" "x:/IG/proj/XEF/seq/FIR/001/fxFire/scenes/FIR001.fxFire.ma"; +createNode renderLayer -n "fx_fire_COL"; + setAttr ".do" 1; +createNode dynGlobals -n "dynGlobals1"; + setAttr ".cd" -type "string" ""; + setAttr -l on ".mnf" 1; + setAttr -l on ".mxf" 128; +createNode script -n "sceneConfigurationScriptNode"; + setAttr ".b" -type "string" "playbackOptions -min 1 -max 128 -ast 1 -aet 128 "; + setAttr ".st" 6; +createNode animCurveTU -n "fireShape_x_turbulence"; + setAttr ".tan" 10; + setAttr ".wgt" no; + setAttr -s 3 ".ktv[0:2]" 1 0.5 5 2.5 20 0.25; +createNode animCurveTU -n "fireShape_x_turbulence1"; + setAttr ".tan" 10; + setAttr ".wgt" no; + setAttr -s 2 ".ktv[0:1]" 5 2.5 15 0.25; +createNode shadingEngine -n "fumeFX2SG"; + setAttr ".ihi" 0; + setAttr ".ro" yes; +createNode materialInfo -n "materialInfo3"; +createNode shadingEngine -n "fumeFX3SG"; + setAttr ".ihi" 0; + setAttr ".ro" yes; +createNode materialInfo -n "materialInfo4"; +createNode expression -n "expression2"; + setAttr -k on ".nds"; + setAttr -s 3 ".out"; + setAttr ".ixp" -type "string" ".O[0] = rand(0, 0.1);\n.O[1] = rand(0, 0.1);\n.O[2] = rand(0, 0.1);"; +createNode animCurveTU -n "fxFire_obj_scaleX"; + setAttr ".tan" 2; + setAttr ".wgt" no; + setAttr -s 3 ".ktv[0:2]" 1 1 10 3.5 11 0.001; + setAttr -s 3 ".kit[0:2]" 3 2 2; + setAttr -s 3 ".kot[0:2]" 3 2 2; +createNode animCurveTU -n "fxFire_obj_scaleY"; + setAttr ".tan" 2; + setAttr ".wgt" no; + setAttr -s 3 ".ktv[0:2]" 1 1 10 3.5 11 0.001; + setAttr -s 3 ".kit[0:2]" 3 2 2; + setAttr -s 3 ".kot[0:2]" 3 2 2; +createNode animCurveTU -n "fxFire_obj_scaleZ"; + setAttr ".tan" 2; + setAttr ".wgt" no; + setAttr -s 3 ".ktv[0:2]" 1 1 10 3.5 11 0.001; + setAttr -s 3 ".kit[0:2]" 3 2 2; + setAttr -s 3 ".kot[0:2]" 3 2 2; +createNode animCurveTU -n "fxFire_obj_sourceProxy_extra_velocity"; + setAttr ".tan" 2; + setAttr ".wgt" no; + setAttr -s 2 ".ktv[0:1]" 3 0.5 4 0; +createNode animCurveTU -n "fireShape_x_turbulence2"; + setAttr ".tan" 10; + setAttr ".wgt" no; + setAttr -s 2 ".ktv[0:1]" 10 5 11 0.004999999888241291; +createNode animCurveTU -n "fxFire_obj_sourceProxy_smoke_amount"; + setAttr ".tan" 10; + setAttr ".wgt" no; + setAttr -s 2 ".ktv[0:1]" 10 150 11 0; +createNode animCurveTU -n "fxFire_obj_sourceProxy_extra_velocity1"; + setAttr ".tan" 10; + setAttr ".wgt" no; + setAttr -s 2 ".ktv[0:1]" 10 0.15 11 0; +createNode animCurveTU -n "fireShape_dissipation_strength"; + setAttr ".tan" 10; + setAttr ".wgt" no; + setAttr ".ktv[0]" 1 200; +createNode animCurveTU -n "fire_radialField_magnitude"; + setAttr ".tan" 10; + setAttr ".wgt" no; + setAttr -s 2 ".ktv[0:1]" 10 5 11 5; +createNode animCurveTU -n "fireShape_scale"; + setAttr ".tan" 10; + setAttr ".wgt" no; + setAttr -s 2 ".ktv[0:1]" 10 1.5 11 3; +createNode animCurveTL -n "allCamera:cam_translateX"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 0 2 0 3 0 4 0 5 0 6 0 7 0 8 0 9 0 10 0 + 11 0 12 0 13 0 14 0 15 0 16 0 17 0 18 0 19 0 20 0 21 0 22 0 23 0 24 0 25 0 26 0 27 0 + 28 0 29 0 30 0 31 0 32 0 33 0 34 0 35 0 36 0 37 0 38 0 39 0 40 0 41 0 42 0 43 0 44 0 + 45 0 46 0 47 0 48 0 49 0 50 0 51 0 52 0 53 0 54 0 55 0 56 0 57 0 58 0 59 0 60 0 61 0 + 62 0 63 0 64 0 65 0 66 0 67 0 68 0 69 0 70 0 71 0 72 0 73 0 74 0 75 0 76 0 77 0 78 0 + 79 0 80 0 81 0 82 0 83 0 84 0 85 0 86 0 87 0 88 0 89 0 90 0 91 0 92 0 93 0 94 0 95 0 + 96 0 97 0 98 0 99 0 100 0 101 0 102 0 103 0 104 0 105 0 106 0 107 0 108 0 109 0 110 0 + 111 0 112 0 113 0 114 0 115 0 116 0 117 0 118 0 119 0 120 0 121 0 122 0 123 0 124 0 + 125 0 126 0 127 0 128 0; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTL -n "allCamera:cam_translateY"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 17.5 2 17.5 3 17.5 4 17.5 5 17.5 6 17.5 + 7 17.5 8 17.5 9 17.5 10 17.5 11 17.5 12 17.5 13 17.5 14 17.5 15 17.5 16 17.5 17 17.5 + 18 17.5 19 17.5 20 17.5 21 17.5 22 17.5 23 17.5 24 17.5 25 17.5 26 17.5 27 17.5 28 17.5 + 29 17.5 30 17.5 31 17.5 32 17.5 33 17.5 34 17.5 35 17.5 36 17.5 37 17.5 38 17.5 39 17.5 + 40 17.5 41 17.5 42 17.5 43 17.5 44 17.5 45 17.5 46 17.5 47 17.5 48 17.5 49 17.5 50 17.5 + 51 17.5 52 17.5 53 17.5 54 17.5 55 17.5 56 17.5 57 17.5 58 17.5 59 17.5 60 17.5 61 17.5 + 62 17.5 63 17.5 64 17.5 65 17.5 66 17.5 67 17.5 68 17.5 69 17.5 70 17.5 71 17.5 72 17.5 + 73 17.5 74 17.5 75 17.5 76 17.5 77 17.5 78 17.5 79 17.5 80 17.5 81 17.5 82 17.5 83 17.5 + 84 17.5 85 17.5 86 17.5 87 17.5 88 17.5 89 17.5 90 17.5 91 17.5 92 17.5 93 17.5 94 17.5 + 95 17.5 96 17.5 97 17.5 98 17.5 99 17.5 100 17.5 101 17.5 102 17.5 103 17.5 104 17.5 + 105 17.5 106 17.5 107 17.5 108 17.5 109 17.5 110 17.5 111 17.5 112 17.5 113 17.5 + 114 17.5 115 17.5 116 17.5 117 17.5 118 17.5 119 17.5 120 17.5 121 17.5 122 17.5 + 123 17.5 124 17.5 125 17.5 126 17.5 127 17.5 128 17.5; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTL -n "allCamera:cam_translateZ"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 35 2 35 3 35 4 35 5 35 6 35 7 35 8 35 + 9 35 10 35 11 35 12 35 13 35 14 35 15 35 16 35 17 35 18 35 19 35 20 35 21 35 22 35 + 23 35 24 35 25 35 26 35 27 35 28 35 29 35 30 35 31 35 32 35 33 35 34 35 35 35 36 35 + 37 35 38 35 39 35 40 35 41 35 42 35 43 35 44 35 45 35 46 35 47 35 48 35 49 35 50 35 + 51 35 52 35 53 35 54 35 55 35 56 35 57 35 58 35 59 35 60 35 61 35 62 35 63 35 64 35 + 65 35 66 35 67 35 68 35 69 35 70 35 71 35 72 35 73 35 74 35 75 35 76 35 77 35 78 35 + 79 35 80 35 81 35 82 35 83 35 84 35 85 35 86 35 87 35 88 35 89 35 90 35 91 35 92 35 + 93 35 94 35 95 35 96 35 97 35 98 35 99 35 100 35 101 35 102 35 103 35 104 35 105 35 + 106 35 107 35 108 35 109 35 110 35 111 35 112 35 113 35 114 35 115 35 116 35 117 35 + 118 35 119 35 120 35 121 35 122 35 123 35 124 35 125 35 126 35 127 35 128 35; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTA -n "allCamera:cam_rotateX"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 0 2 0 3 0 4 0 5 0 6 0 7 0 8 0 9 0 10 0 + 11 0 12 0 13 0 14 0 15 0 16 0 17 0 18 0 19 0 20 0 21 0 22 0 23 0 24 0 25 0 26 0 27 0 + 28 0 29 0 30 0 31 0 32 0 33 0 34 0 35 0 36 0 37 0 38 0 39 0 40 0 41 0 42 0 43 0 44 0 + 45 0 46 0 47 0 48 0 49 0 50 0 51 0 52 0 53 0 54 0 55 0 56 0 57 0 58 0 59 0 60 0 61 0 + 62 0 63 0 64 0 65 0 66 0 67 0 68 0 69 0 70 0 71 0 72 0 73 0 74 0 75 0 76 0 77 0 78 0 + 79 0 80 0 81 0 82 0 83 0 84 0 85 0 86 0 87 0 88 0 89 0 90 0 91 0 92 0 93 0 94 0 95 0 + 96 0 97 0 98 0 99 0 100 0 101 0 102 0 103 0 104 0 105 0 106 0 107 0 108 0 109 0 110 0 + 111 0 112 0 113 0 114 0 115 0 116 0 117 0 118 0 119 0 120 0 121 0 122 0 123 0 124 0 + 125 0 126 0 127 0 128 0; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTA -n "allCamera:cam_rotateY"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 0 2 0 3 0 4 0 5 0 6 0 7 0 8 0 9 0 10 0 + 11 0 12 0 13 0 14 0 15 0 16 0 17 0 18 0 19 0 20 0 21 0 22 0 23 0 24 0 25 0 26 0 27 0 + 28 0 29 0 30 0 31 0 32 0 33 0 34 0 35 0 36 0 37 0 38 0 39 0 40 0 41 0 42 0 43 0 44 0 + 45 0 46 0 47 0 48 0 49 0 50 0 51 0 52 0 53 0 54 0 55 0 56 0 57 0 58 0 59 0 60 0 61 0 + 62 0 63 0 64 0 65 0 66 0 67 0 68 0 69 0 70 0 71 0 72 0 73 0 74 0 75 0 76 0 77 0 78 0 + 79 0 80 0 81 0 82 0 83 0 84 0 85 0 86 0 87 0 88 0 89 0 90 0 91 0 92 0 93 0 94 0 95 0 + 96 0 97 0 98 0 99 0 100 0 101 0 102 0 103 0 104 0 105 0 106 0 107 0 108 0 109 0 110 0 + 111 0 112 0 113 0 114 0 115 0 116 0 117 0 118 0 119 0 120 0 121 0 122 0 123 0 124 0 + 125 0 126 0 127 0 128 0; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTA -n "allCamera:cam_rotateZ"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 0 2 0 3 0 4 0 5 0 6 0 7 0 8 0 9 0 10 0 + 11 0 12 0 13 0 14 0 15 0 16 0 17 0 18 0 19 0 20 0 21 0 22 0 23 0 24 0 25 0 26 0 27 0 + 28 0 29 0 30 0 31 0 32 0 33 0 34 0 35 0 36 0 37 0 38 0 39 0 40 0 41 0 42 0 43 0 44 0 + 45 0 46 0 47 0 48 0 49 0 50 0 51 0 52 0 53 0 54 0 55 0 56 0 57 0 58 0 59 0 60 0 61 0 + 62 0 63 0 64 0 65 0 66 0 67 0 68 0 69 0 70 0 71 0 72 0 73 0 74 0 75 0 76 0 77 0 78 0 + 79 0 80 0 81 0 82 0 83 0 84 0 85 0 86 0 87 0 88 0 89 0 90 0 91 0 92 0 93 0 94 0 95 0 + 96 0 97 0 98 0 99 0 100 0 101 0 102 0 103 0 104 0 105 0 106 0 107 0 108 0 109 0 110 0 + 111 0 112 0 113 0 114 0 115 0 116 0 117 0 118 0 119 0 120 0 121 0 122 0 123 0 124 0 + 125 0 126 0 127 0 128 0; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTU -n "allCamera:cam_scaleX"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9 1 10 1 + 11 1 12 1 13 1 14 1 15 1 16 1 17 1 18 1 19 1 20 1 21 1 22 1 23 1 24 1 25 1 26 1 27 1 + 28 1 29 1 30 1 31 1 32 1 33 1 34 1 35 1 36 1 37 1 38 1 39 1 40 1 41 1 42 1 43 1 44 1 + 45 1 46 1 47 1 48 1 49 1 50 1 51 1 52 1 53 1 54 1 55 1 56 1 57 1 58 1 59 1 60 1 61 1 + 62 1 63 1 64 1 65 1 66 1 67 1 68 1 69 1 70 1 71 1 72 1 73 1 74 1 75 1 76 1 77 1 78 1 + 79 1 80 1 81 1 82 1 83 1 84 1 85 1 86 1 87 1 88 1 89 1 90 1 91 1 92 1 93 1 94 1 95 1 + 96 1 97 1 98 1 99 1 100 1 101 1 102 1 103 1 104 1 105 1 106 1 107 1 108 1 109 1 110 1 + 111 1 112 1 113 1 114 1 115 1 116 1 117 1 118 1 119 1 120 1 121 1 122 1 123 1 124 1 + 125 1 126 1 127 1 128 1; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTU -n "allCamera:cam_scaleY"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9 1 10 1 + 11 1 12 1 13 1 14 1 15 1 16 1 17 1 18 1 19 1 20 1 21 1 22 1 23 1 24 1 25 1 26 1 27 1 + 28 1 29 1 30 1 31 1 32 1 33 1 34 1 35 1 36 1 37 1 38 1 39 1 40 1 41 1 42 1 43 1 44 1 + 45 1 46 1 47 1 48 1 49 1 50 1 51 1 52 1 53 1 54 1 55 1 56 1 57 1 58 1 59 1 60 1 61 1 + 62 1 63 1 64 1 65 1 66 1 67 1 68 1 69 1 70 1 71 1 72 1 73 1 74 1 75 1 76 1 77 1 78 1 + 79 1 80 1 81 1 82 1 83 1 84 1 85 1 86 1 87 1 88 1 89 1 90 1 91 1 92 1 93 1 94 1 95 1 + 96 1 97 1 98 1 99 1 100 1 101 1 102 1 103 1 104 1 105 1 106 1 107 1 108 1 109 1 110 1 + 111 1 112 1 113 1 114 1 115 1 116 1 117 1 118 1 119 1 120 1 121 1 122 1 123 1 124 1 + 125 1 126 1 127 1 128 1; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTU -n "allCamera:cam_scaleZ"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9 1 10 1 + 11 1 12 1 13 1 14 1 15 1 16 1 17 1 18 1 19 1 20 1 21 1 22 1 23 1 24 1 25 1 26 1 27 1 + 28 1 29 1 30 1 31 1 32 1 33 1 34 1 35 1 36 1 37 1 38 1 39 1 40 1 41 1 42 1 43 1 44 1 + 45 1 46 1 47 1 48 1 49 1 50 1 51 1 52 1 53 1 54 1 55 1 56 1 57 1 58 1 59 1 60 1 61 1 + 62 1 63 1 64 1 65 1 66 1 67 1 68 1 69 1 70 1 71 1 72 1 73 1 74 1 75 1 76 1 77 1 78 1 + 79 1 80 1 81 1 82 1 83 1 84 1 85 1 86 1 87 1 88 1 89 1 90 1 91 1 92 1 93 1 94 1 95 1 + 96 1 97 1 98 1 99 1 100 1 101 1 102 1 103 1 104 1 105 1 106 1 107 1 108 1 109 1 110 1 + 111 1 112 1 113 1 114 1 115 1 116 1 117 1 118 1 119 1 120 1 121 1 122 1 123 1 124 1 + 125 1 126 1 127 1 128 1; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTU -n "allCamera:cam_visibility"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9 1 10 1 + 11 1 12 1 13 1 14 1 15 1 16 1 17 1 18 1 19 1 20 1 21 1 22 1 23 1 24 1 25 1 26 1 27 1 + 28 1 29 1 30 1 31 1 32 1 33 1 34 1 35 1 36 1 37 1 38 1 39 1 40 1 41 1 42 1 43 1 44 1 + 45 1 46 1 47 1 48 1 49 1 50 1 51 1 52 1 53 1 54 1 55 1 56 1 57 1 58 1 59 1 60 1 61 1 + 62 1 63 1 64 1 65 1 66 1 67 1 68 1 69 1 70 1 71 1 72 1 73 1 74 1 75 1 76 1 77 1 78 1 + 79 1 80 1 81 1 82 1 83 1 84 1 85 1 86 1 87 1 88 1 89 1 90 1 91 1 92 1 93 1 94 1 95 1 + 96 1 97 1 98 1 99 1 100 1 101 1 102 1 103 1 104 1 105 1 106 1 107 1 108 1 109 1 110 1 + 111 1 112 1 113 1 114 1 115 1 116 1 117 1 118 1 119 1 120 1 121 1 122 1 123 1 124 1 + 125 1 126 1 127 1 128 1; +createNode animCurveTU -n "allCamera:camShape_visibility1"; + setAttr ".tan" 18; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9 1 10 1 + 11 1 12 1 13 1 14 1 15 1 16 1 17 1 18 1 19 1 20 1 21 1 22 1 23 1 24 1 25 1 26 1 27 1 + 28 1 29 1 30 1 31 1 32 1 33 1 34 1 35 1 36 1 37 1 38 1 39 1 40 1 41 1 42 1 43 1 44 1 + 45 1 46 1 47 1 48 1 49 1 50 1 51 1 52 1 53 1 54 1 55 1 56 1 57 1 58 1 59 1 60 1 61 1 + 62 1 63 1 64 1 65 1 66 1 67 1 68 1 69 1 70 1 71 1 72 1 73 1 74 1 75 1 76 1 77 1 78 1 + 79 1 80 1 81 1 82 1 83 1 84 1 85 1 86 1 87 1 88 1 89 1 90 1 91 1 92 1 93 1 94 1 95 1 + 96 1 97 1 98 1 99 1 100 1 101 1 102 1 103 1 104 1 105 1 106 1 107 1 108 1 109 1 110 1 + 111 1 112 1 113 1 114 1 115 1 116 1 117 1 118 1 119 1 120 1 121 1 122 1 123 1 124 1 + 125 1 126 1 127 1 128 1; +createNode animCurveTU -n "allCamera:camShape_focalLength"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 50 2 50 3 50 4 50 5 50 6 50 7 50 8 50 + 9 50 10 50 11 50 12 50 13 50 14 50 15 50 16 50 17 50 18 50 19 50 20 50 21 50 22 50 + 23 50 24 50 25 50 26 50 27 50 28 50 29 50 30 50 31 50 32 50 33 50 34 50 35 50 36 50 + 37 50 38 50 39 50 40 50 41 50 42 50 43 50 44 50 45 50 46 50 47 50 48 50 49 50 50 50 + 51 50 52 50 53 50 54 50 55 50 56 50 57 50 58 50 59 50 60 50 61 50 62 50 63 50 64 50 + 65 50 66 50 67 50 68 50 69 50 70 50 71 50 72 50 73 50 74 50 75 50 76 50 77 50 78 50 + 79 50 80 50 81 50 82 50 83 50 84 50 85 50 86 50 87 50 88 50 89 50 90 50 91 50 92 50 + 93 50 94 50 95 50 96 50 97 50 98 50 99 50 100 50 101 50 102 50 103 50 104 50 105 50 + 106 50 107 50 108 50 109 50 110 50 111 50 112 50 113 50 114 50 115 50 116 50 117 50 + 118 50 119 50 120 50 121 50 122 50 123 50 124 50 125 50 126 50 127 50 128 50; +createNode animCurveTU -n "allCamera:camShape_lensSqueezeRatio"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9 1 10 1 + 11 1 12 1 13 1 14 1 15 1 16 1 17 1 18 1 19 1 20 1 21 1 22 1 23 1 24 1 25 1 26 1 27 1 + 28 1 29 1 30 1 31 1 32 1 33 1 34 1 35 1 36 1 37 1 38 1 39 1 40 1 41 1 42 1 43 1 44 1 + 45 1 46 1 47 1 48 1 49 1 50 1 51 1 52 1 53 1 54 1 55 1 56 1 57 1 58 1 59 1 60 1 61 1 + 62 1 63 1 64 1 65 1 66 1 67 1 68 1 69 1 70 1 71 1 72 1 73 1 74 1 75 1 76 1 77 1 78 1 + 79 1 80 1 81 1 82 1 83 1 84 1 85 1 86 1 87 1 88 1 89 1 90 1 91 1 92 1 93 1 94 1 95 1 + 96 1 97 1 98 1 99 1 100 1 101 1 102 1 103 1 104 1 105 1 106 1 107 1 108 1 109 1 110 1 + 111 1 112 1 113 1 114 1 115 1 116 1 117 1 118 1 119 1 120 1 121 1 122 1 123 1 124 1 + 125 1 126 1 127 1 128 1; +createNode animCurveTU -n "allCamera:camShape_fStop"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 5.6 2 5.6 3 5.6 4 5.6 5 5.6 6 5.6 7 5.6 + 8 5.6 9 5.6 10 5.6 11 5.6 12 5.6 13 5.6 14 5.6 15 5.6 16 5.6 17 5.6 18 5.6 19 5.6 + 20 5.6 21 5.6 22 5.6 23 5.6 24 5.6 25 5.6 26 5.6 27 5.6 28 5.6 29 5.6 30 5.6 31 5.6 + 32 5.6 33 5.6 34 5.6 35 5.6 36 5.6 37 5.6 38 5.6 39 5.6 40 5.6 41 5.6 42 5.6 43 5.6 + 44 5.6 45 5.6 46 5.6 47 5.6 48 5.6 49 5.6 50 5.6 51 5.6 52 5.6 53 5.6 54 5.6 55 5.6 + 56 5.6 57 5.6 58 5.6 59 5.6 60 5.6 61 5.6 62 5.6 63 5.6 64 5.6 65 5.6 66 5.6 67 5.6 + 68 5.6 69 5.6 70 5.6 71 5.6 72 5.6 73 5.6 74 5.6 75 5.6 76 5.6 77 5.6 78 5.6 79 5.6 + 80 5.6 81 5.6 82 5.6 83 5.6 84 5.6 85 5.6 86 5.6 87 5.6 88 5.6 89 5.6 90 5.6 91 5.6 + 92 5.6 93 5.6 94 5.6 95 5.6 96 5.6 97 5.6 98 5.6 99 5.6 100 5.6 101 5.6 102 5.6 103 5.6 + 104 5.6 105 5.6 106 5.6 107 5.6 108 5.6 109 5.6 110 5.6 111 5.6 112 5.6 113 5.6 114 5.6 + 115 5.6 116 5.6 117 5.6 118 5.6 119 5.6 120 5.6 121 5.6 122 5.6 123 5.6 124 5.6 125 5.6 + 126 5.6 127 5.6 128 5.6; +createNode animCurveTL -n "allCamera:camShape_focusDistance"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 5 2 5 3 5 4 5 5 5 6 5 7 5 8 5 9 5 10 5 + 11 5 12 5 13 5 14 5 15 5 16 5 17 5 18 5 19 5 20 5 21 5 22 5 23 5 24 5 25 5 26 5 27 5 + 28 5 29 5 30 5 31 5 32 5 33 5 34 5 35 5 36 5 37 5 38 5 39 5 40 5 41 5 42 5 43 5 44 5 + 45 5 46 5 47 5 48 5 49 5 50 5 51 5 52 5 53 5 54 5 55 5 56 5 57 5 58 5 59 5 60 5 61 5 + 62 5 63 5 64 5 65 5 66 5 67 5 68 5 69 5 70 5 71 5 72 5 73 5 74 5 75 5 76 5 77 5 78 5 + 79 5 80 5 81 5 82 5 83 5 84 5 85 5 86 5 87 5 88 5 89 5 90 5 91 5 92 5 93 5 94 5 95 5 + 96 5 97 5 98 5 99 5 100 5 101 5 102 5 103 5 104 5 105 5 106 5 107 5 108 5 109 5 110 5 + 111 5 112 5 113 5 114 5 115 5 116 5 117 5 118 5 119 5 120 5 121 5 122 5 123 5 124 5 + 125 5 126 5 127 5 128 5; +createNode animCurveTA -n "allCamera:camShape_shutterAngle"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 144 2 144 3 144 4 144 5 144 6 144 7 144 + 8 144 9 144 10 144 11 144 12 144 13 144 14 144 15 144 16 144 17 144 18 144 19 144 + 20 144 21 144 22 144 23 144 24 144 25 144 26 144 27 144 28 144 29 144 30 144 31 144 + 32 144 33 144 34 144 35 144 36 144 37 144 38 144 39 144 40 144 41 144 42 144 43 144 + 44 144 45 144 46 144 47 144 48 144 49 144 50 144 51 144 52 144 53 144 54 144 55 144 + 56 144 57 144 58 144 59 144 60 144 61 144 62 144 63 144 64 144 65 144 66 144 67 144 + 68 144 69 144 70 144 71 144 72 144 73 144 74 144 75 144 76 144 77 144 78 144 79 144 + 80 144 81 144 82 144 83 144 84 144 85 144 86 144 87 144 88 144 89 144 90 144 91 144 + 92 144 93 144 94 144 95 144 96 144 97 144 98 144 99 144 100 144 101 144 102 144 103 144 + 104 144 105 144 106 144 107 144 108 144 109 144 110 144 111 144 112 144 113 144 114 144 + 115 144 116 144 117 144 118 144 119 144 120 144 121 144 122 144 123 144 124 144 125 144 + 126 144 127 144 128 144; +createNode animCurveTL -n "allCamera:camShape_centerOfInterest"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 9.1119298380547384 2 9.1119298380547384 + 3 9.1119298380547384 4 9.1119298380547384 5 9.1119298380547384 6 9.1119298380547384 + 7 9.1119298380547384 8 9.1119298380547384 9 9.1119298380547384 10 9.1119298380547384 + 11 9.1119298380547384 12 9.1119298380547384 13 9.1119298380547384 14 9.1119298380547384 + 15 9.1119298380547384 16 9.1119298380547384 17 9.1119298380547384 18 9.1119298380547384 + 19 9.1119298380547384 20 9.1119298380547384 21 9.1119298380547384 22 9.1119298380547384 + 23 9.1119298380547384 24 9.1119298380547384 25 9.1119298380547384 26 9.1119298380547384 + 27 9.1119298380547384 28 9.1119298380547384 29 9.1119298380547384 30 9.1119298380547384 + 31 9.1119298380547384 32 9.1119298380547384 33 9.1119298380547384 34 9.1119298380547384 + 35 9.1119298380547384 36 9.1119298380547384 37 9.1119298380547384 38 9.1119298380547384 + 39 9.1119298380547384 40 9.1119298380547384 41 9.1119298380547384 42 9.1119298380547384 + 43 9.1119298380547384 44 9.1119298380547384 45 9.1119298380547384 46 9.1119298380547384 + 47 9.1119298380547384 48 9.1119298380547384 49 9.1119298380547384 50 9.1119298380547384 + 51 9.1119298380547384 52 9.1119298380547384 53 9.1119298380547384 54 9.1119298380547384 + 55 9.1119298380547384 56 9.1119298380547384 57 9.1119298380547384 58 9.1119298380547384 + 59 9.1119298380547384 60 9.1119298380547384 61 9.1119298380547384 62 9.1119298380547384 + 63 9.1119298380547384 64 9.1119298380547384 65 9.1119298380547384 66 9.1119298380547384 + 67 9.1119298380547384 68 9.1119298380547384 69 9.1119298380547384 70 9.1119298380547384 + 71 9.1119298380547384 72 9.1119298380547384 73 9.1119298380547384 74 9.1119298380547384 + 75 9.1119298380547384 76 9.1119298380547384 77 9.1119298380547384 78 9.1119298380547384 + 79 9.1119298380547384 80 9.1119298380547384 81 9.1119298380547384 82 9.1119298380547384 + 83 9.1119298380547384 84 9.1119298380547384 85 9.1119298380547384 86 9.1119298380547384 + 87 9.1119298380547384 88 9.1119298380547384 89 9.1119298380547384 90 9.1119298380547384 + 91 9.1119298380547384 92 9.1119298380547384 93 9.1119298380547384 94 9.1119298380547384 + 95 9.1119298380547384 96 9.1119298380547384 97 9.1119298380547384 98 9.1119298380547384 + 99 9.1119298380547384 100 9.1119298380547384 101 9.1119298380547384 102 9.1119298380547384 + 103 9.1119298380547384 104 9.1119298380547384 105 9.1119298380547384 106 9.1119298380547384 + 107 9.1119298380547384 108 9.1119298380547384 109 9.1119298380547384 110 9.1119298380547384 + 111 9.1119298380547384 112 9.1119298380547384 113 9.1119298380547384 114 9.1119298380547384 + 115 9.1119298380547384 116 9.1119298380547384 117 9.1119298380547384 118 9.1119298380547384 + 119 9.1119298380547384 120 9.1119298380547384 121 9.1119298380547384 122 9.1119298380547384 + 123 9.1119298380547384 124 9.1119298380547384 125 9.1119298380547384 126 9.1119298380547384 + 127 9.1119298380547384 128 9.1119298380547384; +select -ne :time1; + setAttr ".o" 1; + setAttr ".unw" 1; +select -ne :renderPartition; + setAttr -s 6 ".st"; +select -ne :renderGlobalsList1; +select -ne :defaultShaderList1; + setAttr -s 3 ".s"; +select -ne :postProcessList1; + setAttr -s 2 ".p"; +select -ne :defaultRenderUtilityList1; +select -ne :defaultRenderingList1; + setAttr -s 2 ".r"; +select -ne :defaultTextureList1; + setAttr -s 5 ".tx"; +select -ne :initialShadingGroup; + setAttr -s 2 ".dsm"; + setAttr ".ro" yes; +select -ne :initialParticleSE; + setAttr ".ro" yes; +select -ne :defaultRenderGlobals; + setAttr ".mcfr" 30; + setAttr ".edl" no; + setAttr ".ren" -type "string" "vray"; + setAttr ".outf" 51; + setAttr ".imfkey" -type "string" "exr"; + setAttr ".an" yes; + setAttr ".fs" 1; + setAttr ".ef" 128; + setAttr ".pff" yes; + setAttr ".cpe" yes; +select -ne :defaultResolution; + setAttr ".w" 1024; + setAttr ".h" 1024; + setAttr ".pa" 1; + setAttr ".dar" 1; +select -ne :hardwareRenderGlobals; + setAttr ".ctrs" 256; + setAttr ".btrs" 512; + setAttr ".hwfr" 30; +select -ne :defaultHardwareRenderGlobals; + setAttr ".res" -type "string" "ntsc_4d 646 485 1.333"; +connectAttr "fxFire_obj_scaleX.o" "fxFire_obj.sx"; +connectAttr "fxFire_obj_scaleY.o" "fxFire_obj.sy"; +connectAttr "fxFire_obj_scaleZ.o" "fxFire_obj.sz"; +connectAttr "deleteComponent6.og" "fxFire_objShape.i"; +connectAttr ":time1.o" "fxFire_emitter.ct"; +connectAttr "geoConnector2.ocd" "fxFire_emitter.ocd"; +connectAttr "geoConnector2.ocl" "fxFire_emitter.t"; +connectAttr "geoConnector2.pos" "fxFire_emitter.opd"; +connectAttr "geoConnector2.vel" "fxFire_emitter.ovd"; +connectAttr "geoConnector2.swg" "fxFire_emitter.swge"; +connectAttr "fxFire_particleShape.ifl" "fxFire_emitter.full[0]"; +connectAttr "fxFire_particleShape.tss" "fxFire_emitter.dt[0]"; +connectAttr "fxFire_particleShape.inh" "fxFire_emitter.inh[0]"; +connectAttr "fxFire_particleShape.stt" "fxFire_emitter.stt[0]"; +connectAttr "fxFire_particleShape.sd[0]" "fxFire_emitter.sd[0]"; +connectAttr "fxBonFire_emitter_rate.o" "fxFire_emitter.rat"; +connectAttr "expression2.out[0]" "fxFire_particle.tx"; +connectAttr "expression2.out[1]" "fxFire_particle.ty"; +connectAttr "expression2.out[2]" "fxFire_particle.tz"; +connectAttr ":time1.o" "fxFire_particleShape.cti"; +connectAttr "fxFire_emitter.ot[0]" "fxFire_particleShape.npt[0]"; +connectAttr "fxFire_turbulenceField.of[0]" "fxFire_particleShape.ifc[0]"; +connectAttr "fxFire_dragField.of[0]" "fxFire_particleShape.ifc[1]"; +connectAttr "arrayMapper4.ovpp" "fxFire_particleShape.opacityPP"; +connectAttr "fxFire_particleShape.xo[0]" "fxFire_particleShape.lifespanPP"; +connectAttr "fxFire_particleShape.xo[1]" "fxFire_particleShape.radiusPP"; +connectAttr "fxFire_particleShape.fd" "fxFire_turbulenceField.ind[0]"; +connectAttr "fxFire_particleShape.ppfd[0]" "fxFire_turbulenceField.ppda[0]"; +connectAttr ":time1.o" "fxFire_dragField.cti"; +connectAttr "fxFire_particleShape.fd" "fxFire_dragField.ind[0]"; +connectAttr "fxFire_particleShape.ppfd[1]" "fxFire_dragField.ppda[0]"; +connectAttr ":time1.o" "fire_ffxParticleSourceProxy.tm"; +connectAttr "fxFire_particle.msg" "fire_ffxParticleSourceProxy.pss[0]"; +connectAttr "fxFire_obj.msg" "fxFire_obj_sourceProxy.oss[0]"; +connectAttr "fxFire_obj_sourceProxy_extra_velocity1.o" "fxFire_obj_sourceProxy.evel" + ; +connectAttr "fxFire_obj_sourceProxy_smoke_amount.o" "fxFire_obj_sourceProxy.samt" + ; +connectAttr "fx_fire_COL.ri" "fire.rlio[0]"; +connectAttr ":time1.o" "fireShape.tm"; +connectAttr "fire.wim" "fireShape.rndrMat"; +connectAttr "fxFire_obj_source.msg" "fireShape.ffxs[0]"; +connectAttr "fire_radialField.of[0]" "fireShape.if[0]"; +connectAttr "fxFire_dragField.of[0]" "fireShape.if[1]"; +connectAttr "fireShape_x_turbulence2.o" "fireShape.xturb"; +connectAttr "fireShape_scale.o" "fireShape.tnoisescale"; +connectAttr "fireShape_dissipation_strength.o" "fireShape.dissipstren"; +connectAttr "fireShape.acenterx" "fire_ffxMRVol.tx" -l on; +connectAttr "fireShape.acentery" "fire_ffxMRVol.ty" -l on; +connectAttr "fireShape.acenterz" "fire_ffxMRVol.tz" -l on; +connectAttr "fireShape.awid" "fire_ffxMRVolShape.szx"; +connectAttr "fireShape.ahgt" "fire_ffxMRVolShape.szy"; +connectAttr "fireShape.alen" "fire_ffxMRVolShape.szz"; +connectAttr "ffxMRVolShape11_linkExp.out[0]" "fire_ffxMRVolShape.vss"; +connectAttr "ffxMRVolShape11_linkExp.out[1]" "fire_ffxMRVolShape.vso"; +connectAttr "fireShape.os" "fire_ffxWarpsHandleShape.is"; +connectAttr "layer1.di" "taiki:taiki.do"; +connectAttr "allCamera:cam_translateX.o" "allCamera:cam.tx"; +connectAttr "allCamera:cam_translateY.o" "allCamera:cam.ty"; +connectAttr "allCamera:cam_translateZ.o" "allCamera:cam.tz"; +connectAttr "allCamera:cam_rotateX.o" "allCamera:cam.rx"; +connectAttr "allCamera:cam_rotateY.o" "allCamera:cam.ry"; +connectAttr "allCamera:cam_rotateZ.o" "allCamera:cam.rz"; +connectAttr "allCamera:cam_scaleX.o" "allCamera:cam.sx"; +connectAttr "allCamera:cam_scaleY.o" "allCamera:cam.sy"; +connectAttr "allCamera:cam_scaleZ.o" "allCamera:cam.sz"; +connectAttr "allCamera:cam_visibility.o" "allCamera:cam.v"; +connectAttr "allCamera:camShape_visibility1.o" "allCamera:camShape.v"; +connectAttr "allCamera:camShape_focalLength.o" "allCamera:camShape.fl"; +connectAttr "allCamera:camShape_lensSqueezeRatio.o" "allCamera:camShape.lsr"; +connectAttr "allCamera:camShape_fStop.o" "allCamera:camShape.fs"; +connectAttr "allCamera:camShape_focusDistance.o" "allCamera:camShape.fd"; +connectAttr "allCamera:camShape_shutterAngle.o" "allCamera:camShape.sa"; +connectAttr "allCamera:camShape_centerOfInterest.o" "allCamera:camShape.coi"; +connectAttr ":mentalrayGlobals.msg" ":mentalrayItemsList.glb"; +connectAttr ":miDefaultOptions.msg" ":mentalrayItemsList.opt" -na; +connectAttr ":miDefaultFramebuffer.msg" ":mentalrayItemsList.fb" -na; +connectAttr ":miDefaultOptions.msg" ":mentalrayGlobals.opt"; +connectAttr ":miDefaultFramebuffer.msg" ":mentalrayGlobals.fb"; +relationship "link" ":lightLinker1" "fumeFX1SG.message" ":defaultLightSet.message"; +relationship "link" ":lightLinker1" "fumeFX_A1SG1.message" ":defaultLightSet.message"; +relationship "link" ":lightLinker1" ":initialShadingGroup.message" ":defaultLightSet.message"; +relationship "link" ":lightLinker1" ":initialParticleSE.message" ":defaultLightSet.message"; +relationship "link" ":lightLinker1" "fumeFX2SG.message" ":defaultLightSet.message"; +relationship "link" ":lightLinker1" "fumeFX3SG.message" ":defaultLightSet.message"; +relationship "shadowLink" ":lightLinker1" "fumeFX1SG.message" ":defaultLightSet.message"; +relationship "shadowLink" ":lightLinker1" "fumeFX_A1SG1.message" ":defaultLightSet.message"; +relationship "shadowLink" ":lightLinker1" ":initialShadingGroup.message" ":defaultLightSet.message"; +relationship "shadowLink" ":lightLinker1" ":initialParticleSE.message" ":defaultLightSet.message"; +relationship "shadowLink" ":lightLinker1" "fumeFX2SG.message" ":defaultLightSet.message"; +relationship "shadowLink" ":lightLinker1" "fumeFX3SG.message" ":defaultLightSet.message"; +connectAttr "layerManager.dli[0]" "defaultLayer.id"; +connectAttr "renderLayerManager.rlmi[0]" "defaultRenderLayer.rlid"; +connectAttr "fireShape.tnoisescale" "ffxTurbulenceShader1.tnoisescale"; +connectAttr "fireShape.tnoisedet" "ffxTurbulenceShader1.tnoisedet"; +connectAttr "fireShape.tnoisefrms" "ffxTurbulenceShader1.tnoisefrms"; +connectAttr "fireShape.tnoiseoffset" "ffxTurbulenceShader1.tnoiseoffset"; +connectAttr "fireShape.wid" "ffxTurbulenceShader1.w"; +connectAttr ":time1.o" "ffxTurbulenceShader1.tm"; +connectAttr "fumeFX1SG.msg" "materialInfo1.sg"; +connectAttr "place2dTexture1.o" "fractal1.uv"; +connectAttr "place2dTexture1.ofs" "fractal1.fs"; +connectAttr ":time1.o" "expression1.tim"; +connectAttr "fire_ffxParticleSourceProxy.msg" "expression1.obm"; +connectAttr "polySphere2.out" "deleteComponent1.ig"; +connectAttr ":time1.o" "geoConnector2.ct"; +connectAttr "fxFire_objShape.o" "geoConnector2.lge"; +connectAttr "fxFire_objShape.wm" "geoConnector2.wm"; +connectAttr "fxFire_objShape.msg" "geoConnector2.own"; +connectAttr "deleteComponent1.og" "deleteComponent2.ig"; +connectAttr "deleteComponent2.og" "deleteComponent3.ig"; +connectAttr "deleteComponent3.og" "deleteComponent4.ig"; +connectAttr "ramp4.msg" "arrayMapper4.cn"; +connectAttr "ramp4.oc" "arrayMapper4.cnc"; +connectAttr "fxFire_particleShape.ageNormalized" "arrayMapper4.vpp"; +connectAttr "deleteComponent4.og" "deleteComponent5.ig"; +connectAttr "deleteComponent5.og" "deleteComponent6.ig"; +connectAttr "fire_ffxMRVolShape.iog" "fumeFX_A1SG1.dsm" -na; +connectAttr "fireShape.msg" "fumeFX_A1SG1.vs"; +connectAttr "fumeFX_A1SG1.msg" "materialInfo2.sg"; +connectAttr "fireShape.vss" "ffxMRVolShape11_linkExp.in[0]"; +connectAttr "fireShape.sh_vm" "ffxMRVolShape11_linkExp.in[1]"; +connectAttr ":time1.o" "ffxMRVolShape11_linkExp.tim"; +connectAttr "fire_ffxMRVolShape.msg" "ffxMRVolShape11_linkExp.obm"; +connectAttr "layerManager.dli[1]" "layer1.id"; +connectAttr "renderLayerManager.rlmi[2]" "fx_fire_COL.rlid"; +connectAttr "fumeFX2SG.msg" "materialInfo3.sg"; +connectAttr "fumeFX3SG.msg" "materialInfo4.sg"; +connectAttr ":time1.o" "expression2.tim"; +connectAttr "fxFire_particle.msg" "expression2.obm"; +connectAttr "fumeFX1SG.pa" ":renderPartition.st" -na; +connectAttr "fumeFX_A1SG1.pa" ":renderPartition.st" -na; +connectAttr "fumeFX2SG.pa" ":renderPartition.st" -na; +connectAttr "fumeFX3SG.pa" ":renderPartition.st" -na; +connectAttr "ffxTurbulenceShader1.msg" ":defaultShaderList1.s" -na; +connectAttr "place2dTexture1.msg" ":defaultRenderUtilityList1.u" -na; +connectAttr "defaultRenderLayer.msg" ":defaultRenderingList1.r" -na; +connectAttr "fx_fire_COL.msg" ":defaultRenderingList1.r" -na; +connectAttr "ramp1.msg" ":defaultTextureList1.tx" -na; +connectAttr "fractal1.msg" ":defaultTextureList1.tx" -na; +connectAttr "ramp2.msg" ":defaultTextureList1.tx" -na; +connectAttr "ramp3.msg" ":defaultTextureList1.tx" -na; +connectAttr "ramp4.msg" ":defaultTextureList1.tx" -na; +connectAttr "fxFire_objShape.iog" ":initialShadingGroup.dsm" -na; +connectAttr "taiki:taikiShape.iog" ":initialShadingGroup.dsm" -na; +connectAttr "fxFire_particleShape.iog" ":initialParticleSE.dsm" -na; +// End of FIR001.fxFire.ma diff --git a/VFXPackage/Resources/Textures/Maya/FRB001.fxBonFire.ma b/VFXPackage/Resources/Textures/Maya/FRB001.fxBonFire.ma new file mode 100644 index 0000000..b1e0db9 --- /dev/null +++ b/VFXPackage/Resources/Textures/Maya/FRB001.fxBonFire.ma @@ -0,0 +1,8499 @@ +//Maya ASCII 2015 scene +//Name: FRB001.fxBonFire.ma +//Last modified: Wed, Apr 27, 2016 03:20:53 PM +//Codeset: 932 +requires maya "2015"; +requires -nodeType "mentalrayFramebuffer" -nodeType "mentalrayOptions" -nodeType "mentalrayGlobals" + -nodeType "mentalrayItemsList" -dataType "byteArray" "Mayatomr" "2015.0 - 3.12.1.18 "; +requires -nodeType "VRaySettingsNode" -dataType "vrayFloatVectorData" -dataType "vrayFloatVectorData" + -dataType "vrayIntData" "vrayformaya" "3.30.01"; +requires -nodeType "ffxDyna" -nodeType "ffxParticleSource" -nodeType "ffxWarpsHandle" + -nodeType "ffxTurbulenceShader" -dataType "ffxMeshData" "FumeFX" "FumeFX3.5.8-2014_07_30-PTxihnQcZP3aiJoqdo5F"; +requires "mtorsubdiv" "1.1"; +requires "maxwell" "1.6.4"; +requires "TurtleForMaya80" "4.0.0.6"; +currentUnit -l centimeter -a degree -t ntsc; +fileInfo "application" "maya"; +fileInfo "product" "Maya 2015"; +fileInfo "version" "2015"; +fileInfo "cutIdentifier" "201503261530-955654"; +fileInfo "osv" "Microsoft Windows 7 Business Edition, 64-bit Windows 7 Service Pack 1 (Build 7601)\n"; +createNode transform -s -n "persp"; + setAttr ".v" no; + setAttr ".t" -type "double3" 1.0628059931735208 6.2747675961620413 36.156821924815013 ; + setAttr ".r" -type "double3" 0.26164734341526824 0.20000000000188109 5.8238050389571029e-019 ; +createNode camera -s -n "perspShape" -p "persp"; + setAttr -k off ".v" no; + setAttr ".rnd" no; + setAttr ".fl" 31.794661288881883; + setAttr ".coi" 34.71191558136934; + setAttr ".imn" -type "string" "persp"; + setAttr ".den" -type "string" "persp_depth"; + setAttr ".man" -type "string" "persp_mask"; + setAttr ".hc" -type "string" "viewSet -p %camera"; +createNode transform -s -n "top"; + setAttr ".v" no; + setAttr ".t" -type "double3" 0 100.1 0 ; + setAttr ".r" -type "double3" -89.999999999999986 0 0 ; +createNode camera -s -n "topShape" -p "top"; + setAttr -k off ".v" no; + setAttr ".rnd" no; + setAttr ".coi" 100.1; + setAttr ".ow" 30; + setAttr ".imn" -type "string" "top"; + setAttr ".den" -type "string" "top_depth"; + setAttr ".man" -type "string" "top_mask"; + setAttr ".hc" -type "string" "viewSet -t %camera"; + setAttr ".o" yes; +createNode transform -s -n "front"; + setAttr ".v" no; + setAttr ".t" -type "double3" 0 0 100.1 ; +createNode camera -s -n "frontShape" -p "front"; + setAttr -k off ".v" no; + setAttr ".rnd" no; + setAttr ".coi" 100.1; + setAttr ".ow" 30; + setAttr ".imn" -type "string" "front"; + setAttr ".den" -type "string" "front_depth"; + setAttr ".man" -type "string" "front_mask"; + setAttr ".hc" -type "string" "viewSet -f %camera"; + setAttr ".o" yes; +createNode transform -s -n "side"; + setAttr ".v" no; + setAttr ".t" -type "double3" 100.1 0 0 ; + setAttr ".r" -type "double3" 0 89.999999999999986 0 ; +createNode camera -s -n "sideShape" -p "side"; + setAttr -k off ".v" no; + setAttr ".rnd" no; + setAttr ".coi" 100.1; + setAttr ".ow" 27.807551766138854; + setAttr ".imn" -type "string" "side"; + setAttr ".den" -type "string" "side_depth"; + setAttr ".man" -type "string" "side_mask"; + setAttr ".hc" -type "string" "viewSet -s %camera"; + setAttr ".o" yes; +createNode transform -n "fumeFX_A"; + setAttr ".t" -type "double3" 0.00040905880744546153 0 0 ; +createNode ffxDyna -n "fumeFX_AShape" -p "fumeFX_A"; + setAttr -k off ".v"; + setAttr ".vir" yes; + setAttr ".vif" yes; + setAttr ".ppopath" -type "string" "X:/IG/proj/XEF/cache/ffxCache/FRB/001/fxBonFire/FRB001.fxBonFire.v28_fumeFX_A/FRB001.fxBonFire.v28_fumeFX_A_pp..fxd"; + setAttr ".wopath" -type "string" "X:/IG/proj/XEF/cache/ffxCache/FRB/001/fxBonFire/FRB001.fxBonFire.v28_fumeFX_A/FRB001.fxBonFire.v28_fumeFX_A_wt..fxd"; + setAttr ".sp" 0.032000001519918442; + setAttr ".wid" 7.5; + setAttr ".len" 7.5; + setAttr ".hgt" 16.5; + setAttr ".awid" 7.4880003929138184; + setAttr ".alen" 7.4880003929138184; + setAttr ".ahgt" 16.512001037597656; + setAttr ".acenter" -type "float3" -0.0059998035 8.2560005 0.0059998035 ; + setAttr ".endfr" 180; + setAttr ".pef" 180; + setAttr ".vptupd" 3; + setAttr ".opath" -type "string" "X:/IG/proj/XEF/cache/ffxCache/FRB/001/fxBonFire/FRB001.fxBonFire.v28_fumeFX_A/FRB001.fxBonFire.v28_fumeFX_A..fxd"; + setAttr ".ropath" -type "string" "X:/IG/proj/XEF/cache/ffxCache/FRB/001/fxBonFire/FRB001.fxBonFire.v28_fumeFX_A/FRB001.fxBonFire.v28_fumeFX_A.0064.fxd"; + setAttr ".iopa" -type "string" "X:/IG/proj/XEF/cache/ffxCache/FRB/001/fxBonFire/FRB001.fxBonFire.v28_fumeFX_A/FRB001.fxBonFire.v28_fumeFX_A..fim"; + setAttr ".pt_im" -type "string" "X:/IG/proj/XEF/cache/ffxCache/FRB/001/fxBonFire/FRB001.fxBonFire.v28_fumeFX_A/FRB001.fxBonFire.v28_fumeFX_A.0064.fim"; + setAttr ".maxsimsteps" 2; + setAttr ".ts" 0.69999998807907104; + setAttr ".vort" 0.89999997615814209; + setAttr ".xturb" 0.5; + setAttr ".tnoisescale" 1.3500000238418579; + setAttr ".tnoisedet" 2.2000000476837158; + setAttr ".brate" 17.5; + setAttr ".bratevar" 0.40000000596046448; + setAttr ".heatprod" 30; + setAttr ".expan" 0; + setAttr ".smokedens" 4.029304027557373; + setAttr ".simsmoke" no; + setAttr ".smokebuoy" -0.69999998807907104; + setAttr ".smokediff" 0.15000000596046448; + setAttr ".tempbuoy" 0.40000000596046448; + setAttr ".tempdiff" 0.30000001192092896; + setAttr ".ppce" 150; + setAttr ".vp_red" 5; + setAttr ".sh_brig" 0.5; + setAttr ".sh_fro" 4; + setAttr ".sh_frg" 1.5; + setAttr ".sh_dsm" no; + setAttr ".sh_smn" 0.5; + setAttr ".sh_sac" -type "float3" 0 0 0 ; + setAttr ".sh_smo" 0.30000001192092896; + setAttr ".sh_vfo" 0.44999998807907104; + setAttr ".sh_sfo" 0.89999997615814209; + setAttr ".sh_flc" -type "float3" 1 0 0 ; + setAttr ".sh_flo" 1.8686869144439697; + setAttr -s 10 ".sh_fi_cl_tb"; + setAttr ".sh_fi_cl_tb[0].sh_fi_cl_tbp" 0.12855209410190582; + setAttr ".sh_fi_cl_tb[0].sh_fi_cl_tbcv" -type "float3" 1 0.31275636 0.059000015 ; + setAttr ".sh_fi_cl_tb[1].sh_fi_cl_tbp" 0.94993233680725098; + setAttr ".sh_fi_cl_tb[1].sh_fi_cl_tbcv" -type "float3" 0.061000001 0.061000001 0.061000001 ; + setAttr ".sh_fi_cl_tb[2].sh_fi_cl_tbp" 0.067658998072147369; + setAttr ".sh_fi_cl_tb[2].sh_fi_cl_tbcv" -type "float3" 1 0.53595322 0.17400002 ; + setAttr ".sh_fi_cl_tb[3].sh_fi_cl_tbp" 0.19485791027545929; + setAttr ".sh_fi_cl_tb[3].sh_fi_cl_tbcv" -type "float3" 1 0.91011661 0 ; + setAttr ".sh_fi_cl_tb[4].sh_fi_cl_tbp" 0.85926926136016846; + setAttr ".sh_fi_cl_tb[4].sh_fi_cl_tbcv" -type "float3" 1 0.50561666 0 ; + setAttr ".sh_fi_cl_tb[5].sh_fi_cl_tbcv" -type "float3" 0.077410698 0.058279399 0.041182801 ; + setAttr ".sh_fi_cl_tb[6].sh_fi_cl_tbp" 0.45196211338043213; + setAttr ".sh_fi_cl_tb[6].sh_fi_cl_tbcv" -type "float3" 0.85299999 0.44942448 0.036678985 ; + setAttr ".sh_fi_cl_tb[7].sh_fi_cl_tbp" 0.24357239902019501; + setAttr ".sh_fi_cl_tb[7].sh_fi_cl_tbcv" -type "float3" 0.92284399 0.33293599 0.038022202 ; + setAttr ".sh_fi_cl_tb[8].sh_fi_cl_tbp" 0.76454669237136841; + setAttr ".sh_fi_cl_tb[8].sh_fi_cl_tbcv" -type "float3" 0.96799999 0.39616758 0.0077440157 ; + setAttr ".sh_fi_cl_tb[9].sh_fi_cl_tbp" 0.59269285202026367; + setAttr ".sh_fi_cl_tb[9].sh_fi_cl_tbcv" -type "float3" 0.884 0.77932662 0.037127998 ; + setAttr -s 5 ".sh_fi_op_tb[0:4]" 0 0.001 1 0.11625514 0.58838385 + 1 0.18827161 0.20707071 1 1 0 1 0.73971194 0.19191919 1; + setAttr -s 2 ".sh_sm_cl_tb"; + setAttr ".sh_sm_cl_tb[0].sh_sm_cl_tbp" 0.0086956517770886421; + setAttr ".sh_sm_cl_tb[0].sh_sm_cl_tbcv" -type "float3" 0.32800001 0.32800001 0.32800001 ; + setAttr ".sh_sm_cl_tb[1].sh_sm_cl_tbp" 1; + setAttr ".sh_sm_cl_tb[1].sh_sm_cl_tbcv" -type "float3" 0.65600002 0.65600002 0.65600002 ; + setAttr -s 2 ".sh_sm_op_tb[0:1]" 0 0.83999997 1 1 1 1; + setAttr -s 256 ".sh_fi_cl_ar"; + setAttr ".sh_fi_cl_ar[0:165]" -type "float3" 0.077410698 0.058279399 0.041182801 + 0.13088471 0.085965753 0.048880994 0.18435872 0.1136521 0.056579184 0.23783271 0.14133845 + 0.064277373 0.2913067 0.16902481 0.071975559 0.34478068 0.19671115 0.079673752 0.39825472 + 0.22439751 0.087371945 0.45172873 0.25208387 0.095070139 0.50520271 0.27977023 0.10276832 + 0.55867672 0.30745655 0.11046652 0.61215067 0.33514288 0.11816471 0.66562474 0.36282924 + 0.1258629 0.71909875 0.39051563 0.13356109 0.77257276 0.41820198 0.1412593 0.82604676 + 0.44588831 0.14895749 0.87952077 0.47357467 0.15665567 0.93299478 0.50126106 0.16435385 + 0.98646873 0.52894741 0.17205206 1 0.52521646 0.168468 1 0.51084232 0.1610619 1 0.49646831 + 0.15365578 1 0.4820942 0.1462497 1 0.46772015 0.1388436 1 0.45334607 0.1314375 1 + 0.43897194 0.12403136 1 0.42459789 0.11662527 1 0.41022381 0.10921916 1 0.39584976 + 0.10181306 1 0.38147566 0.094406977 1 0.36710161 0.087000877 1 0.35272753 0.079594769 + 1 0.33835346 0.072188668 1 0.32397938 0.064782567 1 0.32050133 0.05823506 1 0.35583141 + 0.054745585 1 0.39116147 0.051256105 1 0.42649156 0.04776663 1 0.46182162 0.044277154 + 1 0.49715167 0.040787674 1 0.53248179 0.037298199 1 0.56781185 0.033808723 1 0.6031419 + 0.030319246 1 0.63847196 0.026829772 1 0.67380202 0.023340294 1 0.70913208 0.019850818 + 1 0.74446219 0.016361341 1 0.77979219 0.012871863 1 0.81512231 0.0093823867 1 0.85045254 + 0.0058928956 1 0.8857826 0.0024034223 0.9980669 0.89565539 0.00095264445 0.99185574 + 0.84919173 0.0040134722 0.98564458 0.80272806 0.0070743002 0.97943342 0.75626439 + 0.010135128 0.97322226 0.70980072 0.013195955 0.96701109 0.66333705 0.016256783 0.96080005 + 0.61687344 0.01931761 0.95458889 0.57040977 0.022378439 0.94837773 0.52394611 0.025439268 + 0.94216657 0.47748247 0.028500095 0.93595546 0.43101883 0.03156092 0.9297443 0.38455516 + 0.034621749 0.92353314 0.33809149 0.037682578 0.9216755 0.33488488 0.037999727 0.92036116 + 0.33707702 0.037974454 0.91904676 0.33926916 0.037949175 0.91773242 0.3414613 0.037923899 + 0.91641808 0.34365341 0.037898619 0.91510373 0.34584552 0.037873343 0.91378933 0.34803766 + 0.037848063 0.91247499 0.3502298 0.03782279 0.91116065 0.35242194 0.037797511 0.90984631 + 0.35461405 0.037772231 0.9085319 0.35680619 0.037746955 0.9072175 0.35899833 0.037721679 + 0.90590322 0.36119047 0.037696399 0.90458882 0.36338258 0.037671123 0.90327454 0.36557472 + 0.037645847 0.90196013 0.36776686 0.037620567 0.90064585 0.369959 0.037595294 0.89933145 + 0.37215111 0.037570015 0.89801717 0.37434328 0.037544739 0.89670277 0.37653536 0.037519462 + 0.89538836 0.37872753 0.037494186 0.89407396 0.38091964 0.037468906 0.89275968 0.38311177 + 0.03744363 0.89144534 0.38530391 0.037418351 0.890131 0.38749605 0.037393074 0.8888166 + 0.38968816 0.037367798 0.88750225 0.3918803 0.037342519 0.88618791 0.39407241 0.037317246 + 0.88487351 0.39626455 0.037291966 0.88355917 0.39845669 0.03726669 0.88224483 0.40064883 + 0.037241414 0.88093042 0.40284094 0.037216134 0.87961614 0.40503308 0.037190858 0.87830174 + 0.40722522 0.037165582 0.8769874 0.40941736 0.037140302 0.87567306 0.41160947 0.037115023 + 0.87435865 0.41380164 0.03708975 0.87304437 0.41599375 0.03706447 0.87172997 0.41818589 + 0.037039194 0.87041563 0.42037803 0.037013918 0.86910129 0.42257014 0.036988638 0.86778688 + 0.42476228 0.036963362 0.86647254 0.42695439 0.036938086 0.8651582 0.42914653 0.036912806 + 0.86384386 0.43133867 0.03688753 0.86252952 0.43353081 0.03686225 0.86121511 0.43572292 + 0.036836978 0.85990077 0.43791506 0.036811698 0.85858643 0.4401072 0.036786422 0.85727209 + 0.44229934 0.036761142 0.85595769 0.44449145 0.036735866 0.85464334 0.44668359 0.03671059 + 0.853329 0.4488757 0.03668531 0.85364753 0.45631614 0.036688365 0.85451138 0.46550912 + 0.036700875 0.85537529 0.47470212 0.036713388 0.85623908 0.48389506 0.036725901 0.85710293 + 0.49308807 0.036738414 0.85796678 0.50228101 0.036750924 0.85883063 0.51147401 0.036763437 + 0.85969448 0.52066696 0.03677595 0.86055833 0.52985996 0.036788464 0.86142212 0.5390529 + 0.036800973 0.86228597 0.54824591 0.036813486 0.86314976 0.55743885 0.036825996 0.86401367 + 0.56663179 0.036838509 0.86487746 0.5758248 0.036851019 0.86574137 0.5850178 0.036863536 + 0.86660516 0.59421074 0.036876045 0.86746907 0.60340375 0.036888558 0.86833286 0.61259675 + 0.036901072 0.86919665 0.62178969 0.036913581 0.8700605 0.63098264 0.036926094 0.87092435 + 0.64017564 0.036938608 0.8717882 0.64936858 0.036951117 0.87265205 0.65856153 0.03696363 + 0.87351584 0.66775453 0.036976144 0.87437969 0.67694753 0.036988653 0.87524354 0.68614054 + 0.037001166 0.87610739 0.69533348 0.03701368 0.87697124 0.70452648 0.037026189 0.87783509 + 0.71371943 0.037038703 0.87869895 0.72291237 0.037051216 0.87956274 0.73210537 0.037063725 + 0.88042659 0.74129832 0.037076239 0.88129044 0.75049132 0.037088752 0.88215423 0.75968426 + 0.037101265 0.88301808 0.76887721 0.037113775 0.88388193 0.77807021 0.037126288 0.88565487 + 0.77177823 0.036549121 0.88757163 0.76303482 0.035878602 0.88948846 0.75429142 0.03520808 + 0.89140528 0.74554807 0.034537561 0.89332211 0.73680472 0.033867043 0.89523888 0.72806126 + 0.033196524 0.8971557 0.71931785 0.032526005 0.89907253 0.71057451 0.031855486 0.90098929 + 0.7018311 0.031184964 0.90290618 0.69308776 0.030514447 0.90482301 0.68434435 0.029843926 + 0.90673977 0.67560095 0.029173408 0.9086566 0.6668576 0.028502891 0.91057342 0.65811419 + 0.02783237; + setAttr ".sh_fi_cl_ar[166:255]" 0.91249025 0.64937079 0.02716185 0.91440707 + 0.64062738 0.026491331 0.91632378 0.63188398 0.02582081 0.91824067 0.62314069 0.025150293 + 0.92015749 0.61439729 0.024479775 0.92207432 0.60565388 0.023809256 0.92399114 0.59691054 + 0.023138735 0.92590791 0.58816707 0.022468215 0.92782474 0.57942373 0.021797698 0.9297415 + 0.57068032 0.021127179 0.93165839 0.56193697 0.020456659 0.93357515 0.55319357 0.01978614 + 0.93549198 0.54445016 0.019115621 0.9374088 0.53570676 0.018445101 0.93932557 0.52696335 + 0.017774582 0.94124246 0.51822001 0.017104063 0.94315922 0.50947666 0.016433544 0.94507605 + 0.50073326 0.015763026 0.94699287 0.49198985 0.015092505 0.94890964 0.48324645 0.014421985 + 0.95082647 0.4745031 0.013751468 0.95274329 0.46575969 0.013080949 0.95466006 0.45701632 + 0.012410428 0.95657688 0.44827291 0.01173991 0.95849377 0.43952954 0.011069391 0.96041059 + 0.43078616 0.010398872 0.96232736 0.42204264 0.0097283414 0.96424419 0.41329926 0.0090578217 + 0.96616101 0.40455589 0.0083873039 0.96805382 0.39635161 0.0077309948 0.96937859 + 0.40088284 0.0074103884 0.97070342 0.4054141 0.007089782 0.97202826 0.40994537 0.0067691752 + 0.97335309 0.41447663 0.0064485683 0.97467786 0.4190079 0.0061279619 0.97600269 0.42353916 + 0.0058073555 0.97732753 0.42807037 0.0054867482 0.97865236 0.43260163 0.0051661418 + 0.97997713 0.43713289 0.0048455349 0.98130196 0.44166416 0.0045249285 0.9826268 0.44619539 + 0.0042043217 0.98395169 0.45072669 0.0038837153 0.98527646 0.45525792 0.0035631084 + 0.98660123 0.45978916 0.0032425018 0.98792607 0.46432042 0.0029218954 0.9892509 0.46885169 + 0.0026012883 0.99057567 0.47338295 0.0022806819 0.99190056 0.47791418 0.0019600752 + 0.99322534 0.48244545 0.0016394682 0.99455017 0.48697668 0.0013188617 0.995875 0.49150795 + 0.00099825521 0.99719977 0.49603921 0.00067764829 0.99852461 0.50057048 0.00035704175 + 0.99984944 0.50510174 3.6435224e-005 0.96399993 0.48857063 0.0023386606 0.92338413 + 0.46933904 0.0049771736 0.88276839 0.45010749 0.0076156864 0.8421526 0.4308759 0.0102542 + 0.8015368 0.41164431 0.012892712 0.760921 0.39241269 0.015531225 0.7203052 0.3731811 + 0.018169736 0.67968941 0.35394955 0.02080825 0.63907355 0.33471793 0.023446763 0.59845781 + 0.3154864 0.026085274 0.55784202 0.29625478 0.028723788 0.51722622 0.2770232 0.031362303 + 0.47661042 0.25779161 0.034000814 0.43599468 0.23856005 0.036639325 0.39537889 0.21932845 + 0.039277837 0.35476306 0.20009688 0.041916352 0.31414726 0.18086527 0.044554863 0.27353147 + 0.16163369 0.047193378 0.23291567 0.1424021 0.04983189 0.19229992 0.12317053 0.052470401 + 0.15168411 0.10393894 0.055108912 0.11106831 0.084707357 0.057747427 0.070452511 + 0.065475762 0.060385939 0.061000001 0.061000001 0.061000001 0.061000001 0.061000001 + 0.061000001 0.061000001 0.061000001 0.061000001 0.061000001 0.061000001 0.061000001 + 0.061000001 0.061000001 0.061000001 0.061000001 0.061000001 0.061000001 0.061000001 + 0.061000001 0.061000001 0.061000001 0.061000001 0.061000001 0.061000001 0.061000001 + 0.061000001 0.061000001 0.061000001 0.061000001 0.061000001 0.061000001 0.061000001 + 0.061000001 0.061000001 0.061000001 0.061000001 0.061000001 0.061000001; + setAttr -s 256 ".sh_fi_op_ar[0:255]" 0.001 0.020813886 0.04062777 0.060441662 + 0.080255546 0.10006943 0.11988332 0.13969721 0.15951109 0.17932498 0.19913885 0.21895276 + 0.23876664 0.25858054 0.2783944 0.2982083 0.31802216 0.33783606 0.35764998 0.37746385 + 0.39727771 0.41709164 0.4369055 0.45671937 0.47653326 0.49634722 0.51616108 0.53597498 + 0.55578882 0.57560271 0.58101386 0.56024998 0.53948605 0.51872206 0.49795812 0.47719416 + 0.45643023 0.43566635 0.41490233 0.39413846 0.37337449 0.35261059 0.33184662 0.31108266 + 0.29031873 0.26955479 0.24879086 0.22802694 0.20726289 0.20696396 0.20685621 0.20674846 + 0.20664071 0.20653294 0.2064252 0.20631745 0.20620972 0.20610195 0.2059942 0.20588645 + 0.2057787 0.20567095 0.2055632 0.20545545 0.20534772 0.20523995 0.2051322 0.20502445 + 0.20491672 0.20480897 0.2047012 0.20459345 0.2044857 0.20437796 0.20427021 0.20416245 + 0.2040547 0.20394695 0.20383921 0.20373145 0.2036237 0.20351596 0.20340821 0.20330046 + 0.2031927 0.20308495 0.20297721 0.20286945 0.20276171 0.20265394 0.20254621 0.20243847 + 0.20233071 0.20222296 0.20211521 0.20200746 0.20189971 0.20179197 0.20168419 0.20157646 + 0.20146871 0.20136096 0.20125321 0.20114544 0.2010377 0.20092995 0.2008222 0.20071445 + 0.2006067 0.20049897 0.2003912 0.20028345 0.2001757 0.20006795 0.19996022 0.19985244 + 0.1997447 0.19963695 0.1995292 0.19942145 0.1993137 0.19920596 0.1990982 0.19899046 + 0.1988827 0.19877496 0.1986672 0.19855946 0.1984517 0.19834396 0.1982362 0.19812846 + 0.1980207 0.19791296 0.1978052 0.19769746 0.1975897 0.19748196 0.19737419 0.19726646 + 0.19715871 0.19705096 0.19694319 0.19683546 0.19672769 0.19661996 0.19651219 0.19640446 + 0.19629669 0.19618896 0.19608121 0.19597346 0.19586571 0.19575796 0.19565021 0.19554245 + 0.19543469 0.19532695 0.1952192 0.19511145 0.1950037 0.19489595 0.1947882 0.19468045 + 0.1945727 0.19446495 0.1943572 0.19424945 0.1941417 0.19403397 0.19392622 0.19381845 + 0.1937107 0.19360296 0.19349521 0.19338745 0.1932797 0.19317196 0.1930642 0.19295645 + 0.1928487 0.19274096 0.1926332 0.19252545 0.1924177 0.19230996 0.19220221 0.19209446 + 0.19198671 0.19083934 0.18794782 0.18505633 0.18216477 0.17927326 0.17638177 0.17349026 + 0.17059875 0.16770725 0.16481574 0.16192424 0.15903275 0.15614124 0.15324973 0.15035823 + 0.14746672 0.14457521 0.14168371 0.1387922 0.13590069 0.1330092 0.13011768 0.12722617 + 0.12433467 0.12144317 0.11855166 0.11566015 0.11276865 0.10987715 0.10698564 0.10409413 + 0.10120263 0.098311119 0.09541963 0.09252812 0.089636616 0.086745113 0.083853602 + 0.080962099 0.078070596 0.075179093 0.072287582 0.069396079 0.066504575 0.063613065 + 0.060721561 0.057830054 0.054938551 0.052047044 0.049155537 0.046264034 0.043372527 + 0.04048102 0.037589528 0.034698021 0.031806517 0.02891501 0.026023505 0.023132 0.020240493 + 0.017348988 0.014457482 0.011565977 0.0086744707 0.0057829656 0.00289146 0; + setAttr -s 256 ".sh_sm_cl_ar"; + setAttr ".sh_sm_cl_ar[0:165]" -type "float3" 0.32800001 0.32800001 0.32800001 + 0.32800001 0.32800001 0.32800001 0.32800001 0.32800001 0.32800001 0.32901549 0.32901549 + 0.32901549 0.33031303 0.33031303 0.33031303 0.33161062 0.33161062 0.33161062 0.33290818 + 0.33290818 0.33290818 0.33420572 0.33420572 0.33420572 0.33550328 0.33550328 0.33550328 + 0.33680081 0.33680081 0.33680081 0.33809838 0.33809838 0.33809838 0.33939597 0.33939597 + 0.33939597 0.3406935 0.3406935 0.3406935 0.34199107 0.34199107 0.34199107 0.34328863 + 0.34328863 0.34328863 0.34458616 0.34458616 0.34458616 0.34588373 0.34588373 0.34588373 + 0.34718132 0.34718132 0.34718132 0.34847885 0.34847885 0.34847885 0.34977642 0.34977642 + 0.34977642 0.35107395 0.35107395 0.35107395 0.35237154 0.35237154 0.35237154 0.35366908 + 0.35366908 0.35366908 0.35496664 0.35496664 0.35496664 0.3562642 0.3562642 0.3562642 + 0.35756177 0.35756177 0.35756177 0.3588593 0.3588593 0.3588593 0.36015689 0.36015689 + 0.36015689 0.36145443 0.36145443 0.36145443 0.36275199 0.36275199 0.36275199 0.36404955 + 0.36404955 0.36404955 0.36534709 0.36534709 0.36534709 0.36664468 0.36664468 0.36664468 + 0.36794221 0.36794221 0.36794221 0.36923978 0.36923978 0.36923978 0.37053734 0.37053734 + 0.37053734 0.37183493 0.37183493 0.37183493 0.37313244 0.37313244 0.37313244 0.37443 + 0.37443 0.37443 0.37572759 0.37572759 0.37572759 0.37702513 0.37702513 0.37702513 + 0.37832266 0.37832266 0.37832266 0.37962025 0.37962025 0.37962025 0.38091779 0.38091779 + 0.38091779 0.38221535 0.38221535 0.38221535 0.38351291 0.38351291 0.38351291 0.38481045 + 0.38481045 0.38481045 0.38610801 0.38610801 0.38610801 0.3874056 0.3874056 0.3874056 + 0.38870317 0.38870317 0.38870317 0.3900007 0.3900007 0.3900007 0.39129826 0.39129826 + 0.39129826 0.39259583 0.39259583 0.39259583 0.39389336 0.39389336 0.39389336 0.39519095 + 0.39519095 0.39519095 0.39648849 0.39648849 0.39648849 0.39778605 0.39778605 0.39778605 + 0.39908361 0.39908361 0.39908361 0.40038115 0.40038115 0.40038115 0.40167871 0.40167871 + 0.40167871 0.40297627 0.40297627 0.40297627 0.40427384 0.40427384 0.40427384 0.4055714 + 0.4055714 0.4055714 0.40686896 0.40686896 0.40686896 0.40816653 0.40816653 0.40816653 + 0.40946406 0.40946406 0.40946406 0.41076165 0.41076165 0.41076165 0.41205919 0.41205919 + 0.41205919 0.41335675 0.41335675 0.41335675 0.41465431 0.41465431 0.41465431 0.41595185 + 0.41595185 0.41595185 0.41724941 0.41724941 0.41724941 0.41854697 0.41854697 0.41854697 + 0.41984451 0.41984451 0.41984451 0.4211421 0.4211421 0.4211421 0.42243963 0.42243963 + 0.42243963 0.42373723 0.42373723 0.42373723 0.42503476 0.42503476 0.42503476 0.42633229 + 0.42633229 0.42633229 0.42762986 0.42762986 0.42762986 0.42892742 0.42892742 0.42892742 + 0.43022498 0.43022498 0.43022498 0.43152255 0.43152255 0.43152255 0.43282008 0.43282008 + 0.43282008 0.43411767 0.43411767 0.43411767 0.43541521 0.43541521 0.43541521 0.43671277 + 0.43671277 0.43671277 0.43801033 0.43801033 0.43801033 0.43930787 0.43930787 0.43930787 + 0.44060543 0.44060543 0.44060543 0.441903 0.441903 0.441903 0.44320056 0.44320056 + 0.44320056 0.44449812 0.44449812 0.44449812 0.44579569 0.44579569 0.44579569 0.44709325 + 0.44709325 0.44709325 0.44839081 0.44839081 0.44839081 0.44968837 0.44968837 0.44968837 + 0.45098591 0.45098591 0.45098591 0.45228347 0.45228347 0.45228347 0.45358104 0.45358104 + 0.45358104 0.4548786 0.4548786 0.4548786 0.45617613 0.45617613 0.45617613 0.4574737 + 0.4574737 0.4574737 0.45877129 0.45877129 0.45877129 0.46006882 0.46006882 0.46006882 + 0.46136636 0.46136636 0.46136636 0.46266395 0.46266395 0.46266395 0.46396151 0.46396151 + 0.46396151 0.46525905 0.46525905 0.46525905 0.46655661 0.46655661 0.46655661 0.46785417 + 0.46785417 0.46785417 0.46915174 0.46915174 0.46915174 0.47044927 0.47044927 0.47044927 + 0.47174683 0.47174683 0.47174683 0.4730444 0.4730444 0.4730444 0.47434196 0.47434196 + 0.47434196 0.47563949 0.47563949 0.47563949 0.47693706 0.47693706 0.47693706 0.47823465 + 0.47823465 0.47823465 0.47953218 0.47953218 0.47953218 0.48082975 0.48082975 0.48082975 + 0.48212731 0.48212731 0.48212731 0.48342484 0.48342484 0.48342484 0.48472244 0.48472244 + 0.48472244 0.48601997 0.48601997 0.48601997 0.48731753 0.48731753 0.48731753 0.4886151 + 0.4886151 0.4886151 0.48991263 0.48991263 0.48991263 0.49121022 0.49121022 0.49121022 + 0.49250776 0.49250776 0.49250776 0.49380529 0.49380529 0.49380529 0.49510288 0.49510288 + 0.49510288 0.49640045 0.49640045 0.49640045 0.49769801 0.49769801 0.49769801 0.49899554 + 0.49899554 0.49899554 0.50029314 0.50029314 0.50029314 0.50159067 0.50159067 0.50159067 + 0.5028882 0.5028882 0.5028882 0.5041858 0.5041858 0.5041858 0.50548333 0.50548333 + 0.50548333 0.50678086 0.50678086 0.50678086 0.50807846 0.50807846 0.50807846 0.50937599 + 0.50937599 0.50937599 0.51067358 0.51067358 0.51067358 0.51197112 0.51197112 0.51197112 + 0.51326871 0.51326871 0.51326871 0.51456624 0.51456624 0.51456624 0.51586378 0.51586378 + 0.51586378 0.51716137 0.51716137 0.51716137 0.5184589 0.5184589 0.5184589 0.51975644 + 0.51975644 0.51975644 0.52105403 0.52105403 0.52105403 0.52235156 0.52235156 0.52235156 + 0.52364916 0.52364916 0.52364916 0.52494669 0.52494669 0.52494669 0.52624428 0.52624428 + 0.52624428 0.52754182 0.52754182 0.52754182 0.52883935 0.52883935 0.52883935 0.53013694 + 0.53013694 0.53013694 0.53143448 0.53143448 0.53143448 0.53273201 0.53273201 0.53273201 + 0.5340296 0.5340296 0.5340296 0.5353272 0.5353272 0.5353272 0.53662473 0.53662473 + 0.53662473 0.53792226 0.53792226 0.53792226 0.5392198 0.5392198 0.5392198; + setAttr ".sh_sm_cl_ar[166:255]" 0.54051739 0.54051739 0.54051739 0.54181492 + 0.54181492 0.54181492 0.54311252 0.54311252 0.54311252 0.54441011 0.54441011 0.54441011 + 0.54570764 0.54570764 0.54570764 0.54700518 0.54700518 0.54700518 0.54830277 0.54830277 + 0.54830277 0.5496003 0.5496003 0.5496003 0.55089784 0.55089784 0.55089784 0.55219543 + 0.55219543 0.55219543 0.55349296 0.55349296 0.55349296 0.5547905 0.5547905 0.5547905 + 0.55608809 0.55608809 0.55608809 0.55738562 0.55738562 0.55738562 0.55868322 0.55868322 + 0.55868322 0.55998075 0.55998075 0.55998075 0.56127834 0.56127834 0.56127834 0.56257588 + 0.56257588 0.56257588 0.56387341 0.56387341 0.56387341 0.565171 0.565171 0.565171 + 0.56646854 0.56646854 0.56646854 0.56776607 0.56776607 0.56776607 0.56906366 0.56906366 + 0.56906366 0.5703612 0.5703612 0.5703612 0.57165873 0.57165873 0.57165873 0.57295632 + 0.57295632 0.57295632 0.57425392 0.57425392 0.57425392 0.57555145 0.57555145 0.57555145 + 0.57684904 0.57684904 0.57684904 0.57814658 0.57814658 0.57814658 0.57944417 0.57944417 + 0.57944417 0.5807417 0.5807417 0.5807417 0.58203924 0.58203924 0.58203924 0.58333683 + 0.58333683 0.58333683 0.58463436 0.58463436 0.58463436 0.5859319 0.5859319 0.5859319 + 0.58722949 0.58722949 0.58722949 0.58852708 0.58852708 0.58852708 0.58982456 0.58982456 + 0.58982456 0.59112215 0.59112215 0.59112215 0.59241968 0.59241968 0.59241968 0.59371728 + 0.59371728 0.59371728 0.59501487 0.59501487 0.59501487 0.5963124 0.5963124 0.5963124 + 0.59760994 0.59760994 0.59760994 0.59890747 0.59890747 0.59890747 0.60020506 0.60020506 + 0.60020506 0.6015026 0.6015026 0.6015026 0.60280019 0.60280019 0.60280019 0.60409778 + 0.60409778 0.60409778 0.60539526 0.60539526 0.60539526 0.60669285 0.60669285 0.60669285 + 0.60799044 0.60799044 0.60799044 0.60928792 0.60928792 0.60928792 0.61058551 0.61058551 + 0.61058551 0.6118831 0.6118831 0.6118831 0.61318064 0.61318064 0.61318064 0.61447823 + 0.61447823 0.61447823 0.61577576 0.61577576 0.61577576 0.6170733 0.6170733 0.6170733 + 0.61837083 0.61837083 0.61837083 0.61966842 0.61966842 0.61966842 0.62096602 0.62096602 + 0.62096602 0.62226355 0.62226355 0.62226355 0.62356114 0.62356114 0.62356114 0.62485862 + 0.62485862 0.62485862 0.62615621 0.62615621 0.62615621 0.6274538 0.6274538 0.6274538 + 0.62875134 0.62875134 0.62875134 0.63004887 0.63004887 0.63004887 0.63134646 0.63134646 + 0.63134646 0.632644 0.632644 0.632644 0.63394153 0.63394153 0.63394153 0.63523912 + 0.63523912 0.63523912 0.63653672 0.63653672 0.63653672 0.63783419 0.63783419 0.63783419 + 0.63913178 0.63913178 0.63913178 0.64042938 0.64042938 0.64042938 0.64172691 0.64172691 + 0.64172691 0.6430245 0.6430245 0.6430245 0.64432204 0.64432204 0.64432204 0.64561957 + 0.64561957 0.64561957 0.64691716 0.64691716 0.64691716 0.6482147 0.6482147 0.6482147 + 0.64951223 0.64951223 0.64951223 0.65080976 0.65080976 0.65080976 0.65210736 0.65210736 + 0.65210736 0.65340489 0.65340489 0.65340489 0.65470248 0.65470248 0.65470248 0.65600002 + 0.65600002 0.65600002; + setAttr -s 256 ".sh_sm_op_ar[0:255]" 0.83999997 0.84062743 0.84125489 + 0.84188235 0.84250981 0.8431372 0.84376466 0.84439212 0.84501958 0.84564704 0.8462745 + 0.84690195 0.84752941 0.84815681 0.84878427 0.84941173 0.85003918 0.85066664 0.8512941 + 0.85192156 0.85254902 0.85317647 0.85380387 0.85443133 0.85505879 0.85568625 0.85631371 + 0.85694116 0.85756862 0.85819608 0.85882348 0.85945094 0.86007839 0.86070585 0.86133331 + 0.86196077 0.86258823 0.86321568 0.86384314 0.86447054 0.865098 0.86572546 0.86635292 + 0.86698037 0.86760783 0.86823529 0.86886275 0.86949015 0.87011766 0.87074506 0.87137258 + 0.87199998 0.8726275 0.8732549 0.87388241 0.87450981 0.87513721 0.87576461 0.87639213 + 0.87701952 0.87764704 0.87827444 0.87890196 0.87952936 0.88015687 0.88078427 0.88141179 + 0.88203919 0.88266671 0.88329411 0.88392162 0.88454902 0.88517642 0.88580394 0.88643134 + 0.88705873 0.88768625 0.88831365 0.88894117 0.88956857 0.89019608 0.89082348 0.891451 + 0.8920784 0.89270592 0.89333332 0.89396083 0.89458823 0.89521575 0.89584315 0.89647055 + 0.89709795 0.89772546 0.89835286 0.89898038 0.89960778 0.9002353 0.90086275 0.90149021 + 0.90211761 0.90274507 0.90337253 0.90399998 0.90462744 0.9052549 0.90588236 0.90650976 + 0.90713727 0.90776467 0.90839219 0.90901959 0.90964705 0.91027451 0.91090196 0.91152942 + 0.91215682 0.91278434 0.91341174 0.91403919 0.91466665 0.91529411 0.91592157 0.91654897 + 0.91717649 0.91780388 0.9184314 0.9190588 0.91968626 0.92031372 0.92094117 0.92156863 + 0.92219603 0.92282355 0.92345095 0.92407846 0.92470586 0.92533332 0.92596078 0.92658824 + 0.9272157 0.92784309 0.92847061 0.92909801 0.92972547 0.93035293 0.93098038 0.93160784 + 0.9322353 0.93286276 0.93349016 0.93411767 0.93474507 0.93537253 0.93599999 0.93662745 + 0.93725491 0.9378823 0.93850982 0.93913722 0.93976474 0.94039214 0.94101959 0.94164705 + 0.94227451 0.94290197 0.94352937 0.94415689 0.94478428 0.9454118 0.9460392 0.94666666 + 0.94729412 0.94792157 0.94854903 0.94917643 0.94980395 0.95043135 0.9510588 0.95168626 + 0.95231372 0.95294118 0.95356864 0.9541961 0.95482349 0.95545101 0.95607841 0.95670587 + 0.95733333 0.95796078 0.95858824 0.9592157 0.95984316 0.96047056 0.96109807 0.96172547 + 0.96235293 0.96298039 0.96360785 0.96423531 0.96486276 0.96549022 0.96611762 0.96674514 + 0.96737254 0.96799999 0.96862745 0.96925491 0.96988237 0.97050983 0.97113729 0.97176468 + 0.97239214 0.9730196 0.97364706 0.97427452 0.97490197 0.97552943 0.97615689 0.97678435 + 0.97741175 0.97803921 0.97866666 0.97929412 0.97992158 0.98054904 0.9811765 0.98180395 + 0.98243141 0.98305881 0.98368627 0.98431373 0.98494118 0.98556864 0.9861961 0.98682356 + 0.98745096 0.98807842 0.98870587 0.98933333 0.98996079 0.99058825 0.99121571 0.99184316 + 0.99247062 0.99309802 0.99372548 0.99435294 0.99498039 0.99560785 0.99623531 0.99686277 + 0.99749023 0.99811769 0.99874508 0.99937254 1; + setAttr ".popath" -type "string" "X:/IG/proj/XEF/seq/FRB/001/fxBonFire/movie/bonfireEX/bonfire11.avi"; + setAttr ".prEnFr" 180; + setAttr ".prFpFr" 30; +instanceable -a 0; +createNode transform -n "ffxMRVol1" -p "fumeFX_A"; + setAttr ".ovdt" 2; + setAttr ".ove" yes; + setAttr -l on ".t"; + setAttr -l on ".r"; + setAttr -l on ".s"; +createNode renderBox -n "ffxMRVolShape1" -p "ffxMRVol1"; + setAttr -k off ".v"; + setAttr ".rt" 1; +createNode transform -n "ffxWarpsHandle1" -p "fumeFX_A"; +createNode ffxWarpsHandle -n "ffxWarpsHandleShape1" -p "ffxWarpsHandle1"; + setAttr -k off ".v"; + setAttr ".tw" yes; + setAttr ".covm[0]" 0 1 1; + setAttr ".cdvm[0]" 0 1 1; +createNode transform -n "ffxParticleSource_A"; + setAttr ".t" -type "double3" -30 3 0 ; +createNode ffxParticleSource -n "ffxParticleSource_AProxy" -p "ffxParticleSource_A"; + setAttr -k off ".v"; + setAttr ".rdea" yes; + setAttr ".rdsv" 1; + setAttr -s 2 ".rdaf[0:1]" 0 0.0099999998 1 1 1 1; + setAttr -s 2 ".vbaf[0:1]" 0 0.0099999998 1 1 1 1; + setAttr -s 2 ".fbaf[0:1]" 0 0.0099999998 1 1 1 1; + setAttr -s 2 ".tbaf[0:1]" 0 0.0099999998 1 1 1 1; + setAttr ".sbea" yes; + setAttr ".sbsv" 5; + setAttr -s 2 ".sbaf[0:1]" 0 0.0099999998 1 1 1 1; + setAttr -s 2 ".cbaf"; + setAttr ".cbaf[0].cbafcv" -type "float3" 1 1 1 ; + setAttr ".cbaf[1].cbafp" 1; + setAttr ".cbaf[1].cbafcv" -type "float3" 1 1 1 ; + setAttr ".is" 6; + setAttr ".rd" 0.5; + setAttr ".vamt" 0.75; + setAttr ".tamt" 320; + setAttr ".stype" 0; + setAttr ".samt" 3; + setAttr -s 2 ".rdf[0:1]" 0 1 1 1 0.0099999998 1; +instanceable -a 0; +createNode transform -n "fxBonFire_group"; +createNode transform -n "fxBonFire_obj" -p "fxBonFire_group"; + setAttr ".t" -type "double3" 0 -0.4 0 ; + setAttr ".s" -type "double3" 0.69987110401234931 0.048990977280864469 0.69987110401234931 ; + setAttr ".rp" -type "double3" 0 0.34713763702801337 0 ; + setAttr ".sp" -type "double3" 0 0.34713763702801337 0 ; +createNode mesh -n "fxBonFire_objShape" -p "fxBonFire_obj"; + setAttr -k off ".v"; + setAttr ".vir" yes; + setAttr ".vif" yes; + setAttr ".pv" -type "double2" 0.50000005960464478 0.77500012516975403 ; + setAttr ".uvst[0].uvsn" -type "string" "map1"; + setAttr ".cuvs" -type "string" "map1"; + setAttr ".dcc" -type "string" "Ambient+Diffuse"; + setAttr ".covm[0]" 0 1 1; + setAttr ".cdvm[0]" 0 1 1; +createNode pointEmitter -n "fxBonFire_emitter" -p "fxBonFire_obj"; + setAttr ".s" -type "double3" 1 0.87652751556184427 1 ; + setAttr ".emt" 2; + setAttr ".rat" 4000; + setAttr ".sro" no; + setAttr -l on ".urpp"; + setAttr ".spd" 18; + setAttr ".srnd" 1.5; +createNode transform -n "fxBonFire_particle" -p "fxBonFire_group"; + setAttr ".t" -type "double3" 0 2.6926922842972458 0 ; +createNode particle -n "fxBonFire_particleShape" -p "fxBonFire_particle"; + addAttr -s false -ci true -sn "lifespanPP" -ln "lifespanPP" -dt "doubleArray"; + addAttr -ci true -h true -sn "lifespanPP0" -ln "lifespanPP0" -dt "doubleArray"; + addAttr -ci true -sn "lifespan" -ln "lifespan" -at "double"; + addAttr -s false -ci true -sn "opacityPP" -ln "opacityPP" -dt "doubleArray"; + addAttr -ci true -h true -sn "opacityPP0" -ln "opacityPP0" -dt "doubleArray"; + addAttr -s false -ci true -sn "ageNormalized" -ln "ageNormalized" -dt "doubleArray"; + addAttr -ci true -h true -sn "ageNormalized0" -ln "ageNormalized0" -dt "doubleArray"; + setAttr -k off ".v"; + setAttr ".gf" -type "Int32Array" 0 ; + setAttr -s 2 ".ifc"; + setAttr ".pos0" -type "vectorArray" 0 ; + setAttr ".vel0" -type "vectorArray" 0 ; + setAttr ".acc0" -type "vectorArray" 0 ; + setAttr ".mas0" -type "doubleArray" 0 ; + setAttr ".id0" -type "doubleArray" 0 ; + setAttr ".bt0" -type "doubleArray" 0 ; + setAttr ".ag0" -type "doubleArray" 0 ; + setAttr ".lfm" 3; + setAttr ".irbx" -type "string" ""; + setAttr ".irax" -type "string" ""; + setAttr ".icx" -type "string" ".O[0] = rand(0.03, 0.06);"; + setAttr ".chw" 128; + setAttr -s 2 ".ppfd"; + setAttr ".lifespanPP0" -type "doubleArray" 0 ; + setAttr -k on ".lifespan" 1; + setAttr ".opacityPP0" -type "doubleArray" 0 ; + setAttr ".ageNormalized0" -type "doubleArray" 0 ; +createNode transform -n "fxBonFire_fields" -p "fxBonFire_group"; +createNode turbulenceField -n "turbulenceField2" -p "fxBonFire_fields"; + setAttr ".mag" 70; + setAttr ".fc[0]" 0 1 1; + setAttr ".amag[0]" 0 1 1; + setAttr ".crad[0]" 0 1 1; + setAttr ".frq" 12; + setAttr ".phx" 0.8; + setAttr ".phy" 0.8; + setAttr ".phz" 0.8; + setAttr ".nslv" 1; +createNode dragField -n "dragField1" -p "fxBonFire_fields"; + setAttr ".mag" 2; + setAttr ".fc[0]" 0 1 1; + setAttr ".amag[0]" 0 1 1; + setAttr ".crad[0]" 0 1 1; +createNode transform -n "taiki:all"; +createNode transform -n "taiki:taiki" -p "taiki:all"; + setAttr ".t" -type "double3" -6.3858264006815215 0 0 ; +createNode mesh -n "taiki:taikiShape" -p "taiki:taiki"; + setAttr -k off ".v"; + setAttr ".vir" yes; + setAttr ".vif" yes; + setAttr ".pv" -type "double2" 0.5 0.80669501423835754 ; + setAttr ".uvst[0].uvsn" -type "string" "map1"; + setAttr -s 2796 ".uvst[0].uvsp"; + setAttr ".uvst[0].uvsp[0:249]" -type "float2" 0.708004 0.70800298 0.50000101 + 0.79416001 0.50000101 0.74268597 0.671606 0.67160499 0.29199901 0.70800298 0.32839701 + 0.67160499 0.205842 0.5 0.25731599 0.5 0.29199901 0.29199699 0.32839701 0.32839501 + 0.50000101 0.20584001 0.50000101 0.257314 0.708004 0.29199699 0.671606 0.32839501 + 0.79416198 0.5 0.742688 0.5 0.50000101 0.5 0.026961001 0.100332 0.026961001 0.018568 + 0.124577 0.018568 0.124577 0.100332 0.026961001 0.97916299 0.026961001 0.89739901 + 0.124577 0.89739901 0.124577 0.97916299 0.026961001 0.817931 0.026961001 0.74423403 + 0.124577 0.74423403 0.124577 0.817931 0.026961001 0.67053699 0.124577 0.67053699 + 0.026961001 0.582232 0.124577 0.582232 0.026961001 0.49886501 0.026961001 0.41549799 + 0.124577 0.41549799 0.124577 0.49886501 0.026961001 0.32719299 0.026961001 0.253497 + 0.124577 0.253497 0.124577 0.32719299 0.026961001 0.1798 0.124577 0.1798 0.95586097 + 0.56197703 0.89550102 0.58697999 0.89550102 0.56137198 0.93791902 0.54380202 0.83514202 + 0.561979 0.85308403 0.54380202 0.81014001 0.50161898 0.83551401 0.50138497 0.83514202 + 0.44126001 0.85308403 0.458967 0.89550102 0.41625801 0.89550102 0.44139701 0.95586002 + 0.441259 0.93791902 0.45896599 0.98086298 0.50161701 0.95548898 0.50138301 0.89550102 + 0.50134701 0.95525098 0.74331498 0.89550102 0.76806498 0.89550102 0.75043499 0.94294399 + 0.73078299 0.83575302 0.74331599 0.848059 0.730784 0.81100398 0.68356699 0.828408 + 0.68334198 0.83575302 0.62381798 0.848059 0.63590002 0.89550102 0.599069 0.89550102 + 0.61624902 0.95525002 0.62381798 0.94294298 0.63589901 0.97999901 0.68356502 0.96259397 + 0.68334103 0.89550102 0.68330097 0.95525098 0.37830999 0.89550102 0.40305999 0.89550102 + 0.38543001 0.94294298 0.365778 0.83575302 0.37831101 0.848059 0.36577901 0.81100398 + 0.318562 0.828408 0.31833699 0.83575302 0.25881299 0.848059 0.270895 0.89550102 0.234064 + 0.89550102 0.25124401 0.95525002 0.25881201 0.94294298 0.27089399 0.97999901 0.31856 + 0.96259397 0.31833601 0.89550102 0.31829599 0.127886 0.476886 0.128489 0.41718301 + 0.15161499 0.41411901 0.14964999 0.47040999 0.33458999 0.13846301 0.34006 0.16773599 + 0.30664501 0.173186 0.29356301 0.14166699 0.5 0.155931 0.424519 0.15526301 0.43130401 + 0.101426 0.5 0.094815999 0.111361 0.48251501 0.102062 0.42235899 0.080747999 0.48688301 + 0.068604998 0.43252099 0.25099999 0.119172 0.26966599 0.17471001 0.25099999 0.17469899 + 0.28833199 0.174721 0.27737999 0.138539 0.29356301 0.14166699 0.30664501 0.173186 + 0.068360001 0.48776099 0.054026 0.43677801 0.36816299 0.131908 0.37394699 0.16391 + 0.34006 0.16773599 0.33458999 0.13846301 0.5 0.056798 0.45440301 0.059316002 0.5 + 0.011954 0.034193002 0.39894 0.032203998 0.40503299 0.0079840003 0.40735799 0.0086399997 + 0.40076801 0.050276998 0.42316699 0.043949001 0.42493501 0.199058 0.220339 0.182172 + 0.225721 0.17738099 0.20158701 0.196183 0.198746 0.168281 0.22684699 0.166591 0.20274401 + 0.13582601 0.227791 0.13719299 0.203187 0.14638101 0.20308299 0.146883 0.228788 0.13804901 + 0.16204301 0.16119801 0.164297 0.13115001 0.170432 0.170056 0.16281299 0.191037 0.15559 + 0.082892001 0.16384999 0.084097996 0.15753099 0.092050001 0.15956099 0.090631999 + 0.165041 0.074979 0.223042 0.076378003 0.19604599 0.085346997 0.19499101 0.082730003 + 0.223286 0.048976 0.19863801 0.062799998 0.16593499 0.059675999 0.15799101 0.129384 + 0.20242 0.12575001 0.175473 0.037879001 0.198476 0.103261 0.16828001 0.104489 0.16285001 + 0.097934999 0.224255 0.099609002 0.195107 0.12629201 0.22772101 0.116496 0.25560099 + 0.088707998 0.25867599 0.097318999 0.240601 0.123023 0.241402 0.082787998 0.239784 + 0.073940001 0.252471 0.074643001 0.238268 0.089760996 0.24047001 0.080983996 0.25672999 + 0.098728001 0.161212 0.097251996 0.166614 0.093433 0.194747 0.091108002 0.223727 + 0.066207998 0.39591199 0.047215 0.43793499 0.101855 0.39829299 0.127918 0.40432301 + 0.055488002 0.48614901 0.148147 0.366734 0.149389 0.29113299 0.17093299 0.292317 + 0.18201301 0.367304 0.214828 0.235964 0.189915 0.244197 0.186037 0.237304 0.20777901 + 0.229232 0.225324 0.248767 0.193222 0.25962901 0.168909 0.243186 0.16905101 0.235789 + 0.195078 0.27157301 0.22822499 0.26069599 0.2307 0.27202299 0.194374 0.28147599 0.19356 + 0.29224801 0.196684 0.366844 0.234218 0.29558399 0.22845399 0.36175099 0.15096401 + 0.40522501 0.146035 0.252103 0.145013 0.26328099 0.133367 0.26365101 0.13402399 0.250882 + 0.114945 0.262862 0.13326 0.27113101 0.14605799 0.27175301 0.12922101 0.36596301 + 0.133678 0.29458499 0.191487 0.42065799 0.218934 0.41485101 0.193426 0.444143 0.133154 + 0.27860999 0.14822499 0.28181499 0.18085299 0.45779201 0.17816401 0.41919899 0.169994 + 0.271752 0.1708 0.285743 0.169194 0.262389 0.145413 0.242578 0.062880002 0.298915 + 0.048976 0.29442099 0.053799 0.27731201 0.067992002 0.28025901 0.102325 0.363967 + 0.018817 0.36411199 0.042776 0.36465299 0.111448 0.29982099 0.055528 0.26204801 0.071592003 + 0.26034501 0.058398001 0.235558 0.054083999 0.240989 0.050055001 0.232288 0.056023002 + 0.252065 0.079916999 0.30081999 0.069752999 0.36534101 0.055018999 0.36490101 0.069825999 + 0.30026299 0.050854001 0.401007 0.085974 0.265643 0.078914002 0.26165 0.084572002 + 0.28337801 0.113685 0.28260601 0.074845001 0.28259301 0.041311 0.221645; + setAttr ".uvst[0].uvsp[250:499]" 0.052565999 0.22379901 0.035239998 0.39707801 + 0.0087479996 0.399165 0.134304 0.241409 0.40514201 0.12055 0.41822299 0.110988 0.18085399 + 0.45779201 0.193426 0.444143 0.20021901 0.44859901 0.185307 0.464872 0.151049 0.083989002 + 0.16054 0.08422 0.16061001 0.091020003 0.149489 0.090202004 0.12819999 0.10383 0.1077 + 0.10638 0.10653 0.09973 0.12710001 0.096500002 0.16038001 0.097089998 0.17214 0.095720001 + 0.17133 0.099339999 0.15092801 0.119863 0.13403 0.12074 0.13423 0.10118 0.149435 + 0.096280999 0.13441999 0.092749998 0.159531 0.1182 0.17327 0.1147 0.1234 0.084279999 + 0.13352001 0.08585 0.10705 0.092649996 0.12807 0.12158 0.1098 0.12358 0.094439998 + 0.10606 0.076289997 0.103 0.075230002 0.092820004 0.094149999 0.1008 0.098269999 + 0.10024 0.099420004 0.1064 0.093560003 0.12298 0.099090002 0.12348 0.10416 0.10605 + 0.10545 0.1236 0.10308 0.09984 0.094070002 0.050560001 0.099569999 0.049855001 0.097000003 + 0.069399998 0.092479996 0.070370004 0.176265 0.07068 0.17498 0.086860001 0.16590001 + 0.067460001 0.15416899 0.064400002 0.13672499 0.065485001 0.11823 0.07745 0.12272 + 0.060024999 0.125835 0.061790001 0.12151 0.079680003 0.088349998 0.071419999 0.088610001 + 0.050889999 0.083230004 0.074589998 0.081694998 0.052864999 0.105675 0.050285 0.10188 + 0.068899997 0.111465 0.052354999 0.10587 0.069870003 0.095660001 0.030750001 0.095550001 + 0.02421 0.098459996 0.0232 0.10214 0.030309999 0.10667 0.087379999 0.10658 0.083999999 + 0.095710002 0.081820004 0.09426 0.085040003 0.093489997 0.08969 0.078939997 0.077880003 + 0.11014 0.071620002 0.11535 0.074929997 0.10667 0.081119999 0.10585 0.076289997 0.098250002 + 0.09144 0.09832 0.086860001 0.10273 0.092629999 0.10251 0.087729998 0.097379997 0.079070002 + 0.1 0.081150003 0.099129997 0.083849996 0.10334 0.080940001 0.10275 0.084559999 0.1006 + 0.077069998 0.098410003 0.077660002 0.1036 0.076339997 0.18961 0.04183 0.18413 0.038860001 + 0.19017 0.031380001 0.19208001 0.033640001 0.17952 0.035300002 0.18793 0.03035 0.14636 + 0.027519999 0.14838 0.02685 0.14805999 0.032469999 0.14501999 0.032109998 0.14997 + 0.02743 0.15058 0.031950001 0.13790999 0.02867 0.13926999 0.02898 0.14108001 0.03184 + 0.1383 0.032219999 0.13661 0.02915 0.13590001 0.031810001 0.17357001 0.044100001 + 0.17719001 0.04733 0.17126 0.050700001 0.079400003 0.022329999 0.085170001 0.021081001 + 0.087849997 0.02674 0.081069998 0.02785 0.091240004 0.01626 0.094169997 0.01425 0.096780002 + 0.02018 0.16546001 0.04727 0.171336 0.043294001 0.0977 0.020400001 0.092749998 0.023940001 + 0.088869996 0.03036 0.089230001 0.01863 0.17310999 0.040580001 0.17336001 0.04022 + 0.080159999 0.03114 0.17558999 0.035259999 0.177701 0.038011 0.18194 0.041979998 + 0.18708999 0.044810001 0.18155999 0.050330002 0.1894 0.046670001 0.18440001 0.052409999 + 0.17755 0.054499999 0.18117 0.057459999 0.082477003 0.017426001 0.077440001 0.018610001 + 0.193849 0.039198998 0.193556 0.032972001 0.19462 0.03249 0.194956 0.036033999 0.18802001 + 0.028525 0.18796299 0.029571 0.17738 0.03176 0.180939 0.029614 0.091499999 0.01078 + 0.088610001 0.01247 0.17738 0.03176 0.095509999 0.01349 0.095760003 0.0051000002 + 0.096639998 0.0055399998 0.09725 0.01302 0.086340003 0.01471 0.080119997 0.00728 + 0.078359999 0.00997 0.08258 0.00599 0.19099499 0.030439001 0.16237999 0.040199999 + 0.15729 0.044810001 0.15989099 0.038844999 0.16686 0.04411 0.16145 0.037039999 0.16162001 + 0.037020002 0.10811 0.023940001 0.10678 0.02351 0.10727 0.021779999 0.10771 0.022430001 + 0.10947 0.03167 0.10204 0.023870001 0.10196 0.018510001 0.10485 0.01784 0.1069 0.0165 + 0.099550001 0.01791 0.10774 0.01859 0.10923 0.01859 0.16543999 0.035659999 0.16267 + 0.03469 0.1646 0.029209999 0.16695 0.030540001 0.10411 0.01173 0.10614 0.01121 0.097800002 + 0.01749 0.17338 0.038989998 0.17262 0.038449999 0.10089 0.01271 0.16904999 0.037020002 + 0.17400999 0.032820001 0.17415 0.025830001 0.17452 0.02541 0.17583001 0.03311 0.17037 + 0.02437 0.17072 0.024700001 0.10029 0.00465 0.10094 0.0038000001 0.098520003 0.0054100002 + 0.17039999 0.03184 0.098190002 0.00367 0.17249 0.024870001 0.17253999 0.02441 0.15344 + 0.0394 0.157233 0.040273 0.14892 0.04487 0.15158001 0.039407 0.15200999 0.037919998 + 0.15244 0.037519999 0.11564 0.02696 0.11625 0.024879999 0.11641 0.024940001 0.11671 + 0.027589999 0.11666 0.022779999 0.11825 0.02372 0.11177 0.01918 0.11097 0.025560001 + 0.1147 0.01905 0.16080999 0.034230001 0.16249999 0.033969998 0.11631 0.01877 0.1577 + 0.034389999 0.15457 0.033750001 0.15457 0.031169999 0.15782 0.031539999 0.16119 0.03115 + 0.10858 0.016209999 0.11178 0.016589999 0.11486 0.01636 0.16291 0.03111 0.10724 0.01616 + 0.11675 0.01646 0.15291999 0.033459999 0.15282001 0.030889999 0.15184 0.031649999 + 0.15152 0.035349999 0.15057001 0.035399999 0.11866 0.020059999 0.11659 0.019540001 + 0.15662999 0.024250001 0.15854 0.023949999 0.10912 0.0096500004 0.11075 0.0097500002 + 0.11256 0.0094499998 0.11269 0.0087000001 0.15620001 0.023530001 0.16041 0.024630001 + 0.16114999 0.023700001 0.10821 0.0089699998 0.15859 0.022919999 0.11045 0.0081099998 + 0.13992999 0.045120001; + setAttr ".uvst[0].uvsp[500:749]" 0.14196999 0.038600001 0.14474501 0.040185999 + 0.12485 0.029619999 0.12519 0.029379999 0.12552001 0.03077 0.12297 0.032000002 0.12257 + 0.039489999 0.11706 0.034839999 0.116355 0.055555001 0.14885999 0.041540001 0.14322001 + 0.037470002 0.143566 0.037501998 0.14813 0.035969999 0.14503001 0.035500001 0.14343999 + 0.035440002 0.12335 0.024800001 0.12515999 0.02489 0.12063 0.02437 0.11882 0.03067 + 0.12139 0.02083 0.12424 0.02111 0.1237 0.01667 0.12614 0.02134 0.12324 0.017240001 + 0.1434 0.031629998 0.14598 0.02706 0.12013 0.01646 0.11962 0.01565 0.15041 0.02695 + 0.12158 0.01729 0.14831001 0.026419999 0.12159 0.01567 0.12721001 0.042599998 0.12987 + 0.0361 0.13214 0.037349999 0.13016 0.043900002 0.1274 0.034079999 0.1247 0.04115 + 0.13437 0.038249999 0.13891999 0.039620001 0.13348 0.04465 0.13856 0.035039999 0.14147 + 0.03461 0.13534001 0.03427 0.13345 0.03365 0.13175 0.032930002 0.13434 0.03114 0.1332 + 0.03036 0.12784 0.02891 0.12971 0.03131 0.13162 0.029270001 0.1301 0.0273 0.14300001 + 0.034230001 0.12699001 0.02712 0.12929 0.02572 0.13313 0.02754 0.13409001 0.02813 + 0.14232001 0.031339999 0.13299 0.025830001 0.13282999 0.026550001 0.13943 0.02833 + 0.13478 0.02802 0.13631999 0.02847 0.13406999 0.02674 0.13785 0.028100001 0.079580002 + 0.12182 0.17921001 0.070289999 0.17725 0.083120003 0.120025 0.05804 0.25512201 0.854577 + 0.28090799 0.83529598 0.34790501 0.95466501 0.34489799 0.992989 0.34947401 0.912269 + 0.299086 0.81742501 0.31659999 0.80131102 0.35404599 0.867621 0.288614 0.76835901 + 0.311526 0.76030701 0.25 0.77787298 0.26958799 0.77324897 0.33688301 0.78190702 0.339582 + 0.75 0.34780401 0.75519103 0.34829399 0.77804297 0.35982001 0.80046099 0.375312 0.77194202 + 0.37980801 0.79049301 0.359099 0.73512697 0.366539 0.73890102 0.25 0.71837902 0.268022 + 0.71668899 0.341167 0.707928 0.363199 0.706074 0.35898399 0.80895197 0.38981801 0.86517102 + 0.40667701 0.909904 0.431797 0.94637603 0.45893201 0.97854799 0.28653601 0.60175699 + 0.25099999 0.60268599 0.25099999 0.553029 0.30159801 0.55289602 0.25099999 0.51370001 + 0.284872 0.51289397 0.5 0.73697603 0.5 0.74835497 0.49473101 0.748941 0.48387301 + 0.73583901 0.489732 0.804492 0.47621101 0.76963598 0.49201301 0.78716898 0.41726601 + 0.71065903 0.39215899 0.71113998 0.418863 0.68333501 0.438503 0.68910801 0.47477901 + 0.65965903 0.47826701 0.668612 0.48760399 0.83349597 0.5 0.805718 0.5 0.83335698 + 0.44758099 0.80474901 0.468656 0.80462098 0.465639 0.83085698 0.44367301 0.82821798 + 0.49269199 0.77761197 0.5 0.77885598 0.446778 0.874053 0.41959801 0.85054302 0.5 + 0.893224 0.474709 0.88780099 0.41079599 0.78007698 0.443082 0.770657 0.400922 0.65758198 + 0.46623799 0.62544203 0.46888101 0.63751501 0.40595701 0.66579401 0.5 0.63271099 + 0.5 0.62040102 0.489674 0.71673799 0.5 0.71776801 0.47395799 0.57857001 0.5 0.575652 + 0.462165 0.77014703 0.5 0.78902298 0.5 0.65607202 0.5 0.66636097 0.076396003 0.73531199 + 0.084756002 0.83408803 0.075267002 0.82950902 0.060575001 0.74194902 0.049194001 + 0.66275901 0.057323001 0.66013199 0.058074001 0.670237 0.049965002 0.67622501 0.046471 + 0.623496 0.052829999 0.62215197 0.058433998 0.67809099 0.049472999 0.68450499 0.053263001 + 0.74484199 0.069145001 0.65670598 0.069870003 0.66387701 0.070793003 0.67154402 0.15911999 + 0.68100899 0.166005 0.68066299 0.158898 0.74305803 0.14845 0.74251199 0.106324 0.65926301 + 0.102697 0.61998498 0.119377 0.62396401 0.119222 0.65988898 0.090002999 0.65647697 + 0.079630002 0.619111 0.106216 0.67260599 0.090865999 0.66491598 0.119794 0.68308598 + 0.115073 0.73929101 0.104847 0.73738801 0.107127 0.68123698 0.15036701 0.68117899 + 0.13857201 0.74167001 0.20296501 0.67588699 0.188605 0.67491698 0.189579 0.66285801 + 0.20362601 0.66251802 0.147195 0.626531 0.151667 0.65643299 0.166945 0.62741399 0.16737901 + 0.66000301 0.17697801 0.67461699 0.167587 0.67613202 0.162404 0.67202801 0.152927 + 0.668616 0.194783 0.74415803 0.186536 0.74483001 0.188655 0.68420398 0.20135 0.68414599 + 0.171277 0.74575502 0.177095 0.68164003 0.19063 0.626095 0.204209 0.62344402 0.063816004 + 0.61940497 0.119627 0.672566 0.091986001 0.67648202 0.093838997 0.735349 0.16793901 + 0.85045201 0.16769899 0.85608703 0.15672299 0.85990101 0.154659 0.853854 0.145711 + 0.85559398 0.149114 0.86228102 0.1664 0.88219303 0.177314 0.87698299 0.18688001 0.88971198 + 0.17626899 0.89829499 0.14738201 0.88907802 0.15756799 0.88582999 0.165767 0.90540302 + 0.15202799 0.910676 0.142841 0.911964 0.13639 0.91839701 0.13877399 0.89306802 0.197715 + 0.91422701 0.19817001 0.905487 0.200683 0.90822703 0.14365201 0.93121803 0.138826 + 0.92145199 0.18498699 0.92990202 0.18458 0.930408 0.18198 0.92744899 0.184029 0.92614597 + 0.189055 0.91837198 0.20194601 0.93838102 0.196373 0.942168 0.199192 0.91812098 0.208969 + 0.935238 0.20724399 0.93582201 0.196227 0.91546202 0.215718 0.92150199 0.211807 0.92559999 + 0.20365 0.90232801 0.20575 0.90572703 0.206205 0.902089 0.20784099 0.90537202 0.193312 + 0.884794 0.196391 0.88300401 0.182732 0.85969901 0.187618 0.86901802 0.18492401 0.87188202 + 0.179176 0.86182499; + setAttr ".uvst[0].uvsp[750:999]" 0.170441 0.86621499 0.113864 0.87817699 0.129398 + 0.879143 0.129483 0.89534903 0.114599 0.89387703 0.173584 0.92499 0.18787301 0.91624999 + 0.127483 0.91164899 0.12881701 0.86476398 0.14119101 0.864546 0.138972 0.87759799 + 0.127178 0.92231798 0.118791 0.92304301 0.117325 0.91125 0.138521 0.92829001 0.13579901 + 0.92671299 0.098196998 0.94202602 0.096577004 0.93993199 0.099159002 0.93282801 0.099945001 + 0.93614799 0.101754 0.93579602 0.101304 0.93809402 0.194611 0.94363898 0.200307 0.94692701 + 0.19777501 0.94859898 0.205336 0.94334197 0.21008401 0.94126999 0.212106 0.94035 + 0.20317701 0.95132101 0.201157 0.95254999 0.21288 0.94569099 0.208415 0.94822198 + 0.214368 0.94477302 0.207692 0.95817298 0.20595901 0.95926702 0.212522 0.955338 0.21680599 + 0.95292997 0.218189 0.95210701 0.20989799 0.96168798 0.208243 0.96261197 0.214745 + 0.95912802 0.21885499 0.95647502 0.22026999 0.95535898 0.22605599 0.97215301 0.22295199 + 0.96356601 0.224686 0.96300697 0.226813 0.97206801 0.224308 0.97601002 0.223795 0.97515899 + 0.219638 0.97639298 0.220053 0.97584599 0.21346401 0.96962398 0.21474101 0.96836102 + 0.212579 0.96542102 0.21094599 0.96625298 0.21728 0.96322501 0.218586 0.96530002 + 0.22123501 0.96046102 0.22254699 0.95898902 0.16494399 0.93455899 0.167493 0.93313998 + 0.167694 0.93790102 0.167229 0.93836403 0.15165199 0.94247597 0.149675 0.94440401 + 0.148479 0.94098401 0.150511 0.93910301 0.158079 0.93784302 0.157196 0.93383098 0.168378 + 0.95667398 0.162513 0.95800698 0.154001 0.96032399 0.15614299 0.95972598 0.170551 + 0.95623302 0.157278 0.964145 0.154928 0.96501797 0.163385 0.96232802 0.169118 0.96101397 + 0.171331 0.960756 0.158271 0.96833599 0.15621801 0.96887302 0.164415 0.966842 0.170241 + 0.96532601 0.17195299 0.96485901 0.15987401 0.975227 0.158053 0.97570699 0.165898 + 0.973638 0.171472 0.97235501 0.17303 0.97200203 0.160713 0.97908199 0.15893599 0.97960001 + 0.16674601 0.977516 0.172244 0.976403 0.17386299 0.97614002 0.173365 0.993747 0.173806 + 0.98508298 0.17554501 0.98514098 0.174226 0.99424303 0.166769 0.99568999 0.161477 + 0.98757899 0.16285899 0.98698097 0.167284 0.99487901 0.170766 0.99637198 0.170571 + 0.99531901 0.16837101 0.98408997 0.161645 0.98318201 0.160065 0.98385298 0.167592 + 0.98153698 0.17316601 0.98092997 0.17489301 0.98065501 0.1893 0.95101398 0.183586 + 0.95336199 0.174806 0.929039 0.17733 0.95577002 0.175016 0.95643198 0.191431 0.950082 + 0.17941099 0.96099198 0.177215 0.96197599 0.18565901 0.95864302 0.19104899 0.95655698 + 0.193482 0.95545602 0.184939 0.97360301 0.186821 0.97791398 0.184846 0.97850698 0.182932 + 0.97426301 0.190603 0.97149903 0.19225 0.97578502 0.195709 0.96940601 0.197294 0.973827 + 0.19897901 0.97306001 0.197437 0.96868002 0.181427 0.96604103 0.179272 0.966757 0.187622 + 0.963853 0.193158 0.96140301 0.194931 0.96049201 0.19451401 0.99430799 0.188493 0.98711503 + 0.19018701 0.98659903 0.194791 0.99361402 0.199094 0.99322701 0.19950999 0.99442297 + 0.20230199 0.99057198 0.203086 0.99078703 0.200821 0.98234099 0.20238601 0.98170298 + 0.188512 0.98246503 0.194043 0.98038203 0.19511899 0.98259997 0.199111 0.97819 0.186719 + 0.98301798 0.20074099 0.97727603 0.209993 0.92723101 0.199518 0.91767299 0.218685 + 0.91789502 0.219441 0.91584098 0.21479701 0.92736101 0.212993 0.92954999 0.218027 + 0.92362797 0.220924 0.92044002 0.22238401 0.91891402 0.21703801 0.92967999 0.215665 + 0.931288 0.220322 0.92556202 0.223646 0.92216003 0.22463199 0.92095 0.222601 0.93419999 + 0.22105999 0.93505502 0.226299 0.93074399 0.229165 0.92686498 0.22975001 0.92563498 + 0.22459599 0.93599701 0.223456 0.93703502 0.227953 0.93241602 0.23110899 0.92876601 + 0.23203699 0.927854 0.240146 0.94226402 0.236534 0.93541598 0.237451 0.93439901 0.24078301 + 0.942083 0.239857 0.94504601 0.23913801 0.944552 0.23680601 0.94668502 0.236845 0.94610798 + 0.230188 0.94281 0.231038 0.94176197 0.232299 0.93681902 0.229479 0.93392599 0.233274 + 0.93110901 0.23453601 0.930641 0.226228 0.93949598 0.226998 0.93808401 0.127406 0.93696499 + 0.120426 0.93711001 0.120256 0.93483502 0.126873 0.93298799 0.135208 0.93502802 0.135418 + 0.93730402 0.138557 0.937361 0.138217 0.93512797 0.13484301 0.95838702 0.13573 0.95041502 + 0.13813999 0.950589 0.13661601 0.959113 0.128893 0.962506 0.128952 0.96385598 0.122769 + 0.95831001 0.121826 0.95047897 0.12809099 0.94947797 0.12792601 0.94651699 0.13592701 + 0.94666201 0.121816 0.94682002 0.121042 0.94180799 0.127884 0.94177997 0.135801 0.942083 + 0.13905799 0.94222999 0.138676 0.94668901 0.119866 0.95080602 0.119359 0.94703603 + 0.121816 0.94682002 0.121189 0.95842898 0.14495701 0.875875 0.151894 0.87354201 0.102663 + 0.94003999 0.10435 0.93876398 0.104872 0.94067401 0.102803 0.94090497 0.089212999 + 0.85166597 0.10009 0.85436302 0.099225 0.860659 0.088738002 0.85734397 0.106657 0.87695998 + 0.096276 0.878425 0.105694 0.86207801 0.107309 0.85506803 0.116683 0.85639799 0.115965 + 0.86446702 0.073407002 0.84662801 0.079002999 0.84849298 0.078143999 0.85329503 0.07209 + 0.85127902 0.074072003 0.86446398 0.084062003 0.86947399 0.068902001 0.86129802 0.108468 + 0.89461201 0.101152 0.89617598 0.069939002 0.93711197 0.080362 0.91954798 0.084806003 + 0.92556602 0.076081 0.940018; + setAttr ".uvst[0].uvsp[1000:1249]" 0.055716999 0.92547601 0.072131999 0.90794498 + 0.079218999 0.94669002 0.073535003 0.94431198 0.068046004 0.94135302 0.058013 0.93673301 + 0.057842001 0.93403101 0.061585002 0.937163 0.058256 0.937271 0.04947 0.924568 0.046312999 + 0.91872197 0.045894001 0.91259199 0.074824996 0.94753498 0.075260997 0.94762802 0.086864002 + 0.94450903 0.093994997 0.94703501 0.092439003 0.95111197 0.085423 0.94891 0.052933998 + 0.92883801 0.043494001 0.914563 0.042578999 0.90636897 0.040729001 0.908952 0.055041 + 0.88790101 0.062325001 0.89656001 0.066022001 0.87493902 0.062212002 0.872069 0.073991001 + 0.882581 0.081325002 0.89050901 0.052338 0.88480699 0.045788001 0.92276901 0.037811998 + 0.93660903 0.036860999 0.93537498 0.048898 0.94578201 0.048014998 0.94511598 0.041246001 + 0.90340298 0.039652001 0.906129 0.034712002 0.925511 0.031868 0.92120397 0.028750001 + 0.91544598 0.101578 0.91877198 0.091609001 0.93581402 0.091614 0.90198803 0.112513 + 0.912233 0.108445 0.91389799 0.114599 0.89387703 0.117325 0.91125 0.115048 0.92373103 + 0.111729 0.924559 0.118791 0.92304301 0.045708999 0.92069697 0.039822001 0.945687 + 0.042748 0.94179398 0.045857001 0.94899398 0.034139 0.94126701 0.037351999 0.94920802 + 0.041947 0.952245 0.031833 0.94532299 0.036630001 0.95850998 0.032710999 0.95609301 + 0.027512001 0.95246702 0.030985 0.95878899 0.034334999 0.961703 0.025214 0.95534003 + 0.027983001 0.96311098 0.022768 0.95913202 0.031312998 0.96529502 0.028508 0.96898198 + 0.02341 0.974684 0.019317999 0.973813 0.025008 0.96698397 0.016692 0.97009599 0.020305 + 0.96308798 0.046654999 0.949148 0.033085998 0.94013202 0.042856 0.952797 0.030692 + 0.94458199 0.037370998 0.95898598 0.026391 0.95167702 0.034885999 0.962152 0.024101 + 0.95472801 0.016373999 0.97052097 0.018847 0.97448802 0.023009 0.97513598 0.021454999 + 0.957995 0.018958 0.96170503 0.032225002 0.96564502 0.029788001 0.96909201 0.074767001 + 0.95906299 0.072828002 0.958372 0.094883002 0.95185602 0.096449003 0.947905 0.088151999 + 0.96389002 0.081435002 0.96166903 0.086714 0.9677 0.080216996 0.96574801 0.073415004 + 0.96357298 0.085167997 0.97128701 0.079154998 0.96934903 0.07265 0.96748 0.082672 + 0.97803199 0.077026002 0.97611398 0.071382999 0.97451502 0.081859 0.98191702 0.075882003 + 0.97996598 0.070013002 0.97835302 0.073298998 0.98774201 0.078682996 0.98960203 0.074325003 + 0.99687099 0.070678003 0.996535 0.067299999 0.99483198 0.067868002 0.98696101 0.080316998 + 0.98588097 0.074735999 0.98381901 0.068885997 0.98261797 0.090305001 0.96462899 0.088521004 + 0.968373 0.071696997 0.96283901 0.087181002 0.97206497 0.070781998 0.96682203 0.084679 + 0.978692 0.069541998 0.97392702 0.083687998 0.98252499 0.068346001 0.97795898 0.074221 + 0.99759001 0.070421003 0.99780101 0.067244999 0.99587399 0.080586001 0.99030101 0.082185999 + 0.98659402 0.067106001 0.98234701 0.066147998 0.98668802 0.069500998 0.95880699 0.067569003 + 0.957838 0.054405998 0.95166099 0.052797001 0.95105702 0.058777001 0.96048498 0.061395999 + 0.95490301 0.064873002 0.96314901 0.05192 0.95702398 0.051197998 0.97615302 0.053052001 + 0.97232902 0.058015998 0.97486699 0.056097001 0.97883499 0.045715999 0.97393298 0.047612 + 0.96995401 0.056740001 0.96473002 0.062252998 0.96739697 0.050776001 0.96197402 0.051860999 + 0.98714399 0.047063001 0.984622 0.049355999 0.980012 0.054106999 0.98308998 0.043802001 + 0.978019 0.041685998 0.98236197 0.047313001 0.99356401 0.043099001 0.99239397 0.039342001 + 0.98989999 0.066946998 0.96419603 0.0504 0.95628601 0.057509001 0.98006803 0.059599999 + 0.97570902 0.046169002 0.96936601 0.044174999 0.97350299 0.063929997 0.96848297 0.049082 + 0.961303 0.04259 0.99346101 0.046913002 0.99400598 0.039159998 0.99033701 0.053365 + 0.98830199 0.055511001 0.98440599 0.042102002 0.97749001 0.040178999 0.98191899 0.028252 + 0.92334503 0.031291001 0.92753601 0.025184 0.91766602 0.025986001 0.92447001 0.028667999 + 0.92861801 0.022668 0.91928601 0.022600001 0.93139601 0.020358 0.92761803 0.017111 + 0.92298698 0.017642001 0.929295 0.019924 0.93317598 0.014492 0.92470503 0.011376 + 0.92721403 0.014054 0.93208301 0.010255 0.934632 0.0078299996 0.93016601 0.016493 + 0.93522501 0.012445 0.937751 0.006664 0.94062698 0.0043279999 0.93833202 0.0033559999 + 0.93554997 0.028068 0.91386902 0.032157 0.92844403 0.035507001 0.926705 0.024564 + 0.91614503 0.029113 0.929627 0.022051999 0.91788399 0.023122 0.93229401 0.016251 + 0.92167699 0.020439999 0.93389797 0.013609 0.92338598 0.010699 0.92575502 0.0072889999 + 0.929115 0.01289 0.93849897 0.017298 0.935817 0.0060000001 0.94085097 0.0030139999 + 0.93595999 0.11079 0.93894303 0.110083 0.936189 0.115013 0.93521899 0.115644 0.93792498 + 0.117907 0.93757302 0.117582 0.935229 0.116573 0.94272202 0.112167 0.94404203 0.105976 + 0.94576401 0.117249 0.94757402 0.118769 0.94223601 0.113016 0.94849902 0.107056 0.95000499 + 0.118021 0.95130903 0.113946 0.95208699 0.108104 0.95347899 0.120099 0.959117 0.116349 + 0.96103799 0.110317 0.95948601 0.103921 0.94603002 0.106365 0.95394403 0.109453 0.96099502 + 0.117097 0.96392602 0.121042 0.94180799 0.105119 0.95052499 0.120426 0.93711001 0.120256 + 0.93483502 0.092041999 0.87420601 0.085219003 0.89363301 0.181035 0.84540802 0.18070699 + 0.85042 0.10583 0.92747998 0.0036319999 0.93878001 0.129813 0.856471 0.160511 0.87040901 + 0.145711 0.85559398 0.148104 0.83515102 0.15667 0.83393002 0.154659 0.853854 0.107309 + 0.85506803 0.10009 0.85436302 0.096547 0.83719099; + setAttr ".uvst[0].uvsp[1250:1499]" 0.104758 0.83908802 0.113543 0.840186 0.12633599 + 0.83885098 0.129813 0.856471 0.116683 0.85639799 0.182769 0.82109898 0.181035 0.84540802 + 0.16793901 0.85045201 0.174411 0.83075303 0.070846997 0.82511002 0.079002999 0.84849298 + 0.073407002 0.84662801 0.089212999 0.85166597 0.135847 0.836891 0.137045 0.856583 + 0.137045 0.856583 0.448493 0.53891897 0.49309099 0.536304 0.43079999 0.58338702 0.5 + 0.51463997 0.455542 0.50899601 0.40466899 0.37459999 0.440552 0.35821 0.44804701 + 0.43360299 0.416778 0.44255799 0.38488799 0.51627302 0.38018399 0.51559597 0.38848001 + 0.48485801 0.43463901 0.26182601 0.5 0.25973099 0.5 0.33173099 0.43832001 0.328219 + 0.32704201 0.30178601 0.35991499 0.29888901 0.37030399 0.38490799 0.33708 0.38794899 + 0.396777 0.45412001 0.37910101 0.40700001 0.105855 0.526968 0.110295 0.53736299 0.079706997 + 0.53676498 0.079031996 0.53163201 0.31940299 0.39412501 0.30877599 0.30609199 0.052990999 + 0.53213698 0.053619001 0.536677 0.043683998 0.536672 0.043593999 0.532722 0.40021399 + 0.35100999 0.25099999 0.46149501 0.280781 0.46108401 0.284872 0.51289397 0.25099999 + 0.51370001 0.5 0.43915999 0.5 0.36367899 0.27968001 0.44675401 0.25099999 0.448668 + 0.071411997 0.53469402 0.053619001 0.536677 0.052990999 0.53213698 0.069528997 0.52920598 + 0.390847 0.27828899 0.31060499 0.53540802 0.295697 0.51177001 0.29930499 0.51139599 + 0.31360701 0.52957898 0.098390996 0.571356 0.089048997 0.55405998 0.104343 0.55435902 + 0.077453002 0.55766499 0.057158999 0.559214 0.055388998 0.54794502 0.074432001 0.54618001 + 0.115361 0.58231097 0.13975599 0.56675297 0.14121 0.58938998 0.120328 0.562038 0.16216099 + 0.58150601 0.15799201 0.561589 0.17920899 0.55396903 0.187878 0.57041198 0.040465001 + 0.55882001 0.044888001 0.55918598 0.201924 0.55882698 0.044286001 0.54792899 0.040293001 + 0.54743099 0.295697 0.51177001 0.293697 0.45967501 0.29800299 0.45920601 0.29930499 + 0.51139599 0.20220201 0.54743499 0.25099999 0.339647 0.26479 0.332764 0.27858001 + 0.43242401 0.25099999 0.43584001 0.079706997 0.53676498 0.071411997 0.53469402 0.069528997 + 0.52920598 0.079031996 0.53163201 0.42852199 0.20355099 0.38148001 0.205568 0.37394699 + 0.16391 0.5 0.199909 0.349527 0.212871 0.34006 0.16773599 0.317004 0.215624 0.30664501 + 0.173186 0.29814899 0.218059 0.274575 0.22558101 0.26966599 0.17471001 0.28833199 + 0.174721 0.28678301 0.319428 0.29899201 0.413275 0.28898099 0.44487301 0.29208201 + 0.44424599 0.47728699 0.76076698 0.43662801 0.75565702 0.443223 0.70998502 0.4594 + 0.75734502 0.12843999 0.064465001 0.37176999 0.707569 0.219897 0.404066 0.192729 + 0.40838301 0.178913 0.407897 0.40514201 0.12055 0.424519 0.15526301 0.37394699 0.16391 + 0.36816299 0.131908 0.19462 0.03249 0.19159 0.029759999 0.40630999 0.76308697 0.290252 + 0.43641701 0.29208201 0.44424599 0.28898099 0.44487301 0.289617 0.44064501 0.5 0.53803998 + 0.45440301 0.059316002 0.193426 0.444143 0.21949001 0.426296 0.20021901 0.44859901 + 0.25099999 0.23310401 0.25099999 0.17469899 0.28588101 0.44549999 0.27968001 0.44675401 + 0.27858001 0.43242401 0.28350201 0.43050599 0.27968001 0.44675401 0.28588101 0.44549999 + 0.28939199 0.460145 0.280781 0.46108401 0.284872 0.51289397 0.29208899 0.51214498 + 0.30159801 0.55289602 0.284872 0.51289397 0.29208899 0.51214498 0.307603 0.541237 + 0.39899901 0.51830298 0.38959101 0.516949 0.27737999 0.138539 0.28833199 0.174721 + 0.42888701 0.51051599 0.289693 0.713193 0.31482199 0.71056098 0.38633499 0.53995401 + 0.42016801 0.54090798 0.391458 0.58829302 0.358311 0.593503 0.32185599 0.59969902 + 0.34502199 0.55883998 0.365201 0.52581 0.37048399 0.52934599 0.34240699 0.54087198 + 0.341535 0.53488201 0.34240699 0.54087198 0.341535 0.53488201 0.37048399 0.52934599 + 0.365201 0.52581 0.38018399 0.51559597 0.38488799 0.51627302 0.34502199 0.55883998 + 0.343279 0.54686099 0.38633499 0.53995401 0.34502199 0.55883998 0.343279 0.54686099 + 0.37576801 0.53288198 0.39899901 0.51830298 0.38633499 0.53995401 0.37576801 0.53288198 + 0.38959101 0.516949 0.101416 0.516572 0.078357004 0.52649999 0.067644998 0.523718 + 0.078357004 0.52649999 0.052361999 0.52759701 0.067644998 0.523718 0.052361999 0.52759701 + 0.043503001 0.52877098 0.110295 0.53736299 0.125295 0.54176402 0.079706997 0.53676498 + 0.071411997 0.53469402 0.040121 0.53604198 0.17054 0.53752601 0.202481 0.53604299 + 0.153824 0.54167199 0.138302 0.54411697 0.288423 0.42858699 0.872114 0.476886 0.85035002 + 0.47040999 0.84838498 0.41411901 0.87151098 0.41718301 0.66540998 0.13846301 0.70643699 + 0.14166699 0.69335502 0.173186 0.65994 0.16773599 0.56869602 0.101426 0.575481 0.15526301 + 0.89793801 0.42235899 0.88863897 0.48251501 0.93139499 0.43252099 0.91925198 0.48688301 + 0.74900001 0.119172 0.74900001 0.17469899 0.73033398 0.17471001 0.71166801 0.174721 + 0.69335502 0.173186 0.70643699 0.14166699 0.72262001 0.138539 0.93164003 0.48776099 + 0.94597399 0.43677801 0.63183701 0.131908 0.66540998 0.13846301 0.65994 0.16773599 + 0.62605298 0.16391 0.54559702 0.059316002 0.96580702 0.39894 0.99136001 0.40076801 + 0.99201602 0.40735799 0.96779603 0.40503299 0.95605099 0.42493501 0.94972301 0.42316699 + 0.800942 0.220339 0.80381697 0.198746 0.82261902 0.20158701 0.817828 0.225721 0.83340901 + 0.20274401 0.83171898 0.22684699 0.86417401 0.227791 0.85311699 0.228788 0.85361898 + 0.20308299; + setAttr ".uvst[0].uvsp[1500:1749]" 0.86280698 0.203187 0.86195099 0.16204301 + 0.83880198 0.164297 0.86884999 0.170432 0.82994401 0.16281299 0.808963 0.15559 0.917108 + 0.16384999 0.90936798 0.165041 0.90794998 0.15956099 0.91590202 0.15753099 0.92502099 + 0.223042 0.91727 0.223286 0.914653 0.19499101 0.92362201 0.19604599 0.93720001 0.16593499 + 0.951024 0.19863801 0.94032401 0.15799101 0.87424999 0.175473 0.87061602 0.20242 + 0.96212101 0.198476 0.89551097 0.16285001 0.89673901 0.16828001 0.90206498 0.224255 + 0.87370801 0.22772101 0.90039098 0.195107 0.88350397 0.25560099 0.87697703 0.241402 + 0.90268099 0.240601 0.91129202 0.25867599 0.91721201 0.239784 0.92535698 0.238268 + 0.92606002 0.252471 0.91023898 0.24047001 0.919016 0.25672999 0.90274799 0.166614 + 0.901272 0.161212 0.90656698 0.194747 0.90889198 0.223727 0.933792 0.39591199 0.95278502 + 0.43793499 0.89814502 0.39829299 0.872082 0.40432301 0.94451201 0.48614901 0.85185301 + 0.366734 0.81798702 0.367304 0.82906699 0.292317 0.85061097 0.29113299 0.78517199 + 0.235964 0.79222101 0.229232 0.813963 0.237304 0.810085 0.244197 0.80677801 0.25962901 + 0.77467602 0.248767 0.83094901 0.235789 0.83109099 0.243186 0.80492198 0.27157301 + 0.80562598 0.28147599 0.76929998 0.27202299 0.77177501 0.26069599 0.803316 0.366844 + 0.80644 0.29224801 0.77154601 0.36175099 0.765782 0.29558399 0.84903598 0.40522501 + 0.85396498 0.252103 0.86597598 0.250882 0.866633 0.26365101 0.85498703 0.26328099 + 0.88505501 0.262862 0.86673999 0.27113101 0.85394198 0.27175301 0.86632198 0.29458499 + 0.87077898 0.36596301 0.80851299 0.42065799 0.80657399 0.444143 0.781066 0.41485101 + 0.86684602 0.27860999 0.85177499 0.28181499 0.81914699 0.45779201 0.82183599 0.41919899 + 0.830006 0.271752 0.82920003 0.285743 0.83080602 0.262389 0.85458702 0.242578 0.93712002 + 0.298915 0.93200803 0.28025901 0.94620103 0.27731201 0.951024 0.29442099 0.89767498 + 0.363967 0.98118299 0.36411199 0.95722401 0.36465299 0.88855201 0.29982099 0.92840803 + 0.26034501 0.94447201 0.26204801 0.94160199 0.235558 0.94994497 0.232288 0.945916 + 0.240989 0.943977 0.252065 0.92008299 0.30081999 0.93024701 0.36534101 0.94498098 + 0.36490101 0.93017399 0.30026299 0.94914597 0.401007 0.91402602 0.265643 0.92108601 + 0.26165 0.91542798 0.28337801 0.88631499 0.28260601 0.92515498 0.28259301 0.95868897 + 0.221645 0.94743401 0.22379901 0.99125201 0.399165 0.96476001 0.39707801 0.86569601 + 0.241409 0.58177698 0.110988 0.59485799 0.12055 0.81914598 0.45779201 0.81469297 + 0.464872 0.79978102 0.44859901 0.80657399 0.444143 0.84895098 0.083989002 0.85051101 + 0.090202004 0.83938998 0.091020003 0.83946002 0.08422 0.87180001 0.10383 0.87290001 + 0.096500002 0.89346999 0.09973 0.89230001 0.10638 0.83961999 0.097089998 0.82867002 + 0.099339999 0.82786 0.095720001 0.84907198 0.119863 0.85056502 0.096280999 0.86576998 + 0.10118 0.86597002 0.12074 0.86558002 0.092749998 0.840469 0.1182 0.82673001 0.1147 + 0.87660003 0.084279999 0.86647999 0.08585 0.89295 0.092649996 0.89020002 0.12358 + 0.87193 0.12158 0.90556002 0.10606 0.90584999 0.1008 0.92477 0.092820004 0.92370999 + 0.103 0.90173 0.10024 0.90057999 0.1064 0.90644002 0.12298 0.90091002 0.12348 0.89455003 + 0.1236 0.89583999 0.10605 0.89692003 0.09984 0.90592998 0.050560001 0.90752 0.070370004 + 0.903 0.069399998 0.90043002 0.049855001 0.823735 0.07068 0.83410001 0.067460001 + 0.82502002 0.086860001 0.84583098 0.064400002 0.86327499 0.065485001 0.88177001 0.07745 + 0.87848997 0.079680003 0.874165 0.061790001 0.87728 0.060024999 0.91139001 0.050889999 + 0.91165 0.071419999 0.91830498 0.052864999 0.91676998 0.074589998 0.89811999 0.068899997 + 0.89432502 0.050285 0.89412999 0.069870003 0.88853502 0.052354999 0.90434003 0.030750001 + 0.89785999 0.030309999 0.90153998 0.0232 0.90445 0.02421 0.89332998 0.087379999 0.89341998 + 0.083999999 0.90574002 0.085040003 0.90429002 0.081820004 0.90651 0.08969 0.92106003 + 0.077880003 0.88985997 0.071620002 0.89415002 0.076289997 0.89332998 0.081119999 + 0.88464999 0.074929997 0.90175003 0.09144 0.90167999 0.086860001 0.89727002 0.092629999 + 0.89749002 0.087729998 0.90262002 0.079070002 0.90087003 0.083849996 0.89999998 0.081150003 + 0.89725 0.084559999 0.89665997 0.080940001 0.90158999 0.077660002 0.8994 0.077069998 + 0.89639997 0.076339997 0.81039 0.04183 0.80791998 0.033640001 0.80983001 0.031380001 + 0.81586999 0.038860001 0.82047999 0.035300002 0.81207001 0.03035 0.85364002 0.027519999 + 0.85497999 0.032109998 0.85193998 0.032469999 0.85162002 0.02685 0.84942001 0.031950001 + 0.85003 0.02743 0.86208999 0.02867 0.8617 0.032219999 0.85891998 0.03184 0.86072999 + 0.02898 0.86339003 0.02915 0.86409998 0.031810001 0.82643002 0.044100001 0.82874 + 0.050700001 0.82280999 0.04733 0.9206 0.022329999 0.91892999 0.02785 0.91215003 0.02674 + 0.91483003 0.021081001 0.90322 0.02018 0.90583003 0.01425 0.90876001 0.01626 0.83454001 + 0.04727 0.828664 0.043294001 0.9023 0.020400001 0.91113001 0.03036 0.90724999 0.023940001 + 0.91077 0.01863 0.82664001 0.04022 0.82688999 0.040580001 0.91983998 0.03114 0.822299 + 0.038011 0.82441002 0.035259999 0.81844002 0.050330002 0.81291002 0.044810001 0.81805998 + 0.041979998 0.81559998 0.052409999 0.81059998 0.046670001 0.82244998 0.054499999 + 0.81883001 0.057459999 0.91752303 0.017426001 0.92255998 0.018610001 0.80615097 0.039198998 + 0.805044 0.036033999; + setAttr ".uvst[0].uvsp[1750:1999]" 0.80537999 0.03249 0.80644399 0.032972001 + 0.81198001 0.028525 0.81906098 0.029614 0.82261997 0.03176 0.81203699 0.029571 0.90850002 + 0.01078 0.91139001 0.01247 0.82261997 0.03176 0.90448999 0.01349 0.90275002 0.01302 + 0.90336001 0.0055399998 0.90424001 0.0051000002 0.91365999 0.01471 0.91987997 0.00728 + 0.92163998 0.00997 0.91742003 0.00599 0.80900502 0.030439001 0.83762002 0.040199999 + 0.84010899 0.038844999 0.84271002 0.044810001 0.83314002 0.04411 0.83837998 0.037020002 + 0.83854997 0.037039999 0.89188999 0.023940001 0.89229 0.022430001 0.89273 0.021779999 + 0.89322001 0.02351 0.89052999 0.03167 0.89796001 0.023870001 0.89515001 0.01784 0.89804 + 0.018510001 0.89310002 0.0165 0.90044999 0.01791 0.89077002 0.01859 0.89226002 0.01859 + 0.83455998 0.035659999 0.83732998 0.03469 0.83305001 0.030540001 0.83539999 0.029209999 + 0.89385998 0.01121 0.89589 0.01173 0.90219998 0.01749 0.82661998 0.038989998 0.82738 + 0.038449999 0.89911002 0.01271 0.83095002 0.037020002 0.82599002 0.032820001 0.82416999 + 0.03311 0.82547998 0.02541 0.82585001 0.025830001 0.82928002 0.024700001 0.82963002 + 0.02437 0.89906001 0.0038000001 0.89971 0.00465 0.90148002 0.0054100002 0.82959998 + 0.03184 0.90180999 0.00367 0.82745999 0.02441 0.82751 0.024870001 0.84656 0.0394 + 0.842767 0.040273 0.85108 0.04487 0.84842002 0.039407 0.84755999 0.037519999 0.84798998 + 0.037919998 0.88436002 0.02696 0.88328999 0.027589999 0.88358998 0.024940001 0.88375002 + 0.024879999 0.88174999 0.02372 0.88334 0.022779999 0.88902998 0.025560001 0.88823003 + 0.01918 0.88529998 0.01905 0.83749998 0.033969998 0.83919001 0.034230001 0.88369 + 0.01877 0.8423 0.034389999 0.84543002 0.033750001 0.84543002 0.031169999 0.84218001 + 0.031539999 0.83881003 0.03115 0.89142001 0.016209999 0.88822001 0.016589999 0.88514 + 0.01636 0.83709002 0.03111 0.89275998 0.01616 0.88325 0.01646 0.84718001 0.030889999 + 0.84707999 0.033459999 0.84816003 0.031649999 0.84943002 0.035399999 0.84847999 0.035349999 + 0.88134003 0.020059999 0.88340998 0.019540001 0.84337002 0.024250001 0.84145999 0.023949999 + 0.88924998 0.0097500002 0.89087999 0.0096500004 0.88744003 0.0094499998 0.88731003 + 0.0087000001 0.84380001 0.023530001 0.83959001 0.024630001 0.83885002 0.023700001 + 0.89178997 0.0089699998 0.84140998 0.022919999 0.88954997 0.0081099998 0.86006999 + 0.045120001 0.85525501 0.040185999 0.85803002 0.038600001 0.87515002 0.029619999 + 0.87703001 0.032000002 0.87448001 0.03077 0.87480998 0.029379999 0.87743002 0.039489999 + 0.88293999 0.034839999 0.883645 0.055555001 0.85114002 0.041540001 0.85643399 0.037501998 + 0.85677999 0.037470002 0.85187 0.035969999 0.85496998 0.035500001 0.85655999 0.035440002 + 0.87664998 0.024800001 0.87484002 0.02489 0.88117999 0.03067 0.87936997 0.02437 0.87861001 + 0.02083 0.87576002 0.02111 0.87629998 0.01667 0.87676001 0.017240001 0.87386 0.02134 + 0.85402 0.02706 0.85659999 0.031629998 0.87987 0.01646 0.88037997 0.01565 0.84959 + 0.02695 0.87842 0.01729 0.85168999 0.026419999 0.87840998 0.01567 0.87278998 0.042599998 + 0.86984003 0.043900002 0.86786002 0.037349999 0.87013 0.0361 0.87529999 0.04115 0.87260002 + 0.034079999 0.86562997 0.038249999 0.86651999 0.04465 0.86107999 0.039620001 0.85852998 + 0.03461 0.86144 0.035039999 0.86466002 0.03427 0.86655003 0.03365 0.86825001 0.032930002 + 0.86566001 0.03114 0.86680001 0.03036 0.87028998 0.03131 0.87216002 0.02891 0.86838001 + 0.029270001 0.86989999 0.0273 0.85699999 0.034230001 0.87300998 0.02712 0.87071002 + 0.02572 0.86590999 0.02813 0.86686999 0.02754 0.85768002 0.031339999 0.86716998 0.026550001 + 0.86701 0.025830001 0.86057001 0.02833 0.86522001 0.02802 0.86368001 0.02847 0.86593002 + 0.02674 0.86215001 0.028100001 0.92041999 0.12182 0.82274997 0.083120003 0.82078999 + 0.070289999 0.87997502 0.05804 0.74487799 0.854577 0.65510201 0.992989 0.65209502 + 0.95466501 0.71909201 0.83529598 0.65052599 0.912269 0.64595401 0.867621 0.68339998 + 0.80131102 0.70091403 0.81742501 0.688474 0.76030701 0.71138602 0.76835901 0.73041201 + 0.77324897 0.75 0.77787298 0.66311699 0.78190702 0.65170598 0.77804297 0.65219599 + 0.75519103 0.66041797 0.75 0.64017999 0.80046099 0.62019199 0.79049301 0.62468803 + 0.77194202 0.633461 0.73890102 0.64090103 0.73512697 0.731978 0.71668899 0.75 0.71837902 + 0.65883303 0.707928 0.636801 0.706074 0.64101601 0.80895197 0.61018199 0.86517102 + 0.59332299 0.909904 0.54106802 0.97854799 0.56820297 0.94637603 0.71346402 0.60175699 + 0.69840199 0.55289602 0.74900001 0.553029 0.74900001 0.60268599 0.74900001 0.51370001 + 0.715128 0.51289397 0.51612699 0.73583901 0.50526899 0.748941 0.51026797 0.804492 + 0.50798702 0.78716898 0.52378899 0.76963598 0.58273399 0.71065903 0.56149697 0.68910801 + 0.581137 0.68333501 0.60784101 0.71113998 0.52173299 0.668612 0.52522099 0.65965903 + 0.51239598 0.83349597 0.55241901 0.80474901 0.55632699 0.82821798 0.534361 0.83085698 + 0.531344 0.80462098 0.50730801 0.77761197 0.58040202 0.85054302 0.553222 0.874053 + 0.52529103 0.88780099 0.55691803 0.770657 0.58920401 0.78007698 0.599078 0.65758198 + 0.59404302 0.66579401 0.53111899 0.63751501 0.53376198 0.62544203 0.51032603 0.71673799 + 0.52604198 0.57857001 0.537835 0.77014703 0.92360401 0.73531199 0.93942499 0.74194902 + 0.92473298 0.82950902 0.91524398 0.83408803 0.95080602 0.66275901 0.95003498 0.67622501 + 0.941926 0.670237; + setAttr ".uvst[0].uvsp[2000:2249]" 0.94267702 0.66013199 0.953529 0.623496 0.94717002 + 0.62215197 0.95052701 0.68450499 0.94156599 0.67809099 0.94673699 0.74484199 0.93013 + 0.66387701 0.93085498 0.65670598 0.92920703 0.67154402 0.84087998 0.68100899 0.85154998 + 0.74251199 0.841102 0.74305803 0.83399498 0.68066299 0.89367598 0.65926301 0.88077801 + 0.65988898 0.88062298 0.62396401 0.89730299 0.61998498 0.92036998 0.619111 0.90999699 + 0.65647697 0.89378399 0.67260599 0.90913397 0.66491598 0.88020599 0.68308598 0.89287299 + 0.68123698 0.89515299 0.73738801 0.88492697 0.73929101 0.84963298 0.68117899 0.86142802 + 0.74167001 0.79703498 0.67588699 0.79637402 0.66251802 0.81042099 0.66285801 0.81139499 + 0.67491698 0.848333 0.65643299 0.85280502 0.626531 0.83262098 0.66000301 0.83305502 + 0.62741399 0.83241302 0.67613202 0.82302201 0.67461699 0.84707302 0.668616 0.837596 + 0.67202801 0.80521703 0.74415803 0.79865003 0.68414599 0.81134498 0.68420398 0.81346399 + 0.74483001 0.822905 0.68164003 0.82872301 0.74575502 0.80936998 0.626095 0.79579097 + 0.62344402 0.93618399 0.61940497 0.880373 0.672566 0.90616101 0.735349 0.908014 0.67648202 + 0.83206099 0.85045201 0.84534103 0.853854 0.84327698 0.85990101 0.83230102 0.85608703 + 0.854289 0.85559398 0.85088599 0.86228102 0.83359998 0.88219303 0.82373101 0.89829499 + 0.81312001 0.88971198 0.82268602 0.87698299 0.85261798 0.88907802 0.84797198 0.910676 + 0.83423299 0.90540302 0.84243202 0.88582999 0.85715902 0.911964 0.86122602 0.89306802 + 0.86361003 0.91839701 0.80228502 0.91422701 0.799317 0.90822703 0.80182999 0.905487 + 0.85634798 0.93121803 0.86117399 0.92145199 0.81501299 0.92990202 0.81597102 0.92614597 + 0.81801999 0.92744899 0.81541997 0.930408 0.81094497 0.91837198 0.80362701 0.942168 + 0.79805398 0.93838102 0.80080801 0.91812098 0.80377299 0.91546202 0.79275602 0.93582201 + 0.791031 0.935238 0.78819299 0.92559999 0.78428203 0.92150199 0.79425001 0.90572703 + 0.79635 0.90232801 0.79215902 0.90537202 0.79379499 0.902089 0.80668801 0.884794 + 0.80360901 0.88300401 0.81726801 0.85969901 0.82082403 0.86182499 0.81507599 0.87188202 + 0.81238198 0.86901802 0.82955903 0.86621499 0.886136 0.87817699 0.88540101 0.89387703 + 0.87051702 0.89534903 0.87060201 0.879143 0.81212699 0.91624999 0.82641602 0.92499 + 0.87251699 0.91164899 0.87118298 0.86476398 0.86102802 0.87759799 0.85880899 0.864546 + 0.88267499 0.91125 0.88120902 0.92304301 0.87282199 0.92231798 0.86420101 0.92671299 + 0.86147898 0.92829001 0.90180302 0.94202602 0.90005499 0.93614799 0.900841 0.93282801 + 0.90342301 0.93993199 0.89869601 0.93809402 0.89824599 0.93579602 0.80538899 0.94363898 + 0.80222499 0.94859898 0.79969299 0.94692701 0.79466403 0.94334197 0.78991598 0.94126999 + 0.78789401 0.94035 0.79884303 0.95254999 0.79682302 0.95132101 0.79158503 0.94822198 + 0.78711998 0.94569099 0.78563201 0.94477302 0.79404098 0.95926702 0.79230797 0.95817298 + 0.78747803 0.955338 0.78319401 0.95292997 0.781811 0.95210701 0.79175699 0.96261197 + 0.79010201 0.96168798 0.78525501 0.95912802 0.78114498 0.95647502 0.77973002 0.95535898 + 0.77394402 0.97215301 0.77318698 0.97206801 0.77531397 0.96300697 0.77704799 0.96356601 + 0.776205 0.97515899 0.77569199 0.97601002 0.77994698 0.97584599 0.78036201 0.97639298 + 0.78525901 0.96836102 0.78653598 0.96962398 0.78905398 0.96625298 0.78742099 0.96542102 + 0.78141397 0.96530002 0.78272003 0.96322501 0.77876502 0.96046102 0.77745301 0.95898902 + 0.83505601 0.93455899 0.832771 0.93836403 0.83230603 0.93790102 0.83250701 0.93313998 + 0.84834802 0.94247597 0.84948897 0.93910301 0.85152102 0.94098401 0.85032499 0.94440401 + 0.84192097 0.93784302 0.84280401 0.93383098 0.83748698 0.95800698 0.831622 0.95667398 + 0.845999 0.96032399 0.84385699 0.95972598 0.829449 0.95623302 0.84507197 0.96501797 + 0.842722 0.964145 0.83661503 0.96232802 0.83088201 0.96101397 0.82866901 0.960756 + 0.84378201 0.96887302 0.84172899 0.96833599 0.835585 0.966842 0.829759 0.96532601 + 0.82804698 0.96485901 0.84194702 0.97570699 0.84012598 0.975227 0.83410197 0.973638 + 0.82852799 0.97235501 0.82696998 0.97200203 0.84106398 0.97960001 0.83928698 0.97908199 + 0.83325398 0.977516 0.82775599 0.976403 0.82613701 0.97614002 0.826635 0.993747 0.82577401 + 0.99424303 0.82445502 0.98514098 0.82619399 0.98508298 0.83323097 0.99568999 0.83271599 + 0.99487901 0.83714098 0.98698097 0.83852297 0.98757899 0.829234 0.99637198 0.82942897 + 0.99531901 0.83162898 0.98408997 0.839935 0.98385298 0.838355 0.98318201 0.83240801 + 0.98153698 0.82683402 0.98092997 0.82510698 0.98065501 0.825194 0.929039 0.816414 + 0.95336199 0.8107 0.95101398 0.82266998 0.95577002 0.82498401 0.95643198 0.80856901 + 0.950082 0.82278502 0.96197599 0.82058901 0.96099198 0.81434101 0.95864302 0.80895102 + 0.95655698 0.80651802 0.95545602 0.81506097 0.97360301 0.81706798 0.97426301 0.81515402 + 0.97850698 0.81317902 0.97791398 0.80939698 0.97149903 0.80774999 0.97578502 0.80429101 + 0.96940601 0.802706 0.973827 0.80102098 0.97306001 0.80256301 0.96868002 0.820728 + 0.966757 0.818573 0.96604103 0.81237799 0.963853 0.80684203 0.96140301 0.80506903 + 0.96049201 0.80548602 0.99430799 0.80520898 0.99361402 0.80981302 0.98659903 0.81150699 + 0.98711503 0.80049002 0.99442297 0.800906 0.99322701 0.79691398 0.99078703 0.79769802 + 0.99057198 0.79761398 0.98170298 0.79917902 0.98234099 0.81148797 0.98246503 0.80488098 + 0.98259997 0.80595702 0.98038203 0.80088902 0.97819 0.813281 0.98301798 0.79925901 + 0.97727603 0.790007 0.92723101 0.80048198 0.91767299; + setAttr ".uvst[0].uvsp[2250:2499]" 0.78131503 0.91789502 0.780559 0.91584098 + 0.78700697 0.92954999 0.78520298 0.92736101 0.781973 0.92362797 0.77907598 0.92044002 + 0.77761602 0.91891402 0.78433502 0.931288 0.78296202 0.92967999 0.77967799 0.92556202 + 0.77635401 0.92216003 0.77536798 0.92095 0.77894002 0.93505502 0.777399 0.93419999 + 0.77370101 0.93074399 0.77083498 0.92686498 0.77025002 0.92563498 0.77654397 0.93703502 + 0.77540398 0.93599701 0.77204698 0.93241602 0.76889098 0.92876601 0.76796299 0.927854 + 0.75985402 0.94226402 0.75921702 0.942083 0.76254898 0.93439901 0.763466 0.93541598 + 0.76086199 0.944552 0.76014298 0.94504601 0.76315498 0.94610798 0.76319402 0.94668502 + 0.76896203 0.94176197 0.76981199 0.94281 0.76672602 0.93110901 0.77052099 0.93392599 + 0.76770103 0.93681902 0.76546401 0.930641 0.773772 0.93949598 0.77300203 0.93808401 + 0.872594 0.93696499 0.87312698 0.93298799 0.87974399 0.93483502 0.879574 0.93711001 + 0.864582 0.93730402 0.86479199 0.93502802 0.86144298 0.937361 0.86178303 0.93512797 + 0.86515701 0.95838702 0.86338401 0.959113 0.86185998 0.950589 0.86426997 0.95041502 + 0.87110698 0.962506 0.87104797 0.96385598 0.87190902 0.94947797 0.87817401 0.95047897 + 0.877231 0.95831001 0.87207401 0.94651699 0.86407298 0.94666201 0.87818402 0.94682002 + 0.87211603 0.94177997 0.87895799 0.94180799 0.86419898 0.942083 0.86132401 0.94668901 + 0.86094201 0.94222999 0.87818402 0.94682002 0.88064098 0.94703603 0.88013399 0.95080602 + 0.878811 0.95842898 0.85504299 0.875875 0.84810603 0.87354201 0.89733702 0.94003999 + 0.89719701 0.94090497 0.89512801 0.94067401 0.89565003 0.93876398 0.91078699 0.85166597 + 0.91126198 0.85734397 0.90077502 0.860659 0.89990997 0.85436302 0.89334297 0.87695998 + 0.894306 0.86207801 0.90372401 0.878425 0.89269102 0.85506803 0.88403499 0.86446702 + 0.88331699 0.85639799 0.92659301 0.84662801 0.92790997 0.85127902 0.92185599 0.85329503 + 0.92099702 0.84849298 0.925928 0.86446398 0.91593802 0.86947399 0.93109798 0.86129802 + 0.891532 0.89461201 0.898848 0.89617598 0.93006098 0.93711197 0.92391902 0.940018 + 0.91519397 0.92556602 0.91963798 0.91954798 0.92786801 0.90794498 0.94428301 0.92547601 + 0.92078102 0.94669002 0.92646497 0.94431198 0.93195403 0.94135302 0.94198698 0.93673301 + 0.94174403 0.937271 0.93841499 0.937163 0.94215798 0.93403101 0.95410597 0.91259199 + 0.95368701 0.91872197 0.95052999 0.924568 0.92517501 0.94753498 0.924739 0.94762802 + 0.91313601 0.94450903 0.91457701 0.94891 0.907561 0.95111197 0.90600502 0.94703501 + 0.94706601 0.92883801 0.95650601 0.914563 0.957421 0.90636897 0.95927101 0.908952 + 0.937675 0.89656001 0.94495898 0.88790101 0.93778801 0.872069 0.93397802 0.87493902 + 0.926009 0.882581 0.91867501 0.89050901 0.947662 0.88480699 0.95421201 0.92276901 + 0.963139 0.93537498 0.96218801 0.93660903 0.95110202 0.94578201 0.951985 0.94511598 + 0.958754 0.90340298 0.96034801 0.906129 0.96813202 0.92120397 0.96528798 0.925511 + 0.97125 0.91544598 0.898422 0.91877198 0.90838599 0.90198803 0.908391 0.93581402 + 0.88748699 0.912233 0.89155501 0.91389799 0.88540101 0.89387703 0.88267499 0.91125 + 0.88495201 0.92373103 0.88827097 0.924559 0.88120902 0.92304301 0.95429099 0.92069697 + 0.96017802 0.945687 0.95414299 0.94899398 0.95725203 0.94179398 0.96586102 0.94126701 + 0.96264797 0.94920802 0.95805299 0.952245 0.96816701 0.94532299 0.96728897 0.95609301 + 0.96337003 0.95850998 0.97248799 0.95246702 0.969015 0.95878899 0.96566498 0.961703 + 0.97478598 0.95534003 0.97723198 0.95913202 0.97201699 0.96311098 0.968687 0.96529502 + 0.97149199 0.96898198 0.97499198 0.96698397 0.98068202 0.973813 0.97658998 0.974684 + 0.97969502 0.96308798 0.98330802 0.97009599 0.953345 0.949148 0.966914 0.94013202 + 0.95714402 0.952797 0.96930802 0.94458199 0.96262902 0.95898598 0.97360897 0.95167702 + 0.965114 0.962152 0.97589898 0.95472801 0.98362601 0.97052097 0.98115301 0.97448802 + 0.976991 0.97513598 0.97854501 0.957995 0.98104203 0.96170503 0.96777499 0.96564502 + 0.97021198 0.96909201 0.92717201 0.958372 0.92523301 0.95906299 0.90511698 0.95185602 + 0.90355098 0.947905 0.91856498 0.96166903 0.91184801 0.96389002 0.919783 0.96574801 + 0.91328597 0.9677 0.92658502 0.96357298 0.92084497 0.96934903 0.914832 0.97128701 + 0.92734998 0.96748 0.92297399 0.97611398 0.917328 0.97803199 0.928617 0.97451502 + 0.92411798 0.97996598 0.91814101 0.98191702 0.92998701 0.97835302 0.92670101 0.98774201 + 0.929322 0.996535 0.92567497 0.99687099 0.92131698 0.98960203 0.93213201 0.98696101 + 0.93269998 0.99483198 0.925264 0.98381901 0.91968298 0.98588097 0.93111402 0.98261797 + 0.90969503 0.96462899 0.911479 0.968373 0.928303 0.96283901 0.91281903 0.97206497 + 0.92921799 0.96682203 0.91532099 0.978692 0.93045801 0.97392702 0.91631198 0.98252499 + 0.93165398 0.97795898 0.92957902 0.99780101 0.92577899 0.99759001 0.93275499 0.99587399 + 0.91941398 0.99030101 0.91781402 0.98659402 0.93289399 0.98234701 0.93385202 0.98668802 + 0.93049902 0.95880699 0.93243098 0.957838 0.94720298 0.95105702 0.94559401 0.95166099 + 0.94122303 0.96048498 0.93512702 0.96314901 0.938604 0.95490301 0.94808 0.95702398 + 0.94880199 0.97615302 0.94390303 0.97883499 0.941984 0.97486699 0.94694799 0.97232902 + 0.95238799 0.96995401 0.95428401 0.97393298 0.94326001 0.96473002 0.937747 0.96739697 + 0.949224 0.96197402 0.94813901 0.98714399 0.94589299 0.98308998 0.95064402 0.980012 + 0.95293701 0.984622 0.95619798 0.978019 0.958314 0.98236197 0.95690101 0.99239397; + setAttr ".uvst[0].uvsp[2500:2749]" 0.95268703 0.99356401 0.96065801 0.98989999 + 0.93305302 0.96419603 0.94959998 0.95628601 0.94249099 0.98006803 0.9404 0.97570902 + 0.95383102 0.96936601 0.95582497 0.97350299 0.93607002 0.96848297 0.95091802 0.961303 + 0.95740998 0.99346101 0.95308697 0.99400598 0.96083999 0.99033701 0.94663501 0.98830199 + 0.944489 0.98440599 0.95789802 0.97749001 0.95982099 0.98191899 0.97174799 0.92334503 + 0.96870899 0.92753601 0.97481602 0.91766602 0.97401398 0.92447001 0.97133201 0.92861801 + 0.977332 0.91928601 0.97964197 0.92761803 0.9774 0.93139601 0.982889 0.92298698 0.98235798 + 0.929295 0.98007601 0.93317598 0.98550802 0.92470503 0.98862398 0.92721403 0.99216998 + 0.93016601 0.98974502 0.934632 0.985946 0.93208301 0.98755503 0.937751 0.98350698 + 0.93522501 0.99567199 0.93833202 0.99333602 0.94062698 0.99664402 0.93554997 0.97193199 + 0.91386902 0.967843 0.92844403 0.96449298 0.926705 0.97543597 0.91614503 0.97088701 + 0.929627 0.97794801 0.91788399 0.97687799 0.93229401 0.98374897 0.92167699 0.97956002 + 0.93389797 0.98639101 0.92338598 0.98930103 0.92575502 0.99271101 0.929115 0.98711002 + 0.93849897 0.98270202 0.935817 0.99400002 0.94085097 0.99698597 0.93595999 0.88920999 + 0.93894303 0.88435602 0.93792498 0.884987 0.93521899 0.88991702 0.936189 0.88209301 + 0.93757302 0.88241798 0.935229 0.887833 0.94404203 0.88342702 0.94272202 0.89402401 + 0.94576401 0.88123101 0.94223601 0.88275099 0.94757402 0.88698399 0.94849902 0.89294398 + 0.95000499 0.88605398 0.95208699 0.88197899 0.95130903 0.89189601 0.95347899 0.88365102 + 0.96103799 0.87990099 0.959117 0.88968301 0.95948601 0.896079 0.94603002 0.89363497 + 0.95394403 0.89054698 0.96099502 0.88290298 0.96392602 0.87895799 0.94180799 0.89488101 + 0.95052499 0.879574 0.93711001 0.87974399 0.93483502 0.90795797 0.87420601 0.91478097 + 0.89363301 0.81929302 0.85042 0.81896502 0.84540802 0.89416999 0.92747998 0.99636799 + 0.93878001 0.87018698 0.856471 0.83948898 0.87040901 0.854289 0.85559398 0.84534103 + 0.853854 0.84333003 0.83393002 0.85189599 0.83515102 0.89269102 0.85506803 0.89524198 + 0.83908802 0.90345299 0.83719099 0.89990997 0.85436302 0.88645703 0.840186 0.88331699 + 0.85639799 0.87018698 0.856471 0.87366402 0.83885098 0.817231 0.82109898 0.825589 + 0.83075303 0.83206099 0.85045201 0.81896502 0.84540802 0.92915303 0.82511002 0.92659301 + 0.84662801 0.92099702 0.84849298 0.91078699 0.85166597 0.86415303 0.836891 0.86295497 + 0.856583 0.86295497 0.856583 0.551507 0.53891897 0.56919998 0.58338702 0.50690901 + 0.536304 0.54445797 0.50899601 0.59533101 0.37459999 0.58322197 0.44255799 0.55195302 + 0.43360299 0.559448 0.35821 0.61511201 0.51627302 0.61151999 0.48485801 0.61981601 + 0.51559597 0.56536102 0.26182601 0.56168002 0.328219 0.67295802 0.30178601 0.66292 + 0.38794899 0.62969601 0.38490799 0.64008498 0.29888901 0.62089902 0.40700001 0.60322303 + 0.45412001 0.89414501 0.526968 0.920968 0.53163201 0.92029297 0.53676498 0.889705 + 0.53736299 0.68059701 0.39412501 0.69122398 0.30609199 0.94700903 0.53213698 0.956406 + 0.532722 0.95631599 0.536672 0.94638097 0.536677 0.59978598 0.35100999 0.74900001 + 0.46149501 0.74900001 0.51370001 0.715128 0.51289397 0.71921903 0.46108401 0.72031999 + 0.44675401 0.74900001 0.448668 0.92858797 0.53469402 0.930471 0.52920598 0.94700903 + 0.53213698 0.94638097 0.536677 0.60915297 0.27828899 0.68939501 0.53540802 0.68639302 + 0.52957898 0.70069498 0.51139599 0.70430303 0.51177001 0.901609 0.571356 0.895657 + 0.55435902 0.91095102 0.55405998 0.92254698 0.55766499 0.92556798 0.54618001 0.94461101 + 0.54794502 0.94284099 0.559214 0.88463902 0.58231097 0.86024398 0.56675297 0.87967199 + 0.562038 0.85878998 0.58938998 0.83783901 0.58150601 0.81212199 0.57041198 0.82079101 + 0.55396903 0.84200799 0.561589 0.959535 0.55882001 0.95511198 0.55918598 0.79807597 + 0.55882698 0.95571399 0.54792899 0.95970702 0.54743099 0.70430303 0.51177001 0.70069498 + 0.51139599 0.70199698 0.45920601 0.706303 0.45967501 0.79779798 0.54743499 0.74900001 + 0.339647 0.74900001 0.43584001 0.72141999 0.43242401 0.73521 0.332764 0.92029297 + 0.53676498 0.920968 0.53163201 0.930471 0.52920598 0.92858797 0.53469402 0.62605298 + 0.16391 0.61852002 0.205568 0.57147801 0.20355099 0.65994 0.16773599 0.650473 0.212871 + 0.69335502 0.173186 0.68299598 0.215624 0.70185101 0.218059 0.71166801 0.174721 0.73033398 + 0.17471001 0.725425 0.22558101 0.71321702 0.319428 0.70100802 0.413275 0.71101898 + 0.44487301 0.70791799 0.44424599 0.52271301 0.76076698 0.56337202 0.75565702 0.5406 + 0.75734502 0.556777 0.70998502 0.87155998 0.064465001 0.62822998 0.707569 0.807271 + 0.40838301 0.78010303 0.404066 0.821087 0.407897 0.59485799 0.12055 0.63183701 0.131908 + 0.62605298 0.16391 0.575481 0.15526301 0.80537999 0.03249 0.80840999 0.029759999 + 0.59368998 0.76308697 0.70974803 0.43641701 0.710383 0.44064501 0.71101898 0.44487301 + 0.70791799 0.44424599 0.54559702 0.059316002 0.80657399 0.444143 0.79978102 0.44859901 + 0.78051001 0.426296 0.74900001 0.17469899 0.74900001 0.23310401 0.71411902 0.44549999 + 0.71649802 0.43050599 0.72141999 0.43242401 0.72031999 0.44675401 0.72031999 0.44675401 + 0.71921903 0.46108401 0.71060801 0.460145 0.71411902 0.44549999 0.715128 0.51289397 + 0.70791101 0.51214498 0.69840199 0.55289602 0.692397 0.541237 0.70791101 0.51214498 + 0.715128 0.51289397 0.60100102 0.51830298 0.61040902 0.516949 0.71166801 0.174721 + 0.72262001 0.138539 0.57111299 0.51051599; + setAttr ".uvst[0].uvsp[2750:2795]" 0.710307 0.713193 0.68517798 0.71056098 0.61366498 + 0.53995401 0.641689 0.593503 0.60854203 0.58829302 0.57983202 0.54090798 0.67814398 + 0.59969902 0.65497798 0.55883998 0.634799 0.52581 0.65846503 0.53488201 0.65759301 + 0.54087198 0.62951601 0.52934599 0.65759301 0.54087198 0.65846503 0.53488201 0.62951601 + 0.52934599 0.61511201 0.51627302 0.61981601 0.51559597 0.634799 0.52581 0.65497798 + 0.55883998 0.656721 0.54686099 0.61366498 0.53995401 0.62423199 0.53288198 0.656721 + 0.54686099 0.65497798 0.55883998 0.60100102 0.51830298 0.61040902 0.516949 0.62423199 + 0.53288198 0.61366498 0.53995401 0.89858401 0.516572 0.92164302 0.52649999 0.92164302 + 0.52649999 0.93235499 0.523718 0.93235499 0.523718 0.94763798 0.52759701 0.94763798 + 0.52759701 0.95649701 0.52877098 0.889705 0.53736299 0.87470502 0.54176402 0.92029297 + 0.53676498 0.92858797 0.53469402 0.95987898 0.53604198 0.79751903 0.53604299 0.82946002 + 0.53752601 0.84617603 0.54167199 0.86169797 0.54411697 0.711577 0.42858699; + setAttr ".cuvs" -type "string" "map1"; + setAttr ".dcc" -type "string" "Ambient+Diffuse"; + setAttr ".sdt" 0; + setAttr ".ugsdt" no; + setAttr -s 2226 ".vt"; + setAttr ".vt[0:165]" 2.59383035 8.83124447 0.37452728 2.5957675 8.92690563 0.30317232 + 2.57264829 9.046378136 0.31192374 2.53801537 9.11967659 0.39565355 2.51215601 9.10386276 0.50531542 + 2.51021791 9.0082006454 0.57666934 2.53333688 8.88872814 0.56791896 2.56797099 8.81542873 0.48418817 + 2.63957906 8.84161472 0.38791561 2.64151621 8.93727684 0.31656164 2.618397 9.056749344 0.32531309 + 2.58376384 9.1300478 0.40904287 2.55790472 9.11423397 0.51870471 2.55596662 9.0185709 0.59005868 + 2.57908559 8.8990984 0.58130729 2.6137197 8.82579994 0.49757746 2.59874201 8.97792339 0.45330966 + 2.38341522 8.93663692 0.69789374 2.56420374 8.88153267 0.46591395 2.54669499 8.78147984 0.1759012 + 2.44572306 8.74734116 0.11299402 2.32563353 8.73136902 0.11120428 2.1672442 8.79154968 0.34973955 + 2.16235495 8.88652515 0.63319683 2.26332688 8.92066479 0.69610399 2.36635756 9.10989285 0.64747661 + 2.54714584 9.054788589 0.41549778 2.52963614 8.95473576 0.12548406 2.42866421 8.92059708 0.062577859 + 2.30857587 8.90462494 0.060788125 2.1501863 8.9648056 0.2993224 2.1452961 9.059782028 0.58278066 + 2.24626803 9.093919754 0.64568681 2.59964919 8.82821465 0.29437602 2.58259034 9.0014705658 0.24395885 + 2.47833061 9.10054398 0.57726985 2.49538946 8.92728901 0.62768698 2.23311472 8.75843811 0.2265722 + 2.21605659 8.93169498 0.17615506 2.15147543 8.83601761 0.48756844 2.13441634 9.0092725754 0.43715131 + 2.59774327 8.84582806 0.50246823 2.58320618 8.84454155 0.50417209 2.57208323 8.84001064 0.4949578 + 2.5708921 8.83488941 0.48022306 2.58032846 8.83217525 0.46859813 2.59486675 8.83346176 0.46689332 + 2.60598874 8.83799267 0.47610751 2.60718083 8.84311581 0.4908433 2.60093355 8.81343269 0.5118944 + 2.58639526 8.81214714 0.51359916 2.57527351 8.80761623 0.50438488 2.57408118 8.80249405 0.48964912 + 2.58351874 8.79978085 0.47802517 2.59805584 8.8010664 0.47632042 2.60917902 8.80559635 0.48553461 + 2.61037111 8.81072044 0.50027037 2.59222627 8.80660725 0.4949598 2.61319304 8.83396053 0.44494981 + 2.60061908 8.83070087 0.44669461 2.59045482 8.82880497 0.43829468 2.58865428 8.82938576 0.42467201 + 2.5962708 8.83210278 0.41380569 2.60884428 8.83536339 0.41206089 2.61900949 8.83725739 0.42046082 + 2.62081003 8.83667564 0.43408349 2.61825514 8.80751324 0.4432264 2.60568166 8.80425358 0.44497126 + 2.59551668 8.80235958 0.43657133 2.59371614 8.80293941 0.42294869 2.60133266 8.80565548 0.41208237 + 2.6139071 8.80891514 0.41033757 2.62407112 8.81081009 0.4187375 2.6258719 8.81022835 0.43236014 + 2.6097939 8.80658436 0.42765394 2.57846332 8.87578487 0.5500831 2.56549358 8.8765583 0.55065435 + 2.55572414 8.87063122 0.54342806 2.55488157 8.86147881 0.53263789 2.56345701 8.85445976 0.52460414 + 2.57642841 8.85368824 0.52403289 2.58619642 8.85961533 0.53125823 2.58703899 8.86876774 0.54204935 + 2.57810211 8.85449123 0.56569862 2.56513119 8.85526466 0.56626981 2.55536366 8.84933758 0.55904442 + 2.55452108 8.84018517 0.54825336 2.56309652 8.83316708 0.54021955 2.57606602 8.83239555 0.53964835 + 2.58583403 8.83832169 0.5468747 2.5866766 8.84747505 0.55766481 2.5705986 8.84383011 0.55295962 + 0.0022468525 8.0062322617 0.78026897 0.0023183245 8.049283981 0.23885716 0.0021085571 10.43730259 -0.45813784 + 0.0022359635 9.048955917 1.2901473 0.0021629143 9.84497261 1.3394177 0.0020536981 8.22111797 -0.45257586 + 0.0022618084 8.7673254 -0.65210658 0.00064479292 15.24143887 -0.35785595 2.8885874e-005 16.72198868 0.72269619 + 1.3877788e-017 16.79142761 0.066035375 0.00099389628 14.36218071 -0.66548657 0.00055243744 15.46344852 1.23071778 + 0.0007566312 14.97259617 1.14040565 0.00036421439 15.91590977 1.3055191 0.00017047569 16.38162804 1.14781761 + 0.0009506151 14.50628757 0.9803946 0.00087916484 14.67804337 0.59551716 0.00082276302 14.81362534 1.12432146 + 0.00092017639 14.57945824 0.77365065 0.00073431031 15.026252747 1.32971132 0.00086087757 14.68193817 -0.54129642 + 0.0010601042 14.20302677 0.48536479 0.00051240256 15.55968666 1.29802334 0.0012661414 13.70774364 0.6489132 + 0.0012232369 13.81087971 0.49466977 0.0011088751 14.085788727 -0.79307908 0.0013108294 13.65933895 -0.95499378 + 0.0017356111 12.57920742 1.23889887 0.0017610993 10.64888573 1.30644774 0.0017610993 12.28007412 1.17075419 + 0.0016787146 12.71597862 -0.97025031 0.0017610993 10.95499134 -0.45164806 0.00045699877 15.69286919 -0.43354088 + 0.0021914402 9.53412437 -0.6098904 0.0015042343 13.13540363 -0.97968584 0.0022857881 8.50601578 1.18069005 + 0.00092581601 14.5659008 1.053489208 0.00020162975 16.3067379 -0.37127864 0.000610905 15.32290077 1.26040888 + 0.0014774017 13.19990444 0.93164963 0.0017610993 11.4622879 1.28830099 0.0017610993 11.89213181 -0.79078853 + -1.19926679 9.44057369 0.85058862 -1.26843488 9.725173 0.46005344 -1.026540279 10.12021065 0.55849099 + -1.13452303 10.29289913 0.011660585 -1.21824861 9.81996632 -0.13244937 -0.65856993 9.025680542 1.1859864 + -0.71979398 9.90525913 -0.62350476 -0.76237458 10.36813545 -0.41885775 -0.4349992 8.50985241 1.099225998 + -0.48860332 8.40227032 1.021452427 -1.047198772 5.055290699 0.91470408 -0.58972269 6.56577444 1.00012969971 + -0.37470412 6.70466042 -0.33676684 -0.59667063 5.39145327 -0.17922124 -0.23489109 6.57868576 0.68717533 + -1.34507263 6.75812864 -0.32516041 -0.68326843 5.056622028 -0.12532592 -0.43383682 4.98088455 0.45348287 + -0.48568279 4.50136852 0.32720739 -0.43512729 5.3087368 0.5353663 -0.76498485 4.23869658 0.55590755 + -1.016611099 4.056600094 0.57428712 -1.05142653 4.71261692 0.87092775 -0.72932315 4.50055695 0.66361207 + -1.28612411 4.51645088 0.57087654 -1.044807553 4.49410772 0.80437762 -0.72016037 4.99873018 0.77778858 + -0.72037059 4.72340918 0.72749203 -1.28597903 4.73046255 0.63829839 -1.033116698 4.22999477 0.69122893 + -1.27002311 4.261343 0.45626307 -1.39232588 8.60801506 -0.49237469; + setAttr ".vt[166:331]" -1.37452447 7.63160133 -0.41859341 -0.23410217 7.6067338 -0.3910948 + -0.76847637 8.61514378 -0.95580208 -1.25180721 4.096190453 0.39733109 -1.17487729 5.016149521 -0.01802407 + -1.20077443 4.80670309 -0.03784322 -1.37757874 4.98947239 0.34218591 -1.36276996 4.56104088 0.25904962 + -1.27363575 5.023901463 0.688371 -0.70905054 5.24067974 0.82030392 -1.49296129 6.68545485 0.32372355 + -1.53376949 7.59602404 0.30945134 -1.031125784 5.23818731 0.90893811 -1.22408903 2.34691501 -0.0032865 + -0.79031777 2.28096676 -0.61056447 -0.74971282 2.83318663 -0.67238939 -0.71861702 4.3878355 -0.31533226 + -0.67703348 2.27547884 -0.49832213 -0.61756176 2.81690645 -0.53972805 -0.60146093 4.12754202 0.21418753 + -0.5239585 2.86754465 -0.25117224 -0.64612067 2.32036877 -0.17353874 -1.29729676 2.30691576 -0.27643701 + -1.41092956 2.92996359 -0.46621227 -0.75447214 4.69034243 -0.1666792 -0.72756201 4.85128307 -0.13192374 + -1.37284136 4.3496356 -0.11986991 -1.23041046 4.60536528 -0.081621341 -0.48023364 4.26464939 0.031067546 + -0.60996783 4.35581827 -0.20912074 -0.60622555 4.65550756 -0.057585943 -0.78707248 7.63884115 -0.60409188 + -0.83357203 6.75025272 -0.43085667 -1.29050946 5.2594099 0.70555258 -1.36976779 5.31007814 0.35318831 + -1.19151902 5.35084677 -0.088195696 -0.97675979 4.6772747 -0.18272647 -0.94446063 4.84755373 -0.1510634 + -0.90951109 5.060671806 -0.14914483 -0.86174595 5.39057255 -0.22091641 -1.078785181 4.38958883 -0.34663996 + -0.86789614 4.39214849 -0.40280503 -0.96816689 2.85341692 -0.73102576 -0.9707365 2.2778945 -0.64763999 + -1.21747565 2.87602186 -0.65180063 -1.16365933 2.31095362 -0.58549136 -0.7946195 4.073348045 0.45780241 + -0.57055479 4.25431871 0.23974851 -1.0036851168 6.5726161 1.086196899 -1.42063618 6.62983608 0.82524604 + -1.37764215 4.20850182 0.11470345 -1.29290617 3.88456964 0.31296575 -1.43615592 3.95606375 -0.02784922 + -1.44063604 3.99542189 -0.33171642 -1.19726372 4.0041685104 -0.52294517 -0.95453858 3.98949051 -0.61383021 + -0.72879755 3.98603559 -0.55135638 -0.56926692 3.97214007 -0.41988975 -0.43541762 3.92874169 -0.10921481 + -0.63283563 3.86896825 0.15536378 -1.35640073 4.32088232 0.17225116 -1.32528782 3.41982102 0.19487125 + -1.49615645 3.45965505 -0.16684151 -1.49704802 3.49452972 -0.44712326 -1.25008953 3.48590541 -0.6455164 + -0.96677655 3.47074223 -0.74945325 -0.71569383 3.47561193 -0.68152088 -0.54354823 3.47507381 -0.54579264 + -0.42655754 3.4838047 -0.20470451 -0.64960492 3.4342351 0.045684628 -0.78157109 8.88504696 1.0059819221 + -0.098981105 8.7403841 -0.83119941 -0.13199605 8.04360199 -0.65010005 -0.15226959 7.95512056 0.79861635 + -0.1089086 7.9134717 0.16993824 -0.22049622 6.64402866 0.095297001 -0.13094711 7.51218939 0.79127306 + -0.097385645 7.55606461 0.15563983 -0.4708274 5.37305593 0.013280397 -0.53746647 5.034420013 -0.0061148601 + -0.58109921 4.80918074 -0.018971009 -0.45092878 4.73197317 0.39991471 -0.70330608 9.86446095 1.18046188 + -0.4613212 10.39655685 -0.52140051 -0.28793874 9.79662323 -0.7000556 -0.78192109 3.83414316 0.37847075 + -0.79773247 3.39661956 0.26410827 -0.80618078 2.34875631 0.051276751 -1.015160322 3.81356597 0.50682884 + -1.029509306 3.37960768 0.38839412 -1.004953742 2.35915136 0.18021324 -1.39289343 0.3052952 -0.38145363 + -1.40244067 0.16569246 -0.36696449 -1.36111212 0.061525773 -0.33490536 -0.71544671 0.17504212 -0.098732375 + -0.71263373 0.43141672 -0.11477288 -1.36122906 0.43493533 -0.380597 -0.72202152 0.67965037 -0.19754 + -1.19711232 1.80679166 -0.037682749 -0.69614011 1.82504809 -0.19963038 -0.85038418 1.84501112 -0.59127951 + -0.76514161 0.47889659 -0.79452103 -0.75223643 0.31138417 -0.80518723 -1.64573336 0.20905112 0.92735738 + -1.68606806 0.20408314 0.91205716 -1.7651453 0.21450996 0.77635425 -1.77577043 0.16879067 0.88430649 + -1.7783612 0.12831703 1.018275142 -1.77106631 0.091895834 1.080555916 -1.54825318 0.21719125 1.0097482204 + -1.53388655 0.22122818 1.02356708 -1.54853153 0.18428603 1.1686877 -1.55945635 0.15903354 1.2538383 + -1.39141357 0.24646007 1.0731709 -1.41190696 0.19661787 1.18679142 -1.42534316 0.16174491 1.27982926 + -1.3646239 0.25664532 1.08508575 -1.17315972 0.27831477 1.13034689 -1.23872864 0.22385962 1.35456991 + -0.95924288 0.12368433 1.36995339 -0.91124445 0.10795514 1.023348331 -1.7818234 0.15296176 0.77377474 + -1.78624332 0.13451345 0.88036114 -1.76588011 0.055832244 1.07626915 -1.77057207 0.10496953 0.76035142 + -1.76513779 0.09847308 0.88243926 -1.74429142 0.032005057 1.064168811 -1.67049277 0.071663737 0.92621374 + -1.68030179 0.055023305 1.071125984 -1.39664125 0.076323956 1.065768361 -1.43597758 0.11712426 1.1917851 + -1.43913352 0.094220348 1.26774645 -1.51496065 0.064458936 1.025422096 -1.5385952 0.10639141 1.16348052 + -1.55448949 0.085413143 1.2405777 -1.54498374 0.065662451 0.9948951 -1.72842932 0.044453789 1.12242901 + -1.34534323 0.076244868 1.081296086 -1.14946795 0.084531128 1.12930822 -1.21846199 0.057701144 1.33105528 + -1.1858151 0.16028778 1.13241887 -1.25835526 0.12847865 1.32972956 -1.20891201 0.27457955 1.11618066 + -1.21178603 0.16565119 1.13631785 -1.39264822 0.12969679 1.091916919 -1.67106175 0.15287922 0.9176414 + -1.67417896 0.1072932 1.091039181 -1.21182191 0.079951711 1.11465454 -1.086720347 0.081605703 1.49747849 + -1.21056795 0.088570662 1.47554564 -1.010619402 0.054759391 1.35264671 -1.52968311 0.13655859 1.030358911 + -1.37692714 0.12986785 1.097320914 -0.85527444 0.20513967 1.047137856 -0.98953605 0.21984759 1.3871007 + -1.091319323 0.15274684 1.51745212 -1.20969677 0.15565594 1.49597001 -1.68567336 0.1306106 1.0989151 + -1.6875304 0.061879948 1.13631964 -1.68975425 0.07536801 1.14350343 -1.6998086 0.090854779 1.14382446 + -1.73811042 0.075582065 1.13266909 -1.73672819 0.055108409 1.12930036 -1.55357575 0.098657906 1.3680048 + -1.54685628 0.11913759 1.35954964 -1.47241771 0.12149736 1.3736887; + setAttr ".vt[332:497]" -1.46882379 0.10299318 1.37826502 -1.47096837 0.082970843 1.3792336 + -1.55060792 0.079032741 1.36523366 -1.4190551 0.14387773 1.19279218 -1.5457499 0.13869399 1.024660826 + -1.62881649 0.074399173 0.9402706 -1.64516914 0.15080057 0.9307996 -1.43190312 0.12350037 1.27429307 + -1.56408751 0.12050015 1.23975945 -1.55361271 0.12965637 1.16436338 -1.40272105 0.13322398 1.2035774 + -1.42149925 0.10784167 1.30926073 -1.27697396 0.12876233 1.33361459 -1.24609542 0.16555578 1.2334832 + -1.41574979 0.086655341 1.41673088 -1.33923674 0.086296871 1.43275118 -1.33582628 0.11028567 1.43214226 + -1.34083736 0.13028049 1.42888021 -1.4132179 0.12821989 1.42020988 -1.42074418 0.1079345 1.42306328 + -1.41396761 0.059038777 1.30117309 -1.39236236 0.11480489 1.21752834 -1.28093231 0.084258609 1.32486987 + -1.25844383 0.11631961 1.23865962 -1.28160429 0.17297378 1.34108448 -1.24652779 0.19594905 1.23935354 + -1.41237342 0.17390823 1.32173467 -1.39998639 0.21372938 1.21721518 -1.67034245 0.16258565 1.096064329 + -1.67431903 0.14103656 1.16876721 -1.56277645 0.1614062 1.11658919 -1.56727672 0.14388031 1.18799365 + -1.56032491 0.10684273 1.098922968 -1.56519222 0.055299256 1.16908932 -1.66101921 0.11031318 1.079317689 + -1.67137969 0.067590676 1.14713192 -1.66498923 0.079332761 1.25835681 -1.66273224 0.098314054 1.25710464 + -1.60127449 0.10029557 1.27667749 -1.59589005 0.078752495 1.28039622 -1.5963521 0.063106686 1.26762474 + -1.66038299 0.057709742 1.24828553 -1.55223238 0.12474773 1.10851562 -1.55521965 0.10718746 1.17995071 + -1.67798948 0.10942343 1.1565758 -1.67401302 0.12561856 1.082476497 -0.64917523 0.45649388 -0.67325652 + -0.63233775 0.30276522 -0.66960168 -0.74056661 1.83222532 -0.48098049 -1.06482935 1.8350184 -0.58373266 + -0.93349695 1.8413111 -0.62675554 -0.90561932 0.48160538 -0.8254829 -0.90632927 0.31592575 -0.84770441 + -0.92834294 0.057818919 -0.75607961 -0.78795928 0.05824187 -0.69582975 -0.95098263 0.0010409701 -0.64245301 + -1.11830711 0.26238272 1.37768745 -1.15523231 0.075916469 1.49356103 -1.12178588 0.032607675 1.33962405 + -1.15580201 0.16205353 1.51719832 -1.26339221 0.37849349 1.0056051016 -1.42490792 0.34379762 0.96181494 + -1.4578197 0.29506263 1.046851754 -1.48547506 0.2327528 1.18310845 -1.49957705 0.20364559 1.27134085 + -1.49025834 0.090228945 1.17161882 -1.4932549 0.050391458 1.24270129 -1.27740192 0.34688982 1.07748723 + -1.51495969 0.12706709 1.38151991 -1.51468134 0.099061087 1.3836261 -1.51247406 0.066039845 1.37739086 + -1.37664127 0.075812452 1.43581986 -1.37757993 0.11042149 1.44165874 -1.37533212 0.13621216 1.43616819 + -1.34465814 0.046573706 1.30237091 -1.32279277 0.09462525 1.22769153 -1.34411502 0.22316244 1.34592068 + -1.31561136 0.27243724 1.24055839 -1.60008514 0.30221847 0.88890553 -1.61175954 0.27472138 0.97168666 + -1.62235141 0.20781147 1.12027037 -1.62114358 0.17220697 1.18781424 -1.61325407 0.075291499 1.088164926 + -1.61132336 0.032886203 1.15802932 -1.62986016 0.10078299 1.27794099 -1.63110662 0.075668037 1.28133428 + -1.62776911 0.048473559 1.26373363 -1.71217084 0.27304074 0.81689477 -1.73020518 0.23896727 0.91104567 + -1.74155223 0.18051815 1.044327378 -1.72407758 0.078944191 0.89203799 -1.70363963 0.029892873 1.062970161 + -1.70607924 0.046166226 1.12365401 -1.71079063 0.063667186 1.14644337 -1.7221607 0.085701123 1.14707947 + -1.73358703 0.1288165 1.099842668 -1.048671246 0.47524649 -0.78393525 -1.086405039 0.3138445 -0.8101564 + -1.095468402 0.15310189 -0.80328417 -1.07762301 0.06126013 -0.76049227 -1.038097858 0.40242556 1.051813841 + -0.70041633 0.28392577 -0.082851999 -0.65469897 0.15482722 -0.62314087 -0.75550491 0.14938559 -0.75791276 + -0.91813087 0.14799979 -0.81565225 -0.70718193 0.059633657 -0.55761909 -0.84166759 0.003388701 -0.58563316 + -0.77788734 0.0060880324 -0.4905434 -1.063170671 0.057402838 1.13723755 -0.93659949 0.096299 1.14209282 + -0.87908781 0.18732665 1.13857973 -0.90992236 0.27833024 1.15134251 -1.058546782 0.37120187 1.1448772 + -1.042798996 0.035137653 0.98979914 -1.27442753 0.07353694 1.10050237 -1.44764829 0.058498051 1.048199296 + -0.89258134 0.30039084 1.054158926 -1.40134811 0.029370196 0.89338636 -1.59044659 0.054573704 0.96746564 + -1.55881369 0.026576305 0.83890712 -1.22574317 0.032236304 0.94252813 -1.6439724 0.024844088 0.79916376 + -1.34856641 0.6303128 0.070633501 -1.28396845 1.81671631 -0.30664989 -1.096570015 0.31765023 1.30719054 + -1.23192143 0.25841278 1.27126741 -1.24148631 0.15795468 1.25403953 -1.20917106 0.099202931 1.24294186 + -1.094448566 0.066933885 1.2518791 -0.98588765 0.090803199 1.27272773 -0.92632282 0.15145735 1.29083943 + -0.95089686 0.24497372 1.30935788 -0.87250292 0.64293087 0.31176773 -0.84988165 1.0021990538 0.019138001 + -0.74691278 0.96713775 -0.23478702 -0.80482918 1.0047805309 -0.56493324 -0.88175708 1.018072605 -0.65497863 + -1.038116336 0.74103004 -0.72521228 -0.93292248 0.74616313 -0.732669 -0.82643157 0.7351079 -0.70664215 + -0.72377336 0.71558326 -0.6181035 -1.28309977 0.70139539 -0.39559799 -1.26816702 0.76833802 -0.077118121 + -0.94709551 1.022724271 -0.66410226 -1.046890974 1.02291429 -0.6284976 -1.26218796 0.99183065 -0.36714825 + -1.20753276 1.015466928 -0.094831623 -0.83960599 0.78274935 0.082590371 -1.062051415 -0.0001290269 -0.64358175 + -1.27076626 0.0053805322 -0.28668937 -1.16948652 0.0074110487 -0.24078426 -1.026850343 0.010022695 -0.18765688 + -0.90125453 0.012268127 -0.14340463 -0.79295468 0.067937113 -0.1190175 -1.71515715 0.042718135 0.77632451 + -1.77953291 0.096281812 1.0024988651 -1.75933766 0.072384991 0.9906776 -1.71811688 0.056054037 0.99227446 + -1.680619 0.0706416 1.0018994808 -1.67114556 0.13067423 1.034397006 -1.67932546 0.16477434 1.045571685 + -1.10611284 0.68236858 0.28632975 -1.029324889 0.83708417 0.083398871 -1.0071296692 1.030024409 0.052681122 + -0.99383897 1.83120668 0.11490849 -0.82241994 1.82139289 0.040872127; + setAttr ".vt[498:663]" -0.24065836 15.22966385 -0.30574942 -0.64857626 15.3692503 0.17625031 + -0.77612662 15.78343296 0.30130538 -0.59382087 15.26827431 0.32525456 -0.4871344 15.068079948 0.15175632 + -0.55493045 15.33718109 0.1741066 -0.63454276 16.20087624 0.56575841 -0.24989946 16.69621468 0.70997655 + -0.44403267 15.14034176 -0.080664694 -0.66510797 15.77148628 0.27958596 -0.27383843 16.75072289 0.079248533 + -0.65987426 16.23870277 0.18488862 -0.62767118 15.64702606 0.41107613 -0.84950703 14.24668407 -0.55806112 + -0.92668819 14.15943718 -0.17188852 -0.054293334 15.45932484 1.20453727 -0.43211475 15.58750916 1.075014591 + -0.12007548 14.82025433 1.085306048 -0.11251266 14.99105263 1.10948431 -0.56218368 16.099069595 0.80639106 + -0.19947684 16.36986732 1.12949991 -0.48107034 15.84601402 1.055336833 -0.16247301 15.91368866 1.29799879 + -0.5652777 15.56540966 0.64835483 -0.13082312 15.55892658 1.28508735 -0.11004733 15.4428978 1.14520895 + -0.54302931 15.024586678 0.3210772 -0.49380997 15.034637451 0.27410343 -0.062375825 15.041158676 1.29462731 + -0.50567013 14.94906616 0.52390248 -0.32255644 14.6332798 -0.43131524 -0.50961703 14.44976521 -0.03834866 + -0.44290537 14.35839844 0.18513794 -0.30112413 14.26523495 0.32797244 -0.14546569 14.53156376 0.93686497 + -0.148351 14.60122776 0.73042983 -0.14003204 14.69508839 0.5482589 -0.13984288 14.20965576 0.45513856 + -2.25591922 10.031908035 -0.41467819 -2.10601401 11.4140625 -0.95002484 -1.9184165 12.081455231 -0.90251732 + -1.96050429 11.22274208 -0.8609395 -2.14138651 11.21227074 -0.95116913 -2.16465497 10.056437492 -0.394335 + -2.16456389 11.050236702 -0.88904113 -1.99256289 11.057920456 -0.81390268 -1.90262282 11.40665245 -0.8671279 + -2.19265532 12.071493149 -0.11839794 -1.57981586 12.040805817 -0.41869703 -2.32800293 12.12273979 -0.70375651 + -2.30476403 11.23779011 -0.91400266 -2.47499371 11.37358379 -0.60811764 -2.41603565 11.38724327 -0.39963487 + -2.56319308 10.15404129 -0.15599111 -2.39978433 10.051441193 -0.38215545 -2.50010061 10.10084629 -0.26460528 + -2.55590296 10.22798347 -0.00025413939 -2.13347411 12.097424507 -0.88452917 -1.71785498 11.47437382 -0.54972243 + -1.81318796 11.46612835 -0.29462749 -2.41021395 11.26754379 -0.8158887 -2.46961665 11.31261826 -0.71677679 + -1.9504323 12.044260979 -0.0038687538 -2.49181175 10.28914356 0.1245018 -2.28128242 10.31170177 0.21756397 + -2.12510037 10.28634548 0.18000595 -1.94916618 10.15480518 -0.2243939 -2.26642537 11.47678566 -0.91694844 + -1.7394768 11.26701832 -0.5828886 -2.42050838 11.58430767 -0.74886113 -2.38561487 11.56328583 -0.43716359 + -2.33439517 11.070815086 -0.83453292 -2.44684339 11.11052799 -0.74422711 -2.52745533 11.1398716 -0.6330626 + -2.51216507 11.18231487 -0.47948346 -2.44789886 11.20515442 -0.28492016 -2.03991127 11.1378088 -0.15050864 + -1.74142301 11.11095715 -0.56915265 -1.99887133 10.24879742 0.070884056 -1.85650253 11.10686874 -0.27382344 + -1.85051239 11.28812122 -0.30542248 -2.02392292 11.41172028 -0.17531885 -2.033223152 11.28166294 -0.18997061 + -2.20883465 11.47760677 -0.20442225 -2.21504974 11.33219147 -0.21327229 -2.22991323 11.17456627 -0.15790874 + -1.70064116 12.054386139 -0.14161858 -1.68512297 12.042677879 -0.7743665 -2.33280945 12.090650558 -0.39308912 + -2.32695746 8.9342947 0.79683763 -2.52978992 8.65649128 0.18784642 -2.41815042 8.65119648 0.14159361 + -2.69827056 8.36244678 0.85075319 -2.67001581 8.23154068 0.47344193 -2.66538382 7.96555138 0.52476323 + -2.70446086 8.26244164 0.64217865 -2.70674109 8.02531147 0.72164649 -2.52054596 7.90620852 0.41490415 + -2.53950882 7.89170456 0.46993572 -2.47793961 7.86318064 0.46208647 -2.47808409 7.8737874 0.4565376 + -2.64839888 8.01557827 0.89159292 -2.60853791 7.89847803 0.64819229 -2.53172541 7.90481091 0.3201372 + -2.45399237 7.89757347 0.24062154 -2.38834405 7.89934969 0.24660781 -2.40449667 7.96227026 0.22134359 + -2.50542617 8.23556423 0.19857505 -2.41530442 8.23192406 0.1589959 -2.6403811 7.99604464 0.86137348 + -2.62845421 8.14792061 1.092717648 -2.64225268 7.89386368 0.54260784 -2.69531465 7.95231867 0.75078702 + -2.70708942 8.13586044 0.96846551 -2.62059498 8.40397549 0.98860657 -2.26556611 8.829319 0.96164834 + -2.56394625 8.14013195 1.12135339 -2.25623441 8.68856335 1.11312723 -2.61328459 7.90008783 0.6677866 + -2.49414086 7.71306896 0.71976411 -2.46803713 7.72167063 0.73098207 -2.51137018 7.67955112 0.62801635 + -2.44052935 7.67322159 0.55228657 -2.38958979 7.6779027 0.55350411 -2.44600153 7.67362165 0.75538158 + -2.37353396 7.63933754 0.5648306 -2.47125506 7.66378117 0.74288023 -2.49195957 7.62491703 0.64755374 + -2.43431711 7.62085199 0.75345457 -2.4137876 7.64472151 0.76344085 -2.43612957 7.58099413 0.67085838 + -2.38122725 7.58802509 0.59068465 -2.34638596 7.61522532 0.58393896 -2.33026814 7.52382374 0.79344547 + -2.30892682 7.54407978 0.80385089 -2.33338022 7.49128342 0.72044498 -2.28679538 7.49435377 0.65018833 + -2.25832033 7.51028967 0.64084965 -2.27471781 7.51412153 0.81834555 -2.23116612 7.48410749 0.65741408 + -2.29347515 7.4906354 0.80971313 -2.30251694 7.44893312 0.74404919 -2.25375724 7.46514034 0.67357779 + -2.050377846 7.40214014 0.76919597 -2.041353226 7.40432215 0.76534104 -2.032284498 7.40127087 0.82386726 + -2.047884703 7.38994169 0.82229292 -2.064009666 7.41856003 0.86883187 -2.068291426 7.41358423 0.85765415 + -2.15472984 7.41975164 0.70789456 -2.19322324 7.44956255 0.84486556 -2.19906139 7.41665459 0.77819359 + -2.25937843 7.477777 0.82531112 -2.24817252 7.5012536 0.83576012 -2.25255942 7.43793631 0.75814605 + -2.21811533 7.44519472 0.68325162 -2.20197201 7.46530581 0.66589278 -2.17531896 7.46676064 0.85764825 + -2.13182998 7.43525743 0.69572914 -2.41773295 7.62415648 0.56514663 -2.53435183 7.80760431 1.22245097 + -2.49244714 7.8279376 1.2315414 -2.57984638 7.76806641 1.14296961 -2.53969955 7.73791838 1.05308497 + -2.48981285 7.74077272 1.032576561 -2.47987413 7.78148937 1.2581985; + setAttr ".vt[664:829]" -2.48516321 7.70254898 1.05403471 -2.51320052 7.75486183 1.25273347 + -2.55257726 7.70397806 1.17664754 -2.51979733 7.690557 1.086217642 -2.47227931 7.72292185 1.2645781 + -2.44382262 7.75169754 1.26636028 -2.50547767 7.6728735 1.19198859 -2.48626781 7.66223431 1.10239661 + -2.45778275 7.68354321 1.070983648 -2.38758183 7.65722656 1.28953719 -2.36195636 7.67714357 1.28789735 + -2.42064834 7.6094141 1.22257078 -2.40026832 7.59969568 1.13641703 -2.37262774 7.61594057 1.11461616 + -2.31797791 7.64619923 1.29895067 -2.33499742 7.58907413 1.13006008 -2.33438873 7.62579632 1.29859102 + -2.37027764 7.56890917 1.24182808 -2.34912491 7.57445955 1.15184844 -2.11240435 7.545084 1.18022692 + -2.1091063 7.55274963 1.16981637 -2.10736108 7.57293367 1.26512527 -2.098496914 7.58457518 1.26270282 + -2.082760334 7.56321669 1.21766269 -2.095882177 7.55310202 1.22849798 -2.20701075 7.60743618 1.29423881 + -2.19904304 7.62642717 1.29020786 -2.20753288 7.56573343 1.13397908 -2.21900868 7.55022573 1.15083218 + -2.24484873 7.55760241 1.23109162 -2.28085852 7.6144805 1.30124533 -2.26563358 7.6414628 1.29870963 + -2.30579019 7.5645752 1.23730278 -2.29722118 7.56324434 1.14981151 -2.28629446 7.58225107 1.12926936 + -2.52836943 7.68805981 0.9686439 -2.48859882 7.70318365 0.98532355 -2.56071091 7.65040064 0.88098419 + -2.50501299 7.63618469 0.80365741 -2.45311999 7.64179564 0.78433353 -2.47559857 7.67284632 1.00076413155 + -2.44748211 7.61085987 0.79321402 -2.50900245 7.6493907 0.98589832 -2.5414958 7.60418606 0.90206558 + -2.48561406 7.59715223 0.81329203 -2.33488464 7.54325294 1.039505959 -2.31582975 7.56596375 1.04468894 + -2.29857373 7.54905844 1.047738433 -2.35648274 7.49400711 0.97043788 -2.32312942 7.49135542 0.87943375 + -2.28415537 7.49639368 0.87357438 -2.29940271 7.50955153 0.86445141 -2.46256065 7.63120651 0.99545562 + -2.43717957 7.65722418 1.0021475554 -2.48765922 7.58013725 0.91851485 -2.44604826 7.57877874 0.82963765 + -2.41500568 7.59821892 0.80583507 -2.31286931 7.52176666 1.049516439 -2.325073 7.46716642 0.98338342 + -2.30120397 7.47027254 0.89294505 -2.049658775 7.50072622 1.051000834 -2.040341854 7.50619984 1.048935175 + -2.01876688 7.47821999 1.0063639879 -2.037326813 7.46682596 1.0081644058 -2.032666206 7.47004604 0.95010245 + -2.043893337 7.46702957 0.95057487 -2.15937948 7.46412086 0.9105652 -2.18952417 7.46052217 0.9989078 + -2.16964316 7.51531601 1.0691998 -2.26525068 7.52568722 1.057424307 -2.27470112 7.46371698 0.99025285 + -2.25418472 7.47389936 0.89475656 -2.25783515 7.5516057 1.056042671 -2.16056681 7.53779697 1.072206974 + -2.14767075 7.48143673 0.89472967 -2.24507642 7.49419069 0.87772578 -2.42722869 7.75815916 0.44287661 + -2.40153265 7.77239418 0.46434641 -2.43535233 7.7367816 0.36768025 -2.37841511 7.75616741 0.30521697 + -2.33371115 7.77380323 0.30267161 -2.38186598 7.72986507 0.47088 -2.31432772 7.73062658 0.31252465 + -2.39920068 7.71119261 0.45459974 -2.39726186 7.68338823 0.38435802 -2.35165215 7.70555449 0.32029122 + -2.35762978 7.68052387 0.46899974 -2.34635091 7.70387602 0.48354816 -2.35079312 7.65507841 0.40260029 + -2.31222105 7.67618275 0.3414081 -2.28302336 7.70589161 0.32899919 -2.29110169 7.65078783 0.4917686 + -2.28382921 7.62277651 0.43100047 -2.2493186 7.64056921 0.36956075 -2.2232039 7.67070818 0.36091703 + -2.27670932 7.68026304 0.504412 -2.24517703 7.66201735 0.5180493 -2.19314122 7.64636421 0.37819466 + -2.020064116 7.63222361 0.50281101 -2.015137196 7.64761543 0.50159961 -2.018835306 7.65062571 0.5414111 + -2.024831057 7.63209248 0.5422017 -2.047397852 7.65315914 0.57349885 -2.049603462 7.64030504 0.57138729 + -2.11316395 7.63350439 0.43311465 -2.15178132 7.61981726 0.41594058 -2.10453606 7.65558147 0.42188603 + -2.14429379 7.65173054 0.40133891 -2.20305896 7.6648016 0.53316528 -2.15526843 7.65975809 0.5504179 + -2.1610465 7.63225412 0.5376904 -2.19808865 7.62425327 0.52510983 -2.14195061 7.6011095 0.49187472 + -2.17934632 7.59824991 0.47544098 -2.19078827 8.37172413 1.32204151 -2.398844 8.25822926 1.27517164 + -2.39234734 8.21929646 1.24038267 -2.34985065 8.35956478 1.36432433 -2.27652144 8.017726898 1.40951002 + -2.26868582 8.010873795 1.39575064 -2.1547575 8.094281197 1.4670099 -2.20191956 8.011926651 1.45331109 + -2.22488642 8.031200409 1.47548211 -2.29865575 8.22184944 1.40994644 -2.28147793 8.17342377 1.43262231 + -2.31787109 8.2801199 1.38871455 -2.1721344 8.31182194 1.35383487 -2.15713072 8.24650097 1.38254285 + -2.34859848 8.13317585 1.32015502 -2.37329626 8.19425106 1.29359138 -2.34336805 8.11225224 1.29580283 + -2.36523175 8.16444206 1.25971723 -2.32286286 8.071572304 1.32999325 -2.32624459 8.086352348 1.3500787 + -2.26183844 8.88318729 0.70091861 -2.26988459 8.75745106 0.51896536 -2.31216311 8.67046738 0.17531145 + -2.23806381 8.68568039 0.29524693 -2.43480563 8.060657501 0.99161869 -2.47550631 7.95702219 0.93164754 + -2.4509573 7.9931922 1.02809298 -2.42943788 8.02742672 0.87588757 -2.41423845 7.98620415 0.76240021 + -2.43275332 7.90719938 0.7993753 -2.47090745 7.91914654 0.87808347 -2.4646368 7.88256788 0.72237778 + -2.44433546 7.88858366 0.67519253 -2.37585759 7.89713812 0.46779162 -2.40970588 7.87549257 0.51984608 + -2.38427258 7.98228884 0.5791592 -2.40587807 7.88348341 0.60236615 -2.32420993 7.92117643 0.3933844 + -2.32806492 7.99025297 0.37728462 -2.32792807 7.9708662 0.27691317 -2.31757784 7.90798759 0.3011727 + -2.37818289 8.19993687 0.69263774 -2.3805542 8.19748688 0.82534063 -2.27078724 8.21204376 0.31636438 + -2.31407619 8.22408295 0.19548184 -2.5064137 8.11510563 1.11579871 -2.19444585 8.6901226 0.79682004 + -2.20811701 8.52935696 1.014959455 -2.21266818 8.77626991 0.87295055 -2.21840668 8.60650063 1.052739978 + -2.33189559 7.72483492 0.66134554 -2.41057897 7.72879219 0.7388339; + setAttr ".vt[830:995]" -2.36021852 7.69025993 0.56695938 -2.40743232 7.69097281 0.75126165 + -2.34297991 7.6618247 0.57885373 -2.31668735 7.6834898 0.68081385 -2.37784719 7.66880894 0.75826412 + -2.31800032 7.64489794 0.59915292 -2.22900128 7.57866049 0.73316962 -2.27679348 7.56692457 0.7986089 + -2.22290969 7.54282618 0.65269798 -2.25135994 7.53843498 0.81217349 -2.21081972 7.51257944 0.66269839 + -2.33763337 7.69540119 0.66917503 -2.17569423 7.49891663 0.67082065 -2.16674137 7.55919981 0.75067884 + -2.2161994 7.53550053 0.8295747 -2.082775116 7.52169037 0.78227818 -2.13844824 7.50036478 0.85299432 + -2.10021925 7.46750879 0.70044088 -2.21795321 7.54969215 0.74352026 -2.40009761 7.79758453 1.1250273 + -2.44692707 7.83303022 1.21940291 -2.44165587 7.74951077 1.031624436 -2.45403481 7.79773951 1.24087739 + -2.45125675 7.72510433 1.047435045 -2.38561606 7.77128887 1.14064431 -2.41439176 7.77421999 1.24529147 + -2.42037153 7.71238852 1.060968757 -2.31084299 7.6956377 1.17527342 -2.34032273 7.69413805 1.26903915 + -2.34234762 7.64166784 1.1129545 -2.31141257 7.66246939 1.28212392 -2.32826209 7.61159086 1.13523424 + -2.42540026 7.77206421 1.14254153 -2.18356061 7.65171528 1.26960135 -2.1791997 7.66173935 1.17849433 + -2.19454169 7.60081768 1.12657547 -2.2565794 7.67728758 1.18101931 -2.25710297 7.66546106 1.27661359 + -2.27254748 7.61642265 1.12261975 -2.30816722 7.66352558 1.19214344 -2.37811947 7.69636869 0.88271493 + -2.43125224 7.71495008 0.97745454 -2.4073391 7.65560961 0.78723264 -2.44241762 7.69340611 0.99237347 + -2.41653442 7.63295937 0.79239291 -2.25518894 7.59063816 0.93997562 -2.27869081 7.56792307 1.037188411 + -2.28785729 7.58918905 1.030304432 -2.27295017 7.53740025 0.86217642 -2.25972819 7.52228165 0.87221533 + -2.36264253 7.68318796 0.89237565 -2.40334058 7.68321323 0.98739433 -2.38166428 7.628582 0.8028478 + -2.14709568 7.56268311 1.051816583 -2.24261212 7.57999086 1.036764622 -2.22891307 7.53548288 0.86953443 + -2.13300657 7.51683474 0.88884556 -2.21945238 7.59311914 0.94148076 -2.12104177 7.58311081 0.95450377 + -2.25160456 7.56966591 0.94769931 -2.28756332 7.80704165 0.41049418 -2.35361242 7.79120731 0.47193217 + -2.30043983 7.79135704 0.32492304 -2.34550714 7.75920773 0.47620249 -2.29355049 7.74675179 0.33154795 + -2.27264977 7.76806307 0.41831926 -2.31836987 7.74143553 0.48632643 -2.26784062 7.73261642 0.34394142 + -2.20845938 7.72823811 0.44334501 -2.25540566 7.70559883 0.50090933 -2.21259546 7.6949873 0.37790975 + -2.23472047 7.6823082 0.50767493 -2.18731332 7.66745234 0.389377 -2.29383349 7.77264786 0.41119117 + -2.14571905 7.6778717 0.40441388 -2.10514641 7.67807722 0.42289773 -2.11921072 7.7181139 0.48469332 + -2.17159867 7.72242403 0.46113741 -2.15060472 7.68860054 0.54510885 -2.19540095 7.69558477 0.52779138 + -2.19984126 7.70123911 0.44837713 -2.17699504 8.33043671 1.25850165 -2.1762197 8.3534565 1.2901026 + -2.35219979 8.2108736 1.21751356 -2.12779331 8.22896767 1.35023987 -2.14281368 8.30139923 1.31378627 + -2.14184117 8.27056503 1.27729928 -2.12307835 8.1999836 1.31546354 -2.32776427 8.15429592 1.22875583 + -2.309196 8.1019907 1.26904571 -2.11906123 8.15093136 1.35220528 -2.12457299 8.17986488 1.38260543 + -2.28920627 8.057537079 1.31002116 -2.14377356 8.060009956 1.43368649 -2.13556337 8.083381653 1.44798768 + -2.25261211 8.0072546005 1.38875079 -2.3926785 7.68140364 0.89009809 -2.5967474 8.2351799 0.30624798 + -2.65529156 8.68273926 0.37168208 -2.67542076 8.71995163 0.49594885 -2.66285467 8.78713417 0.67208171 + -2.25247288 7.62763405 0.5056774 -2.23861885 7.59943628 0.45191634 -2.20938778 7.6178546 0.39000845 + -2.55928016 7.96299934 0.88908064 -2.56563735 7.96961498 0.89614785 -2.53738904 7.8706007 0.68848616 + -2.53710699 7.87060976 0.67628217 -2.47413278 7.95016146 0.22078899 -2.57290173 7.94931221 0.31158593 + -2.50226188 8.054711342 1.11974716 -2.55814624 8.083747864 1.13280642 -2.617522 8.087612152 1.1074388 + -2.69355917 8.064723969 1.0016492605 -2.30171204 8.19176388 0.51406687 -2.2472589 8.73063183 0.42333531 + -2.60810995 8.65439987 0.24965614 -2.10593843 7.6058526 1.26175213 -2.087260485 7.59425211 1.20333588 + -2.11221886 7.56357908 1.15988135 -2.45245361 8.6810112 1.129143 -2.43134809 8.3641243 1.075913787 + -2.48125219 8.40258598 1.066558003 -2.52820969 8.47487831 1.072818756 -2.49064469 8.81540775 0.97873026 + -2.045121431 7.5278039 1.045787811 -2.017217159 7.51693296 0.98933059 -2.036756992 7.49034977 0.93608212 + -2.053640842 7.43590164 0.8686111 -2.01507163 7.42828655 0.81961662 -2.026279449 7.41915941 0.75942683 + -2.018545628 7.66411209 0.49479097 -2.024721384 7.67563105 0.53351814 -2.05036211 7.66841269 0.56973267 + -2.645432 8.83130264 0.32867187 -2.57092309 8.79146767 0.20411314 -2.41928363 8.76507187 0.15185063 + -2.36089087 8.77125549 0.18520527 -2.29842973 8.80608463 0.30714238 -2.31167698 8.85306454 0.44770813 + -2.31721354 8.91443062 0.60274792 -2.37749195 8.96919537 0.70049977 -2.15264225 8.20083809 1.41129386 + -2.18365574 8.022350311 1.40333331 -2.1710186 8.094589233 1.31075728 -2.17494726 8.1439867 1.26719356 + -2.19028783 8.20393276 1.22316885 -2.22995377 8.26586246 1.21721089 -2.27454901 8.40694046 0.96276039 + -2.26831388 8.47390938 0.75721169 -2.28019261 8.48501492 0.60445172 -2.23614788 8.47010326 0.46433222 + -2.21386957 8.45594025 0.29884398 -2.29277349 8.46324253 0.17291734 -2.41179991 8.46515369 0.14164633 + -2.51647162 8.45777798 0.1908498 -2.61008406 8.45988369 0.28627682 -2.6708715 8.46963215 0.42000777 + -2.69282174 8.51207924 0.56245697 -2.67983627 8.58779049 0.75012791 -2.5862956 8.71382618 0.91457629 + -2.62655592 8.83177567 0.74557304 -2.64067149 8.93311977 0.61921966 -2.36284256 8.41262054 1.31189787 + -2.20898008 8.41377258 1.28349638 -2.18693256 8.38404942 1.24966145; + setAttr ".vt[996:1161]" -2.1809442 8.35301495 1.2188766 -2.23422265 8.28600216 1.18366873 + -2.36041379 8.23568344 1.1888485 -2.40280867 8.25444794 1.20745778 -2.41234112 8.29714489 1.23813295 + -2.55472851 8.85876465 0.16511399 -2.63939738 8.90927124 0.29812536 -2.30209947 8.87766457 0.27328587 + -2.3045373 8.99214935 0.57789767 -2.35283875 8.83546448 0.16335647 -2.40143847 8.833951 0.13294566 + -2.28344631 8.93493366 0.42109841 -2.36977434 9.029989243 0.66720951 -2.27960348 9.13998795 0.52327913 + -2.25856423 9.021714211 0.22680457 -2.24959898 9.078717232 0.38153487 -2.37457967 8.99038792 0.080469318 + -2.52270174 9.022769928 0.088983484 -2.61653447 9.089993477 0.20965223 -2.35968924 9.19122505 0.61035693 + -2.31965613 8.99536991 0.12105806 -2.61522603 9.19663239 0.49479282 -2.62756157 9.0097332001 0.58357537 + -2.52605128 8.90906334 0.81733322 -2.53237176 8.97275543 0.70266736 -2.54841709 9.03887558 0.6672368 + -2.53980923 9.21921253 0.59154665 -0.77471268 13.75494576 0.45399049 -1.070301771 13.7273531 0.33277729 + -0.38384348 13.74255371 0.60003924 -0.30676073 13.836092 0.43829268 -0.663481 13.83743763 0.29209363 + -0.96537185 13.82090187 0.13243999 -0.80009091 14.022947311 -0.78394771 -1.30909276 12.5443306 -0.60095531 + -1.40700924 12.50159645 -0.2215119 -1.12110543 12.26210403 0.74943775 -0.68242908 13.60438156 -0.98269093 + -1.40368032 12.5305357 0.2495912 -1.96361613 13.68395233 -0.56458873 -2.032382488 13.63870049 -0.19675262 + -1.46045828 12.88046837 -0.58254844 -1.63001001 12.91728687 -0.78462517 -1.47370136 12.81397057 -0.23338951 + -2.21870184 12.71028042 -0.67336023 -1.9313904 12.79607296 0.17009214 -1.42713594 12.82779121 0.45827115 + -1.97201002 12.86836529 -0.81631845 -1.76406515 13.60364342 -0.7182945 -1.41611755 13.076757431 -0.23359172 + -1.32359207 13.30494499 0.44416133 -1.53370893 13.42260742 -0.73648357 -1.42361975 13.10314178 -0.58365208 + -1.74409842 13.43239212 0.23950133 -1.49173641 13.19186592 0.25430381 -2.18895912 12.68298435 -0.03553357 + -2.28276587 12.70767307 -0.3190769 -1.4496423 13.12038231 0.082570709 -1.61265218 12.8475914 0.055573031 + -1.96827686 13.54897404 0.070359968 -0.97647595 10.71192169 0.63878596 -1.062952995 10.75070572 0.1276101 + -0.84700876 10.77582264 -0.32022876 -0.63941777 10.6592474 1.14812267 -0.66179776 12.54990101 1.20364356 + -1.1677959 12.59675694 0.86473513 -0.49252516 12.68757153 -0.96209669 -0.62206388 10.82671642 -0.48245335 + -0.6635114 12.22486782 1.13015342 -2.37627053 8.22799778 0.99375212 -2.47720456 8.26344109 1.094510198 + -2.53787231 8.29483414 1.066030741 -1.37204218 4.77504396 0.30520287 -0.31036866 14.75404739 0.46096042 + -0.32150799 14.69697094 0.57255757 -0.31818238 14.64941406 0.76068747 -0.41634691 14.86025238 0.84129953 + -0.46255174 15.47357845 0.93640858 -0.94953138 0.53782803 0.609182 -1.24784994 0.53967106 0.57272863 + -1.49381459 0.47372571 0.36107138 -1.58840525 0.33449095 0.17805725 -1.59216976 0.25003368 0.13634776 + -1.57759213 0.14060329 0.1330245 -1.55754781 0.065680504 0.15553036 -1.47370756 0.013618652 0.19449237 + -1.3716532 0.015402446 0.228571 -1.21572936 0.018135304 0.28093538 -1.052459717 0.020955848 0.33388075 + -0.90553916 0.093348652 0.38234964 -0.78427863 0.22074163 0.43695748 -0.78546339 0.29302958 0.48004249 + -0.81347561 0.40446469 0.53096837 -2.46868253 8.38004971 1.14446163 -2.44090271 8.33914948 1.13098049 + -2.40212083 8.30863285 1.078383088 -2.25630903 8.36145687 1.066422343 -2.19969392 8.45424652 1.10287201 + -2.20604086 8.49868774 1.14943159 -2.23407793 8.54581738 1.2064724 -2.40819669 8.54294491 1.22997928 + -0.25631201 15.6686697 -0.39350063 -0.52333528 15.51026535 -0.12104277 -0.55932844 15.25364685 0.28494483 + -0.56404692 7.51263618 1.043949008 -0.97607458 7.53804398 1.12899184 -1.4465735 7.55644989 0.83189809 + -1.51411176 8.51521015 0.29952818 -1.4298867 8.45656204 0.79443449 -0.55226856 8.059742928 1.045358181 + -0.9539156 8.23951435 1.10769939 -2.62396836 9.13869953 0.3353748 -2.64589381 8.94976521 0.4214626 + -2.65519571 8.87133884 0.44961596 -1.080360532 0.11518574 1.50741851 -1.15378201 0.11436905 1.50427461 + -1.21529138 0.12019928 1.48556888 -0.57623178 13.13516045 -0.99981451 -0.10159411 13.83220768 0.49529573 + -0.19266145 10.42873669 -0.48355907 -0.32788053 10.89085388 -0.46522933 -0.9433865 12.62608719 -0.80701435 + -1.046620607 13.080767632 -0.89018905 -1.16930079 13.49607468 -0.87522334 -1.34276414 13.88356781 -0.73312151 + -1.44653225 14.057746887 -0.53043997 -1.47501683 13.98967743 -0.15286607 -1.4193064 13.81589699 0.056775033 + -1.35251856 13.62962246 0.22465652 -0.46395707 14.54793549 -0.25559613 -0.37139755 15.19937325 -0.25410026 + -0.42219925 15.62171936 -0.31548601 -0.49582654 16.62443542 0.11330778 -0.4704594 16.60032845 0.66704077 + -0.41693556 16.29612923 1.026978135 -0.3389529 15.89920998 1.22281444 -0.28429085 15.56566906 1.22065663 + -0.28691649 15.45867825 1.058277607 -0.28610459 14.84006977 0.95352054 -0.29638746 14.69559956 0.8800863 + -0.1311558 14.58813381 1.012080908 -0.27755111 16.27834129 -0.3512961 -0.48056638 16.14053535 -0.24254926 + -0.60731554 15.91001701 -0.078181177 -0.63422143 15.59236526 0.15670988 -0.72124064 15.58388329 0.15616067 + -0.61871725 15.51837158 0.38238794 -0.56183445 15.44569874 0.6157341 -0.46973783 15.33652687 0.95962447 + -0.28572273 15.31706238 1.068576813 -0.13002266 15.31656837 1.134758 -0.056362826 15.32353306 1.23200631 + -1.083186507 13.22800827 0.72296625 -0.58418071 13.19764328 0.90900499 -0.62729257 11.43884754 1.12309802 + -1.065110564 11.50035191 0.70917284 -1.23203027 11.60597801 0.18991897 -1.21743405 11.65394783 -0.25390083 + -1.012308478 11.70467091 -0.4960441 -0.65461785 11.78033638 -0.65890759 -0.2702657 11.86323357 -0.7705403 + -1.69913101 13.75435066 0.080481455 -1.58297086 13.56886673 0.24112701 -1.49031675 13.38838673 0.34368595 + -1.439098 12.96338654 0.37548509 -1.39279664 12.73374176 0.18484907; + setAttr ".vt[1162:1327]" -1.3921628 12.73749924 -0.20197077 -1.33869302 12.77767277 -0.57140231 + -1.24756503 13.11426067 -0.76187658 -1.38329005 13.48734379 -0.8046121 -1.58924782 13.78286076 -0.71838117 + -1.74021268 13.9019413 -0.54135412 -1.75976872 13.87557316 -0.15823759 -2.14951777 13.16989708 0.028508328 + -1.90396357 13.14706326 0.211943 -1.68457115 13.1087513 0.23161022 -1.56254876 13.074278831 0.088471726 + -1.48965907 13.023816109 -0.21996003 -1.39658964 13.12631702 -0.53045332 -1.58641303 13.23672676 -0.74091059 + -1.89335525 13.23176003 -0.76916832 -2.16276145 13.22267342 -0.61435187 -2.23164415 13.22933102 -0.2455028 + -1.21222949 12.91077995 -0.71523792 1.20393169 9.44025898 0.85121667 1.27283323 9.72514439 0.46017617 + 1.030815721 10.12021065 0.55849099 1.13876653 10.29289913 0.011660585 1.22257912 9.81996632 -0.13244937 + 0.66309524 9.025151253 1.18608224 0.72410876 9.90525913 -0.62350476 0.76660442 10.36813545 -0.41885775 + 0.43961188 8.50921917 1.099303365 0.49315798 8.40100574 1.021306634 1.03891933 5.054422855 0.88697958 + 0.58692837 6.56479836 0.98498112 0.3726218 6.71005774 -0.35092676 0.58985662 5.39427614 -0.20237339 + 0.23224264 6.57994652 0.67231494 1.34317458 6.76038885 -0.33885136 0.67504299 5.058180809 -0.15175079 + 0.42529187 4.98247433 0.42594153 0.47522289 4.50304937 0.2962217 0.4279466 5.3102355 0.51151764 + 0.75347686 4.23971844 0.52705276 1.0043781996 4.056382656 0.54827309 1.041778088 4.71236563 0.84025729 + 0.71884775 4.5022254 0.63284856 1.27570069 4.5169282 0.54013318 1.034293532 4.49405432 0.77360559 + 0.71166694 4.99971533 0.74955964 0.71077919 4.7253809 0.6971693 1.27640426 4.73079824 0.60820794 + 1.02156353 4.23025084 0.66264206 1.25859141 4.26112747 0.42735916 1.39573741 8.60988331 -0.49487698 + 1.37576973 7.63443136 -0.42611691 0.23679809 7.61134338 -0.39524314 0.77308756 8.61679649 -0.95550823 + 1.23972464 4.095407009 0.37089163 1.16646647 5.016129494 -0.04545575 1.19151771 4.8055644 -0.068218231 + 1.36903322 4.98824596 0.31443548 1.35252047 4.55985403 0.22791263 1.26522398 5.022899628 0.66050464 + 0.70154095 5.24078608 0.79540563 1.49064553 6.68411827 0.30955341 1.53493059 7.59433413 0.30190331 + 1.023600578 5.23672581 0.88407439 1.20537734 2.34184456 -0.0056892503 0.77142709 2.26977992 -0.61210799 + 0.73292994 2.82130003 -0.68114901 0.7077238 4.3834343 -0.34520954 0.6581105 2.26606226 -0.49982187 + 0.60070223 2.80711389 -0.54830563 0.58952945 4.12775946 0.18750575 0.50725937 2.86165833 -0.2604481 + 0.62733144 2.31508946 -0.175658 1.27846324 2.29820633 -0.27828148 1.39448667 2.91845703 -0.47614527 + 0.74477363 4.68912029 -0.1978538 0.71850383 4.8513546 -0.16113117 1.36174273 4.34491396 -0.1492247 + 1.2203449 4.60275602 -0.11301445 0.46885246 4.26418352 0.0025728571 0.59895188 4.3528986 -0.23869191 + 0.59639102 4.65466118 -0.089084551 0.78973609 7.64370012 -0.60853112 0.83169764 6.75467157 -0.44464999 + 1.28305185 5.25763559 0.68044674 1.36255252 5.30894804 0.32933486 1.18449557 5.35148096 -0.11173421 + 0.96699822 4.6754446 -0.21368361 0.93538117 4.84683895 -0.17999321 0.90130097 5.061037064 -0.17530383 + 0.85492778 5.39225864 -0.24407899 1.067870378 4.3843565 -0.37652901 0.85701066 4.38700962 -0.43274572 + 0.9514659 2.84007597 -0.74000758 0.95183754 2.26565027 -0.6491161 1.20085025 2.86284494 -0.66103625 + 1.14487743 2.298841 -0.58737522 0.78246224 4.073489666 0.43143767 0.55912137 4.25505686 0.21117592 + 1.00086283684 6.56979799 1.071010232 1.41802418 6.62678337 0.8105433 1.36598969 4.20544434 0.08716885 + 1.28001213 3.88267446 0.28996804 1.42349637 3.95087981 -0.051312156 1.42811775 3.98702836 -0.35552937 + 1.1848098 3.99521446 -0.54680133 0.94205618 3.98013258 -0.6374768 0.71632719 3.97777581 -0.57505488 + 0.55675399 3.96572471 -0.44351345 0.42272741 3.92606115 -0.13239941 0.61989915 3.86777282 0.13290767 + 1.34519732 4.31872654 0.14314574 1.31063545 3.41637707 0.17845625 1.48169041 3.45186734 -0.18369663 + 1.48274612 3.48345208 -0.46440452 1.23577547 3.47355556 -0.66268998 0.95241928 3.45802951 -0.7664659 + 0.70134962 3.46444678 -0.69864637 0.52918828 3.466043 -0.56295228 0.41219479 3.47912025 -0.22203389 + 0.6350255 3.43155289 0.029007999 0.78665447 8.883955 1.0073524714 0.10351342 8.74051571 -0.83118379 + 0.13623954 8.046209335 -0.65085334 0.15618011 7.95523453 0.79724932 0.11287121 7.91483641 0.16871667 + 0.21818677 6.64757252 0.080950901 0.13280129 7.51243973 0.78556478 0.099844702 7.55883217 0.15120623 + 0.46394295 5.37542725 -0.0099762464 0.52915782 5.036091805 -0.032660414 0.5718742 4.80943441 -0.049013048 + 0.44138283 4.73416996 0.36929616 0.70762843 9.86446095 1.18046188 0.4655458 10.39655685 -0.52140051 + 0.29227343 9.79662323 -0.7000556 0.76883346 3.8337431 0.35603225 0.78298897 3.3955245 0.24790761 + 0.78747171 2.34574485 0.048784748 1.0019823313 3.81331229 0.48470187 1.014687419 3.37912297 0.37243149 + 0.98626864 2.35708809 0.17760575 1.37488508 0.302203 -0.35502076 1.38555813 0.16242918 -0.34318638 + 1.34414923 0.057180189 -0.3151356 0.6869027 0.15893555 -0.10345125 0.68164086 0.4160744 -0.1127525 + 1.34149301 0.43139434 -0.35273087 0.69356972 0.66928709 -0.18465912 1.17634988 1.80141699 -0.033074126 + 0.67546999 1.81931686 -0.19529212 0.82983297 1.83391452 -0.58715475 0.76437473 0.47814524 -0.78976715 + 0.75412393 0.31077808 -0.80459309 1.5690093 0.18050267 0.96060652 1.61006498 0.17628002 0.94688386 + 1.69511855 0.19043261 0.81483412 1.70139742 0.14251947 0.92210567 1.69839549 0.099208951 1.055144072 + 1.68873572 0.061386507 1.1162585 1.46776545 0.18586695 1.039050341 1.45273137 0.18945776 1.052346706 + 1.4612174 0.14956266 1.19709897 1.46857131 0.12260288 1.28205264 1.30781507 0.21214847 1.096553445 + 1.32374549 0.1600935 1.20980477 1.33337379 0.12337313 1.30253112; + setAttr ".vt[1328:1493]" 1.28037727 0.221799 1.10756981 1.086762905 0.24051552 1.14533734 + 1.1427393 0.18194088 1.37082314 0.86412215 0.078583144 1.37246287 0.83218408 0.069803432 1.023941517 + 1.71268916 0.12912941 0.81160975 1.71248078 0.10844514 0.91785228 1.68421412 0.025372779 1.11097884 + 1.70267987 0.081324592 0.79669446 1.69176531 0.072152883 0.91827226 1.66350603 0.0015894331 1.097483635 + 1.59556377 0.04343595 0.95750284 1.59896791 0.023791866 1.10228825 1.31556368 0.042276271 1.085679889 + 1.34858775 0.080764949 1.21405983 1.34857023 0.056270674 1.28956449 1.43575644 0.032500222 1.050012231 + 1.45253038 0.071700707 1.18979526 1.46516263 0.049237795 1.2670027 1.46712565 0.034668282 1.020787239 + 1.64484286 0.012620586 1.15528965 1.26360989 0.041334942 1.099068284 1.065635324 0.04656855 1.13911092 + 1.12570369 0.016127139 1.34288788 1.10082889 0.12261061 1.14536548 1.16470599 0.087323293 1.34474993 + 1.12317359 0.23745428 1.13258338 1.12652791 0.12815543 1.15044904 1.30969501 0.095030144 1.11279178 + 1.59547818 0.12481735 0.95072865 1.59126925 0.075555414 1.12306082 1.128654 0.042948522 1.12695098 + 0.9861958 0.035094671 1.50419152 1.110829 0.043804742 1.48755252 0.91712326 0.010579755 1.35580289 + 1.44931078 0.10462482 1.057118177 1.29374075 0.094923548 1.11754382 0.77393579 0.16587041 1.047501802 + 0.89236575 0.17466214 1.39293182 0.9889636 0.1058335 1.52587748 1.10816431 0.11042321 1.50937498 + 1.60209334 0.098815233 1.13190877 1.603127 0.029321197 1.16785288 1.60484743 0.042674292 1.17541373 + 1.61467767 0.058253046 1.17648566 1.65364528 0.043619059 1.16659462 1.65268266 0.023209875 1.16272807 + 1.45826709 0.05973424 1.39452946 1.45167577 0.080319658 1.38625205 1.37663686 0.081607424 1.39735055 + 1.37307608 0.062974297 1.40137112 1.37543178 0.042958837 1.40199149 1.45567989 0.040143453 1.39121318 + 1.33129203 0.10731469 1.21494806 1.46559417 0.10704733 1.052136779 1.55325425 0.04543896 0.96988064 + 1.56903791 0.12218939 0.9627564 1.34067154 0.08532545 1.29644108 1.47433662 0.084431402 1.26734388 + 1.46719289 0.095094621 1.19180346 1.31461954 0.096263766 1.22481453 1.3288846 0.068814829 1.33059764 + 1.18312573 0.087716162 1.34940577 1.15637207 0.1263295 1.24891555 1.31851125 0.045268744 1.43724358 + 1.24134898 0.043777235 1.45007622 1.23766196 0.067736812 1.44984782 1.24255967 0.08784683 1.44723153 + 1.3152889 0.086719818 1.441517 1.32293785 0.06645678 1.44423747 1.32235694 0.020121977 1.32114851 + 1.3038708 0.077444091 1.23792112 1.18805099 0.043454003 1.33986735 1.16910493 0.077123433 1.25352585 + 1.18684137 0.13180125 1.35801923 1.15614426 0.15659125 1.25545788 1.31834805 0.1344997 1.3441155 + 1.31022978 0.17642361 1.24007189 1.58649695 0.13068368 1.12912273 1.58743083 0.1076216 1.20143628 + 1.47811854 0.12795512 1.14515364 1.47958279 0.10894805 1.21627891 1.47717631 0.073762164 1.12622118 + 1.47950256 0.020777896 1.19538569 1.57861841 0.078690596 1.11087453 1.58642602 0.034631316 1.17810965 + 1.57481694 0.043917358 1.28919435 1.57237554 0.062896065 1.28826332 1.51006222 0.063822776 1.30531633 + 1.50479031 0.042151619 1.30834031 1.50603592 0.026789499 1.29526246 1.57095289 0.02246885 1.27847481 + 1.46842468 0.091371439 1.13585758 1.46837687 0.072314501 1.20695055 1.59206021 0.076317072 1.18872428 + 1.59125805 0.094057016 1.11489964 0.643282 0.45195055 -0.67392325 0.62827277 0.29801646 -0.67430824 + 0.7199555 1.82286024 -0.47671312 1.044238329 1.82330728 -0.57945299 0.91293561 1.8295002 -0.6225704 + 0.90608692 0.48296532 -0.81482887 0.90994185 0.31782043 -0.84059501 0.93107498 0.058051884 -0.75377667 + 0.78807932 0.055733386 -0.69938838 0.94924015 -0.00091475592 -0.64058226 1.020888805 0.2187137 1.3897748 + 1.054890275 0.03019719 1.50298572 1.029056787 -0.010138905 1.34690678 1.053274035 0.11580727 1.52849019 + 1.18130481 0.34427217 1.026647091 1.34510171 0.31219137 0.98882794 1.37472832 0.2619864 1.074065089 + 1.39694309 0.19705543 1.20995092 1.40737998 0.16620912 1.29803014 1.40407932 0.054870285 1.19557631 + 1.40434301 0.013549879 1.26583278 1.19242775 0.31128016 1.098336697 1.41870689 0.087446235 1.40705073 + 1.41869295 0.059400693 1.40853477 1.41719747 0.026500653 1.40149796 1.27871132 0.033616059 1.45445824 + 1.27893722 0.068098724 1.46108103 1.27661097 0.0939762 1.4560647 1.25322342 0.0069201831 1.31920958 + 1.23416853 0.056334287 1.24475837 1.24842262 0.18251514 1.36652255 1.22411966 0.23374313 1.26117682 + 1.52396226 0.27399671 0.92233837 1.5322032 0.24485166 1.0049077272 1.5368675 0.17488135 1.15229976 + 1.53303933 0.13782573 1.21894145 1.53094912 0.042996664 1.11697769 1.5263797 -0.00091561553 1.18575799 + 1.53855479 0.064578421 1.30777073 1.53996813 0.039411023 1.31066513 1.53778672 0.012568147 1.29235661 + 1.63959491 0.24752951 0.85440952 1.65375495 0.21163096 0.9484545 1.65976357 0.15045586 1.080778122 + 1.65056014 0.052000739 0.92573953 1.62297773 -0.00091561553 1.094560266 1.62243748 0.014075131 1.15562654 + 1.62587821 0.031130781 1.1789645 1.6369257 0.053261865 1.18054819 1.64993978 0.09749566 1.13477612 + 1.047182322 0.47719193 -0.76755786 1.088149548 0.31679058 -0.79569525 1.098959208 0.15604191 -0.79194939 + 1.08036232 0.063125595 -0.75194085 0.95382261 0.3648825 1.064013124 0.6697619 0.26729047 -0.085845374 + 0.65039611 0.14935549 -0.63019252 0.75731677 0.14784765 -0.76075912 0.92243028 0.1493787 -0.81174099 + 0.70106184 0.053325478 -0.56464803 0.83741367 -0.00091475592 -0.58829397 0.76932579 -0.00091475592 -0.49589226 + 0.97941357 0.018388044 1.14287519 0.85224682 0.05586319 1.14334059 0.79378283 0.14634582 1.13943291 + 0.82283407 0.23736662 1.15543234 0.97040749 0.33188102 1.15713239 0.96607405 -0.00091561553 0.99428523 + 1.19192529 0.037484527 1.11526275 1.36754966 0.025358165 1.06985116; + setAttr ".vt[1494:1659]" 0.8096596 0.26132703 1.058126211 1.32873249 -0.00091561553 0.91267484 + 1.51393652 0.024640348 0.99502808 1.48855925 -0.00091561553 0.86470473 1.1510272 -0.00091561553 0.95456553 + 1.57546782 -0.00091561553 0.82848936 1.31109381 0.6199702 0.099262625 1.26327419 1.80771744 -0.30213135 + 1.00167799 0.27525437 1.31966269 1.13929391 0.21820134 1.28808749 1.15092671 0.11824182 1.2690922 + 1.1199069 0.059411865 1.25539577 1.0053079128 0.025778539 1.25888181 0.89559823 0.048072953 1.2757386 + 0.8344872 0.1077067 1.29268563 0.85698861 0.20105112 1.31422985 0.8273952 0.62691534 0.32697788 + 0.82605642 0.99872684 0.034048874 0.72298336 0.96087253 -0.21942112 0.78108037 0.99424458 -0.55001533 + 0.85806829 1.0061688423 -0.64021301 1.024424672 0.73633033 -0.70560789 0.91880131 0.74047387 -0.71576399 + 0.8115322 0.72857189 -0.69243038 0.70637727 0.70773715 -0.60644674 1.26016343 0.69512594 -0.37023962 + 1.23980105 0.76120031 -0.054602627 0.92342514 1.01049304 -0.64938474 1.023216009 1.010793805 -0.61377048 + 1.238289 0.98276383 -0.3503089 1.18376827 1.0094037056 -0.080029249 0.80954254 0.77601731 0.099962622 + 1.060262799 -0.00091475592 -0.63714522 1.25241673 -0.00091475592 -0.271929 1.14912057 -0.00091475592 -0.23021948 + 1.004171133 -0.00091475592 -0.18299051 0.87665486 -0.00091475592 -0.14393137 0.76663631 0.053096808 -0.12283687 + 1.64739311 0.018177427 0.80900663 1.70069766 0.067533933 1.038738728 1.68136978 0.043689549 1.025577903 + 1.64032781 0.026904693 1.025115013 1.60224092 0.040894795 1.033495784 1.59052241 0.10011332 1.066868186 + 1.59774625 0.13404839 1.079108596 1.064202547 0.6700815 0.30848473 1.0012345314 0.83166224 0.10193662 + 0.98340493 1.026443124 0.067257747 0.97315419 1.82839382 0.11916538 0.80170739 1.81822848 0.045235749 + 0.24195772 15.22966385 -0.30574942 0.64975953 15.3692503 0.17625031 0.77696526 15.78343296 0.30130538 + 0.59508812 15.26827431 0.32525456 0.48856822 15.068079948 0.15175632 0.55614036 15.33718109 0.1741066 + 0.63503408 16.20087624 0.56575841 0.24997868 16.69621468 0.70997655 0.44540641 15.14034176 -0.080664694 + 0.66595656 15.77148628 0.27958596 0.27387229 16.75072289 0.079248533 0.66033411 16.23870277 0.18488862 + 0.62862337 15.64702606 0.41107613 0.85487825 14.24641418 -0.55794013 0.9329775 14.15792656 -0.17190766 + 0.055401638 15.45932484 1.20453727 0.43311641 15.58750916 1.075014591 0.12171549 14.82025433 1.085306048 + 0.11401056 14.99105263 1.10948431 0.5627597 16.099069595 0.80639106 0.19982758 16.36986732 1.12949991 + 0.48185694 15.84601402 1.055336833 0.16320328 15.91368866 1.29799879 0.56629771 15.56540966 0.64835483 + 0.13184856 15.55892658 1.28508735 0.11116931 15.4428978 1.14520895 0.54449934 15.024586678 0.3210772 + 0.49527162 15.034637451 0.27410343 0.063832045 15.041158676 1.29462731 0.50720292 14.94906616 0.52390248 + 0.32431868 14.6332798 -0.43131524 0.51153195 14.44976521 -0.03834866 0.44502431 14.3584013 0.18513796 + 0.30324414 14.26520157 0.32797244 0.14734589 14.53156376 0.93686497 0.15017323 14.60122776 0.73042983 + 0.14177617 14.69508839 0.5482589 0.14195758 14.20965576 0.45513856 2.36031199 10.013544083 -0.36885402 + 2.28604579 11.41787624 -0.83215445 2.064279795 12.066934586 -0.83199525 2.13236761 11.22285175 -0.79354972 + 2.32981205 11.21992016 -0.8302778 2.26605392 10.033370018 -0.37771773 2.34427929 11.057483673 -0.77259135 + 2.15943766 11.058077812 -0.75009036 2.069601059 11.40353107 -0.80591774 2.17790985 12.058211327 -0.011919132 + 1.63991475 12.017400742 -0.42578274 2.4257021 12.11773205 -0.54649055 2.47812867 11.24799633 -0.74766505 + 2.56119084 11.37446404 -0.40087003 2.45154214 11.37515259 -0.21735168 2.57252765 10.122015 -0.013361268 + 2.48737812 10.034734726 -0.28929636 2.5466609 10.076881409 -0.14106983 2.51654553 10.18124294 0.13711098 + 2.27211428 12.08854866 -0.76657975 1.81652105 11.45838642 -0.54584026 1.85106182 11.43779755 -0.28525701 + 2.55451202 11.27661896 -0.62255758 2.58516097 11.31898499 -0.50867474 1.92065644 12.025392532 0.042997234 + 2.41609454 10.2291584 0.23837484 2.187814 10.23724365 0.25846905 2.051462173 10.21024799 0.17009164 + 1.99912393 10.10577106 -0.25406119 2.43170333 11.48265648 -0.75608349 1.85007179 11.25241089 -0.58628839 + 2.53804398 11.58791733 -0.55127585 2.4314754 11.55514908 -0.2612963 2.49365973 11.079717636 -0.67088526 + 2.57745957 11.11806774 -0.55020964 2.62535286 11.14412212 -0.41862869 2.56869125 11.17575359 -0.27339774 + 2.45427203 11.18317223 -0.10722602 2.031567335 11.096670151 -0.10621155 1.85659313 11.094105721 -0.59515989 + 1.96465135 10.1772604 0.023326775 1.88928533 11.072133064 -0.28107512 1.8898524 11.25790977 -0.29319414 + 2.024316549 11.37744808 -0.11967214 2.036547899 11.24494743 -0.13557371 2.20797801 11.44748306 -0.093522318 + 2.21540308 11.29978275 -0.10323452 2.21384668 11.13696194 -0.054367907 1.70841205 12.032687187 -0.13947149 + 1.81002748 12.021547318 -0.75517935 2.36888456 12.084700584 -0.24422695 2.11915469 8.83246422 0.69962293 + 2.52487421 8.58925056 0.20984069 2.43709326 8.5824728 0.12341703 2.45813966 8.26924229 0.88875353 + 2.56754041 8.15216064 0.52439898 2.55449986 7.88678217 0.56452203 2.53989434 8.17735767 0.69536483 + 2.52088451 7.93520832 0.76571703 2.45959353 7.83129263 0.40755579 2.46308351 7.8116641 0.46310487 + 2.4121449 7.7846899 0.43084827 2.40928555 7.79727554 0.42797387 2.40513754 7.91837072 0.89887094 + 2.46235871 7.80994463 0.65451932 2.50242972 7.82851553 0.32685578 2.4610846 7.81455517 0.22164823 + 2.39900374 7.81177855 0.19965687 2.42096758 7.8760891 0.18017879 2.5104723 8.16196156 0.20469899 + 2.44093704 8.15670872 0.13216163 2.40745735 7.90148926 0.86632383 2.31351757 8.043709755 1.080332041 + 2.53320146 7.8152709 0.57027495 2.49861169 7.85986519 0.78618032 2.43147731 8.035692215 0.99776995 + 2.33135748 8.30506039 0.99318099 1.99734545 8.77675438 0.81450266; + setAttr ".vt[1660:1825]" 2.24344563 8.036634445 1.07915926 1.91336346 8.67665577 0.95783055 + 2.45551467 7.81189585 0.67412823 2.36017632 7.62731647 0.66839725 2.33101702 7.63242722 0.66857255 + 2.41316462 7.60198832 0.5895564 2.37573433 7.59354639 0.4911668 2.32784104 7.59290123 0.47208643 + 2.3092792 7.5811758 0.68064028 2.31529427 7.55321407 0.47478479 2.33798742 7.57423592 0.67896777 + 2.39562273 7.54336786 0.59811938 2.30415654 7.52835321 0.67180026 2.27947092 7.55034351 0.6735549 + 2.3396194 7.49360609 0.59506583 2.31786013 7.50210094 0.49932337 2.28581142 7.5275445 0.48000619 + 2.20262313 7.4232235 0.66189826 2.17738366 7.44154072 0.66355109 2.23518276 7.39528751 0.59487092 + 2.21786761 7.39975405 0.51153219 2.19367266 7.41450644 0.49198869 2.14357829 7.40909719 0.66165572 + 2.16551566 7.38628006 0.49506944 2.16540217 7.38692284 0.66039431 2.20075893 7.34936476 0.60209769 + 2.18137932 7.36742163 0.51829213 1.96080673 7.2966342 0.51770568 1.95391273 7.29887056 0.51053184 + 1.92350614 7.29274702 0.56003708 1.93882632 7.28174734 0.5645594 1.93490469 7.3082428 0.61510706 + 1.94325185 7.30389786 0.60645306 2.079073429 7.31888247 0.5060491 2.061332226 7.34237385 0.64858752 + 2.093178034 7.3129344 0.58854753 2.12835884 7.37254047 0.65973699 2.11326385 7.39529753 0.66576934 + 2.14903355 7.33600807 0.59359461 2.14560223 7.34646845 0.51123023 2.13658333 7.36715984 0.4896405 + 2.03944397 7.35864067 0.65363002 2.062097549 7.33463049 0.48615167 2.35738158 7.54172421 0.49232507 + 2.16186619 7.7259922 1.13584089 2.12103558 7.74449587 1.12717378 2.23248768 7.6862998 1.081251502 + 2.22985625 7.66119957 0.98024911 2.19288135 7.667521 0.94003654 2.097034931 7.70157766 1.14291453 + 2.1777494 7.62833738 0.95509088 2.12904119 7.67398643 1.15097892 2.19294953 7.62400484 1.095996976 + 2.1970017 7.61426735 0.99875867 2.088177204 7.6426754 1.14412904 2.061268806 7.67145252 1.13497078 + 2.14563894 7.59443569 1.089550018 2.16107225 7.58612823 0.99908829 2.14636993 7.60828781 0.95922881 + 2.0010612011 7.57644558 1.13024032 1.9780407 7.59644508 1.11882699 2.056501865 7.53046417 1.080852389 + 2.069485426 7.52282858 0.99313748 2.052049637 7.53967667 0.96229362 1.93341684 7.56402683 1.11073363 + 2.010500669 7.51150417 0.96012682 1.95046186 7.54440308 1.11705542 2.0075078011 7.49045944 1.078668594 + 2.017516136 7.4970336 0.98619676 1.79201055 7.4385066 0.93411088 1.79106355 7.44578934 0.92282653 + 1.75728989 7.46468639 1.011202693 1.74812627 7.47514391 1.00537467 1.75019979 7.45244598 0.95851588 + 1.76055479 7.44395304 0.97365284 1.83692408 7.51097298 1.071065545 1.82808304 7.5288372 1.063702822 + 1.89249742 7.4712038 0.92190748 1.90021396 7.45710659 0.94239444 1.89867854 7.46687889 1.026582837 + 1.90297699 7.52705431 1.10255766 1.8857789 7.55192041 1.093786001 1.95288956 7.48129416 1.052892685 + 1.97198498 7.47972345 0.96746916 1.96542943 7.49738741 0.94353867 2.24723864 7.61684465 0.89968777 + 2.20536613 7.63371754 0.89842564 2.30904484 7.57924032 0.83211625 2.28773308 7.56945562 0.73706084 + 2.24835873 7.57816029 0.69737273 2.18506646 7.60258818 0.90553778 2.23689222 7.54577446 0.70170599 + 2.22163749 7.57913971 0.90526301 2.28295135 7.53504658 0.84084064 2.2647872 7.53120852 0.73571968 + 2.048218727 7.46485567 0.88438332 2.027499437 7.48657227 0.8818329 2.010012865 7.46827269 0.87739283 + 2.095659256 7.41849518 0.82865936 2.097610235 7.41688681 0.7313686 2.061560154 7.41963387 0.71023947 + 2.080015421 7.43444014 0.70830929 2.17687654 7.55955696 0.89524853 2.14990592 7.584167 0.89177537 + 2.22995758 7.51136589 0.83354461 2.22408271 7.5109334 0.73502588 2.20286655 7.52962351 0.70096338 + 2.025709867 7.44193888 0.88485473 2.065849304 7.39033556 0.82857448 2.074014425 7.3943367 0.73514223 + 1.78493428 7.38436413 0.79248196 1.77605093 7.38854027 0.7870611 1.774441 7.35924101 0.74021906 + 1.79296851 7.35051107 0.74885213 1.80688262 7.35489082 0.69271678 1.81764698 7.35346174 0.69725633 + 1.93819273 7.36795235 0.70116466 1.93818629 7.3657856 0.79483545 1.88793373 7.41492081 0.85217899 + 1.97870076 7.43886566 0.87521321 2.019462347 7.38108635 0.81716484 2.029609203 7.3913269 0.72004211 + 1.96794939 7.46362925 0.87055057 1.87481904 7.43577576 0.85116231 1.92955625 7.38393211 0.68169075 + 2.023268223 7.41064739 0.7003122 2.3637414 7.69829178 0.40749753 2.33154821 7.71215105 0.41474244 + 2.40092945 7.67374325 0.34449634 2.37244725 7.68710709 0.26121596 2.3320601 7.70215559 0.23829666 + 2.31127715 7.66904736 0.416015 2.31070089 7.65800238 0.24310957 2.33614802 7.65211582 0.41023108 + 2.36566687 7.62256527 0.34796011 2.34528303 7.63728094 0.2682994 2.30081797 7.61541367 0.40901458 + 2.27979636 7.63565826 0.41546026 2.32578206 7.58988094 0.34784222 2.30897307 7.60291004 0.27395621 + 2.28080416 7.62626457 0.24772537 2.23985052 7.57241344 0.40531415 2.26291275 7.54423666 0.34940147 + 2.25119591 7.55499363 0.27731445 2.22408175 7.57898903 0.25578693 2.21534324 7.59798861 0.40813464 + 2.18453169 7.57420158 0.40925756 2.19627261 7.54959345 0.26152721 2.011657715 7.467484 0.3094686 + 2.0013589859 7.47992563 0.3048718 1.9889847 7.48136711 0.34261596 2.0016698837 7.46644974 0.3475638 + 2.00046277046 7.49173403 0.38309777 2.0085644722 7.48086834 0.38331494 2.11419964 7.50642443 0.28181785 + 2.1586473 7.50876188 0.2825442 2.1014843 7.52434063 0.26589546 2.14386868 7.53632641 0.26299512 + 2.140661 7.56050587 0.40621704 2.096511126 7.53772259 0.40373442 2.11766934 7.5153966 0.39703143 + 2.15670753 7.52207994 0.40084988 2.13130474 7.48306942 0.35043305 2.16981936 7.49485159 0.35030237 + 1.72994435 8.38144493 1.098494887 1.9186548 8.24375916 1.17280257; + setAttr ".vt[1826:1991]" 1.92867208 8.20649815 1.13827419 1.83886194 8.34913158 1.22361016 + 1.7318207 8.013074875 1.17624044 1.73282933 8.0084276199 1.15954006 1.6060102 8.10223484 1.15672123 + 1.64706492 8.014917374 1.164837 1.65420389 8.029058456 1.19909978 1.76055479 8.21185017 1.21474171 + 1.73142874 8.16475487 1.21657228 1.79105175 8.26828957 1.21650696 1.69506609 8.3236084 1.10369813 + 1.66342771 8.25868893 1.10860252 1.84599292 8.12342834 1.16266561 1.88402903 8.18223953 1.16385579 + 1.85424018 8.10525417 1.13736427 1.89482927 8.15637493 1.12809241 1.8164326 8.065464973 1.14733136 + 1.80874491 8.078138351 1.16732788 2.093037128 8.77883053 0.58671457 2.16506648 8.66104507 0.42090216 + 2.32614994 8.59599686 0.11425356 2.2154038 8.60109901 0.19780466 2.17223024 7.97342539 0.8981055 + 2.22794867 7.87023926 0.85612732 2.16998529 7.90358639 0.93464214 2.20924497 7.94563103 0.78880286 + 2.23709035 7.90777349 0.67704672 2.23659706 7.82779598 0.71531552 2.24189115 7.83508873 0.80393702 + 2.29825115 7.79620028 0.65992361 2.3039546 7.78902292 0.61175096 2.30893517 7.81061172 0.39511555 + 2.32811546 7.78580904 0.45584008 2.27466369 7.86978149 0.50306869 2.29767036 7.78068924 0.53029829 + 2.28421545 7.83556747 0.30572852 2.29192352 7.90413761 0.28780389 2.33015776 7.88103867 0.1975342 + 2.31390214 7.81691742 0.21950699 2.22143674 8.10405636 0.61280668 2.17674351 8.097492218 0.73822367 + 2.25251436 8.1268177 0.22018559 2.33465433 8.14419365 0.12547527 2.19243503 8.014738083 1.048118711 + 1.98736024 8.61108875 0.64945567 1.89140868 8.50508022 0.86808228 1.97986555 8.71205616 0.71688068 + 1.89500999 8.5882988 0.89614481 2.23006201 7.6263113 0.54997033 2.27445984 7.63309288 0.65303069 + 2.29433179 7.60124588 0.47315866 2.27346945 7.59549427 0.66192997 2.27968311 7.57214212 0.47620678 + 2.21689939 7.58811426 0.5595578 2.24616456 7.57253599 0.65508395 2.2514441 7.55454016 0.48357227 + 2.12689114 7.47547531 0.5674848 2.14772654 7.46272612 0.64653891 2.15382171 7.44414091 0.48970592 + 2.12299466 7.43271494 0.64750326 2.14311457 7.41352034 0.49282718 2.23849654 7.59931517 0.55839843 + 2.10930395 7.40006113 0.48482648 2.0686059 7.45619678 0.55694634 2.085024834 7.4293313 0.64847261 + 1.98108232 7.41587925 0.54886782 2.006169796 7.39188385 0.63563627 2.030094862 7.36612654 0.47882825 + 2.11725616 7.44633961 0.57142854 2.078032494 7.72655869 0.98817235 2.084715128 7.75150919 1.096574545 + 2.15004992 7.67902279 0.9186635 2.080324411 7.71921539 1.11676013 2.14968371 7.65225887 0.93556392 + 2.053938866 7.6943574 0.99623382 2.041888237 7.69456196 1.10422683 2.11550999 7.6374464 0.93556672 + 1.97251534 7.61791182 0.9950189 1.96505713 7.61395931 1.093148589 2.024698496 7.56549311 0.9491291 + 1.93177569 7.58052492 1.092177868 2.00081133842 7.53375483 0.96200716 2.090817928 7.69733381 1.013480186 + 1.81642532 7.55216169 1.037855387 1.83893204 7.56239462 0.94998282 1.87772429 7.50441933 0.90894854 + 1.90848517 7.58738089 0.9780792 1.88126683 7.57484579 1.06897068 1.94984126 7.52960014 0.93109179 + 1.95898676 7.58366776 1.0066726208 2.14400697 7.63443661 0.75699729 2.15666056 7.64855814 0.86702108 + 2.20581985 7.59412432 0.68082708 2.1568284 7.62298536 0.88457739 2.20785666 7.5674901 0.6886881 + 2.0075335503 7.51144266 0.76129174 1.99265623 7.48566294 0.8596999 2.0055088997 7.50894928 0.85766917 + 2.054798126 7.46116638 0.69598877 2.036547899 7.44378328 0.69932443 2.11871576 7.60985041 0.76099223 + 2.12244511 7.60905743 0.86496353 2.17137027 7.55857992 0.68528241 1.86477482 7.45913744 0.82657981 + 1.95535469 7.490026 0.84636915 2.0040051937 7.44945145 0.68581253 1.91193235 7.41704941 0.67001259 + 1.96265066 7.50340509 0.74825442 1.86858165 7.47877979 0.72552127 1.99751878 7.48794317 0.76592195 + 2.24727201 7.73794508 0.31379598 2.2843051 7.72870445 0.39940986 2.29256153 7.71886635 0.24286962 + 2.27165985 7.69406462 0.4027614 2.28197527 7.67213535 0.25015813 2.22362351 7.68346643 0.31924069 + 2.24500275 7.66637707 0.40287587 2.25545096 7.64934492 0.25255239 2.16629457 7.63110876 0.3195565 + 2.19174004 7.61825991 0.39372134 2.20248938 7.60024977 0.26462901 2.17227077 7.59127188 0.39348552 + 2.17999911 7.56810808 0.26731625 2.24720669 7.69936275 0.32043886 2.13275313 7.56059933 0.26379263 + 2.091986895 7.54511929 0.26482469 2.064641237 7.58275509 0.32322332 2.11519742 7.60691786 0.32177711 + 2.082148314 7.56286812 0.39413843 2.12296796 7.58636951 0.3951965 2.15756035 7.60216141 0.32309765 + 1.74808288 8.3422451 1.036245823 1.7328459 8.36507416 1.063020468 1.90682995 8.20353413 1.095883012 + 1.65692103 8.24792957 1.062487364 1.69297135 8.32002544 1.052329063 1.71070135 8.29208279 1.018769383 + 1.67096317 8.22246265 1.028158307 1.88144076 8.15400314 1.07894063 1.84114861 8.10198593 1.093604088 + 1.64452755 8.17182064 1.049315929 1.63356686 8.1974411 1.080611229 1.79975915 8.057892799 1.10888767 + 1.61391163 8.072331429 1.11906755 1.60060453 8.095604897 1.12831604 1.72361767 8.0076789856 1.14359069 + 2.14890361 7.6140213 0.76949751 2.55777454 8.15997601 0.34039935 2.57764935 8.60929394 0.42991331 + 2.55234885 8.63929844 0.55447692 2.47662973 8.69547272 0.71657509 2.20734286 7.54348516 0.40427935 + 2.22464609 7.51418781 0.35217211 2.21552014 7.5258894 0.28176785 2.31975389 7.87249041 0.85443908 + 2.32432699 7.87757444 0.86407518 2.3789444 7.78632736 0.65964347 2.38900089 7.78199244 0.64981431 + 2.48480129 7.86937141 0.20924118 2.54242516 7.87422705 0.33361924 2.18286562 7.95761919 1.04397881 + 2.23096728 7.98170757 1.08290875 2.29595089 7.9834199 1.086011767 2.40541148 7.96159697 1.020627499 + 2.21140695 8.099415779 0.41627306 2.17810822 8.6387434 0.32211342; + setAttr ".vt[1992:2157]" 2.57666016 8.58649349 0.29752094 1.75245309 7.49715853 1.0060482025 + 1.75452757 7.48388624 0.94512916 1.79553628 7.45699692 0.91402596 2.083656788 8.64720631 1.066520929 + 2.082369566 8.29867458 1.026141167 2.13242221 8.33566952 1.037407756 2.17304564 8.40966606 1.061592102 + 2.19561505 8.7404747 0.93546724 1.77791703 7.41065454 0.78524858 1.772066 7.39781857 0.72266537 + 1.81182158 7.37596893 0.68050444 1.92484939 7.3254199 0.61141044 1.90833926 7.31968594 0.55026019 + 1.94177759 7.31375742 0.49955443 1.99958575 7.49672031 0.29829523 1.9860456 7.50691938 0.33516222 + 1.9977752 7.50703096 0.37927136 2.5769217 8.76407242 0.38975707 2.5514617 8.7337904 0.24250403 + 2.4288857 8.70300579 0.13526168 2.36298847 8.70323944 0.14458235 2.26191592 8.7238102 0.23657535 + 2.224576 8.758708 0.37523419 2.17415094 8.80803299 0.52455431 2.19424152 8.8573761 0.64134288 + 1.64126182 8.21205139 1.12345541 1.66086268 8.031516075 1.11469126 1.70635962 8.11158085 1.041209817 + 1.73655236 8.16307354 1.014558077 1.77645731 8.22317314 0.99640787 1.80956364 8.27306461 1.028599739 + 1.95927501 8.37060833 0.86683249 2.059145212 8.38459873 0.66124469 2.15188837 8.38930225 0.49884582 + 2.16031456 8.37851524 0.351127 2.19777513 8.37006283 0.18839711 2.31493735 8.38465977 0.10219509 + 2.43642497 8.39144802 0.11960617 2.51697516 8.38550186 0.20571737 2.57096934 8.38673878 0.33054262 + 2.58082461 8.39262009 0.47852021 2.55047131 8.42937851 0.62029856 2.47015071 8.49660015 0.79199183 + 2.32075071 8.61436558 0.91198099 2.41555166 8.73439789 0.77263576 2.46910429 8.83822823 0.66479486 + 1.88415253 8.40347576 1.18509924 1.76677918 8.41848469 1.077261329 1.76158464 8.38902569 1.036137462 + 1.76856327 8.35698128 1.006511569 1.82507157 8.28314018 1.0055801868 1.9257319 8.22069073 1.078356743 + 1.95460892 8.23625088 1.11740386 1.95171773 8.27950954 1.1488837 2.5444591 8.80494022 0.2040614 + 2.57628632 8.84575844 0.36334366 2.27145863 8.79918957 0.2113746 2.16548872 8.88121796 0.50412321 + 2.35779309 8.77138996 0.1249861 2.41333055 8.77560902 0.11473395 2.20144486 8.83965683 0.34609759 + 2.19430852 8.91290855 0.61448711 2.15009403 9.032530785 0.45393652 2.23680639 8.9448843 0.16138807 + 2.1732316 8.98478127 0.30600291 2.39531946 8.93527794 0.066684574 2.52847719 8.97435188 0.13245358 + 2.57180667 9.033509254 0.28488347 2.192662 9.078634262 0.56891388 2.33033466 8.93307114 0.084187433 + 2.46923041 9.10964775 0.55771852 2.46412897 8.91518307 0.63212866 2.29502153 8.80742073 0.80089259 + 2.33769512 8.86608219 0.70331657 2.36053133 8.93119812 0.6823554 2.36524725 9.11797523 0.62112367 + 0.77674991 13.75400734 0.45398888 1.071092963 13.72252178 0.33265331 0.38624901 13.74301815 0.60002935 + 0.30937406 13.83607578 0.43828803 0.66631025 13.83667183 0.29208735 0.96804661 13.81803703 0.13242421 + 0.80551654 14.025354385 -0.78324229 1.30624211 12.5441246 -0.60087663 1.40539217 12.50104618 -0.22133148 + 1.12455118 12.26206017 0.74944395 0.6844511 13.61013222 -0.98116452 1.40547049 12.53040314 0.24959615 + 1.98491693 13.66419315 -0.53947139 2.032367945 13.62514496 -0.16533019 1.51003861 12.84861374 -0.60289991 + 1.71079302 12.88578415 -0.77384156 1.48355114 12.79067135 -0.25395045 2.2892673 12.70070839 -0.56592524 + 1.88386214 12.79160404 0.21269965 1.42725265 12.82683945 0.45828784 2.058072805 12.84787273 -0.75449377 + 1.79088926 13.57951736 -0.71035331 1.41003847 13.065049171 -0.24947497 1.31556606 13.29976559 0.4433791 + 1.54730463 13.39888096 -0.74927473 1.42133343 13.088751793 -0.59855276 1.71069384 13.42432499 0.25216249 + 1.46718347 13.18249321 0.2493017 2.16145968 12.6807127 0.056893766 2.29952621 12.70200157 -0.20908445 + 1.43413365 13.11112976 0.073287733 1.58755243 12.83429241 0.05402863 1.94688582 13.54020882 0.10059192 + 0.97999811 10.71192169 0.63878596 1.066475272 10.75070572 0.1276101 0.85053098 10.77582264 -0.32022876 + 0.64293998 10.6592474 1.14812267 0.66504234 12.54983234 1.2036624 1.17069423 12.59638214 0.864793 + 0.49342054 12.69011116 -0.96158218 0.62558609 10.82671642 -0.48245335 0.66703361 12.22486782 1.13015342 + 2.11414456 8.12577343 0.89327228 2.16956854 8.15869713 1.027974844 2.21769428 8.20113468 1.040197253 + 1.36264348 4.77405119 0.27489069 0.31206375 14.75404739 0.46096042 0.32325059 14.69697094 0.57255757 + 0.31996453 14.64941406 0.76068747 0.41795364 14.86025238 0.84129953 0.46364823 15.47357845 0.93640858 + 0.88453066 0.5094893 0.62151951 1.18390107 0.51488197 0.59719098 1.43990171 0.45584226 0.39441675 + 1.54430342 0.32139659 0.21254538 1.5510534 0.23789874 0.16920488 1.53805041 0.12842192 0.16290662 + 1.51796293 0.052831173 0.18292925 1.4331001 -0.00091561553 0.21725024 1.3295716 -0.00091561553 0.24711138 + 1.17138135 -0.00091561553 0.2930305 1.0058252811 -0.00091561553 0.33922961 0.85591084 0.06889993 0.38314411 + 0.73064238 0.19383256 0.43544549 0.72893119 0.26518604 0.48009849 0.75315762 0.37578383 0.53454363 + 2.05269146 8.3516922 1.099716425 2.041057348 8.30483627 1.075307488 2.021178246 8.28352642 1.0080201626 + 1.90643716 8.35007477 0.92216772 1.84936559 8.4495945 0.91903639 1.83653212 8.49612427 0.9621287 + 1.83764136 8.54419231 1.026126385 1.9777447 8.52990532 1.14083338 0.25724614 15.6686697 -0.39350063 + 0.52440119 15.51026535 -0.12104277 0.56060791 15.25364685 0.28494483 0.56536531 7.51072979 1.037003517 + 0.97742754 7.5340848 1.12213933 1.44777143 7.55281305 0.82447916 1.51763916 8.51330376 0.29627627 + 1.43380439 8.4528389 0.79183424 0.55584639 8.057655334 1.043086529 0.9579888 8.23570156 1.10652745 + 2.53397512 9.069189072 0.40832716 2.53891897 8.87349033 0.48368144 2.54316998 8.79292965 0.50861174 + 0.97895712 0.068384998 1.51458645 1.052458048 0.068393596 1.51446223; + setAttr ".vt[2158:2225]" 1.11468387 0.075257979 1.49844623 0.57517529 13.14100742 -0.99861121 + 0.10402285 13.83220768 0.49529573 0.19688013 10.42873669 -0.48355907 0.33140272 10.89085388 -0.46522933 + 0.94250381 12.627491 -0.80679178 1.041543245 13.082061768 -0.88994098 1.16704488 13.49417591 -0.87474406 + 1.34872401 13.87493229 -0.73384964 1.4554714 14.046102524 -0.52919281 1.48007345 13.97735023 -0.15127115 + 1.41945505 13.80456448 0.058068465 1.34659576 13.62050533 0.22548962 0.4657903 14.54793549 -0.25559613 + 0.37272212 15.19937325 -0.25410026 0.42317244 15.62171936 -0.31548601 0.49596542 16.62443542 0.11330778 + 0.4706184 16.60032845 0.66704077 0.41734761 16.29612923 1.026978135 0.33969522 15.89920998 1.22281444 + 0.28531072 15.56566906 1.22065663 0.28802532 15.45867825 1.058277607 0.2877281 14.84006977 0.95352054 + 0.29813117 14.69559956 0.8800863 0.13298893 14.58813381 1.012080908 0.277978 16.27834129 -0.3512961 + 0.48110789 16.14053535 -0.24254926 0.6080488 15.91001701 -0.078181177 0.6352191 15.59236526 0.15670988 + 0.72224534 15.58388329 0.15616067 0.61977643 15.51837158 0.38238794 0.56295407 15.44569874 0.6157341 + 0.47094828 15.33652687 0.95962447 0.2869494 15.31706238 1.068576813 0.13124974 15.31656837 1.134758 + 0.057584103 15.32353306 1.23200631 1.081925511 13.22620201 0.72307736 0.58581507 13.19764423 0.9090156 + 0.63081473 11.43884754 1.12309802 1.068632722 11.50035191 0.70917284 1.23555243 11.60597801 0.18991897 + 1.22095633 11.65394783 -0.25390083 1.015830755 11.70467091 -0.4960441 0.65814 11.78033638 -0.65890759 + 0.27378789 11.86323357 -0.7705403 1.68814898 13.74210835 0.090414733 1.56221545 13.5593462 0.24625073 + 1.46722066 13.38139629 0.34132594 1.42310202 12.95831966 0.36827761 1.38071537 12.72755527 0.17464396 + 1.38477838 12.73019505 -0.21307436 1.33220363 12.7700634 -0.58143711 1.24390209 13.10765934 -0.77052492 + 1.38637805 13.47476959 -0.8116039 1.60280752 13.76541233 -0.71784103 1.75288999 13.88460732 -0.53190112 + 1.75988698 13.86080265 -0.14744635 2.12081337 13.16247082 0.088218488 1.85964203 13.13962746 0.23887132 + 1.64585412 13.097286224 0.23086295 1.53739405 13.061156273 0.075328499 1.49190664 13.0062255859 -0.24406725 + 1.4279381 13.095623016 -0.5679059 1.63955212 13.20402145 -0.75047755 1.9554981 13.20776081 -0.7330448 + 2.20664024 13.20668316 -0.54713988 2.23509717 13.21768951 -0.17654385 1.2077837 12.9069252 -0.72248197; + setAttr -s 4488 ".ed"; + setAttr ".ed[0:165]" 0 1 0 1 9 1 9 8 1 8 0 1 1 2 0 2 10 1 10 9 1 2 3 0 3 11 1 + 11 10 1 3 4 0 4 12 1 12 11 1 4 5 0 5 13 1 13 12 1 5 6 0 6 14 1 14 13 1 6 7 0 7 15 1 + 15 14 1 7 0 0 8 15 1 9 16 1 16 8 1 10 16 1 11 16 1 12 16 1 13 16 1 14 16 1 15 16 1 + 36 18 0 18 26 1 26 35 0 35 36 1 18 33 0 33 34 1 34 26 0 19 20 0 20 28 1 28 27 0 27 19 1 + 20 21 0 21 29 1 29 28 0 21 37 0 37 38 1 38 29 0 22 39 0 39 40 1 40 30 0 30 22 1 23 24 0 + 24 32 1 32 31 0 31 23 1 24 17 0 17 25 1 25 32 0 33 19 0 27 34 0 17 36 0 35 25 0 37 22 0 + 30 38 0 39 23 0 31 40 0 41 42 0 42 50 1 50 49 1 49 41 1 42 43 0 43 51 1 51 50 1 43 44 0 + 44 52 1 52 51 1 44 45 0 45 53 1 53 52 1 45 46 0 46 54 1 54 53 1 46 47 0 47 55 1 55 54 1 + 47 48 0 48 56 1 56 55 1 48 41 0 49 56 1 50 57 1 57 49 1 51 57 1 52 57 1 53 57 1 54 57 1 + 55 57 1 56 57 1 58 59 0 59 67 1 67 66 1 66 58 1 59 60 0 60 68 1 68 67 1 60 61 0 61 69 1 + 69 68 1 61 62 0 62 70 1 70 69 1 62 63 0 63 71 1 71 70 1 63 64 0 64 72 1 72 71 1 64 65 0 + 65 73 1 73 72 1 65 58 0 66 73 1 67 74 1 74 66 1 68 74 1 69 74 1 70 74 1 71 74 1 72 74 1 + 73 74 1 75 76 0 76 84 1 84 83 1 83 75 1 76 77 0 77 85 1 85 84 1 77 78 0 78 86 1 86 85 1 + 78 79 0 79 87 1 87 86 1 79 80 0 80 88 1 88 87 1 80 81 0 81 89 1 89 88 1 81 82 0 82 90 1 + 90 89 1 82 75 0 83 90 1 84 91 1 91 83 1 85 91 1 86 91 1 87 91 1 88 91 1 89 91 1 90 91 1 + 135 1103 1 1103 1104 1; + setAttr ".ed[166:331]" 1104 134 1 134 135 1 138 137 1 137 141 1 141 140 1 140 138 1 + 96 248 1 248 139 1 139 95 1 95 96 1 135 138 1 138 165 1 165 1103 1 140 168 1 168 165 1 + 125 1115 1 1115 94 1 94 125 1 249 250 1 250 140 1 141 249 1 250 237 1 237 168 1 135 136 1 + 136 137 1 127 142 1 142 92 1 92 127 1 240 93 1 93 92 1 92 239 1 239 240 1 240 238 1 + 238 97 1 97 93 1 225 251 1 251 252 1 252 235 1 235 225 1 251 254 1 254 255 1 255 252 1 + 218 228 1 228 227 1 227 217 1 217 218 1 179 256 1 256 255 1 255 227 1 227 179 1 228 188 1 + 188 179 1 256 253 1 253 252 1 253 187 1 187 235 1 254 217 1 184 183 1 183 180 1 180 181 1 + 181 184 1 223 233 1 233 232 1 232 222 1 222 223 1 181 232 1 233 184 1 233 234 1 234 186 1 + 186 184 1 186 187 1 187 183 1 228 229 1 229 189 1 189 188 1 234 235 1 189 210 1 210 211 1 + 211 188 1 220 230 1 230 229 1 229 219 1 219 220 1 218 219 1 193 202 1 202 206 1 206 192 1 + 192 193 1 230 210 1 182 196 1 196 195 1 195 182 1 207 190 1 190 196 1 182 207 1 202 190 1 + 207 206 1 180 209 1 209 208 1 208 181 1 208 231 1 231 232 1 231 221 1 221 222 1 231 230 1 + 220 221 1 208 210 1 209 211 1 238 197 1 197 168 1 237 238 1 237 98 1 98 97 1 197 166 1 + 166 165 1 177 1103 1 166 177 1 250 125 1 125 98 1 215 199 1 199 178 1 178 214 1 214 215 1 + 213 154 1 154 212 1 212 185 1 185 213 1 213 152 1 152 157 1 157 154 1 154 163 1 163 155 1 + 155 212 1 161 247 1 247 151 1 151 160 1 160 161 1 178 175 1 175 145 1 145 214 1 175 153 1 + 153 148 1 148 145 1 1102 1104 1 177 1102 1 164 158 1 158 173 1 173 226 1 226 164 1 + 171 193 1 193 173 1 173 1068 1 1068 171 1 158 162 1 162 1068 1 215 176 1 176 200 1 + 200 199 1 151 153 1 175 160 1 1105 239 1 239 143 1 143 1105 1 172 1068 1 162 174 1 + 174 172 1; + setAttr ".ed[332:497]" 236 134 1 1104 1106 1 1106 236 1 156 144 1 144 174 1 + 162 156 1 158 159 1 159 156 1 164 163 1 163 159 1 157 159 1 157 161 1 161 156 1 160 144 1 + 164 169 1 169 155 1 178 144 1 199 174 1 244 153 1 151 245 1 245 244 1 166 149 1 149 176 1 + 176 177 1 244 241 1 241 148 1 201 200 1 149 201 1 247 246 1 246 245 1 194 213 1 185 194 1 + 196 152 1 194 196 1 205 201 1 149 198 1 198 205 1 146 147 1 147 205 1 198 146 1 197 198 1 + 197 167 1 167 146 1 171 203 1 203 202 1 203 191 1 191 190 1 204 170 1 170 201 1 205 204 1 + 171 170 1 204 203 1 150 191 1 204 150 1 147 150 1 234 224 1 224 225 1 223 224 1 194 195 1 + 170 172 1 172 200 1 192 226 1 241 243 1 243 242 1 242 148 1 254 155 1 169 217 1 218 216 1 + 216 192 1 192 219 1 206 220 1 207 221 1 182 222 1 195 223 1 194 224 1 185 225 1 212 251 1 + 248 134 1 236 139 1 236 143 1 143 142 1 142 139 1 1106 1105 1 241 146 1 167 243 1 + 244 147 1 245 150 1 246 191 1 246 196 1 247 152 1 493 464 1 464 479 1 479 494 1 494 493 1 + 477 476 1 476 469 1 469 473 1 473 477 1 465 479 1 479 263 1 263 466 1 466 465 1 496 264 1 + 264 478 1 478 495 1 495 496 1 478 477 1 473 474 1 474 478 1 497 465 1 466 265 1 265 497 1 + 495 465 1 497 496 1 262 454 1 454 474 1 473 262 1 469 428 1 428 262 1 477 455 1 455 381 1 + 381 476 1 467 466 1 263 472 1 472 467 1 471 468 1 468 467 1 472 471 1 380 467 1 468 266 1 + 266 380 1 468 475 1 475 382 1 382 266 1 475 476 1 381 382 1 470 475 1 471 470 1 470 469 1 + 1085 1084 1 1084 484 1 484 485 1 485 1085 1 1088 261 1 261 464 1 464 1074 1 1074 1088 1 + 493 1075 1 1075 1074 1 493 454 1 454 1076 1 1076 1075 1 258 1079 1 1079 1078 1 1078 257 1 + 257 258 1 485 260 1 260 1086 1 1086 1085 1 260 433 1 433 1087 1 1087 1086 1 1084 1083 1 + 1083 483 1 483 484 1 1083 1082 1; + setAttr ".ed[498:663]" 1082 482 1 482 483 1 445 304 1 304 313 1 313 452 1 452 445 1 + 428 429 1 429 257 1 257 262 1 429 430 1 430 258 1 260 434 1 434 379 1 379 433 1 378 472 1 + 263 261 1 261 378 1 481 259 1 259 431 1 431 480 1 480 481 1 267 471 1 378 267 1 378 379 1 + 379 268 1 268 267 1 383 470 1 267 383 1 268 384 1 384 383 1 259 258 1 430 431 1 485 437 1 + 437 434 1 437 386 1 386 435 1 435 434 1 386 385 1 385 436 1 436 435 1 483 438 1 438 439 1 + 439 484 1 438 386 1 437 439 1 482 387 1 387 438 1 387 385 1 480 387 1 482 481 1 430 436 1 + 385 431 1 384 429 1 428 383 1 320 388 1 388 391 1 391 321 1 321 320 1 284 322 1 322 391 1 + 388 284 1 369 416 1 416 413 1 413 361 1 361 369 1 416 370 1 370 363 1 363 413 1 426 326 1 + 326 323 1 323 427 1 427 426 1 327 426 1 427 274 1 274 327 1 283 444 1 444 432 1 432 283 1 + 462 461 1 461 441 1 441 442 1 442 462 1 304 459 1 459 458 1 458 306 1 306 304 1 392 308 1 + 308 283 1 432 392 1 306 309 1 309 313 1 441 440 1 440 445 1 445 286 1 286 441 1 461 460 1 + 460 440 1 308 309 1 306 283 1 286 319 1 319 442 1 458 457 1 457 283 1 444 456 1 456 463 1 + 463 443 1 443 444 1 463 462 1 442 443 1 448 432 1 443 448 1 319 448 1 457 456 1 460 459 1 + 304 440 1 316 461 1 462 285 1 285 316 1 285 1110 1 1110 314 1 314 316 1 315 1112 1 + 1112 307 1 307 305 1 305 315 1 307 458 1 459 305 1 284 457 1 307 284 1 456 388 1 + 320 463 1 320 285 1 321 1110 1 1112 322 1 344 348 1 348 347 1 347 354 1 354 344 1 + 390 460 1 316 390 1 390 305 1 389 390 1 314 389 1 389 315 1 391 1111 1 1111 1110 1 + 1112 1111 1 282 392 1 392 393 1 393 279 1 279 282 1 392 399 1 399 308 1 282 399 1 + 279 310 1 310 318 1 318 282 1 295 303 1 303 318 1 310 295 1 449 452 1 452 303 1 295 449 1 + 446 407 1 407 353 1 353 303 1; + setAttr ".ed[664:829]" 303 446 1 353 342 1 342 318 1 313 355 1 355 407 1 446 313 1 + 310 335 1 335 296 1 296 295 1 359 282 1 342 359 1 342 343 1 343 358 1 358 359 1 353 352 1 + 352 343 1 309 345 1 345 355 1 308 357 1 357 345 1 407 406 1 406 352 1 355 354 1 354 406 1 + 399 409 1 409 357 1 359 409 1 356 349 1 349 348 1 344 356 1 343 351 1 351 350 1 350 358 1 + 352 346 1 346 351 1 345 344 1 357 356 1 406 403 1 403 346 1 347 403 1 409 408 1 408 356 1 + 358 408 1 403 404 1 404 351 1 348 404 1 349 405 1 405 404 1 405 350 1 408 405 1 276 394 1 + 394 393 1 393 276 1 394 279 1 410 275 1 275 276 1 393 410 1 275 336 1 336 317 1 317 276 1 + 298 317 1 336 301 1 301 298 1 336 374 1 374 364 1 364 301 1 296 397 1 397 447 1 447 295 1 + 397 299 1 299 298 1 298 447 1 279 280 1 280 335 1 299 341 1 341 317 1 395 394 1 276 277 1 + 277 395 1 278 396 1 396 395 1 277 278 1 395 280 1 396 281 1 281 280 1 297 398 1 398 397 1 + 296 297 1 398 300 1 300 299 1 281 339 1 339 335 1 339 297 1 300 340 1 340 341 1 277 341 1 + 340 278 1 375 374 1 374 362 1 362 363 1 363 375 1 365 364 1 375 365 1 330 400 1 400 396 1 + 278 330 1 297 333 1 333 402 1 402 398 1 402 334 1 334 300 1 329 340 1 334 329 1 329 330 1 + 331 332 1 332 339 1 281 331 1 332 333 1 400 331 1 400 401 1 401 332 1 329 401 1 402 401 1 + 419 270 1 270 269 1 269 410 1 410 419 1 338 311 1 311 293 1 293 337 1 337 338 1 453 451 1 + 451 337 1 293 453 1 1081 481 1 1082 1081 1 269 411 1 411 410 1 411 275 1 270 311 1 + 338 269 1 412 411 1 269 360 1 360 412 1 412 362 1 362 275 1 338 377 1 377 360 1 366 377 1 + 337 366 1 364 414 1 414 450 1 450 301 1 337 450 1 414 366 1 413 412 1 360 361 1 365 415 1 + 415 414 1 415 367 1 367 366 1 368 376 1 376 367 1 367 373 1 373 368 1 361 376 1; + setAttr ".ed[830:995]" 368 369 1 372 365 1 375 371 1 371 372 1 370 371 1 418 415 1 + 372 418 1 418 373 1 376 377 1 416 417 1 417 371 1 368 417 1 418 417 1 290 291 1 291 288 1 + 288 287 1 287 290 1 293 422 1 422 486 1 486 453 1 272 420 1 420 419 1 419 271 1 271 272 1 + 288 272 1 271 287 1 420 421 1 421 492 1 492 270 1 270 420 1 273 421 1 272 273 1 288 487 1 + 487 273 1 291 488 1 488 487 1 289 487 1 488 292 1 292 289 1 293 490 1 490 489 1 489 422 1 + 423 489 1 490 294 1 294 423 1 492 491 1 491 311 1 491 490 1 491 312 1 312 294 1 489 488 1 + 291 422 1 423 292 1 423 424 1 424 302 1 302 292 1 492 323 1 323 312 1 421 427 1 312 325 1 + 325 324 1 324 294 1 326 325 1 324 424 1 302 328 1 328 289 1 328 327 1 274 289 1 273 274 1 + 424 425 1 425 328 1 325 425 1 426 425 1 496 256 1 179 264 1 253 497 1 265 187 1 265 380 1 + 380 183 1 188 455 1 455 264 1 266 180 1 211 381 1 382 209 1 261 433 1 435 268 1 436 384 1 + 451 449 1 449 298 1 301 451 1 1088 1087 1 494 474 1 494 495 1 1081 1080 1 1080 259 1 + 290 486 1 129 1137 1 1137 508 1 508 101 1 101 129 1 1128 1138 1 1138 1139 1 1139 509 1 + 509 1128 1 1138 1127 1 1127 1098 1 1098 1139 1 129 124 1 124 1097 1 1097 1137 1 1140 503 1 + 503 499 1 499 1141 1 1141 1140 1 500 1141 1 1141 1142 1 1142 510 1 510 500 1 503 1099 1 + 1099 501 1 501 499 1 124 99 1 99 498 1 498 1097 1 1098 503 1 1140 1139 1 502 525 1 + 525 1099 1 503 502 1 507 510 1 510 504 1 504 509 1 509 507 1 1129 1128 1 504 1129 1 + 508 505 1 505 100 1 100 101 1 528 112 1 112 102 1 102 511 1 511 528 1 117 1029 1 + 1029 511 1 102 117 1 104 111 1 111 526 1 526 516 1 516 104 1 522 523 1 523 513 1 + 513 522 1 1072 527 1 527 1071 1 1071 1135 1 1135 1072 1 1071 532 1 532 1136 1 1136 1135 1 + 520 522 1 522 114 1 114 105 1 105 520 1 514 1132 1 1132 1131 1 1131 519 1; + setAttr ".ed[996:1161]" 519 514 1 1147 526 1 111 130 1 130 1147 1 1131 1130 1 + 1130 517 1 517 519 1 105 106 1 106 518 1 518 520 1 1130 1129 1 504 517 1 519 521 1 + 521 1073 1 1073 514 1 1069 534 1 534 533 1 533 1070 1 1070 1069 1 110 533 1 534 108 1 + 108 110 1 516 515 1 515 109 1 109 104 1 528 498 1 99 112 1 534 535 1 535 113 1 113 108 1 + 1073 1133 1 1133 1132 1 533 532 1 1071 1070 1 513 103 1 103 114 1 505 518 1 106 100 1 + 532 107 1 107 128 1 128 1136 1 110 107 1 564 1010 1 1010 1016 1 1016 541 1 541 564 1 + 537 544 1 544 539 1 539 540 1 540 537 1 538 585 1 585 544 1 537 538 1 539 543 1 543 542 1 + 542 540 1 543 541 1 541 536 1 536 542 1 544 556 1 556 566 1 566 539 1 575 564 1 543 575 1 + 566 575 1 572 571 1 571 551 1 551 554 1 554 572 1 579 560 1 560 545 1 545 581 1 581 579 1 + 579 557 1 557 584 1 584 560 1 580 578 1 578 557 1 579 580 1 583 562 1 562 563 1 563 574 1 + 574 583 1 573 561 1 561 562 1 583 573 1 540 548 1 548 565 1 565 537 1 545 586 1 586 568 1 + 568 581 1 586 547 1 547 567 1 567 568 1 567 558 1 558 559 1 559 567 1 567 549 1 549 550 1 + 550 568 1 536 552 1 552 569 1 569 542 1 573 572 1 554 561 1 552 553 1 553 570 1 570 569 1 + 567 565 1 548 558 1 555 565 1 547 555 1 555 538 1 571 570 1 553 551 1 557 556 1 556 546 1 + 546 584 1 581 582 1 582 580 1 575 577 1 577 576 1 576 564 1 563 576 1 577 574 1 578 566 1 + 569 548 1 570 558 1 571 559 1 549 559 1 572 549 1 573 550 1 585 546 1 550 582 1 574 580 1 + 582 583 1 578 577 1 1001 965 1 965 964 1 964 1002 1 1002 1001 1 1108 1002 1 964 1109 1 + 1109 1108 1 987 986 1 986 927 1 927 591 1 591 987 1 989 988 1 988 593 1 593 590 1 + 590 989 1 612 953 1 953 990 1 990 612 1 988 987 1 591 593 1 595 939 1 939 601 1 601 595 1 + 1067 952 1 952 953 1 612 1067 1 937 936 1 936 616 1; + setAttr ".ed[1162:1327]" 616 600 1 600 937 1 609 619 1 619 617 1 617 600 1 600 609 1 + 597 621 1 621 620 1 620 596 1 596 597 1 601 742 1 742 740 1 740 595 1 939 938 1 938 602 1 + 602 601 1 938 604 1 604 603 1 603 602 1 939 927 1 927 605 1 605 938 1 605 606 1 606 604 1 + 589 984 1 984 985 1 985 588 1 588 589 1 985 986 1 986 946 1 946 588 1 985 605 1 984 606 1 + 587 1019 1 1019 954 1 954 613 1 613 587 1 616 594 1 594 592 1 592 600 1 620 619 1 + 609 596 1 954 990 1 953 950 1 950 954 1 1020 992 1 992 991 1 991 1019 1 1019 1020 1 + 950 1096 1 1096 1095 1 1095 615 1 615 950 1 952 1090 1 1090 1089 1 1089 953 1 1067 1066 1 + 1066 951 1 951 952 1 951 1091 1 1091 1090 1 618 937 1 617 618 1 617 624 1 624 622 1 + 622 618 1 619 625 1 625 624 1 620 657 1 657 625 1 623 657 1 621 623 1 624 626 1 626 627 1 + 627 622 1 657 629 1 629 628 1 628 625 1 623 630 1 630 629 1 626 631 1 631 632 1 632 627 1 + 626 628 1 628 633 1 633 631 1 629 634 1 634 633 1 630 635 1 635 634 1 631 638 1 638 636 1 + 636 632 1 633 639 1 639 638 1 634 640 1 640 639 1 637 640 1 635 637 1 641 647 1 647 656 1 + 656 642 1 642 641 1 642 643 1 643 644 1 644 641 1 643 645 1 645 646 1 646 644 1 645 655 1 + 655 648 1 648 646 1 638 650 1 650 651 1 651 636 1 650 652 1 652 649 1 649 648 1 648 650 1 + 653 640 1 637 654 1 654 653 1 653 652 1 652 639 1 644 649 1 649 647 1 653 647 1 655 651 1 + 654 656 1 599 607 1 607 934 1 934 935 1 935 599 1 942 941 1 941 614 1 614 608 1 608 942 1 + 943 942 1 608 611 1 611 943 1 599 661 1 661 660 1 660 943 1 943 599 1 659 941 1 942 658 1 + 658 659 1 660 658 1 935 662 1 662 661 1 658 665 1 665 663 1 663 659 1 666 665 1 660 666 1 + 661 667 1 667 666 1 664 667 1 662 664 1 665 668 1 668 669 1 669 663 1 670 668 1 666 670 1 + 667 671 1 671 670 1; + setAttr ".ed[1328:1493]" 664 672 1 672 671 1 668 673 1 673 674 1 674 669 1 675 673 1 + 670 675 1 671 676 1 676 675 1 672 677 1 677 676 1 673 680 1 680 678 1 678 674 1 681 680 1 + 675 681 1 676 682 1 682 681 1 679 682 1 677 679 1 683 692 1 692 691 1 691 684 1 684 683 1 + 686 690 1 690 689 1 689 685 1 685 686 1 687 686 1 685 688 1 688 687 1 688 683 1 684 687 1 + 688 693 1 693 692 1 680 694 1 694 695 1 695 678 1 696 694 1 681 696 1 682 697 1 697 696 1 + 679 698 1 698 697 1 690 695 1 694 689 1 693 689 1 696 693 1 697 692 1 698 691 1 616 702 1 + 702 701 1 701 610 1 610 616 1 701 699 1 699 607 1 607 610 1 699 700 1 700 934 1 936 703 1 + 703 702 1 699 706 1 706 704 1 704 700 1 701 707 1 707 706 1 702 708 1 708 707 1 705 708 1 + 703 705 1 709 721 1 721 711 1 711 710 1 710 709 1 712 722 1 722 721 1 709 712 1 713 723 1 + 723 722 1 712 713 1 714 723 1 713 715 1 715 714 1 706 716 1 716 717 1 717 704 1 707 718 1 + 718 716 1 708 719 1 719 718 1 705 720 1 720 719 1 716 709 1 710 717 1 718 712 1 719 713 1 + 720 715 1 725 737 1 737 732 1 732 724 1 724 725 1 724 727 1 727 726 1 726 725 1 727 729 1 + 729 728 1 728 726 1 729 730 1 730 738 1 738 728 1 733 734 1 734 731 1 731 732 1 732 733 1 + 734 735 1 735 730 1 730 731 1 736 733 1 737 736 1 735 739 1 739 738 1 721 733 1 736 711 1 + 722 734 1 723 735 1 714 739 1 731 727 1 741 598 1 598 595 1 740 741 1 602 743 1 743 742 1 + 744 743 1 603 744 1 740 747 1 747 745 1 745 741 1 742 748 1 748 747 1 743 749 1 749 748 1 + 746 749 1 744 746 1 747 750 1 750 751 1 751 745 1 748 752 1 752 750 1 749 753 1 753 752 1 + 746 754 1 754 753 1 750 755 1 755 759 1 759 751 1 752 756 1 756 755 1 753 757 1 757 756 1 + 754 758 1 758 757 1 755 931 1 931 760 1 760 759 1 932 931 1 756 932 1; + setAttr ".ed[1494:1659]" 757 933 1 933 932 1 761 933 1 758 761 1 762 768 1 768 770 1 + 770 763 1 763 762 1 763 764 1 764 765 1 765 762 1 764 766 1 766 767 1 767 765 1 766 773 1 + 773 774 1 774 767 1 768 776 1 776 777 1 777 769 1 769 768 1 769 771 1 771 770 1 772 775 1 + 775 774 1 773 772 1 775 777 1 776 774 1 931 775 1 772 760 1 932 777 1 933 769 1 761 771 1 + 765 776 1 781 778 1 778 994 1 994 993 1 993 781 1 993 1000 1 1000 779 1 779 781 1 + 780 779 1 1000 999 1 999 780 1 782 797 1 797 796 1 796 783 1 783 782 1 786 782 1 + 783 785 1 785 786 1 786 784 1 784 972 1 972 788 1 788 786 1 787 792 1 792 797 1 797 788 1 + 788 787 1 791 790 1 790 789 1 789 787 1 787 791 1 789 793 1 793 792 1 793 795 1 795 794 1 + 794 792 1 794 796 1 972 791 1 972 921 1 921 914 1 914 791 1 784 924 1 924 921 1 781 789 1 + 790 778 1 779 793 1 780 795 1 785 924 1 930 929 1 929 988 1 989 930 1 999 998 1 998 913 1 + 913 780 1 1003 1007 1 1007 969 1 969 968 1 968 1003 1 798 799 1 799 969 1 969 970 1 + 970 798 1 1004 1008 1 1008 971 1 971 970 1 970 1004 1 1006 1005 1 1005 967 1 967 966 1 + 966 1006 1 800 967 1 967 968 1 968 801 1 801 800 1 800 589 1 589 966 1 826 824 1 + 824 799 1 798 826 1 806 819 1 819 820 1 820 805 1 805 806 1 806 813 1 813 944 1 944 819 1 + 803 808 1 808 805 1 805 803 1 808 807 1 807 806 1 806 808 1 937 810 1 810 809 1 809 936 1 + 813 812 1 812 811 1 811 816 1 816 813 1 806 809 1 810 813 1 934 808 1 803 935 1 802 823 1 + 823 940 1 940 804 1 804 802 1 810 814 1 814 813 1 815 816 1 811 815 1 817 816 1 815 818 1 + 818 817 1 817 822 1 822 821 1 821 816 1 800 983 1 983 984 1 982 981 1 981 944 1 944 821 1 + 821 982 1 983 822 1 822 606 1 983 982 1 597 812 1 812 830 1 830 621 1 618 829 1 829 810 1 + 604 817 1 818 603 1 811 891 1; + setAttr ".ed[1660:1825]" 891 890 1 890 815 1 890 892 1 892 818 1 978 1065 1 1065 820 1 + 820 979 1 979 978 1 827 825 1 825 824 1 826 827 1 978 951 1 1066 1065 1 613 826 1 + 798 587 1 613 615 1 615 827 1 1094 1093 1 1093 825 1 827 1094 1 1095 1094 1 598 811 1 + 597 598 1 841 828 1 828 829 1 829 831 1 831 841 1 841 832 1 832 830 1 830 828 1 833 841 1 + 831 834 1 834 833 1 833 835 1 835 832 1 834 837 1 837 836 1 836 833 1 836 838 1 838 835 1 + 848 836 1 837 839 1 839 848 1 848 840 1 840 838 1 848 843 1 843 842 1 842 840 1 844 843 1 + 839 844 1 846 958 1 958 959 1 959 845 1 845 846 1 959 960 1 960 847 1 847 845 1 622 831 1 + 832 623 1 627 834 1 835 630 1 632 837 1 838 635 1 636 839 1 840 637 1 642 960 1 959 643 1 + 958 645 1 654 842 1 842 847 1 847 656 1 651 844 1 846 655 1 843 845 1 844 846 1 803 851 1 + 851 662 1 941 940 1 823 614 1 940 850 1 850 849 1 849 804 1 850 852 1 852 862 1 862 849 1 + 862 853 1 853 851 1 851 849 1 852 855 1 855 854 1 854 862 1 854 856 1 856 853 1 855 858 1 + 858 857 1 857 854 1 857 859 1 859 856 1 858 860 1 860 869 1 869 857 1 869 861 1 861 859 1 + 864 863 1 863 947 1 947 948 1 948 864 1 948 949 1 949 865 1 865 864 1 860 867 1 867 866 1 + 866 869 1 866 868 1 868 861 1 867 863 1 864 866 1 865 868 1 659 850 1 663 852 1 853 664 1 + 669 855 1 856 672 1 674 858 1 859 677 1 678 860 1 861 679 1 947 686 1 687 948 1 684 949 1 + 863 690 1 695 867 1 868 698 1 865 691 1 700 871 1 871 808 1 809 872 1 872 703 1 926 870 1 + 870 871 1 871 873 1 873 926 1 926 874 1 874 872 1 872 870 1 889 875 1 875 877 1 877 876 1 + 876 889 1 889 879 1 879 878 1 878 875 1 880 926 1 873 881 1 881 880 1 880 882 1 882 874 1 + 881 877 1 875 880 1 878 882 1 883 888 1 888 887 1 887 884 1 884 883 1 885 887 1 888 886 1; + setAttr ".ed[1826:1991]" 886 885 1 887 889 1 876 884 1 885 879 1 883 955 1 955 956 1 + 956 888 1 956 957 1 957 886 1 704 873 1 874 705 1 711 876 1 877 710 1 715 878 1 879 714 1 + 717 881 1 882 720 1 726 956 1 955 725 1 728 957 1 737 883 1 884 736 1 885 739 1 738 886 1 + 903 890 1 891 893 1 893 903 1 903 894 1 894 892 1 895 903 1 893 896 1 896 895 1 895 897 1 + 897 894 1 896 899 1 899 898 1 898 895 1 898 900 1 900 897 1 910 898 1 899 901 1 901 910 1 + 910 902 1 902 900 1 904 907 1 907 906 1 906 905 1 905 904 1 907 909 1 909 908 1 908 906 1 + 908 963 1 963 962 1 962 906 1 962 961 1 961 905 1 907 910 1 901 909 1 904 902 1 892 744 1 + 745 893 1 891 741 1 894 746 1 751 896 1 897 754 1 759 899 1 900 758 1 760 901 1 902 761 1 + 771 904 1 905 770 1 773 908 1 909 772 1 766 963 1 961 763 1 977 997 1 997 996 1 996 911 1 + 911 977 1 977 913 1 998 997 1 912 911 1 996 995 1 995 912 1 911 916 1 916 976 1 976 977 1 + 976 918 1 918 913 1 914 917 1 917 916 1 916 915 1 915 914 1 917 975 1 975 976 1 975 919 1 + 919 918 1 917 920 1 920 974 1 974 975 1 921 920 1 974 922 1 922 919 1 920 923 1 923 973 1 + 973 974 1 924 923 1 973 925 1 925 922 1 918 795 1 796 922 1 925 783 1 973 785 1 915 790 1 + 919 794 1 915 912 1 912 778 1 995 994 1 969 945 1 945 801 1 592 591 1 939 592 1 930 991 1 + 992 930 1 801 982 1 608 612 1 612 590 1 590 611 1 611 599 1 593 594 1 594 611 1 945 981 1 + 596 595 1 981 980 1 980 819 1 945 799 1 799 980 1 1001 1006 1 966 965 1 1007 1004 1 + 1005 1003 1 978 825 1 1093 1092 1 1092 978 1 979 824 1 1089 1096 1 962 764 1 1008 1021 1 + 1021 1020 1 1020 971 1 587 971 1 979 980 1 987 928 1 928 946 1 929 928 1 989 990 1 + 990 991 1 1108 1107 1 1107 1014 1 1014 1002 1 1007 1011 1 1011 1009 1 1009 1004 1 + 1015 1022 1 1022 1021 1 1008 1015 1; + setAttr ".ed[1992:2157]" 1012 1006 1 1001 1013 1 1013 1012 1 1014 1013 1 1011 576 1 + 563 1009 1 1013 552 1 536 1012 1 1016 1012 1 1016 1005 1 1010 1003 1 1009 1015 1 + 1011 1010 1 1015 562 1 561 1022 1 553 1014 1 1107 551 1 554 1017 1 1017 1022 1 1017 1018 1 + 1018 1021 1 1018 992 1 1026 1114 1 1114 535 1 535 531 1 531 1026 1 115 1114 1 1026 1025 1 + 1025 115 1 1061 1060 1 1060 1149 1 1149 1148 1 1148 1061 1 1158 1049 1 1049 1159 1 + 1159 1158 1 1150 132 1 132 121 1 121 1064 1 1064 1150 1 1153 1152 1 1152 1034 1 1034 1031 1 + 1031 1153 1 1148 1046 1 1046 1042 1 1042 1061 1 1049 1050 1 1050 1160 1 1160 1159 1 + 1030 1154 1 1154 1153 1 1031 1030 1 1162 1045 1 1045 1048 1 1048 1163 1 1163 1162 1 + 1061 1032 1 1032 1064 1 1064 1060 1 118 1033 1 1033 1029 1 117 118 1 131 1149 1 1060 119 1 + 119 131 1 1113 1033 1 118 126 1 126 1113 1 1053 1045 1 1162 1161 1 1161 1053 1 1152 1151 1 + 1151 1032 1 1032 1034 1 1151 1150 1 1167 1166 1 1166 1044 1 1044 1035 1 1035 1167 1 + 1041 1171 1 1171 1170 1 1170 1041 1 1054 1039 1 1039 1173 1 1173 1172 1 1172 1054 1 + 584 1054 1 1054 1041 1 1041 560 1 1172 1171 1 1051 545 1 1041 1051 1 1178 1052 1 + 1052 1051 1 1051 1169 1 1169 1178 1 1040 1177 1 1177 1176 1 1176 1043 1 1043 1040 1 + 1038 1037 1 1037 585 1 538 1038 1 555 1043 1 1043 1038 1 547 1040 1 546 1039 1 1178 1177 1 + 1040 1052 1 1039 1037 1 1037 1174 1 1174 1173 1 1175 1174 1 1038 1175 1 1166 1165 1 + 1165 1047 1 1047 1044 1 121 119 1 1176 1175 1 1170 1169 1 133 1156 1 1156 1062 1 + 1062 122 1 122 133 1 1050 1053 1 1161 1160 1 248 1059 1 1059 1056 1 1056 136 1 136 248 1 + 96 120 1 120 1059 1 1056 1057 1 1057 137 1 1057 1058 1 1058 141 1 1063 1116 1 1116 1115 1 + 1115 249 1 249 1063 1 1042 1034 1 1155 1154 1 1030 1117 1 1117 1155 1 1164 1048 1 + 1048 1047 1 1165 1164 1 1058 1063 1 586 1052 1 812 814 1 814 828 1 809 807 1 807 870 1 + 803 804 1 1065 802 1 802 805 1 1066 823 1 1067 614 1 1092 1091 1 588 965 1 1147 1146 1 + 1146 516 1 1144 1072 1 1072 1134 1 1134 1145 1; + setAttr ".ed[2158:2323]" 1145 1144 1 1078 1077 1 1077 262 1 1080 1079 1 1077 1076 1 + 169 216 1 1070 524 1 524 525 1 525 1069 1 527 524 1 1069 531 1 226 216 1 240 243 1 + 167 238 1 392 1074 1 1075 392 1 410 1075 1 1076 410 1 1077 271 1 419 1076 1 1078 287 1 + 1079 290 1 1080 486 1 1081 453 1 1082 451 1 1083 449 1 1084 452 1 1085 445 1 1086 286 1 + 1087 319 1 1088 448 1 1074 432 1 1090 999 1 1000 1089 1 1091 998 1 1092 997 1 1093 996 1 + 1094 995 1 1095 994 1 1096 993 1 507 500 1 524 501 1 1075 393 1 451 450 1 449 447 1 + 452 446 1 242 1100 1 1100 145 1 1101 214 1 1100 1101 1 1101 1102 1 1102 215 1 239 242 1 + 1105 1100 1 1106 1101 1 1107 1017 1 1108 1018 1 1109 992 1 929 1109 1 964 928 1 965 946 1 + 594 607 1 594 610 1 592 609 1 592 596 1 1111 389 1 1142 1143 1 1143 521 1 521 510 1 + 1164 1179 1 1179 1163 1 1062 1113 1 126 122 1 1114 116 1 116 113 1 127 95 1 1116 123 1 + 123 94 1 1156 1155 1 1117 1062 1 1118 1113 1 1117 1118 1 1118 1119 1 1119 1033 1 + 1119 1120 1 1120 1029 1 1120 1121 1 1121 511 1 1024 1124 1 1124 1046 1 1046 1024 1 + 1097 1127 1 1138 1137 1 1128 508 1 1129 505 1 1130 518 1 1131 520 1 1132 522 1 1133 523 1 + 1146 1145 1 1134 516 1 1135 1134 1 515 1136 1 128 109 1 1144 1143 1 1143 527 1 501 1142 1 + 1140 507 1 1145 1133 1 1073 1144 1 1146 523 1 1147 513 1 130 103 1 510 517 1 525 531 1 + 1149 1025 1 1025 1023 1 1023 1148 1 131 115 1 1023 1024 1 120 132 1 1150 1059 1 1151 1056 1 + 1152 1057 1 1153 1058 1 1154 1063 1 1155 1116 1 1156 123 1 133 123 1 1126 506 1 506 1098 1 + 1127 1126 1 506 502 1 1028 1027 1 1027 530 1 530 529 1 529 1028 1 1125 528 1 511 512 1 + 512 1125 1 530 502 1 506 529 1 1125 529 1 1126 1125 1 530 531 1 1055 1157 1 1157 1168 1 + 1168 1036 1 1036 1055 1 1027 1026 1 1028 1024 1 1023 1027 1 1168 1167 1 1035 1036 1 + 1055 1049 1 1158 1157 1 1121 1122 1 1122 512 1 1028 512 1 1122 1123 1 1123 1028 1 + 1123 1124 1 1126 498 1 115 116 1 527 501 1 515 1134 1; + setAttr ".ed[2324:2489]" 1123 1157 1 1158 1124 1 1159 1046 1 1160 1042 1 1161 1034 1 + 1162 1031 1 1163 1030 1 1164 1118 1 1117 1179 1 1165 1119 1 1166 1120 1 1167 1121 1 + 1168 1122 1 1055 1169 1 1170 1049 1 1171 1050 1 1172 1053 1 1173 1045 1 1174 1048 1 + 1175 1047 1 1176 1044 1 1177 1035 1 1178 1036 1 1181 1180 1 1180 2150 1 2150 2149 1 + 2149 1181 1 1184 1186 1 1186 1187 1 1187 1183 1 1183 1184 1 95 1185 1 1185 1294 1 + 1294 96 1 2149 1211 1 1211 1184 1 1184 1181 1 1211 1214 1 1214 1186 1 94 2161 1 2161 125 1 + 1295 1187 1 1186 1296 1 1296 1295 1 1214 1283 1 1283 1296 1 1183 1182 1 1182 1181 1 + 92 1188 1 1188 127 1 1286 1285 1 1285 92 1 93 1286 1 97 1284 1 1284 1286 1 1271 1281 1 + 1281 1298 1 1298 1297 1 1297 1271 1 1298 1301 1 1301 1300 1 1300 1297 1 1264 1263 1 + 1263 1273 1 1273 1274 1 1274 1264 1 1225 1273 1 1273 1301 1 1301 1302 1 1302 1225 1 + 1225 1234 1 1234 1274 1 1298 1299 1 1299 1302 1 1281 1233 1 1233 1299 1 1263 1300 1 + 1230 1227 1 1227 1226 1 1226 1229 1 1229 1230 1 1269 1268 1 1268 1278 1 1278 1279 1 + 1279 1269 1 1230 1279 1 1278 1227 1 1230 1232 1 1232 1280 1 1280 1279 1 1229 1233 1 + 1233 1232 1 1234 1235 1 1235 1275 1 1275 1274 1 1281 1280 1 1234 1257 1 1257 1256 1 + 1256 1235 1 1266 1265 1 1265 1275 1 1275 1276 1 1276 1266 1 1265 1264 1 1239 1238 1 + 1238 1252 1 1252 1248 1 1248 1239 1 1256 1276 1 1228 1241 1 1241 1242 1 1242 1228 1 + 1253 1228 1 1242 1236 1 1236 1253 1 1252 1253 1 1236 1248 1 1227 1254 1 1254 1255 1 + 1255 1226 1 1278 1277 1 1277 1254 1 1268 1267 1 1267 1277 1 1267 1266 1 1276 1277 1 + 1256 1254 1 1257 1255 1 1284 1283 1 1214 1243 1 1243 1284 1 98 1283 1 1211 1212 1 + 1212 1243 1 1223 1212 1 2149 1223 1 125 1296 1 1261 1260 1 1260 1224 1 1224 1245 1 + 1245 1261 1 1259 1231 1 1231 1258 1 1258 1200 1 1200 1259 1 1200 1203 1 1203 1198 1 + 1198 1259 1 1258 1201 1 1201 1209 1 1209 1200 1 1207 1206 1 1206 1197 1 1197 1293 1 + 1293 1207 1 1260 1191 1 1191 1221 1 1221 1224 1 1191 1194 1 1194 1199 1 1199 1221 1 + 2148 1223 1 2150 2148 1 1210 1272 1 1272 1219 1 1219 1204 1; + setAttr ".ed[2490:2655]" 1204 1210 1 1217 2114 1 2114 1219 1 1219 1239 1 1239 1217 1 + 2114 1208 1 1208 1204 1 1245 1246 1 1246 1222 1 1222 1261 1 1206 1221 1 1199 1197 1 + 2151 1189 1 1189 1285 1 1285 2151 1 1218 1220 1 1220 1208 1 2114 1218 1 1282 2152 1 + 2152 2150 1 1180 1282 1 1202 1208 1 1220 1190 1 1190 1202 1 1202 1205 1 1205 1204 1 + 1205 1209 1 1209 1210 1 1205 1203 1 1202 1207 1 1207 1203 1 1190 1206 1 1201 1215 1 + 1215 1210 1 1190 1224 1 1220 1245 1 1290 1291 1 1291 1197 1 1199 1290 1 1223 1222 1 + 1222 1195 1 1195 1212 1 1194 1287 1 1287 1290 1 1247 1195 1 1246 1247 1 1291 1292 1 + 1292 1293 1 1240 1231 1 1259 1240 1 1242 1240 1 1198 1242 1 1251 1244 1 1244 1195 1 + 1247 1251 1 1192 1244 1 1251 1193 1 1193 1192 1 1244 1243 1 1192 1213 1 1213 1243 1 + 1248 1249 1 1249 1217 1 1236 1237 1 1237 1249 1 1250 1251 1 1247 1216 1 1216 1250 1 + 1249 1250 1 1216 1217 1 1196 1250 1 1237 1196 1 1196 1193 1 1271 1270 1 1270 1280 1 + 1270 1269 1 1241 1240 1 1246 1218 1 1218 1216 1 1272 1238 1 1194 1288 1 1288 1289 1 + 1289 1287 1 1263 1215 1 1201 1300 1 1265 1238 1 1238 1262 1 1262 1264 1 1266 1252 1 + 1267 1253 1 1268 1228 1 1269 1241 1 1270 1240 1 1271 1231 1 1297 1258 1 1185 1282 1 + 1180 1294 1 1185 1188 1 1188 1189 1 1189 1282 1 2151 2152 1 1289 1213 1 1192 1287 1 + 1193 1290 1 1196 1291 1 1237 1292 1 1242 1292 1 1198 1293 1 1539 1540 1 1540 1525 1 + 1525 1510 1 1510 1539 1 1523 1519 1 1519 1515 1 1515 1522 1 1522 1523 1 1511 1512 1 + 1512 1309 1 1309 1525 1 1525 1511 1 1542 1541 1 1541 1524 1 1524 1310 1 1310 1542 1 + 1524 1520 1 1520 1519 1 1523 1524 1 1543 1311 1 1311 1512 1 1511 1543 1 1542 1543 1 + 1511 1541 1 1308 1519 1 1520 1500 1 1500 1308 1 1308 1474 1 1474 1515 1 1522 1427 1 + 1427 1501 1 1501 1523 1 1513 1518 1 1518 1309 1 1512 1513 1 1517 1518 1 1513 1514 1 + 1514 1517 1 1426 1312 1 1312 1514 1 1513 1426 1 1312 1428 1 1428 1521 1 1521 1514 1 + 1428 1427 1 1522 1521 1 1516 1517 1 1521 1516 1 1515 1516 1 2131 1531 1 1531 1530 1 + 1530 2130 1 2130 2131 1 2134 2120 1 2120 1510 1 1510 1307 1 1307 2134 1 2120 2121 1; + setAttr ".ed[2656:2821]" 2121 1539 1 2121 2122 1 2122 1500 1 1500 1539 1 1304 1303 1 + 1303 2124 1 2124 2125 1 2125 1304 1 2131 2132 1 2132 1306 1 1306 1531 1 2132 2133 1 + 2133 1479 1 1479 1306 1 1530 1529 1 1529 2129 1 2129 2130 1 1529 1528 1 1528 2128 1 + 2128 2129 1 1491 1498 1 1498 1359 1 1359 1350 1 1350 1491 1 1308 1303 1 1303 1475 1 + 1475 1474 1 1304 1476 1 1476 1475 1 1479 1425 1 1425 1480 1 1480 1306 1 1424 1307 1 + 1307 1309 1 1518 1424 1 1527 1526 1 1526 1477 1 1477 1305 1 1305 1527 1 1313 1424 1 + 1517 1313 1 1313 1314 1 1314 1425 1 1425 1424 1 1429 1313 1 1516 1429 1 1429 1430 1 + 1430 1314 1 1477 1476 1 1304 1305 1 1480 1483 1 1483 1531 1 1480 1481 1 1481 1432 1 + 1432 1483 1 1481 1482 1 1482 1431 1 1431 1432 1 1530 1485 1 1485 1484 1 1484 1529 1 + 1485 1483 1 1432 1484 1 1484 1433 1 1433 1528 1 1431 1433 1 1527 1528 1 1433 1526 1 + 1477 1431 1 1482 1476 1 1429 1474 1 1475 1430 1 1366 1367 1 1367 1437 1 1437 1434 1 + 1434 1366 1 1330 1434 1 1437 1368 1 1368 1330 1 1415 1407 1 1407 1459 1 1459 1462 1 + 1462 1415 1 1459 1409 1 1409 1416 1 1416 1462 1 1472 1473 1 1473 1369 1 1369 1372 1 + 1372 1472 1 1373 1320 1 1320 1473 1 1472 1373 1 1329 1478 1 1478 1490 1 1490 1329 1 + 1508 1488 1 1488 1487 1 1487 1507 1 1507 1508 1 1350 1352 1 1352 1504 1 1504 1505 1 + 1505 1350 1 1438 1478 1 1329 1354 1 1354 1438 1 1359 1355 1 1355 1352 1 1487 1332 1 + 1332 1491 1 1491 1486 1 1486 1487 1 1486 1506 1 1506 1507 1 1329 1352 1 1355 1354 1 + 1488 1365 1 1365 1332 1 1329 1503 1 1503 1504 1 1490 1489 1 1489 1509 1 1509 1502 1 + 1502 1490 1 1489 1488 1 1508 1509 1 1494 1489 1 1478 1494 1 1494 1365 1 1502 1503 1 + 1486 1350 1 1505 1506 1 1362 1331 1 1331 1508 1 1507 1362 1 1362 1360 1 1360 2156 1 + 2156 1331 1 1361 1351 1 1351 1353 1 1353 2158 1 2158 1361 1 1351 1505 1 1504 1353 1 + 1330 1353 1 1503 1330 1 1509 1366 1 1434 1502 1 1331 1366 1 2156 1367 1 1368 2158 1 + 1390 1400 1 1400 1393 1 1393 1394 1 1394 1390 1 1436 1362 1 1506 1436 1 1351 1436 1 + 1435 1360 1 1436 1435 1 1361 1435 1 2156 2157 1 2157 1437 1 2157 2158 1 1328 1325 1; + setAttr ".ed[2822:2987]" 1325 1439 1 1439 1438 1 1438 1328 1 1354 1445 1 1445 1438 1 + 1445 1328 1 1328 1364 1 1364 1356 1 1356 1325 1 1341 1356 1 1364 1349 1 1349 1341 1 + 1495 1341 1 1349 1498 1 1498 1495 1 1492 1349 1 1349 1399 1 1399 1453 1 1453 1492 1 + 1364 1388 1 1388 1399 1 1359 1492 1 1453 1401 1 1401 1359 1 1341 1342 1 1342 1381 1 + 1381 1356 1 1405 1388 1 1328 1405 1 1405 1404 1 1404 1389 1 1389 1388 1 1389 1398 1 + 1398 1399 1 1401 1391 1 1391 1355 1 1391 1403 1 1403 1354 1 1398 1452 1 1452 1453 1 + 1452 1400 1 1400 1401 1 1403 1455 1 1455 1445 1 1455 1405 1 1402 1390 1 1394 1395 1 + 1395 1402 1 1404 1396 1 1396 1397 1 1397 1389 1 1397 1392 1 1392 1398 1 1390 1391 1 + 1402 1403 1 1392 1449 1 1449 1452 1 1449 1393 1 1402 1454 1 1454 1455 1 1454 1404 1 + 1397 1450 1 1450 1449 1 1450 1394 1 1450 1451 1 1451 1395 1 1396 1451 1 1451 1454 1 + 1322 1439 1 1439 1440 1 1440 1322 1 1325 1440 1 1456 1439 1 1322 1321 1 1321 1456 1 + 1322 1363 1 1363 1382 1 1382 1321 1 1344 1347 1 1347 1382 1 1363 1344 1 1347 1410 1 + 1410 1420 1 1420 1382 1 1341 1493 1 1493 1443 1 1443 1342 1 1493 1344 1 1344 1345 1 + 1345 1443 1 1381 1326 1 1326 1325 1 1363 1387 1 1387 1345 1 1441 1323 1 1323 1322 1 + 1440 1441 1 1324 1323 1 1441 1442 1 1442 1324 1 1326 1441 1 1326 1327 1 1327 1442 1 + 1343 1342 1 1443 1444 1 1444 1343 1 1345 1346 1 1346 1444 1 1381 1385 1 1385 1327 1 + 1343 1385 1 1387 1386 1 1386 1346 1 1324 1386 1 1387 1323 1 1421 1409 1 1409 1408 1 + 1408 1420 1 1420 1421 1 1411 1421 1 1410 1411 1 1376 1324 1 1442 1446 1 1446 1376 1 + 1444 1448 1 1448 1379 1 1379 1343 1 1346 1380 1 1380 1448 1 1375 1380 1 1386 1375 1 + 1376 1375 1 1377 1327 1 1385 1378 1 1378 1377 1 1379 1378 1 1377 1446 1 1378 1447 1 + 1447 1446 1 1447 1375 1 1447 1448 1 1465 1456 1 1456 1315 1 1315 1316 1 1316 1465 1 + 1384 1383 1 1383 1339 1 1339 1357 1 1357 1384 1 1499 1339 1 1383 1497 1 1497 1499 1 + 2127 2128 1 1527 2127 1 1456 1457 1 1457 1315 1 1321 1457 1 1315 1384 1 1357 1316 1 + 1458 1406 1 1406 1315 1 1457 1458 1 1321 1408 1 1408 1458 1 1406 1423 1 1423 1384 1; + setAttr ".ed[2988:3153]" 1412 1383 1 1423 1412 1 1347 1496 1 1496 1460 1 1460 1410 1 + 1412 1460 1 1496 1383 1 1407 1406 1 1458 1459 1 1460 1461 1 1461 1411 1 1412 1413 1 + 1413 1461 1 1414 1419 1 1419 1413 1 1413 1422 1 1422 1414 1 1415 1414 1 1422 1407 1 + 1418 1417 1 1417 1421 1 1411 1418 1 1417 1416 1 1464 1418 1 1461 1464 1 1419 1464 1 + 1423 1422 1 1417 1463 1 1463 1462 1 1463 1414 1 1463 1464 1 1336 1333 1 1333 1334 1 + 1334 1337 1 1337 1336 1 1499 1532 1 1532 1468 1 1468 1339 1 1318 1317 1 1317 1465 1 + 1465 1466 1 1466 1318 1 1333 1317 1 1318 1334 1 1466 1316 1 1316 1538 1 1538 1467 1 + 1467 1466 1 1319 1318 1 1467 1319 1 1319 1533 1 1533 1334 1 1533 1534 1 1534 1337 1 + 1335 1338 1 1338 1534 1 1533 1335 1 1468 1535 1 1535 1536 1 1536 1339 1 1469 1340 1 + 1340 1536 1 1535 1469 1 1357 1537 1 1537 1538 1 1536 1537 1 1340 1358 1 1358 1537 1 + 1468 1337 1 1534 1535 1 1338 1469 1 1338 1348 1 1348 1470 1 1470 1469 1 1358 1369 1 + 1369 1538 1 1473 1467 1 1340 1370 1 1370 1371 1 1371 1358 1 1371 1372 1 1470 1370 1 + 1335 1374 1 1374 1348 1 1335 1320 1 1373 1374 1 1320 1319 1 1374 1471 1 1471 1470 1 + 1471 1371 1 1471 1472 1 1310 1225 1 1302 1542 1 1233 1311 1 1543 1299 1 1229 1426 1 + 1426 1311 1 1310 1501 1 1501 1234 1 1226 1312 1 1427 1257 1 1255 1428 1 1479 1307 1 + 1314 1481 1 1430 1482 1 1497 1347 1 1344 1495 1 1495 1497 1 2133 2134 1 1520 1540 1 + 1541 1540 1 1305 2126 1 2126 2127 1 1532 1336 1 101 1554 1 1554 2183 1 2183 129 1 + 2174 1555 1 1555 2185 1 2185 2184 1 2184 2174 1 2185 2144 1 2144 2173 1 2173 2184 1 + 2183 2143 1 2143 124 1 2186 2187 1 2187 1545 1 1545 1549 1 1549 2186 1 1546 1556 1 + 1556 2188 1 2188 2187 1 2187 1546 1 1545 1547 1 1547 2145 1 2145 1549 1 2143 1544 1 + 1544 99 1 2185 2186 1 1549 2144 1 1548 1549 1 2145 1571 1 1571 1548 1 1553 1555 1 + 1555 1550 1 1550 1556 1 1556 1553 1 2175 1550 1 2174 2175 1 100 1551 1 1551 1554 1 + 1574 1557 1 1557 102 1 112 1574 1 1557 2075 1 2075 117 1 104 1562 1 1562 1572 1 1572 111 1 + 1568 1559 1 1559 1569 1 1569 1568 1 2118 2181 1 2181 2117 1 2117 1573 1; + setAttr ".ed[3154:3319]" 1573 2118 1 2181 2182 1 2182 1578 1 1578 2117 1 1566 105 1 + 114 1568 1 1568 1566 1 1560 1565 1 1565 2177 1 2177 2178 1 2178 1560 1 2193 130 1 + 1572 2193 1 1565 1563 1 1563 2176 1 2176 2177 1 1566 1564 1 1564 106 1 1563 1550 1 + 2175 2176 1 1560 2119 1 2119 1567 1 1567 1565 1 2115 2116 1 2116 1579 1 1579 1580 1 + 1580 2115 1 108 1580 1 1579 110 1 109 1561 1 1561 1562 1 1544 1574 1 113 1581 1 1581 1580 1 + 2178 2179 1 2179 2119 1 2116 2117 1 1578 1579 1 103 1559 1 1564 1551 1 2182 128 1 + 107 1578 1 1610 1587 1 1587 2062 1 2062 2056 1 2056 1610 1 1583 1586 1 1586 1585 1 + 1585 1590 1 1590 1583 1 1584 1583 1 1590 1631 1 1631 1584 1 1586 1588 1 1588 1589 1 + 1589 1585 1 1588 1582 1 1582 1587 1 1587 1589 1 1585 1612 1 1612 1602 1 1602 1590 1 + 1621 1589 1 1610 1621 1 1621 1612 1 1618 1600 1 1600 1597 1 1597 1617 1 1617 1618 1 + 1625 1627 1 1627 1591 1 1591 1606 1 1606 1625 1 1606 1630 1 1630 1603 1 1603 1625 1 + 1626 1625 1 1603 1624 1 1624 1626 1 1629 1620 1 1620 1609 1 1609 1608 1 1608 1629 1 + 1619 1629 1 1608 1607 1 1607 1619 1 1583 1611 1 1611 1594 1 1594 1586 1 1627 1614 1 + 1614 1632 1 1632 1591 1 1614 1613 1 1613 1593 1 1593 1632 1 1613 1605 1 1605 1604 1 + 1604 1613 1 1614 1596 1 1596 1595 1 1595 1613 1 1588 1615 1 1615 1598 1 1598 1582 1 + 1607 1600 1 1618 1619 1 1615 1616 1 1616 1599 1 1599 1598 1 1604 1594 1 1611 1613 1 + 1601 1593 1 1611 1601 1 1584 1601 1 1597 1599 1 1616 1617 1 1630 1592 1 1592 1602 1 + 1602 1603 1 1626 1628 1 1628 1627 1 1610 1622 1 1622 1623 1 1623 1621 1 1620 1623 1 + 1622 1609 1 1612 1624 1 1594 1615 1 1604 1616 1 1605 1617 1 1595 1618 1 1605 1595 1 + 1596 1619 1 1592 1631 1 1628 1596 1 1629 1628 1 1626 1620 1 1623 1624 1 2047 2048 1 + 2048 2010 1 2010 2011 1 2011 2047 1 2154 2155 1 2155 2010 1 2048 2154 1 2033 1637 1 + 1637 1973 1 1973 2032 1 2032 2033 1 2035 1636 1 1636 1639 1 1639 2034 1 2034 2035 1 + 1658 2036 1 2036 1999 1 1999 1658 1 1639 1637 1 2033 2034 1 1641 1647 1 1647 1985 1 + 1985 1641 1 2113 1658 1 1999 1998 1 1998 2113 1 1983 1646 1 1646 1662 1; + setAttr ".ed[3320:3485]" 1662 1982 1 1982 1983 1 1655 1646 1 1646 1663 1 1663 1665 1 + 1665 1655 1 1643 1642 1 1642 1666 1 1666 1667 1 1667 1643 1 1641 1786 1 1786 1788 1 + 1788 1647 1 1647 1648 1 1648 1984 1 1984 1985 1 1648 1649 1 1649 1650 1 1650 1984 1 + 1984 1651 1 1651 1973 1 1973 1985 1 1650 1652 1 1652 1651 1 1635 1634 1 1634 2031 1 + 2031 2030 1 2030 1635 1 1634 1992 1 1992 2032 1 2032 2031 1 1651 2031 1 1652 2030 1 + 1633 1659 1 1659 2000 1 2000 2065 1 2065 1633 1 1646 1638 1 1638 1640 1 1640 1662 1 + 1642 1655 1 1665 1666 1 2000 1996 1 1996 1999 1 2036 2000 1 2066 2065 1 2065 2037 1 + 2037 2038 1 2038 2066 1 1996 1661 1 1661 2141 1 2141 2142 1 2142 1996 1 1999 2135 1 + 2135 2136 1 2136 1998 1 1998 1997 1 1997 2112 1 2112 2113 1 2136 2137 1 2137 1997 1 + 1664 1663 1 1983 1664 1 1664 1668 1 1668 1670 1 1670 1663 1 1670 1671 1 1671 1665 1 + 1671 1703 1 1703 1666 1 1669 1667 1 1703 1669 1 1668 1673 1 1673 1672 1 1672 1670 1 + 1671 1674 1 1674 1675 1 1675 1703 1 1675 1676 1 1676 1669 1 1673 1678 1 1678 1677 1 + 1677 1672 1 1677 1679 1 1679 1674 1 1674 1672 1 1679 1680 1 1680 1675 1 1680 1681 1 + 1681 1676 1 1678 1682 1 1682 1684 1 1684 1677 1 1684 1685 1 1685 1679 1 1685 1686 1 + 1686 1680 1 1683 1681 1 1686 1683 1 1687 1688 1 1688 1702 1 1702 1693 1 1693 1687 1 + 1687 1690 1 1690 1689 1 1689 1688 1 1690 1692 1 1692 1691 1 1691 1689 1 1692 1694 1 + 1694 1701 1 1701 1691 1 1682 1697 1 1697 1696 1 1696 1684 1 1696 1694 1 1694 1695 1 + 1695 1698 1 1698 1696 1 1699 1700 1 1700 1683 1 1686 1699 1 1685 1698 1 1698 1699 1 + 1693 1695 1 1695 1690 1 1693 1699 1 1697 1701 1 1702 1700 1 1645 1981 1 1981 1980 1 + 1980 1653 1 1653 1645 1 1988 1654 1 1654 1660 1 1660 1987 1 1987 1988 1 1989 1657 1 + 1657 1654 1 1988 1989 1 1645 1989 1 1989 1706 1 1706 1707 1 1707 1645 1 1705 1704 1 + 1704 1988 1 1987 1705 1 1704 1706 1 1707 1708 1 1708 1981 1 1705 1709 1 1709 1711 1 + 1711 1704 1 1712 1706 1 1711 1712 1 1712 1713 1 1713 1707 1 1710 1708 1 1713 1710 1 + 1709 1715 1 1715 1714 1 1714 1711 1 1716 1712 1 1714 1716 1 1716 1717 1 1717 1713 1; + setAttr ".ed[3486:3651]" 1717 1718 1 1718 1710 1 1715 1720 1 1720 1719 1 1719 1714 1 + 1721 1716 1 1719 1721 1 1721 1722 1 1722 1717 1 1722 1723 1 1723 1718 1 1720 1724 1 + 1724 1726 1 1726 1719 1 1727 1721 1 1726 1727 1 1727 1728 1 1728 1722 1 1725 1723 1 + 1728 1725 1 1729 1730 1 1730 1737 1 1737 1738 1 1738 1729 1 1732 1731 1 1731 1735 1 + 1735 1736 1 1736 1732 1 1733 1734 1 1734 1731 1 1732 1733 1 1733 1730 1 1729 1734 1 + 1738 1739 1 1739 1734 1 1724 1741 1 1741 1740 1 1740 1726 1 1742 1727 1 1740 1742 1 + 1742 1743 1 1743 1728 1 1743 1744 1 1744 1725 1 1735 1740 1 1741 1736 1 1739 1742 1 + 1735 1739 1 1738 1743 1 1737 1744 1 1662 1656 1 1656 1747 1 1747 1748 1 1748 1662 1 + 1656 1653 1 1653 1745 1 1745 1747 1 1980 1746 1 1746 1745 1 1748 1749 1 1749 1982 1 + 1746 1750 1 1750 1752 1 1752 1745 1 1752 1753 1 1753 1747 1 1753 1754 1 1754 1748 1 + 1751 1749 1 1754 1751 1 1755 1756 1 1756 1757 1 1757 1767 1 1767 1755 1 1758 1755 1 + 1767 1768 1 1768 1758 1 1759 1758 1 1768 1769 1 1769 1759 1 1760 1761 1 1761 1759 1 + 1769 1760 1 1750 1763 1 1763 1762 1 1762 1752 1 1762 1764 1 1764 1753 1 1764 1765 1 + 1765 1754 1 1765 1766 1 1766 1751 1 1763 1756 1 1755 1762 1 1758 1764 1 1759 1765 1 + 1761 1766 1 1771 1770 1 1770 1778 1 1778 1783 1 1783 1771 1 1771 1772 1 1772 1773 1 + 1773 1770 1 1772 1774 1 1774 1775 1 1775 1773 1 1774 1784 1 1784 1776 1 1776 1775 1 + 1779 1778 1 1778 1777 1 1777 1780 1 1780 1779 1 1777 1776 1 1776 1781 1 1781 1780 1 + 1782 1783 1 1779 1782 1 1784 1785 1 1785 1781 1 1757 1782 1 1779 1767 1 1780 1768 1 + 1781 1769 1 1785 1760 1 1773 1777 1 1787 1786 1 1641 1644 1 1644 1787 1 1788 1789 1 + 1789 1648 1 1790 1649 1 1789 1790 1 1787 1791 1 1791 1793 1 1793 1786 1 1793 1794 1 + 1794 1788 1 1794 1795 1 1795 1789 1 1792 1790 1 1795 1792 1 1791 1797 1 1797 1796 1 + 1796 1793 1 1796 1798 1 1798 1794 1 1798 1799 1 1799 1795 1 1799 1800 1 1800 1792 1 + 1797 1805 1 1805 1801 1 1801 1796 1 1801 1802 1 1802 1798 1 1802 1803 1 1803 1799 1 + 1803 1804 1 1804 1800 1 1805 1806 1 1806 1977 1 1977 1801 1 1978 1802 1 1977 1978 1; + setAttr ".ed[3652:3817]" 1978 1979 1 1979 1803 1 1807 1804 1 1979 1807 1 1808 1809 1 + 1809 1816 1 1816 1814 1 1814 1808 1 1808 1811 1 1811 1810 1 1810 1809 1 1811 1813 1 + 1813 1812 1 1812 1810 1 1813 1820 1 1820 1819 1 1819 1812 1 1814 1815 1 1815 1823 1 + 1823 1822 1 1822 1814 1 1816 1817 1 1817 1815 1 1818 1819 1 1820 1821 1 1821 1818 1 + 1820 1822 1 1823 1821 1 1806 1818 1 1821 1977 1 1823 1978 1 1815 1979 1 1817 1807 1 + 1822 1811 1 1827 2039 1 2039 2040 1 2040 1824 1 1824 1827 1 1827 1825 1 1825 2046 1 + 2046 2039 1 1826 2045 1 2045 2046 1 1825 1826 1 1828 1829 1 1829 1842 1 1842 1843 1 + 1843 1828 1 1832 1831 1 1831 1829 1 1828 1832 1 1832 1834 1 1834 2018 1 2018 1830 1 + 1830 1832 1 1833 1834 1 1834 1843 1 1843 1838 1 1838 1833 1 1837 1833 1 1833 1835 1 + 1835 1836 1 1836 1837 1 1838 1839 1 1839 1835 1 1838 1840 1 1840 1841 1 1841 1839 1 + 1842 1840 1 1837 2018 1 1837 1960 1 1960 1967 1 1967 2018 1 1967 1970 1 1970 1830 1 + 1824 1836 1 1835 1827 1 1839 1825 1 1841 1826 1 1970 1831 1 1976 2035 1 2034 1975 1 + 1975 1976 1 1826 1959 1 1959 2044 1 2044 2045 1 2049 2014 1 2014 2015 1 2015 2053 1 + 2053 2049 1 1844 2016 1 2016 2015 1 2015 1845 1 1845 1844 1 2050 2016 1 2016 2017 1 + 2017 2054 1 2054 2050 1 2052 2012 1 2012 2013 1 2013 2051 1 2051 2052 1 1846 1847 1 + 1847 2014 1 2014 2013 1 2013 1846 1 2012 1635 1 1635 1846 1 1872 1844 1 1845 1870 1 + 1870 1872 1 1852 1851 1 1851 1866 1 1866 1865 1 1865 1852 1 1865 1990 1 1990 1859 1 + 1859 1852 1 1849 1851 1 1851 1854 1 1854 1849 1 1854 1852 1 1852 1853 1 1853 1854 1 + 1982 1855 1 1855 1856 1 1856 1983 1 1859 1862 1 1862 1857 1 1857 1858 1 1858 1859 1 + 1859 1856 1 1855 1852 1 1981 1849 1 1854 1980 1 1848 1850 1 1850 1986 1 1986 1869 1 + 1869 1848 1 1859 1860 1 1860 1856 1 1861 1857 1 1862 1861 1 1863 1864 1 1864 1861 1 + 1862 1863 1 1862 1867 1 1867 1868 1 1868 1863 1 2030 2029 1 2029 1846 1 2028 1867 1 + 1867 1990 1 1990 2027 1 2027 2028 1 1652 1868 1 1868 2029 1 2028 2029 1 1667 1876 1 + 1876 1858 1 1858 1643 1 1856 1875 1 1875 1664 1 1649 1864 1 1863 1650 1 1861 1936 1; + setAttr ".ed[3818:3983]" 1936 1937 1 1937 1857 1 1864 1938 1 1938 1936 1 2024 2025 1 + 2025 1866 1 1866 2111 1 2111 2024 1 1873 1872 1 1870 1871 1 1871 1873 1 2111 2112 1 + 1997 2024 1 1633 1844 1 1872 1659 1 1873 1661 1 1661 1659 1 2140 1873 1 1871 2139 1 + 2139 2140 1 2140 2141 1 1644 1643 1 1857 1644 1 1887 1877 1 1877 1875 1 1875 1874 1 + 1874 1887 1 1874 1876 1 1876 1878 1 1878 1887 1 1879 1880 1 1880 1877 1 1887 1879 1 + 1878 1881 1 1881 1879 1 1879 1882 1 1882 1883 1 1883 1880 1 1881 1884 1 1884 1882 1 + 1894 1885 1 1885 1883 1 1882 1894 1 1884 1886 1 1886 1894 1 1886 1888 1 1888 1889 1 + 1889 1894 1 1890 1885 1 1889 1890 1 1892 1891 1 1891 2005 1 2005 2004 1 2004 1892 1 + 1891 1893 1 1893 2006 1 2006 2005 1 1877 1668 1 1669 1878 1 1880 1673 1 1676 1881 1 + 1883 1678 1 1681 1884 1 1885 1682 1 1683 1886 1 1689 2005 1 2006 1688 1 1691 2004 1 + 1702 1893 1 1893 1888 1 1888 1700 1 1890 1697 1 1701 1892 1 1891 1889 1 1892 1890 1 + 1708 1897 1 1897 1849 1 1660 1869 1 1986 1987 1 1850 1895 1 1895 1896 1 1896 1986 1 + 1895 1908 1 1908 1898 1 1898 1896 1 1895 1897 1 1897 1899 1 1899 1908 1 1908 1900 1 + 1900 1901 1 1901 1898 1 1899 1902 1 1902 1900 1 1900 1903 1 1903 1904 1 1904 1901 1 + 1902 1905 1 1905 1903 1 1903 1915 1 1915 1906 1 1906 1904 1 1905 1907 1 1907 1915 1 + 1910 1994 1 1994 1993 1 1993 1909 1 1909 1910 1 1910 1911 1 1911 1995 1 1995 1994 1 + 1915 1912 1 1912 1913 1 1913 1906 1 1907 1914 1 1914 1912 1 1912 1910 1 1909 1913 1 + 1914 1911 1 1896 1705 1 1898 1709 1 1710 1899 1 1901 1715 1 1718 1902 1 1904 1720 1 + 1723 1905 1 1906 1724 1 1725 1907 1 1994 1733 1 1732 1993 1 1995 1730 1 1736 1909 1 + 1913 1741 1 1744 1914 1 1737 1911 1 1854 1917 1 1917 1746 1 1749 1918 1 1918 1855 1 + 1972 1919 1 1919 1917 1 1917 1916 1 1916 1972 1 1916 1918 1 1918 1920 1 1920 1972 1 + 1935 1922 1 1922 1923 1 1923 1921 1 1921 1935 1 1921 1924 1 1924 1925 1 1925 1935 1 + 1926 1927 1 1927 1919 1 1972 1926 1 1920 1928 1 1928 1926 1 1926 1921 1 1923 1927 1 + 1928 1924 1 1929 1930 1 1930 1933 1 1933 1934 1 1934 1929 1 1931 1932 1 1932 1934 1; + setAttr ".ed[3984:4149]" 1933 1931 1 1930 1922 1 1935 1933 1 1925 1931 1 1934 2002 1 + 2002 2001 1 2001 1929 1 1932 2003 1 2003 2002 1 1919 1750 1 1751 1920 1 1756 1923 1 + 1922 1757 1 1760 1925 1 1924 1761 1 1927 1763 1 1766 1928 1 1771 2001 1 2002 1772 1 + 2003 1774 1 1782 1930 1 1929 1783 1 1785 1931 1 1932 1784 1 1949 1939 1 1939 1937 1 + 1936 1949 1 1938 1940 1 1940 1949 1 1941 1942 1 1942 1939 1 1949 1941 1 1940 1943 1 + 1943 1941 1 1941 1944 1 1944 1945 1 1945 1942 1 1943 1946 1 1946 1944 1 1956 1947 1 + 1947 1945 1 1944 1956 1 1946 1948 1 1948 1956 1 1950 1951 1 1951 1952 1 1952 1953 1 + 1953 1950 1 1952 1954 1 1954 1955 1 1955 1953 1 1952 2008 1 2008 2009 1 2009 1954 1 + 1951 2007 1 2007 2008 1 1955 1947 1 1956 1953 1 1948 1950 1 1790 1938 1 1787 1937 1 + 1939 1791 1 1792 1940 1 1942 1797 1 1800 1943 1 1945 1805 1 1804 1946 1 1947 1806 1 + 1807 1948 1 1816 1951 1 1950 1817 1 1818 1955 1 1954 1819 1 2009 1812 1 1809 2007 1 + 2023 1957 1 1957 2042 1 2042 2043 1 2043 2023 1 2043 2044 1 1959 2023 1 1958 2041 1 + 2041 2042 1 1957 1958 1 2023 2022 1 2022 1962 1 1962 1957 1 1959 1964 1 1964 2022 1 + 1960 1961 1 1961 1962 1 1962 1963 1 1963 1960 1 2022 2021 1 2021 1963 1 1964 1965 1 + 1965 2021 1 2021 2020 1 2020 1966 1 1966 1963 1 1966 1967 1 1965 1968 1 1968 2020 1 + 2020 2019 1 2019 1969 1 1969 1966 1 1969 1970 1 1968 1971 1 1971 2019 1 1841 1964 1 + 1829 1971 1 1968 1842 1 1831 2019 1 1836 1961 1 1840 1965 1 1824 1958 1 1958 1961 1 + 2040 2041 1 1847 1991 1 1991 2015 1 1638 1985 1 1637 1638 1 1976 2038 1 2037 1976 1 + 2028 1847 1 1657 1636 1 1636 1658 1 1658 1654 1 1645 1657 1 1657 1640 1 1640 1639 1 + 2027 1991 1 1641 1642 1 1865 2026 1 2026 2027 1 2026 1845 1 1845 1991 1 2011 2012 1 + 2052 2047 1 2050 2053 1 2049 2051 1 2024 2138 1 2138 2139 1 1871 2024 1 1870 2025 1 + 2142 2135 1 1810 2008 1 2017 2066 1 2066 2067 1 2067 2054 1 2017 1633 1 2026 2025 1 + 1992 1974 1 1974 2033 1 1974 1975 1 2037 2036 1 2036 2035 1 2048 2060 1 2060 2153 1 + 2153 2154 1 2050 2055 1 2055 2057 1 2057 2053 1 2061 2054 1 2067 2068 1 2068 2061 1; + setAttr ".ed[4150:4315]" 2058 2059 1 2059 2047 1 2052 2058 1 2059 2060 1 2055 1609 1 + 1622 2057 1 2058 1582 1 1598 2059 1 2058 2062 1 2051 2062 1 2049 2056 1 2061 2055 1 + 2056 2057 1 2068 1607 1 1608 2061 1 1597 2153 1 2060 1599 1 2068 2063 1 2063 1600 1 + 2067 2064 1 2064 2063 1 2038 2064 1 2072 1577 1 1577 1581 1 1581 2160 1 2160 2072 1 + 115 2071 1 2071 2072 1 2160 115 1 2107 2194 1 2194 2195 1 2195 2106 1 2106 2107 1 + 2204 2205 1 2205 2095 1 2095 2204 1 2196 2110 1 2110 121 1 132 2196 1 2199 2077 1 + 2077 2080 1 2080 2198 1 2198 2199 1 2107 2088 1 2088 2092 1 2092 2194 1 2205 2206 1 + 2206 2096 1 2096 2095 1 2076 2077 1 2199 2200 1 2200 2076 1 2208 2209 1 2209 2094 1 + 2094 2091 1 2091 2208 1 2106 2110 1 2110 2078 1 2078 2107 1 2075 2079 1 2079 118 1 + 119 2106 1 2195 131 1 2159 126 1 2079 2159 1 2099 2207 1 2207 2208 1 2091 2099 1 + 2080 2078 1 2078 2197 1 2197 2198 1 2196 2197 1 2213 2081 1 2081 2090 1 2090 2212 1 + 2212 2213 1 2087 2216 1 2216 2217 1 2217 2087 1 2100 2218 1 2218 2219 1 2219 2085 1 + 2085 2100 1 1606 2087 1 2087 2100 1 2100 1630 1 2217 2218 1 2097 2087 1 1591 2097 1 + 2224 2215 1 2215 2097 1 2097 2098 1 2098 2224 1 2086 2089 1 2089 2222 1 2222 2223 1 + 2223 2086 1 2084 1584 1 1631 2083 1 2083 2084 1 2084 2089 1 2089 1601 1 2086 1593 1 + 2085 1592 1 2098 2086 1 2223 2224 1 2219 2220 1 2220 2083 1 2083 2085 1 2221 2084 1 + 2220 2221 1 2090 2093 1 2093 2211 1 2211 2212 1 2221 2222 1 2215 2216 1 122 2108 1 + 2108 2202 1 2202 133 1 2206 2207 1 2099 2096 1 1294 1182 1 1182 2102 1 2102 2105 1 + 2105 1294 1 2105 120 1 1183 2103 1 2103 2102 1 1187 2104 1 2104 2103 1 2109 1295 1 + 1295 2161 1 2161 2162 1 2162 2109 1 2080 2088 1 2201 2163 1 2163 2076 1 2200 2201 1 + 2210 2211 1 2093 2094 1 2094 2210 1 2109 2104 1 2098 1632 1 1874 1860 1 1860 1858 1 + 1916 1853 1 1853 1855 1 1850 1849 1 1851 1848 1 1848 2111 1 1869 2112 1 1660 2113 1 + 2137 2138 1 2011 1634 1 1562 2192 1 2192 2193 1 2190 2191 1 2191 2180 1 2180 2118 1 + 2118 2190 1 1308 2123 1 2123 2124 1 2125 2126 1 2122 2123 1 1262 1215 1 2115 1571 1; + setAttr ".ed[4316:4481]" 1571 1570 1 1570 2116 1 1570 1573 1 1577 2115 1 1262 1272 1 + 1284 1213 1 1289 1286 1 1438 2121 1 2120 1438 1 1456 2122 1 2121 1456 1 2122 1465 1 + 1317 2123 1 1333 2124 1 1336 2125 1 1532 2126 1 1499 2127 1 1497 2128 1 1495 2129 1 + 1498 2130 1 1491 2131 1 1332 2132 1 1365 2133 1 1494 2134 1 1478 2120 1 2135 2046 1 + 2045 2136 1 2044 2137 1 2043 2138 1 2042 2139 1 2041 2140 1 2040 2141 1 2039 2142 1 + 1546 1553 1 1547 1570 1 1439 2121 1 1496 1497 1 1493 1495 1 1492 1498 1 1191 2146 1 + 2146 1288 1 2147 2146 1 1260 2147 1 1261 2148 1 2148 2147 1 1288 1285 1 2146 2151 1 + 2147 2152 1 2063 2153 1 2064 2154 1 2038 2155 1 1974 2010 1 2155 1975 1 1992 2011 1 + 1653 1640 1 1656 1640 1 1655 1638 1 1642 1638 1 1435 2157 1 1556 1567 1 1567 2189 1 + 2189 2188 1 2209 2225 1 2225 2210 1 2159 2108 1 116 2160 1 123 2162 1 2108 2163 1 + 2201 2202 1 2164 2163 1 2159 2164 1 2079 2165 1 2165 2164 1 2075 2166 1 2166 2165 1 + 1557 2167 1 2167 2166 1 2070 2092 1 2092 2170 1 2170 2070 1 2183 2184 1 2173 2143 1 + 1554 2174 1 1551 2175 1 1564 2176 1 1566 2177 1 1568 2178 1 1569 2179 1 1562 2180 1 + 2191 2192 1 2180 2181 1 2182 1561 1 1573 2189 1 2189 2190 1 2188 1547 1 1553 2186 1 + 2190 2119 1 2179 2191 1 1569 2192 1 1559 2193 1 1563 1556 1 1577 1571 1 2194 2069 1 + 2069 2071 1 2071 2195 1 2070 2069 1 2105 2196 1 2102 2197 1 2103 2198 1 2104 2199 1 + 2109 2200 1 2162 2201 1 123 2202 1 2172 2173 1 2144 1552 1 1552 2172 1 1548 1552 1 + 2074 1575 1 1575 1576 1 1576 2073 1 2073 2074 1 2171 1558 1 1558 1557 1 1574 2171 1 + 1575 1552 1 1548 1576 1 2171 2172 1 1575 2171 1 1577 1576 1 2101 2082 1 2082 2214 1 + 2214 2203 1 2203 2101 1 2072 2073 1 2073 2069 1 2070 2074 1 2082 2081 1 2213 2214 1 + 2203 2204 1 2095 2101 1 1558 2168 1 2168 2167 1 2074 2169 1 2169 2168 1 1558 2074 1 + 2170 2169 1 1544 2172 1 1547 1573 1 2180 1561 1 2170 2204 1 2203 2169 1 2092 2205 1 + 2088 2206 1 2080 2207 1 2077 2208 1 2076 2209 1 2225 2163 1 2164 2210 1 2165 2211 1 + 2166 2212 1 2167 2213 1 2168 2214 1 2095 2216 1 2215 2101 1 2096 2217 1 2099 2218 1; + setAttr ".ed[4482:4487]" 2091 2219 1 2094 2220 1 2093 2221 1 2090 2222 1 2081 2223 1 + 2082 2224 1; + setAttr -s 2226 ".n"; + setAttr ".n[0:165]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[166:331]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[332:497]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[498:663]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[664:829]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[830:995]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[996:1161]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[1162:1327]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[1328:1493]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[1494:1659]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[1660:1825]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[1826:1991]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[1992:2157]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[2158:2225]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr -s 2268 -ch 8920 ".fc"; + setAttr ".fc[0:499]" -type "polyFaces" + f 4 0 1 2 3 + mu 0 4 0 1 2 3 + f 4 4 5 6 -2 + mu 0 4 1 4 5 2 + f 4 7 8 9 -6 + mu 0 4 4 6 7 5 + f 4 10 11 12 -9 + mu 0 4 6 8 9 7 + f 4 13 14 15 -12 + mu 0 4 8 10 11 9 + f 4 16 17 18 -15 + mu 0 4 10 12 13 11 + f 4 19 20 21 -18 + mu 0 4 12 14 15 13 + f 4 22 -4 23 -21 + mu 0 4 14 0 3 15 + f 3 -3 24 25 + mu 0 3 3 2 16 + f 3 -7 26 -25 + mu 0 3 2 5 16 + f 3 -10 27 -27 + mu 0 3 5 7 16 + f 3 -13 28 -28 + mu 0 3 7 9 16 + f 3 -16 29 -29 + mu 0 3 9 11 16 + f 3 -19 30 -30 + mu 0 3 11 13 16 + f 3 -22 31 -31 + mu 0 3 13 15 16 + f 3 -24 -26 -32 + mu 0 3 15 3 16 + f 4 32 33 34 35 + mu 0 4 17 18 19 20 + f 4 36 37 38 -34 + mu 0 4 21 22 23 24 + f 4 39 40 41 42 + mu 0 4 25 26 27 28 + f 4 43 44 45 -41 + mu 0 4 26 29 30 27 + f 4 46 47 48 -45 + mu 0 4 29 31 32 30 + f 4 49 50 51 52 + mu 0 4 33 34 35 36 + f 4 53 54 55 56 + mu 0 4 37 38 39 40 + f 4 57 58 59 -55 + mu 0 4 38 41 42 39 + f 4 60 -43 61 -38 + mu 0 4 22 25 28 23 + f 4 62 -36 63 -59 + mu 0 4 41 17 20 42 + f 4 64 -53 65 -48 + mu 0 4 31 33 36 32 + f 4 66 -57 67 -51 + mu 0 4 34 37 40 35 + f 4 68 69 70 71 + mu 0 4 43 44 45 46 + f 4 72 73 74 -70 + mu 0 4 44 47 48 45 + f 4 75 76 77 -74 + mu 0 4 47 49 50 48 + f 4 78 79 80 -77 + mu 0 4 49 51 52 50 + f 4 81 82 83 -80 + mu 0 4 51 53 54 52 + f 4 84 85 86 -83 + mu 0 4 53 55 56 54 + f 4 87 88 89 -86 + mu 0 4 55 57 58 56 + f 4 90 -72 91 -89 + mu 0 4 57 43 46 58 + f 3 -71 92 93 + mu 0 3 46 45 59 + f 3 -75 94 -93 + mu 0 3 45 48 59 + f 3 -78 95 -95 + mu 0 3 48 50 59 + f 3 -81 96 -96 + mu 0 3 50 52 59 + f 3 -84 97 -97 + mu 0 3 52 54 59 + f 3 -87 98 -98 + mu 0 3 54 56 59 + f 3 -90 99 -99 + mu 0 3 56 58 59 + f 3 -92 -94 -100 + mu 0 3 58 46 59 + f 4 100 101 102 103 + mu 0 4 60 61 62 63 + f 4 104 105 106 -102 + mu 0 4 61 64 65 62 + f 4 107 108 109 -106 + mu 0 4 64 66 67 65 + f 4 110 111 112 -109 + mu 0 4 66 68 69 67 + f 4 113 114 115 -112 + mu 0 4 68 70 71 69 + f 4 116 117 118 -115 + mu 0 4 70 72 73 71 + f 4 119 120 121 -118 + mu 0 4 72 74 75 73 + f 4 122 -104 123 -121 + mu 0 4 74 60 63 75 + f 3 -103 124 125 + mu 0 3 63 62 76 + f 3 -107 126 -125 + mu 0 3 62 65 76 + f 3 -110 127 -127 + mu 0 3 65 67 76 + f 3 -113 128 -128 + mu 0 3 67 69 76 + f 3 -116 129 -129 + mu 0 3 69 71 76 + f 3 -119 130 -130 + mu 0 3 71 73 76 + f 3 -122 131 -131 + mu 0 3 73 75 76 + f 3 -124 -126 -132 + mu 0 3 75 63 76 + f 4 132 133 134 135 + mu 0 4 77 78 79 80 + f 4 136 137 138 -134 + mu 0 4 78 81 82 79 + f 4 139 140 141 -138 + mu 0 4 81 83 84 82 + f 4 142 143 144 -141 + mu 0 4 83 85 86 84 + f 4 145 146 147 -144 + mu 0 4 85 87 88 86 + f 4 148 149 150 -147 + mu 0 4 87 89 90 88 + f 4 151 152 153 -150 + mu 0 4 89 91 92 90 + f 4 154 -136 155 -153 + mu 0 4 91 77 80 92 + f 3 -135 156 157 + mu 0 3 80 79 93 + f 3 -139 158 -157 + mu 0 3 79 82 93 + f 3 -142 159 -159 + mu 0 3 82 84 93 + f 3 -145 160 -160 + mu 0 3 84 86 93 + f 3 -148 161 -161 + mu 0 3 86 88 93 + f 3 -151 162 -162 + mu 0 3 88 90 93 + f 3 -154 163 -163 + mu 0 3 90 92 93 + f 3 -156 -158 -164 + mu 0 3 92 80 93 + f 4 164 165 166 167 + mu 0 4 94 95 96 97 + f 4 168 169 170 171 + mu 0 4 98 99 100 101 + f 4 172 173 174 175 + mu 0 4 102 103 104 105 + f 4 176 177 178 -165 + mu 0 4 94 106 107 95 + f 4 -172 179 180 -178 + mu 0 4 106 108 109 107 + f 3 181 182 183 + mu 0 3 110 111 112 + f 4 184 185 -171 186 + mu 0 4 113 114 115 116 + f 4 187 188 -180 -186 + mu 0 4 117 118 109 108 + f 4 189 190 -169 -177 + mu 0 4 119 120 121 122 + f 3 191 192 193 + mu 0 3 123 124 125 + f 4 194 195 196 197 + mu 0 4 126 127 128 129 + f 4 198 199 200 -195 + mu 0 4 126 130 131 127 + f 4 201 202 203 204 + mu 0 4 132 133 134 135 + f 4 205 206 207 -203 + mu 0 4 133 136 137 134 + f 4 208 209 210 211 + mu 0 4 138 139 140 141 + f 4 212 213 214 215 + mu 0 4 142 143 137 140 + f 4 -210 216 217 -216 + mu 0 4 140 139 144 142 + f 4 -208 -214 218 219 + mu 0 4 134 137 143 145 + f 4 -204 -220 220 221 + mu 0 4 135 134 145 146 + f 4 -211 -215 -207 222 + mu 0 4 141 140 137 136 + f 4 223 224 225 226 + mu 0 4 147 148 149 150 + f 4 227 228 229 230 + mu 0 4 151 152 153 154 + f 4 231 -229 232 -227 + mu 0 4 150 153 152 147 + f 4 233 234 235 -233 + mu 0 4 152 155 156 147 + f 4 -236 236 237 -224 + mu 0 4 147 156 157 148 + f 4 -217 238 239 240 + mu 0 4 144 139 158 159 + f 4 -237 -235 241 -222 + mu 0 4 157 156 155 160 + f 4 242 243 244 -241 + mu 0 4 159 161 162 144 + f 4 245 246 247 248 + mu 0 4 163 164 158 165 + f 4 -248 -239 -209 249 + mu 0 4 165 158 139 138 + f 4 250 251 252 253 + mu 0 4 166 167 168 169 + f 4 -247 254 -243 -240 + mu 0 4 158 164 161 159 + f 3 255 256 257 + mu 0 3 170 171 172 + f 4 258 259 -256 260 + mu 0 4 173 174 171 170 + f 4 -252 261 -259 262 + mu 0 4 168 167 174 173 + f 4 263 264 265 -226 + mu 0 4 149 175 176 150 + f 4 266 267 -232 -266 + mu 0 4 176 177 153 150 + f 4 -230 -268 268 269 + mu 0 4 154 153 177 178 + f 4 -269 270 -246 271 + mu 0 4 178 177 164 163 + f 4 272 -255 -271 -267 + mu 0 4 176 161 164 177 + f 4 -265 273 -244 -273 + mu 0 4 176 175 162 161 + f 4 274 275 -189 276 + mu 0 4 130 179 109 118 + f 4 -200 -277 277 278 + mu 0 4 131 130 118 180 + f 4 -181 -276 279 280 + mu 0 4 107 109 179 181 + f 4 281 -179 -281 282 + mu 0 4 182 95 107 181 + f 4 -188 283 284 -278 + mu 0 4 118 117 183 180 + f 4 285 286 287 288 + mu 0 4 184 185 186 187 + f 4 289 290 291 292 + mu 0 4 188 189 190 191 + f 4 293 294 295 -290 + mu 0 4 188 192 193 189 + f 4 296 297 298 -291 + mu 0 4 189 194 195 190 + f 4 299 300 301 302 + mu 0 4 196 197 198 199 + f 4 303 304 305 -288 + mu 0 4 186 200 201 187 + f 4 306 307 308 -305 + mu 0 4 200 202 203 201 + f 4 309 -166 -282 310 + mu 0 4 204 96 95 182 + f 4 311 312 313 314 + mu 0 4 205 206 207 208 + f 4 315 316 317 318 + mu 0 4 209 166 207 210 + f 4 319 320 -318 -313 + mu 0 4 206 211 210 207 + f 4 321 322 323 -286 + mu 0 4 184 212 213 185 + f 4 324 -307 325 -302 + mu 0 4 198 202 200 199 + f 3 326 327 328 + mu 0 3 214 215 216 + f 4 329 -321 330 331 + mu 0 4 217 210 211 218 + f 4 332 -167 333 334 + mu 0 4 219 97 96 220 + f 4 335 336 -331 337 + mu 0 4 221 222 218 211 + f 4 -338 -320 338 339 + mu 0 4 221 211 206 223 + f 4 -312 340 341 -339 + mu 0 4 206 205 194 223 + f 4 -296 342 -342 -297 + mu 0 4 189 193 223 194 + f 4 343 344 -340 -343 + mu 0 4 193 196 221 223 + f 4 345 -336 -345 -303 + mu 0 4 199 222 221 196 + f 4 346 347 -298 -341 + mu 0 4 205 224 195 194 + f 4 -304 348 -346 -326 + mu 0 4 200 186 222 199 + f 4 -287 349 -337 -349 + mu 0 4 186 185 218 222 + f 4 350 -325 351 352 + mu 0 4 225 226 227 228 + f 4 353 354 355 -283 + mu 0 4 181 229 212 182 + f 4 -308 -351 356 357 + mu 0 4 230 226 225 231 + f 4 358 -323 -355 359 + mu 0 4 232 213 212 229 + f 4 -352 -301 360 361 + mu 0 4 228 227 233 234 + f 3 362 -293 363 + mu 0 3 235 236 237 + f 4 364 -294 -363 365 + mu 0 4 171 238 236 235 + f 4 366 -360 367 368 + mu 0 4 239 232 229 240 + f 4 369 370 -369 371 + mu 0 4 241 242 239 240 + f 4 -354 -280 372 -368 + mu 0 4 229 181 179 240 + f 4 -373 373 374 -372 + mu 0 4 240 179 243 241 + f 4 -251 -316 375 376 + mu 0 4 167 166 209 244 + f 4 -262 -377 377 378 + mu 0 4 174 167 244 245 + f 4 379 380 -367 381 + mu 0 4 246 247 232 239 + f 4 -376 382 -380 383 + mu 0 4 244 209 247 246 + f 4 384 -378 -384 385 + mu 0 4 248 245 244 246 + f 4 386 -386 -382 -371 + mu 0 4 242 248 246 239 + f 4 -205 -242 387 388 + mu 0 4 249 160 155 250 + f 4 -388 -234 -228 389 + mu 0 4 250 155 152 151 + f 3 390 -257 -366 + mu 0 3 235 172 171 + f 4 391 392 -359 -381 + mu 0 4 247 217 213 232 + f 4 -319 -330 -392 -383 + mu 0 4 209 210 217 247 + f 4 -254 393 -314 -317 + mu 0 4 166 169 208 207 + f 4 -358 394 395 396 + mu 0 4 230 231 251 252 + f 4 -223 397 -348 398 + mu 0 4 141 136 195 224 + f 4 399 400 401 -250 + mu 0 4 138 253 169 165 + f 4 402 -249 -402 -253 + mu 0 4 168 163 165 169 + f 4 -263 403 -272 -403 + mu 0 4 168 173 178 163 + f 4 404 -270 -404 -261 + mu 0 4 170 154 178 173 + f 4 405 -231 -405 -258 + mu 0 4 172 151 154 170 + f 4 406 -390 -406 -391 + mu 0 4 235 250 151 172 + f 4 -389 -407 -364 407 + mu 0 4 249 250 235 237 + f 4 408 -202 -408 -292 + mu 0 4 190 133 132 191 + f 4 -398 -206 -409 -299 + mu 0 4 195 136 133 190 + f 4 -174 409 -333 410 + mu 0 4 104 103 254 255 + f 4 411 412 413 -411 + mu 0 4 256 257 258 259 + f 4 -335 414 -329 -412 + mu 0 4 219 220 214 216 + f 4 415 -375 416 -395 + mu 0 4 231 241 243 251 + f 4 417 -370 -416 -357 + mu 0 4 225 242 241 231 + f 4 418 -387 -418 -353 + mu 0 4 228 248 242 225 + f 4 419 -385 -419 -362 + mu 0 4 234 245 248 228 + f 4 -260 -379 -420 420 + mu 0 4 171 174 245 234 + f 4 421 -365 -421 -361 + mu 0 4 233 238 171 234 + f 4 -344 -295 -422 -300 + mu 0 4 196 193 192 197 + f 4 422 423 424 425 + mu 0 4 260 261 262 263 + f 4 426 427 428 429 + mu 0 4 264 265 266 267 + f 4 430 431 432 433 + mu 0 4 268 262 269 270 + f 4 434 435 436 437 + mu 0 4 271 272 273 274 + f 4 438 -430 439 440 + mu 0 4 273 264 267 275 + f 4 441 -434 442 443 + mu 0 4 276 268 270 277 + f 4 444 -442 445 -438 + mu 0 4 274 268 276 271 + f 4 446 447 -440 448 + mu 0 4 278 279 275 267 + f 4 449 450 -449 -429 + mu 0 4 266 280 278 267 + f 4 451 452 453 -427 + mu 0 4 264 281 282 265 + f 4 454 -433 455 456 + mu 0 4 283 284 285 286 + f 4 457 458 -457 459 + mu 0 4 287 288 283 286 + f 4 460 -459 461 462 + mu 0 4 289 283 288 290 + f 4 -462 463 464 465 + mu 0 4 290 288 291 292 + f 4 -465 466 -454 467 + mu 0 4 292 291 265 282 + f 4 468 -464 -458 469 + mu 0 4 293 291 288 287 + f 4 -467 -469 470 -428 + mu 0 4 265 291 293 266 + f 4 471 472 473 474 + mu 0 4 294 295 296 297 + f 4 475 476 477 478 + mu 0 4 298 299 261 300 + f 4 -478 -423 479 480 + mu 0 4 300 261 260 301 + f 4 -480 481 482 483 + mu 0 4 301 260 279 302 + f 4 484 485 486 487 + mu 0 4 303 304 305 306 + f 4 -475 488 489 490 + mu 0 4 294 297 307 308 + f 4 -490 491 492 493 + mu 0 4 308 307 309 310 + f 4 494 495 496 -473 + mu 0 4 295 311 312 296 + f 4 497 498 499 -496 + mu 0 4 311 313 314 312 + f 4 500 501 502 503 + mu 0 4 315 316 317 318 + f 4 504 505 506 -451 + mu 0 4 280 319 306 278 + f 4 507 508 -488 -506 + mu 0 4 319 320 303 306 + f 4 509 510 511 -492 + mu 0 4 307 321 322 309 + f 4 512 -456 513 514 + mu 0 4 323 286 285 324 + f 4 515 516 517 518 + mu 0 4 325 326 327 328 + f 4 519 -460 -513 520 + mu 0 4 329 287 286 323 + f 4 521 522 523 -521 + mu 0 4 323 322 330 329 + f 4 524 -470 -520 525 + mu 0 4 331 293 287 329 + f 4 -524 526 527 -526 + mu 0 4 329 330 332 331 + f 4 -517 528 -509 529 + mu 0 4 327 326 303 320 + f 4 -489 530 531 -510 + mu 0 4 307 297 333 321 + f 4 532 533 534 -532 + mu 0 4 333 334 335 321 + f 4 535 536 537 -534 + mu 0 4 334 336 337 335 + f 4 538 539 540 -497 + mu 0 4 312 338 339 296 + f 4 541 -533 542 -540 + mu 0 4 338 334 333 339 + f 4 543 544 -539 -500 + mu 0 4 314 340 338 312 + f 4 -536 -542 -545 545 + mu 0 4 336 334 338 340 + f 4 546 -544 547 -519 + mu 0 4 328 340 314 325 + f 4 548 -537 549 -530 + mu 0 4 320 337 336 327 + f 4 -528 550 -505 551 + mu 0 4 331 332 319 280 + f 4 -471 -525 -552 -450 + mu 0 4 266 293 331 280 + f 4 552 553 554 555 + mu 0 4 341 342 343 344 + f 4 556 557 -554 558 + mu 0 4 345 346 343 342 + f 4 559 560 561 562 + mu 0 4 347 348 349 350 + f 4 -561 563 564 565 + mu 0 4 349 348 351 352 + f 4 566 567 568 569 + mu 0 4 353 354 355 356 + f 4 570 -570 571 572 + mu 0 4 357 353 356 358 + f 3 573 574 575 + mu 0 3 359 360 361 + f 4 576 577 578 579 + mu 0 4 362 363 364 365 + f 4 580 581 582 583 + mu 0 4 316 366 367 368 + f 4 584 585 -576 586 + mu 0 4 369 370 359 361 + f 4 -584 587 588 -502 + mu 0 4 316 368 371 317 + f 4 589 590 591 592 + mu 0 4 364 372 315 373 + f 4 593 594 -590 -578 + mu 0 4 363 374 372 364 + f 4 595 -588 596 -586 + mu 0 4 370 375 376 359 + f 4 -579 -593 597 598 + mu 0 4 365 364 373 377 + f 4 -583 599 600 -597 + mu 0 4 376 378 379 359 + f 4 601 602 603 604 + mu 0 4 360 380 381 382 + f 4 605 -580 606 -604 + mu 0 4 381 383 384 382 + f 4 607 -575 -605 608 + mu 0 4 385 361 360 382 + f 4 -607 -599 609 -609 + mu 0 4 382 384 386 385 + f 4 -601 610 -602 -574 + mu 0 4 359 379 380 360 + f 4 611 -581 612 -595 + mu 0 4 374 366 316 372 + f 4 613 -577 614 615 + mu 0 4 387 363 362 388 + f 4 616 617 618 -616 + mu 0 4 389 390 391 392 + f 4 619 620 621 622 + mu 0 4 393 394 395 396 + f 4 623 -582 624 -622 + mu 0 4 397 367 366 398 + f 4 625 -600 -624 626 + mu 0 4 345 379 378 399 + f 4 627 -553 628 -603 + mu 0 4 380 342 341 381 + f 4 -615 -606 -629 629 + mu 0 4 389 383 381 341 + f 4 -556 630 -617 -630 + mu 0 4 341 344 390 389 + f 4 -557 -627 -621 631 + mu 0 4 346 345 399 394 + f 4 632 633 634 635 + mu 0 4 400 401 402 403 + f 4 -626 -559 -628 -611 + mu 0 4 379 345 342 380 + f 4 636 -594 -614 637 + mu 0 4 404 374 363 387 + f 4 -625 -612 -637 638 + mu 0 4 398 366 374 404 + f 4 639 -638 -619 640 + mu 0 4 405 404 387 406 + f 4 -623 -639 -640 641 + mu 0 4 407 398 404 405 + f 4 -631 -555 642 643 + mu 0 4 390 344 343 408 + f 4 -643 -558 -632 644 + mu 0 4 408 343 346 394 + f 4 645 646 647 648 + mu 0 4 409 369 410 411 + f 3 649 650 -585 + mu 0 3 369 412 370 + f 3 651 -650 -646 + mu 0 3 409 412 369 + f 4 652 653 654 -649 + mu 0 4 411 413 414 409 + f 4 655 656 -654 657 + mu 0 4 415 416 417 418 + f 4 658 659 -656 660 + mu 0 4 419 318 416 415 + f 4 661 662 663 664 + mu 0 4 420 421 422 416 + f 4 -664 665 666 -657 + mu 0 4 416 422 423 417 + f 4 667 668 -662 669 + mu 0 4 317 424 421 420 + f 4 670 671 672 -658 + mu 0 4 418 425 426 415 + f 4 673 -655 -667 674 + mu 0 4 427 409 414 428 + f 4 675 676 677 -675 + mu 0 4 428 429 430 427 + f 4 678 679 -676 -666 + mu 0 4 422 431 432 423 + f 4 -589 680 681 -668 + mu 0 4 317 371 433 424 + f 4 -681 -596 682 683 + mu 0 4 434 375 370 435 + f 4 684 685 -679 -663 + mu 0 4 421 436 431 422 + f 4 686 687 -685 -669 + mu 0 4 424 403 436 421 + f 4 688 689 -683 -651 + mu 0 4 412 437 435 370 + f 4 690 -689 -652 -674 + mu 0 4 427 437 412 409 + f 4 691 692 -633 693 + mu 0 4 438 439 440 441 + f 4 694 695 696 -677 + mu 0 4 429 442 443 430 + f 4 697 698 -695 -680 + mu 0 4 431 444 445 432 + f 4 -682 699 -636 -687 + mu 0 4 424 433 400 403 + f 4 -700 -684 700 -694 + mu 0 4 441 434 435 438 + f 4 -686 701 702 -698 + mu 0 4 431 436 446 444 + f 4 -702 -688 -635 703 + mu 0 4 446 436 403 402 + f 4 704 705 -701 -690 + mu 0 4 437 447 438 435 + f 4 706 -705 -691 -678 + mu 0 4 430 447 437 427 + f 4 707 708 -699 -703 + mu 0 4 446 448 445 444 + f 4 -634 709 -708 -704 + mu 0 4 402 401 448 446 + f 4 -693 710 711 -710 + mu 0 4 440 439 449 450 + f 4 -712 712 -696 -709 + mu 0 4 450 449 443 442 + f 4 -692 -706 713 -711 + mu 0 4 439 438 447 449 + f 4 -714 -707 -697 -713 + mu 0 4 449 447 430 443 + f 3 714 715 716 + mu 0 3 451 452 410 + f 3 -716 717 -648 + mu 0 3 410 452 411 + f 4 718 719 -717 720 + mu 0 4 453 454 451 410 + f 4 721 722 723 -720 + mu 0 4 454 455 456 451 + f 4 724 -723 725 726 + mu 0 4 457 458 459 460 + f 4 727 728 729 -726 + mu 0 4 459 461 462 460 + f 4 -673 730 731 732 + mu 0 4 415 426 463 464 + f 4 -732 733 734 735 + mu 0 4 464 463 465 457 + f 4 736 737 -671 -653 + mu 0 4 411 466 467 413 + f 4 -735 738 739 -725 + mu 0 4 457 465 468 458 + f 4 740 -715 741 742 + mu 0 4 469 452 451 470 + f 4 743 744 -743 745 + mu 0 4 471 472 469 470 + f 4 -741 746 -737 -718 + mu 0 4 452 469 466 411 + f 4 -747 -745 747 748 + mu 0 4 466 469 472 473 + f 4 749 750 -731 751 + mu 0 4 474 475 463 426 + f 4 -734 -751 752 753 + mu 0 4 465 463 475 476 + f 4 -749 754 755 -738 + mu 0 4 466 473 477 467 + f 4 -672 -756 756 -752 + mu 0 4 426 425 478 474 + f 4 -754 757 758 -739 + mu 0 4 465 476 479 468 + f 4 759 -759 760 -746 + mu 0 4 470 480 481 471 + f 4 -742 -724 -740 -760 + mu 0 4 470 451 456 480 + f 4 761 762 763 764 + mu 0 4 482 483 484 352 + f 4 765 -729 -762 766 + mu 0 4 485 462 461 486 + f 4 767 768 -744 769 + mu 0 4 487 488 472 471 + f 4 770 771 772 -750 + mu 0 4 474 489 490 475 + f 4 -773 773 774 -753 + mu 0 4 475 490 491 476 + f 4 775 -758 -775 776 + mu 0 4 492 479 476 491 + f 4 -761 -776 777 -770 + mu 0 4 471 481 493 487 + f 4 778 779 -755 780 + mu 0 4 494 495 477 473 + f 4 -780 781 -771 -757 + mu 0 4 478 496 489 474 + f 4 -769 782 -781 -748 + mu 0 4 472 488 494 473 + f 4 -779 -783 783 784 + mu 0 4 495 494 488 497 + f 4 -784 -768 -778 785 + mu 0 4 497 488 487 493 + f 4 -774 786 -786 -777 + mu 0 4 491 490 498 492 + f 4 -787 -772 -782 -785 + mu 0 4 498 490 489 496 + f 4 787 788 789 790 + mu 0 4 499 500 501 453 + f 4 791 792 793 794 + mu 0 4 502 503 504 505 + f 4 795 796 -794 797 + mu 0 4 506 507 505 504 + f 4 798 -548 -499 799 + mu 0 4 508 325 314 313 + f 3 800 801 -790 + mu 0 3 501 509 453 + f 3 -802 802 -719 + mu 0 3 453 509 454 + f 4 -789 803 -792 804 + mu 0 4 501 500 510 511 + f 4 805 -801 806 807 + mu 0 4 512 509 501 513 + f 4 -806 808 809 -803 + mu 0 4 509 512 484 454 + f 4 810 811 -807 -805 + mu 0 4 511 514 513 501 + f 4 812 -811 -795 813 + mu 0 4 515 516 502 505 + f 4 -810 -763 -728 -722 + mu 0 4 454 484 483 455 + f 4 -730 814 815 816 + mu 0 4 460 462 517 518 + f 4 -814 817 -816 818 + mu 0 4 515 505 518 517 + f 4 -562 819 -808 820 + mu 0 4 350 349 512 513 + f 4 -809 -820 -566 -764 + mu 0 4 484 512 349 352 + f 4 821 822 -815 -766 + mu 0 4 485 519 517 462 + f 4 823 824 -819 -823 + mu 0 4 519 520 515 517 + f 4 825 826 827 828 + mu 0 4 521 522 520 523 + f 4 -563 829 -826 830 + mu 0 4 347 350 524 525 + f 4 831 -767 832 833 + mu 0 4 526 485 486 527 + f 4 -833 -765 -565 834 + mu 0 4 528 482 352 351 + f 4 835 -822 -832 836 + mu 0 4 529 519 485 526 + f 4 -824 -836 837 -828 + mu 0 4 520 519 529 523 + f 4 838 -813 -825 -827 + mu 0 4 522 516 515 520 + f 4 -812 -839 -830 -821 + mu 0 4 513 514 524 350 + f 4 -835 -564 839 840 + mu 0 4 528 351 348 530 + f 4 -840 -560 -831 841 + mu 0 4 530 348 347 525 + f 4 -838 842 -842 -829 + mu 0 4 523 529 531 521 + f 4 -843 -837 -834 -841 + mu 0 4 531 529 526 527 + f 4 843 844 845 846 + mu 0 4 532 533 534 535 + f 4 -798 847 848 849 + mu 0 4 506 504 536 537 + f 4 850 851 852 853 + mu 0 4 538 539 499 540 + f 4 -846 854 -854 855 + mu 0 4 535 534 538 540 + f 4 856 857 858 859 + mu 0 4 539 541 542 500 + f 4 860 -857 -851 861 + mu 0 4 543 541 539 538 + f 4 862 863 -862 -855 + mu 0 4 534 544 543 538 + f 4 864 865 -863 -845 + mu 0 4 533 545 544 534 + f 4 866 -866 867 868 + mu 0 4 546 544 545 547 + f 4 869 870 871 -848 + mu 0 4 504 548 549 536 + f 4 872 -871 873 874 + mu 0 4 550 549 548 551 + f 4 875 876 -804 -859 + mu 0 4 542 552 510 500 + f 4 -877 877 -870 -793 + mu 0 4 503 553 548 504 + f 4 -874 -878 878 879 + mu 0 4 551 548 553 554 + f 4 880 -865 881 -872 + mu 0 4 549 545 533 536 + f 4 -868 -881 -873 882 + mu 0 4 547 545 549 550 + f 4 883 884 885 -883 + mu 0 4 550 555 556 547 + f 4 -879 -876 886 887 + mu 0 4 557 552 542 355 + f 4 -858 888 -569 -887 + mu 0 4 542 541 356 355 + f 4 889 890 891 -880 + mu 0 4 554 558 559 551 + f 4 -568 892 -890 -888 + mu 0 4 355 354 560 557 + f 4 -892 893 -884 -875 + mu 0 4 551 559 555 550 + f 4 894 895 -869 -886 + mu 0 4 556 561 546 547 + f 4 -896 896 -573 897 + mu 0 4 546 562 357 358 + f 4 898 -572 -889 -861 + mu 0 4 543 358 356 541 + f 4 899 900 -895 -885 + mu 0 4 555 563 561 556 + f 4 -891 901 -900 -894 + mu 0 4 559 558 563 555 + f 4 -893 -567 902 -902 + mu 0 4 560 354 353 564 + f 4 -903 -571 -897 -901 + mu 0 4 564 353 357 562 + f 4 903 -213 904 -435 + mu 0 4 271 143 142 272 + f 4 905 -444 906 -221 + mu 0 4 145 276 277 146 + f 4 -904 -446 -906 -219 + mu 0 4 143 271 276 145 + f 4 907 908 -238 -907 + mu 0 4 565 289 148 157 + f 4 909 910 -905 -218 + mu 0 4 144 281 272 142 + f 4 -909 -463 911 -225 + mu 0 4 148 289 290 149 + f 4 912 -453 -910 -245 + mu 0 4 162 282 281 144 + f 4 -466 913 -264 -912 + mu 0 4 290 292 175 149 + f 4 -913 -274 -914 -468 + mu 0 4 282 162 175 292 + f 4 -522 -515 914 -512 + mu 0 4 322 323 324 309 + f 4 -523 -511 -535 915 + mu 0 4 330 322 321 335 + f 4 -916 -538 916 -527 + mu 0 4 330 335 337 332 + f 4 -917 -549 -508 -551 + mu 0 4 332 337 320 319 + f 4 -543 -531 -474 -541 + mu 0 4 339 333 297 296 + f 4 -436 -911 -452 -439 + mu 0 4 273 272 281 264 + f 4 -461 -908 -443 -455 + mu 0 4 283 289 565 284 + f 4 917 918 -727 919 + mu 0 4 507 419 457 460 + f 4 -864 -867 -898 -899 + mu 0 4 543 544 546 358 + f 4 920 -493 -915 -476 + mu 0 4 298 566 567 299 + f 4 -426 921 -448 -482 + mu 0 4 260 263 275 279 + f 4 -441 -922 922 -437 + mu 0 4 273 275 263 274 + f 4 -431 -445 -923 -425 + mu 0 4 262 268 274 263 + f 4 -546 -547 -518 -550 + mu 0 4 336 340 328 327 + f 4 -799 923 924 -516 + mu 0 4 325 508 568 326 + f 4 -477 -514 -432 -424 + mu 0 4 261 299 269 262 + f 4 -882 -844 925 -849 + mu 0 4 536 533 532 537 + f 4 926 927 928 929 + mu 0 4 569 570 571 572 + f 4 930 931 932 933 + mu 0 4 573 574 575 576 + f 4 934 935 936 -932 + mu 0 4 574 577 578 575 + f 4 937 938 939 -927 + mu 0 4 569 579 580 570 + f 4 940 941 942 943 + mu 0 4 581 582 583 584 + f 4 944 945 946 947 + mu 0 4 585 584 586 587 + f 4 948 949 950 -942 + mu 0 4 582 588 589 583 + f 4 951 952 953 -939 + mu 0 4 579 590 591 580 + f 4 -937 954 -941 955 + mu 0 4 575 578 582 581 + f 4 956 957 -949 958 + mu 0 4 592 593 588 582 + f 4 959 960 961 962 + mu 0 4 594 587 595 576 + f 4 963 -934 -962 964 + mu 0 4 596 573 576 595 + f 4 -929 965 966 967 + mu 0 4 572 571 597 598 + f 4 968 969 970 971 + mu 0 4 599 600 601 602 + f 4 972 973 -971 974 + mu 0 4 603 604 602 601 + f 4 975 976 977 978 + mu 0 4 605 606 607 608 + f 3 979 980 981 + mu 0 3 609 610 611 + f 4 982 983 984 985 + mu 0 4 612 613 614 615 + f 4 -985 986 987 988 + mu 0 4 615 614 616 617 + f 4 989 990 991 992 + mu 0 4 618 609 619 620 + f 4 993 994 995 996 + mu 0 4 621 622 623 624 + f 4 997 -977 998 999 + mu 0 4 625 607 606 626 + f 4 -996 1000 1001 1002 + mu 0 4 624 623 627 628 + f 4 -993 1003 1004 1005 + mu 0 4 618 620 629 630 + f 4 1006 -965 1007 -1002 + mu 0 4 627 596 595 628 + f 4 1008 1009 1010 -997 + mu 0 4 624 631 632 621 + f 4 1011 1012 1013 1014 + mu 0 4 633 634 635 636 + f 4 1015 -1013 1016 1017 + mu 0 4 637 635 634 638 + f 4 1018 1019 1020 -979 + mu 0 4 608 639 640 605 + f 4 -969 1021 -953 1022 + mu 0 4 600 599 591 590 + f 4 1023 1024 1025 -1017 + mu 0 4 634 641 642 638 + f 4 1026 1027 -994 -1011 + mu 0 4 632 643 622 621 + f 4 1028 -987 1029 -1014 + mu 0 4 635 616 614 636 + f 4 1030 1031 -991 -982 + mu 0 4 611 644 619 609 + f 4 1032 -1005 1033 -967 + mu 0 4 597 630 629 598 + f 4 1034 1035 1036 -988 + mu 0 4 616 645 646 617 + f 4 1037 -1035 -1029 -1016 + mu 0 4 637 645 616 635 + f 4 1038 1039 1040 1041 + mu 0 4 647 648 649 650 + f 4 1042 1043 1044 1045 + mu 0 4 651 652 653 654 + f 4 1046 1047 -1043 1048 + mu 0 4 655 656 652 651 + f 4 -1045 1049 1050 1051 + mu 0 4 654 653 657 658 + f 4 -1051 1052 1053 1054 + mu 0 4 658 657 650 659 + f 4 1055 1056 1057 -1044 + mu 0 4 652 660 661 653 + f 4 1058 -1042 -1053 1059 + mu 0 4 662 647 650 657 + f 4 -1058 1060 -1060 -1050 + mu 0 4 653 661 662 657 + f 4 1061 1062 1063 1064 + mu 0 4 663 664 665 666 + f 4 1065 1066 1067 1068 + mu 0 4 667 668 669 670 + f 4 1069 1070 1071 -1066 + mu 0 4 667 671 672 668 + f 4 1072 1073 -1070 1074 + mu 0 4 673 674 671 667 + f 4 1075 1076 1077 1078 + mu 0 4 675 676 677 678 + f 4 1079 1080 -1076 1081 + mu 0 4 679 680 676 675 + f 4 1082 1083 1084 -1046 + mu 0 4 681 682 683 684 + f 4 -1068 1085 1086 1087 + mu 0 4 670 669 685 686 + f 4 1088 1089 1090 -1087 + mu 0 4 685 687 688 686 + f 3 1091 1092 1093 + mu 0 3 688 689 690 + f 4 -1091 1094 1095 1096 + mu 0 4 686 688 691 692 + f 4 1097 1098 1099 -1055 + mu 0 4 693 694 695 696 + f 4 1100 -1065 1101 -1080 + mu 0 4 679 663 666 680 + f 4 1102 1103 1104 -1099 + mu 0 4 694 697 698 695 + f 4 1105 -1084 1106 -1092 + mu 0 4 688 683 682 689 + f 4 1107 -1106 -1090 1108 + mu 0 4 699 683 688 687 + f 4 -1049 -1085 -1108 1109 + mu 0 4 700 684 683 699 + f 4 1110 -1104 1111 -1063 + mu 0 4 664 698 697 665 + f 4 1112 1113 1114 -1071 + mu 0 4 671 660 701 672 + f 4 -1069 1115 1116 -1075 + mu 0 4 667 670 702 673 + f 4 1117 1118 1119 -1059 + mu 0 4 662 703 704 647 + f 4 1120 -1119 1121 -1078 + mu 0 4 677 704 703 678 + f 4 -1113 -1074 1122 -1057 + mu 0 4 660 671 674 661; + setAttr ".fc[500:999]" + f 4 -1100 1123 -1083 -1052 + mu 0 4 696 695 682 681 + f 4 -1105 1124 -1107 -1124 + mu 0 4 695 698 689 682 + f 4 1125 -1093 -1125 -1111 + mu 0 4 664 690 689 698 + f 4 1126 -1126 -1062 1127 + mu 0 4 691 690 664 663 + f 4 -1096 -1128 -1101 1128 + mu 0 4 692 691 663 679 + f 4 1129 -1114 -1056 -1048 + mu 0 4 656 701 660 652 + f 4 -1116 -1088 -1097 1130 + mu 0 4 702 670 686 692 + f 4 1131 -1117 1132 -1079 + mu 0 4 678 673 702 675 + f 4 -1123 1133 -1118 -1061 + mu 0 4 661 674 703 662 + f 4 -1122 -1134 -1073 -1132 + mu 0 4 678 703 674 673 + f 4 1134 1135 1136 1137 + mu 0 4 705 706 707 708 + f 4 1138 -1137 1139 1140 + mu 0 4 709 708 707 710 + f 4 1141 1142 1143 1144 + mu 0 4 711 712 713 714 + f 4 1145 1146 1147 1148 + mu 0 4 715 716 717 718 + f 3 1149 1150 1151 + mu 0 3 719 720 721 + f 4 1152 -1145 1153 -1147 + mu 0 4 716 711 714 717 + f 3 1154 1155 1156 + mu 0 3 722 723 724 + f 4 1157 1158 -1150 1159 + mu 0 4 725 726 720 719 + f 4 1160 1161 1162 1163 + mu 0 4 727 728 729 730 + f 4 1164 1165 1166 1167 + mu 0 4 731 732 733 730 + f 4 1168 1169 1170 1171 + mu 0 4 734 735 736 737 + f 4 -1157 1172 1173 1174 + mu 0 4 722 724 738 739 + f 4 1175 1176 1177 -1156 + mu 0 4 723 740 741 724 + f 4 -1177 1178 1179 1180 + mu 0 4 741 740 742 743 + f 4 1181 1182 1183 -1176 + mu 0 4 723 713 744 740 + f 4 -1184 1184 1185 -1179 + mu 0 4 740 744 745 742 + f 4 1186 1187 1188 1189 + mu 0 4 746 747 748 749 + f 4 1190 1191 1192 -1189 + mu 0 4 748 712 750 749 + f 4 -1183 -1143 -1191 1193 + mu 0 4 744 713 712 748 + f 4 1194 -1185 -1194 -1188 + mu 0 4 747 745 744 748 + f 4 1195 1196 1197 1198 + mu 0 4 751 752 753 754 + f 4 -1163 1199 1200 1201 + mu 0 4 730 729 755 756 + f 4 -1171 1202 -1165 1203 + mu 0 4 737 736 732 731 + f 4 1204 -1151 1205 1206 + mu 0 4 753 721 720 757 + f 4 1207 1208 1209 1210 + mu 0 4 758 759 760 752 + f 4 1211 1212 1213 1214 + mu 0 4 757 761 762 763 + f 4 1215 1216 1217 -1159 + mu 0 4 726 764 765 720 + f 4 1218 1219 1220 -1158 + mu 0 4 766 767 768 769 + f 4 -1221 1221 1222 -1216 + mu 0 4 769 768 770 771 + f 4 1223 -1164 -1167 1224 + mu 0 4 772 727 730 733 + f 4 1225 1226 1227 -1225 + mu 0 4 733 773 774 772 + f 4 1228 1229 -1226 -1166 + mu 0 4 732 775 773 733 + f 4 1230 1231 -1229 -1203 + mu 0 4 736 776 775 732 + f 4 1232 -1231 -1170 1233 + mu 0 4 777 776 736 735 + f 4 -1227 1234 1235 1236 + mu 0 4 774 773 778 779 + f 4 1237 1238 1239 -1232 + mu 0 4 776 780 781 775 + f 4 -1238 -1233 1240 1241 + mu 0 4 780 776 777 782 + f 4 1242 1243 1244 -1236 + mu 0 4 778 783 784 779 + f 4 1245 1246 1247 -1243 + mu 0 4 778 781 785 783 + f 4 -1239 1248 1249 -1247 + mu 0 4 781 780 786 785 + f 4 1250 1251 -1249 -1242 + mu 0 4 782 787 786 780 + f 4 1252 1253 1254 -1244 + mu 0 4 783 788 789 784 + f 4 1255 1256 -1253 -1248 + mu 0 4 785 790 788 783 + f 4 1257 1258 -1256 -1250 + mu 0 4 786 791 790 785 + f 4 1259 -1258 -1252 1260 + mu 0 4 792 791 786 787 + f 4 -1240 -1246 -1235 -1230 + mu 0 4 775 781 778 773 + f 4 1261 1262 1263 1264 + mu 0 4 793 794 795 796 + f 4 1265 1266 1267 -1265 + mu 0 4 796 797 798 793 + f 4 1268 1269 1270 -1267 + mu 0 4 797 799 800 798 + f 4 1271 1272 1273 -1270 + mu 0 4 799 801 802 800 + f 4 -1254 1274 1275 1276 + mu 0 4 789 788 803 804 + f 4 1277 1278 1279 1280 + mu 0 4 803 805 806 802 + f 4 1281 -1260 1282 1283 + mu 0 4 807 791 792 808 + f 4 1284 1285 -1259 -1282 + mu 0 4 807 805 790 791 + f 4 -1286 -1278 -1275 -1257 + mu 0 4 790 805 803 788 + f 4 1286 1287 -1262 -1268 + mu 0 4 798 806 794 793 + f 4 -1280 -1287 -1271 -1274 + mu 0 4 802 806 798 800 + f 4 -1279 -1285 1288 -1288 + mu 0 4 806 805 807 794 + f 4 1289 -1276 -1281 -1273 + mu 0 4 801 804 803 802 + f 4 -1284 1290 -1263 -1289 + mu 0 4 807 808 795 794 + f 4 1291 1292 1293 1294 + mu 0 4 809 810 811 812 + f 4 1295 1296 1297 1298 + mu 0 4 813 814 815 816 + f 4 1299 -1299 1300 1301 + mu 0 4 817 813 816 818 + f 4 1302 1303 1304 1305 + mu 0 4 809 819 820 817 + f 4 1306 -1296 1307 1308 + mu 0 4 821 814 813 822 + f 4 1309 -1308 -1300 -1305 + mu 0 4 820 822 813 817 + f 4 -1303 -1295 1310 1311 + mu 0 4 819 809 812 823 + f 4 1312 1313 1314 -1309 + mu 0 4 822 824 825 821 + f 4 1315 -1313 -1310 1316 + mu 0 4 826 824 822 820 + f 4 -1304 1317 1318 -1317 + mu 0 4 820 819 827 826 + f 4 1319 -1318 -1312 1320 + mu 0 4 828 827 819 823 + f 4 -1314 1321 1322 1323 + mu 0 4 825 824 829 830 + f 4 1324 -1322 -1316 1325 + mu 0 4 831 829 824 826 + f 4 1326 1327 -1326 -1319 + mu 0 4 827 832 831 826 + f 4 -1327 -1320 1328 1329 + mu 0 4 832 827 828 833 + f 4 1330 1331 1332 -1323 + mu 0 4 829 834 835 830 + f 4 1333 -1331 -1325 1334 + mu 0 4 836 834 829 831 + f 4 -1328 1335 1336 -1335 + mu 0 4 831 832 837 836 + f 4 1337 1338 -1336 -1330 + mu 0 4 833 838 837 832 + f 4 1339 1340 1341 -1332 + mu 0 4 834 839 840 835 + f 4 1342 -1340 -1334 1343 + mu 0 4 841 839 834 836 + f 4 1344 1345 -1344 -1337 + mu 0 4 837 842 841 836 + f 4 1346 -1345 -1339 1347 + mu 0 4 843 842 837 838 + f 4 1348 1349 1350 1351 + mu 0 4 844 845 846 847 + f 4 1352 1353 1354 1355 + mu 0 4 848 849 850 851 + f 4 1356 -1356 1357 1358 + mu 0 4 852 848 851 853 + f 4 1359 -1352 1360 -1359 + mu 0 4 853 844 847 852 + f 4 -1360 1361 1362 -1349 + mu 0 4 844 853 854 845 + f 4 -1341 1363 1364 1365 + mu 0 4 840 839 855 856 + f 4 1366 -1364 -1343 1367 + mu 0 4 857 855 839 841 + f 4 1368 1369 -1368 -1346 + mu 0 4 842 858 857 841 + f 4 -1369 -1347 1370 1371 + mu 0 4 858 842 843 859 + f 4 -1354 1372 -1365 1373 + mu 0 4 850 849 856 855 + f 4 1374 -1374 -1367 1375 + mu 0 4 854 850 855 857 + f 4 -1370 1376 -1363 -1376 + mu 0 4 857 858 845 854 + f 4 -1350 -1377 -1372 1377 + mu 0 4 846 845 858 859 + f 4 -1358 -1355 -1375 -1362 + mu 0 4 853 851 850 854 + f 4 1378 1379 1380 1381 + mu 0 4 729 860 861 862 + f 4 -1381 1382 1383 1384 + mu 0 4 862 861 863 810 + f 4 -1384 1385 1386 -1293 + mu 0 4 810 863 864 811 + f 4 -1162 1387 1388 -1379 + mu 0 4 729 728 865 860 + f 4 1389 1390 1391 -1386 + mu 0 4 863 866 867 864 + f 4 1392 1393 -1390 -1383 + mu 0 4 861 868 866 863 + f 4 1394 1395 -1393 -1380 + mu 0 4 860 869 868 861 + f 4 1396 -1395 -1389 1397 + mu 0 4 870 869 860 865 + f 4 1398 1399 1400 1401 + mu 0 4 871 872 873 874 + f 4 1402 1403 -1399 1404 + mu 0 4 875 876 872 871 + f 4 1405 1406 -1403 1407 + mu 0 4 877 878 876 875 + f 4 1408 -1406 1409 1410 + mu 0 4 879 878 877 880 + f 4 -1391 1411 1412 1413 + mu 0 4 867 866 881 882 + f 4 1414 1415 -1412 -1394 + mu 0 4 868 883 881 866 + f 4 1416 1417 -1415 -1396 + mu 0 4 869 884 883 868 + f 4 -1417 -1397 1418 1419 + mu 0 4 884 869 870 885 + f 4 1420 -1402 1421 -1413 + mu 0 4 881 871 874 882 + f 4 -1416 1422 -1405 -1421 + mu 0 4 881 883 875 871 + f 4 -1418 1423 -1408 -1423 + mu 0 4 883 884 877 875 + f 4 1424 -1410 -1424 -1420 + mu 0 4 885 880 877 884 + f 4 1425 1426 1427 1428 + mu 0 4 886 887 888 889 + f 4 1429 1430 1431 -1429 + mu 0 4 889 890 891 886 + f 4 1432 1433 1434 -1431 + mu 0 4 890 892 893 891 + f 4 1435 1436 1437 -1434 + mu 0 4 892 894 895 893 + f 4 1438 1439 1440 1441 + mu 0 4 896 897 898 888 + f 4 1442 1443 1444 -1440 + mu 0 4 897 899 894 898 + f 4 1445 -1442 -1427 1446 + mu 0 4 900 896 888 887 + f 4 -1437 -1444 1447 1448 + mu 0 4 895 894 899 901 + f 4 -1400 1449 -1446 1450 + mu 0 4 873 872 896 900 + f 4 1451 -1439 -1450 -1404 + mu 0 4 876 897 896 872 + f 4 1452 -1443 -1452 -1407 + mu 0 4 878 899 897 876 + f 4 -1453 -1409 1453 -1448 + mu 0 4 899 878 879 901 + f 4 -1441 1454 -1430 -1428 + mu 0 4 888 898 890 889 + f 4 -1455 -1445 -1436 -1433 + mu 0 4 890 898 894 892 + f 4 1455 1456 -1175 1457 + mu 0 4 902 903 722 739 + f 4 1458 1459 -1173 -1178 + mu 0 4 741 904 738 724 + f 4 1460 -1459 -1181 1461 + mu 0 4 905 904 741 743 + f 4 1462 1463 1464 -1458 + mu 0 4 739 906 907 902 + f 4 1465 1466 -1463 -1174 + mu 0 4 738 908 906 739 + f 4 1467 1468 -1466 -1460 + mu 0 4 904 909 908 738 + f 4 1469 -1468 -1461 1470 + mu 0 4 910 909 904 905 + f 4 -1464 1471 1472 1473 + mu 0 4 907 906 911 912 + f 4 1474 1475 -1472 -1467 + mu 0 4 908 913 911 906 + f 4 1476 1477 -1475 -1469 + mu 0 4 909 914 913 908 + f 4 -1477 -1470 1478 1479 + mu 0 4 914 909 910 915 + f 4 1480 1481 1482 -1473 + mu 0 4 911 916 917 912 + f 4 -1476 1483 1484 -1481 + mu 0 4 911 913 918 916 + f 4 -1478 1485 1486 -1484 + mu 0 4 913 914 919 918 + f 4 1487 1488 -1486 -1480 + mu 0 4 915 920 919 914 + f 4 1489 1490 1491 -1482 + mu 0 4 916 921 922 917 + f 4 1492 -1490 -1485 1493 + mu 0 4 923 921 916 918 + f 4 1494 1495 -1494 -1487 + mu 0 4 919 924 923 918 + f 4 1496 -1495 -1489 1497 + mu 0 4 925 924 919 920 + f 4 1498 1499 1500 1501 + mu 0 4 926 927 928 929 + f 4 1502 1503 1504 -1502 + mu 0 4 929 930 931 926 + f 4 1505 1506 1507 -1504 + mu 0 4 930 932 933 931 + f 4 1508 1509 1510 -1507 + mu 0 4 932 934 935 933 + f 4 1511 1512 1513 1514 + mu 0 4 927 936 937 938 + f 4 1515 1516 -1500 -1515 + mu 0 4 938 939 928 927 + f 4 1517 1518 -1510 1519 + mu 0 4 940 941 935 934 + f 4 1520 -1513 1521 -1519 + mu 0 4 941 937 936 935 + f 4 -1491 1522 -1518 1523 + mu 0 4 922 921 941 940 + f 4 1524 -1521 -1523 -1493 + mu 0 4 923 937 941 921 + f 4 1525 -1514 -1525 -1496 + mu 0 4 924 938 937 923 + f 4 -1526 -1497 1526 -1516 + mu 0 4 938 924 925 939 + f 4 1527 -1512 -1499 -1505 + mu 0 4 931 936 927 926 + f 4 -1522 -1528 -1508 -1511 + mu 0 4 935 936 931 933 + f 4 1528 1529 1530 1531 + mu 0 4 942 943 944 945 + f 4 1532 1533 1534 -1532 + mu 0 4 945 946 947 942 + f 4 1535 -1534 1536 1537 + mu 0 4 948 947 946 949 + f 4 1538 1539 1540 1541 + mu 0 4 950 951 952 953 + f 4 1542 -1542 1543 1544 + mu 0 4 954 950 953 955 + f 4 1545 1546 1547 1548 + mu 0 4 954 956 957 958 + f 4 1549 1550 1551 1552 + mu 0 4 959 960 951 958 + f 4 1553 1554 1555 1556 + mu 0 4 961 962 963 959 + f 4 1557 1558 -1550 -1556 + mu 0 4 963 964 960 959 + f 4 1559 1560 1561 -1559 + mu 0 4 964 965 966 960 + f 4 -1540 -1551 -1562 1562 + mu 0 4 952 951 960 966 + f 4 -1557 -1553 -1548 1563 + mu 0 4 961 959 958 957 + f 4 1564 1565 1566 -1564 + mu 0 4 957 967 968 969 + f 4 -1547 1567 1568 -1565 + mu 0 4 957 956 970 967 + f 4 1569 -1555 1570 -1529 + mu 0 4 942 963 962 943 + f 4 -1535 1571 -1558 -1570 + mu 0 4 942 947 964 963 + f 4 -1560 -1572 -1536 1572 + mu 0 4 965 964 947 948 + f 4 -1546 -1545 1573 -1568 + mu 0 4 956 954 955 970 + f 4 -1552 -1539 -1543 -1549 + mu 0 4 958 951 950 954 + f 4 1574 1575 -1146 1576 + mu 0 4 971 972 716 715 + f 4 1577 1578 1579 -1538 + mu 0 4 973 974 975 976 + f 4 1580 1581 1582 1583 + mu 0 4 977 978 979 980 + f 4 1584 1585 1586 1587 + mu 0 4 981 982 979 983 + f 4 1588 1589 1590 1591 + mu 0 4 984 985 986 983 + f 4 1592 1593 1594 1595 + mu 0 4 987 988 989 990 + f 4 1596 1597 1598 1599 + mu 0 4 991 989 980 992 + f 4 -1595 -1597 1600 1601 + mu 0 4 990 989 991 993 + f 4 1602 1603 -1585 1604 + mu 0 4 994 995 982 981 + f 4 1605 1606 1607 1608 + mu 0 4 996 997 998 999 + f 4 1609 1610 1611 -1606 + mu 0 4 996 1000 1001 997 + f 3 1612 1613 1614 + mu 0 3 1002 1003 999 + f 3 1615 1616 1617 + mu 0 3 1003 1004 996 + f 4 1618 1619 1620 -1161 + mu 0 4 1005 1006 1007 1008 + f 4 1621 1622 1623 1624 + mu 0 4 1000 1009 1010 1011 + f 4 1625 -1620 1626 -1610 + mu 0 4 996 1007 1006 1000 + f 4 1627 -1613 1628 -1294 + mu 0 4 1012 1003 1002 1013 + f 4 1629 1630 1631 1632 + mu 0 4 1014 1015 1016 1017 + f 3 1633 1634 -1627 + mu 0 3 1006 1018 1000 + f 3 1635 -1624 1636 + mu 0 3 1019 1011 1010 + f 4 1637 -1636 1638 1639 + mu 0 4 1020 1011 1019 1021 + f 4 1640 1641 1642 -1638 + mu 0 4 1020 1022 1023 1011 + f 4 -1601 1643 1644 -1187 + mu 0 4 993 991 1024 1025 + f 4 1645 1646 1647 1648 + mu 0 4 1026 1027 1001 1023 + f 4 -1645 1649 1650 -1195 + mu 0 4 1025 1024 1022 1028 + f 4 1651 -1649 -1642 -1650 + mu 0 4 1024 1026 1023 1022 + f 4 1652 1653 1654 -1169 + mu 0 4 1029 1009 1030 1031 + f 4 1655 1656 -1619 -1224 + mu 0 4 1032 1033 1006 1005 + f 4 1657 -1640 1658 -1180 + mu 0 4 1034 1020 1021 1035 + f 4 1659 1660 1661 -1637 + mu 0 4 1010 1036 1037 1019 + f 4 -1662 1662 1663 -1639 + mu 0 4 1019 1037 1038 1021 + f 4 -1651 -1641 -1658 -1186 + mu 0 4 1028 1022 1020 1034 + f 4 -1648 -1611 -1625 -1643 + mu 0 4 1023 1001 1000 1011 + f 4 1664 1665 1666 1667 + mu 0 4 1039 1040 998 1041 + f 4 1668 1669 -1603 1670 + mu 0 4 1042 1043 995 994 + f 4 1671 -1220 1672 -1665 + mu 0 4 1039 768 767 1040 + f 4 1673 -1605 1674 -1199 + mu 0 4 1044 994 981 751 + f 4 1675 1676 -1671 -1674 + mu 0 4 1044 1045 1042 994 + f 4 1677 1678 -1669 1679 + mu 0 4 1046 1047 1043 1042 + f 4 -1214 1680 -1680 -1677 + mu 0 4 1045 1048 1046 1042 + f 4 1681 -1623 -1653 1682 + mu 0 4 1049 1010 1009 1029 + f 4 1683 1684 1685 1686 + mu 0 4 1050 1051 1033 1052 + f 4 -1684 1687 1688 1689 + mu 0 4 1051 1050 1053 1030 + f 4 1690 -1687 1691 1692 + mu 0 4 1054 1050 1052 1055 + f 4 -1691 1693 1694 -1688 + mu 0 4 1050 1054 1056 1053 + f 4 -1693 1695 1696 1697 + mu 0 4 1054 1055 1057 1058 + f 4 -1694 -1698 1698 1699 + mu 0 4 1056 1054 1058 1059 + f 4 1700 -1697 1701 1702 + mu 0 4 1060 1058 1057 1061 + f 4 -1701 1703 1704 -1699 + mu 0 4 1058 1060 1062 1059 + f 4 1705 1706 1707 -1704 + mu 0 4 1060 1063 1064 1062 + f 4 1708 -1706 -1703 1709 + mu 0 4 1065 1063 1060 1061 + f 4 1710 1711 1712 1713 + mu 0 4 1066 1067 1068 1069 + f 4 -1713 1714 1715 1716 + mu 0 4 1069 1068 1070 1071 + f 4 1717 -1686 -1656 -1228 + mu 0 4 1072 1052 1033 1032 + f 4 -1655 -1689 1718 -1234 + mu 0 4 1031 1030 1053 1073 + f 4 1719 -1692 -1718 -1237 + mu 0 4 1074 1055 1052 1072 + f 4 -1719 -1695 1720 -1241 + mu 0 4 1073 1053 1056 1075 + f 4 1721 -1696 -1720 -1245 + mu 0 4 1076 1057 1055 1074 + f 4 -1721 -1700 1722 -1251 + mu 0 4 1075 1056 1059 1077 + f 4 1723 -1702 -1722 -1255 + mu 0 4 1078 1061 1057 1076 + f 4 -1723 -1705 1724 -1261 + mu 0 4 1077 1059 1062 1079 + f 4 1725 -1715 1726 -1266 + mu 0 4 1080 1070 1068 1081 + f 4 -1727 -1712 1727 -1269 + mu 0 4 1081 1068 1067 1082 + f 4 1728 1729 1730 -1291 + mu 0 4 1083 1064 1071 1084 + f 4 1731 -1710 -1724 -1277 + mu 0 4 1085 1065 1061 1078 + f 4 -1728 -1711 1732 -1272 + mu 0 4 1082 1067 1066 1086 + f 4 -1731 -1716 -1726 -1264 + mu 0 4 1084 1071 1070 1080 + f 4 1733 -1717 -1730 -1707 + mu 0 4 1063 1069 1071 1064 + f 4 -1725 -1708 -1729 -1283 + mu 0 4 1079 1062 1064 1083 + f 4 1734 -1714 -1734 -1709 + mu 0 4 1065 1066 1069 1063 + f 4 -1733 -1735 -1732 -1290 + mu 0 4 1086 1066 1065 1085 + f 4 -1629 1735 1736 -1311 + mu 0 4 1013 1002 1087 1088 + f 4 1737 -1631 1738 -1297 + mu 0 4 1089 1016 1015 1090 + f 4 -1632 1739 1740 1741 + mu 0 4 1017 1016 1091 1092 + f 4 -1741 1742 1743 1744 + mu 0 4 1092 1091 1093 1094 + f 4 -1745 1745 1746 1747 + mu 0 4 1092 1094 1095 1087 + f 4 -1744 1748 1749 1750 + mu 0 4 1094 1093 1096 1097 + f 4 -1751 1751 1752 -1746 + mu 0 4 1094 1097 1098 1095 + f 4 -1750 1753 1754 1755 + mu 0 4 1097 1096 1099 1100 + f 4 -1752 -1756 1756 1757 + mu 0 4 1098 1097 1100 1101 + f 4 -1755 1758 1759 1760 + mu 0 4 1100 1099 1102 1103 + f 4 -1761 1761 1762 -1757 + mu 0 4 1100 1103 1104 1101 + f 4 1763 1764 1765 1766 + mu 0 4 1105 1106 1107 1108 + f 4 -1767 1767 1768 1769 + mu 0 4 1105 1108 1109 1110 + f 4 -1760 1770 1771 1772 + mu 0 4 1103 1102 1111 1112 + f 4 -1773 1773 1774 -1762 + mu 0 4 1103 1112 1113 1104 + f 4 -1772 1775 -1764 1776 + mu 0 4 1112 1111 1106 1105 + f 4 -1774 -1777 -1770 1777 + mu 0 4 1113 1112 1105 1110 + f 4 1778 -1740 -1738 -1307 + mu 0 4 1114 1091 1016 1089 + f 4 1779 -1743 -1779 -1315 + mu 0 4 1115 1093 1091 1114 + f 4 -1737 -1747 1780 -1321 + mu 0 4 1088 1087 1095 1116 + f 4 1781 -1749 -1780 -1324 + mu 0 4 1117 1096 1093 1115 + f 4 -1781 -1753 1782 -1329 + mu 0 4 1116 1095 1098 1118 + f 4 1783 -1754 -1782 -1333 + mu 0 4 1119 1099 1096 1117 + f 4 -1783 -1758 1784 -1338 + mu 0 4 1118 1098 1101 1120 + f 4 1785 -1759 -1784 -1342 + mu 0 4 1121 1102 1099 1119 + f 4 -1785 -1763 1786 -1348 + mu 0 4 1120 1101 1104 1122 + f 4 -1766 1787 -1357 1788 + mu 0 4 1108 1107 1123 1124 + f 4 1789 -1768 -1789 -1361 + mu 0 4 1125 1109 1108 1124 + f 4 -1788 -1765 1790 -1353 + mu 0 4 1123 1107 1106 1126 + f 4 1791 -1771 -1786 -1366 + mu 0 4 1127 1111 1102 1121 + f 4 -1787 -1775 1792 -1371 + mu 0 4 1122 1104 1113 1128 + f 4 -1791 -1776 -1792 -1373 + mu 0 4 1126 1106 1111 1127 + f 4 -1793 -1778 1793 -1378 + mu 0 4 1128 1113 1110 1129 + f 4 -1794 -1769 -1790 -1351 + mu 0 4 1129 1110 1109 1125 + f 4 1794 1795 -1628 -1387 + mu 0 4 1130 1131 1003 1012 + f 4 -1621 1796 1797 -1388 + mu 0 4 1008 1007 1132 1133 + f 4 1798 1799 1800 1801 + mu 0 4 1134 1135 1131 1136 + f 4 -1799 1802 1803 1804 + mu 0 4 1135 1134 1137 1132 + f 4 1805 1806 1807 1808 + mu 0 4 1138 1139 1140 1141 + f 4 -1806 1809 1810 1811 + mu 0 4 1139 1138 1142 1143 + f 4 1812 -1802 1813 1814 + mu 0 4 1144 1134 1136 1145 + f 4 -1813 1815 1816 -1803 + mu 0 4 1134 1144 1146 1137 + f 4 -1815 1817 -1807 1818 + mu 0 4 1144 1145 1140 1139 + f 4 -1816 -1819 -1812 1819 + mu 0 4 1146 1144 1139 1143 + f 4 1820 1821 1822 1823 + mu 0 4 1147 1148 1149 1150 + f 4 1824 -1822 1825 1826 + mu 0 4 1151 1149 1148 1152 + f 4 1827 -1809 1828 -1823 + mu 0 4 1149 1138 1141 1150 + f 4 -1828 -1825 1829 -1810 + mu 0 4 1138 1149 1151 1142 + f 4 1830 1831 1832 -1821 + mu 0 4 1147 1153 1154 1148 + f 4 -1833 1833 1834 -1826 + mu 0 4 1148 1154 1155 1152 + f 4 1835 -1801 -1795 -1392 + mu 0 4 1156 1136 1131 1130 + f 4 -1798 -1804 1836 -1398 + mu 0 4 1133 1132 1137 1157 + f 4 1837 -1808 1838 -1401 + mu 0 4 1158 1141 1140 1159 + f 4 1839 -1811 1840 -1411 + mu 0 4 1160 1143 1142 1161 + f 4 1841 -1814 -1836 -1414 + mu 0 4 1162 1145 1136 1156 + f 4 -1837 -1817 1842 -1419 + mu 0 4 1157 1137 1146 1163 + f 4 -1839 -1818 -1842 -1422 + mu 0 4 1159 1140 1145 1162 + f 4 -1843 -1820 -1840 -1425 + mu 0 4 1163 1146 1143 1160 + f 4 1843 -1832 1844 -1432 + mu 0 4 1164 1154 1153 1165 + f 4 1845 -1834 -1844 -1435 + mu 0 4 1166 1155 1154 1164 + f 4 1846 -1824 1847 -1447 + mu 0 4 1167 1147 1150 1168 + f 4 -1848 -1829 -1838 -1451 + mu 0 4 1168 1150 1141 1158 + f 4 -1841 -1830 1848 -1454 + mu 0 4 1161 1142 1151 1169 + f 4 -1845 -1831 -1847 -1426 + mu 0 4 1165 1153 1147 1167 + f 4 1849 -1835 -1846 -1438 + mu 0 4 1170 1152 1155 1166 + f 4 -1849 -1827 -1850 -1449 + mu 0 4 1169 1151 1152 1170 + f 4 1850 -1661 1851 1852 + mu 0 4 1171 1037 1036 1172 + f 4 -1851 1853 1854 -1663 + mu 0 4 1037 1171 1173 1038 + f 4 1855 -1853 1856 1857 + mu 0 4 1174 1171 1172 1175 + f 4 -1856 1858 1859 -1854 + mu 0 4 1171 1174 1176 1173 + f 4 -1858 1860 1861 1862 + mu 0 4 1174 1175 1177 1178 + f 4 -1859 -1863 1863 1864 + mu 0 4 1176 1174 1178 1179 + f 4 1865 -1862 1866 1867 + mu 0 4 1180 1178 1177 1181 + f 4 -1866 1868 1869 -1864 + mu 0 4 1178 1180 1182 1179 + f 4 1870 1871 1872 1873 + mu 0 4 1183 1184 1185 1186 + f 4 1874 1875 1876 -1872 + mu 0 4 1184 1187 1188 1185 + f 4 1877 1878 1879 -1877 + mu 0 4 1188 1189 1190 1185 + f 4 -1880 1880 1881 -1873 + mu 0 4 1185 1190 1191 1186 + f 4 1882 -1868 1883 -1875 + mu 0 4 1184 1180 1181 1187 + f 4 -1883 -1871 1884 -1869 + mu 0 4 1180 1184 1183 1182 + f 4 -1659 -1664 1885 -1462 + mu 0 4 1035 1021 1038 1192 + f 4 1886 -1852 1887 -1465 + mu 0 4 1193 1172 1036 1194 + f 4 -1886 -1855 1888 -1471 + mu 0 4 1192 1038 1173 1195 + f 4 1889 -1857 -1887 -1474 + mu 0 4 1196 1175 1172 1193 + f 4 -1889 -1860 1890 -1479 + mu 0 4 1195 1173 1176 1197 + f 4 1891 -1861 -1890 -1483 + mu 0 4 1198 1177 1175 1196 + f 4 -1891 -1865 1892 -1488 + mu 0 4 1197 1176 1179 1199 + f 4 1893 -1867 -1892 -1492 + mu 0 4 1200 1181 1177 1198 + f 4 -1893 -1870 1894 -1498 + mu 0 4 1199 1179 1182 1201 + f 4 1895 -1874 1896 -1517 + mu 0 4 1202 1183 1186 1203 + f 4 1897 -1876 1898 -1520 + mu 0 4 1204 1188 1187 1205 + f 4 1899 -1878 -1898 -1509 + mu 0 4 1206 1189 1188 1204 + f 4 -1897 -1882 1900 -1501 + mu 0 4 1203 1186 1191 1207 + f 4 -1899 -1884 -1894 -1524 + mu 0 4 1205 1187 1181 1200 + f 4 -1895 -1885 -1896 -1527 + mu 0 4 1201 1182 1183 1202 + f 4 1901 1902 1903 1904 + mu 0 4 1208 1209 1210 1211 + f 4 1905 -1579 1906 -1902 + mu 0 4 1208 975 974 1209 + f 4 1907 -1904 1908 1909 + mu 0 4 1212 1211 1210 1213 + f 4 -1905 1910 1911 1912 + mu 0 4 1208 1211 1214 1215 + f 4 1913 1914 -1906 -1913 + mu 0 4 1215 1216 975 1208 + f 4 1915 1916 1917 1918 + mu 0 4 968 1217 1214 1218 + f 4 -1912 -1917 1919 1920 + mu 0 4 1215 1214 1217 1219 + f 4 1921 1922 -1914 -1921 + mu 0 4 1219 1220 1216 1215 + f 4 -1920 1923 1924 1925 + mu 0 4 1219 1217 1221 1222 + f 4 1926 -1924 -1916 -1566 + mu 0 4 967 1221 1217 968 + f 4 1927 1928 -1922 -1926 + mu 0 4 1222 1223 1220 1219 + f 4 -1925 1929 1930 1931 + mu 0 4 1222 1221 1224 1225 + f 4 1932 -1930 -1927 -1569 + mu 0 4 970 1224 1221 967 + f 4 1933 1934 -1928 -1932 + mu 0 4 1225 1226 1223 1222 + f 4 -1580 -1915 1935 -1573 + mu 0 4 976 975 1216 1227 + f 4 1936 -1935 1937 -1541 + mu 0 4 1228 1223 1226 1229 + f 4 -1544 -1938 -1934 1938 + mu 0 4 1230 1229 1226 1225 + f 4 -1567 -1919 1939 -1554 + mu 0 4 969 968 1218 1231 + f 4 -1936 -1923 1940 -1561 + mu 0 4 1227 1216 1220 1232 + f 4 -1941 -1929 -1937 -1563 + mu 0 4 1232 1220 1223 1228 + f 4 -1940 1941 1942 -1571 + mu 0 4 1231 1218 1212 1233 + f 4 -1943 -1910 1943 -1530 + mu 0 4 1233 1212 1213 1234 + f 4 -1583 1944 1945 -1599 + mu 0 4 980 979 1235 992 + f 4 1946 -1144 -1182 1947 + mu 0 4 756 714 713 723 + f 3 1948 -1209 1949 + mu 0 3 971 760 759 + f 4 -1644 -1600 1950 -1652 + mu 0 4 1024 991 992 1026 + f 4 -1301 1951 1952 1953 + mu 0 4 818 816 719 718 + f 3 1954 -1306 -1302 + mu 0 3 818 809 817 + f 4 -1954 -1148 1955 1956 + mu 0 4 818 718 717 755 + f 4 -1951 -1946 1957 -1646 + mu 0 4 1026 992 1235 1027 + f 4 -1956 -1154 -1947 -1201 + mu 0 4 755 717 714 756 + f 4 -1457 -1683 -1172 1958 + mu 0 4 722 903 734 737 + f 4 1959 1960 -1612 -1647 + mu 0 4 1027 1236 997 1001 + f 4 -1958 1961 1962 -1960 + mu 0 4 1027 1235 982 1236 + f 4 -1939 -1931 -1933 -1574 + mu 0 4 1230 1225 1224 970 + f 4 1963 -1596 1964 -1135 + mu 0 4 705 1237 1238 706 + f 4 -1587 -1582 1965 -1592 + mu 0 4 983 979 978 984 + f 3 -1586 -1962 -1945 + mu 0 3 979 982 1235 + f 4 1966 -1584 -1598 -1594 + mu 0 4 988 977 980 989 + f 4 1967 -1679 1968 1969 + mu 0 4 1039 1043 1047 1239 + f 4 1970 -1670 -1968 -1668 + mu 0 4 1041 995 1043 1039 + f 4 -1198 -1207 -1215 -1676 + mu 0 4 754 753 757 763 + f 4 -1206 -1218 1971 -1212 + mu 0 4 757 720 765 761 + f 4 -1901 -1881 1972 -1503 + mu 0 4 1207 1191 1190 1240 + f 4 -1973 -1879 -1900 -1506 + mu 0 4 1240 1190 1189 1206 + f 4 1973 1974 1975 -1590 + mu 0 4 985 1241 758 986 + f 4 -1196 1976 -1976 -1211 + mu 0 4 752 751 986 758 + f 4 -1963 -1604 -1971 1977 + mu 0 4 1236 982 995 1041 + f 4 1978 1979 -1192 -1142 + mu 0 4 711 1242 750 712 + f 4 -1576 1980 -1979 -1153 + mu 0 4 716 972 1242 711 + f 4 1981 1982 -1949 -1577 + mu 0 4 715 721 760 971 + f 4 -1210 -1983 -1205 -1197 + mu 0 4 752 760 721 753 + f 4 1983 1984 1985 -1139 + mu 0 4 1243 1244 1245 1246 + f 4 -1966 1986 1987 1988 + mu 0 4 1247 1248 1249 1250 + f 4 1989 1990 -1974 1991 + mu 0 4 1251 1252 1253 1254 + f 4 1992 -1964 1993 1994 + mu 0 4 1255 1256 1257 1258 + f 4 -1138 -1986 1995 -1994 + mu 0 4 1257 1246 1245 1258 + f 4 -1988 1996 -1121 1997 + mu 0 4 1250 1249 704 677 + f 4 1998 -1098 1999 -1995 + mu 0 4 1258 694 693 1255 + f 4 -1054 -1041 2000 -2000 + mu 0 4 659 650 649 1259 + f 4 -2001 2001 -1593 -1993 + mu 0 4 1259 649 1260 1261 + f 4 2002 -1967 -2002 -1040 + mu 0 4 648 1262 1260 649 + f 4 2003 -1992 -1589 -1989 + mu 0 4 1250 1251 1254 1247 + f 4 -1120 -1997 2004 -1039 + mu 0 4 647 704 1249 648 + f 4 -2005 -1987 -1581 -2003 + mu 0 4 648 1249 1248 1262 + f 4 -1990 2005 -1081 2006 + mu 0 4 1252 1251 676 680 + f 4 -2006 -2004 -1998 -1077 + mu 0 4 676 1251 1250 677 + f 4 2007 -1985 2008 -1112 + mu 0 4 697 1245 1244 665 + f 4 -1996 -2008 -1103 -1999 + mu 0 4 1258 1245 697 694 + f 4 -1102 2009 2010 -2007 + mu 0 4 680 666 1263 1252 + f 4 -2011 2011 2012 -1991 + mu 0 4 1252 1263 1264 1253 + f 4 -2013 2013 -1208 -1975 + mu 0 4 1241 1265 759 758 + f 4 2014 2015 2016 2017 + mu 0 4 1266 1267 641 1268 + f 4 2018 -2015 2019 2020 + mu 0 4 1269 1267 1266 1270 + f 4 2021 2022 2023 2024 + mu 0 4 1271 1272 1273 1274 + f 3 2025 2026 2027 + mu 0 3 1275 1276 1277 + f 4 2028 2029 2030 2031 + mu 0 4 1278 1279 1280 1281 + f 4 2032 2033 2034 2035 + mu 0 4 1282 1283 1284 1285 + f 4 -2025 2036 2037 2038 + mu 0 4 1271 1274 1286 1287 + f 4 -2027 2039 2040 2041 + mu 0 4 1288 1289 1290 1291 + f 4 2042 2043 -2036 2044 + mu 0 4 1292 1293 1282 1285 + f 4 2045 2046 2047 2048 + mu 0 4 1294 1295 1296 1297 + f 4 2049 2050 2051 -2022 + mu 0 4 1271 1298 1281 1272 + f 4 2052 2053 -973 2054 + mu 0 4 1299 1300 1301 1302 + f 4 2055 -2023 2056 2057 + mu 0 4 1303 1273 1272 1304 + f 4 2058 -2053 2059 2060 + mu 0 4 1305 1300 1299 1306 + f 4 2061 -2046 2062 2063 + mu 0 4 1307 1308 1309 1310 + f 4 -2034 2064 2065 2066 + mu 0 4 1284 1283 1311 1298 + f 4 -2066 2067 -2032 -2051 + mu 0 4 1298 1311 1278 1281 + f 4 2068 2069 2070 2071 + mu 0 4 1312 1313 1314 1315 + f 3 2072 2073 2074 + mu 0 3 1316 1317 1318 + f 4 2075 2076 2077 2078 + mu 0 4 1319 1320 1321 1322 + f 4 -1072 2079 2080 2081 + mu 0 4 668 672 1319 1316 + f 4 -2081 -2079 2082 -2073 + mu 0 4 1316 1319 1322 1317 + f 4 2083 -1067 -2082 2084 + mu 0 4 1323 669 668 1316 + f 4 2085 2086 2087 2088 + mu 0 4 1324 1325 1323 1326 + f 4 2089 2090 2091 2092 + mu 0 4 1327 1328 1329 1330 + f 4 2093 2094 -1047 2095 + mu 0 4 1331 1332 656 655 + f 4 -1110 2096 2097 -2096 + mu 0 4 700 699 1330 1333 + f 4 -1109 2098 -2093 -2097 + mu 0 4 699 687 1327 1330 + f 4 -1115 2099 -2076 -2080 + mu 0 4 672 701 1320 1319 + f 4 2100 -2090 2101 -2086 + mu 0 4 1324 1328 1327 1325 + f 4 -2077 2102 2103 2104 + mu 0 4 1321 1320 1332 1334 + f 4 2105 -2104 -2094 2106 + mu 0 4 1335 1334 1332 1331 + f 4 2107 2108 2109 -2070 + mu 0 4 1336 1337 1338 1339 + f 4 -2057 -2052 -2031 2110 + mu 0 4 1304 1272 1281 1280 + f 4 -2092 2111 -2107 -2098 + mu 0 4 1330 1329 1340 1333 + f 4 2112 -2088 -2085 -2075 + mu 0 4 1318 1326 1323 1316 + f 4 2113 2114 2115 2116 + mu 0 4 1341 1342 1343 1344 + f 4 2117 -2064 2118 -2041 + mu 0 4 1345 1346 1347 1348 + f 4 2119 2120 2121 2122 + mu 0 4 103 1349 1350 1351 + f 4 2123 2124 -2120 -173 + mu 0 4 102 1352 1349 103 + f 4 2125 2126 -191 -2122 + mu 0 4 1350 1353 1354 1351 + f 4 -2127 2127 2128 -170 + mu 0 4 1354 1353 1355 1356 + f 4 2129 2130 2131 2132 + mu 0 4 1357 1358 1359 1360 + f 4 2133 -2067 -2050 -2039 + mu 0 4 1287 1284 1298 1271 + f 4 2134 -2043 2135 2136 + mu 0 4 1361 1293 1292 1362 + f 4 2137 2138 -2109 2139 + mu 0 4 1363 1364 1338 1337 + f 4 -187 -2129 2140 -2133 + mu 0 4 1360 1356 1355 1357 + f 4 -2102 -2099 -1089 2141 + mu 0 4 1325 1327 687 685 + f 4 -2103 -2100 -1130 -2095 + mu 0 4 1332 1320 701 656 + f 4 -1918 -1911 -1908 -1942 + mu 0 4 1218 1214 1211 1212 + f 4 -1888 -1660 -1682 -1456 + mu 0 4 1194 1036 1010 1049 + f 4 2142 2143 -1690 -1654 + mu 0 4 1009 1018 1051 1030 + f 4 2144 2145 -1805 -1797 + mu 0 4 1007 1004 1135 1132 + f 4 -1657 -1685 -2144 -1634 + mu 0 4 1006 1033 1051 1018 + f 4 2146 -1742 -1748 -1736 + mu 0 4 1002 1017 1092 1087 + f 4 -1796 -1800 -2146 -1616 + mu 0 4 1003 1131 1135 1004 + f 4 -1666 2147 2148 -1608 + mu 0 4 998 1040 1014 999 + f 4 -1673 2149 -1630 -2148 + mu 0 4 1040 767 1015 1014 + f 4 -1739 -2150 -1219 2150 + mu 0 4 1090 1015 767 766 + f 4 -2151 -1160 -1952 -1298 + mu 0 4 815 725 719 816 + f 4 2151 -1222 -1672 -1970 + mu 0 4 1239 770 768 1039 + f 4 -1978 -1667 -1607 -1961 + mu 0 4 1236 1041 998 997 + f 4 -1633 -2147 -1615 -2149 + mu 0 4 1014 1017 1002 999 + f 3 -1617 -2145 -1626 + mu 0 3 996 1004 1007 + f 3 -1635 -2143 -1622 + mu 0 3 1000 1018 1009 + f 4 -1965 -1602 -1190 2152 + mu 0 4 706 1238 746 749 + f 4 -978 -998 2153 2154 + mu 0 4 608 607 625 1365 + f 4 2155 2156 2157 2158 + mu 0 4 1366 612 1367 1368 + f 4 -487 2159 2160 -507 + mu 0 4 306 305 1369 278; + setAttr ".fc[1000:1499]" + f 4 -925 2161 -485 -529 + mu 0 4 326 568 304 303 + f 4 -447 -2161 2162 -483 + mu 0 4 279 278 1369 302 + f 4 -350 -324 -393 -332 + mu 0 4 218 185 213 217 + f 4 -400 -212 -399 2163 + mu 0 4 253 138 141 224 + f 4 -1086 -2084 -2087 -2142 + mu 0 4 685 669 1323 1325 + f 4 2164 2165 2166 -1015 + mu 0 4 636 1370 593 633 + f 4 2167 -2165 -1030 -984 + mu 0 4 613 1370 636 614 + f 4 -2017 -1024 -1012 2168 + mu 0 4 1268 641 634 633 + f 4 2169 -2164 -347 -315 + mu 0 4 208 253 224 205 + f 4 -199 2170 -417 2171 + mu 0 4 130 126 251 243 + f 3 2172 -481 2173 + mu 0 3 369 300 301 + f 3 2174 -484 2175 + mu 0 3 453 301 302 + f 4 2176 -853 2177 -2163 + mu 0 4 1369 540 499 302 + f 4 2178 -856 -2177 -2160 + mu 0 4 305 535 540 1369 + f 4 2179 -847 -2179 -486 + mu 0 4 304 532 535 305 + f 4 2180 -926 -2180 -2162 + mu 0 4 568 537 532 304 + f 4 2181 -850 -2181 -924 + mu 0 4 508 506 537 568 + f 4 -2182 -800 2182 -796 + mu 0 4 506 508 313 507 + f 4 -918 -2183 -498 2183 + mu 0 4 419 507 313 311 + f 4 -659 -2184 -495 2184 + mu 0 4 318 419 311 295 + f 4 -504 -2185 -472 2185 + mu 0 4 315 318 295 294 + f 4 -2186 -491 2186 -592 + mu 0 4 315 294 308 373 + f 4 -2187 -494 2187 -598 + mu 0 4 373 308 310 377 + f 4 -610 -2188 -921 2188 + mu 0 4 385 386 566 298 + f 4 -2189 -479 2189 -608 + mu 0 4 385 298 300 361 + f 4 2190 -1537 2191 -1217 + mu 0 4 764 949 946 765 + f 4 -1223 2192 -1578 -2191 + mu 0 4 771 770 974 973 + f 4 -1907 -2193 -2152 2193 + mu 0 4 1209 974 770 1239 + f 4 2194 -1903 -2194 -1969 + mu 0 4 1047 1210 1209 1239 + f 4 -1909 -2195 -1678 2195 + mu 0 4 1213 1210 1047 1046 + f 4 2196 -1944 -2196 -1681 + mu 0 4 1048 1234 1213 1046 + f 4 2197 -1531 -2197 -1213 + mu 0 4 761 945 944 762 + f 4 -1972 -2192 -1533 -2198 + mu 0 4 761 765 946 945 + f 3 -960 2198 -948 + mu 0 3 587 594 585 + f 4 -958 -2166 2199 -950 + mu 0 4 588 593 1370 589 + f 3 -587 -2190 -2173 + mu 0 3 369 361 300 + f 3 -2174 2200 -647 + mu 0 3 369 301 410 + f 3 -721 -2201 -2175 + mu 0 3 453 410 301 + f 3 -2176 -2178 -791 + mu 0 3 453 302 499 + f 3 -852 -860 -788 + mu 0 3 499 539 500 + f 3 2201 -818 -797 + mu 0 3 507 518 505 + f 3 -2202 -920 -817 + mu 0 3 518 507 460 + f 3 2202 -736 -919 + mu 0 3 419 464 457 + f 3 -2203 -661 -733 + mu 0 3 464 419 415 + f 3 2203 -665 -660 + mu 0 3 318 420 416 + f 3 -670 -2204 -503 + mu 0 3 317 420 318 + f 3 -591 -613 -501 + mu 0 3 315 372 316 + f 3 -401 -2170 -394 + mu 0 3 169 253 208 + f 4 -309 -397 2204 2205 + mu 0 4 201 203 1371 1372 + f 4 2206 -306 -2206 2207 + mu 0 4 1373 187 201 1372 + f 4 -289 -2207 2208 2209 + mu 0 4 184 187 1373 204 + f 4 -2210 -311 -356 -322 + mu 0 4 184 204 182 212 + f 4 -2171 -198 2210 -396 + mu 0 4 251 126 129 252 + f 4 -2205 -2211 -327 2211 + mu 0 4 1372 1371 215 214 + f 4 -2212 -415 2212 -2208 + mu 0 4 1372 214 220 1373 + f 4 -310 -2209 -2213 -334 + mu 0 4 96 204 1373 220 + f 3 -2172 -374 -275 + mu 0 3 130 243 179 + f 4 -410 -2123 -190 -168 + mu 0 4 1374 1375 1376 1377 + f 4 -1129 -1082 -1133 -1131 + mu 0 4 692 679 675 702 + f 4 -2010 -1064 -2009 2213 + mu 0 4 1263 666 665 1244 + f 4 -2012 -2214 -1984 2214 + mu 0 4 1264 1263 1244 1243 + f 4 2215 -2014 -2215 -1141 + mu 0 4 710 759 1265 709 + f 4 -1981 2216 -1140 2217 + mu 0 4 1242 972 710 707 + f 4 -1591 -1977 -1675 -1588 + mu 0 4 983 986 751 981 + f 3 -1614 -1618 -1609 + mu 0 3 999 1003 996 + f 4 -1953 -1152 -1982 -1149 + mu 0 4 718 719 721 715 + f 4 -1575 -1950 -2216 -2217 + mu 0 4 972 971 759 710 + f 4 2218 -1980 -2218 -1136 + mu 0 4 706 750 1242 707 + f 3 -2153 -1193 -2219 + mu 0 3 706 749 750 + f 4 -1957 2219 -1292 -1955 + mu 0 4 818 755 810 809 + f 3 2220 -1385 -2220 + mu 0 3 755 862 810 + f 3 -1382 -2221 -1200 + mu 0 3 729 862 755 + f 3 -1202 2221 -1168 + mu 0 3 730 756 731 + f 3 -1204 -2222 2222 + mu 0 3 737 731 756 + f 4 -1959 -2223 -1948 -1155 + mu 0 4 722 737 756 723 + f 3 -1095 -1094 -1127 + mu 0 3 691 688 690 + f 4 -618 -644 2223 -641 + mu 0 4 1378 390 408 1379 + f 4 -2224 -645 -620 -642 + mu 0 4 1379 408 394 393 + f 4 -947 2224 2225 2226 + mu 0 4 587 586 1380 631 + f 4 -2048 -2138 2227 2228 + mu 0 4 1381 1382 1383 1384 + f 4 2229 -2061 2230 -2116 + mu 0 4 1343 1305 1306 1344 + f 4 2231 2232 -1025 -2016 + mu 0 4 1267 1385 642 641 + f 4 2233 -175 -414 -192 + mu 0 4 123 105 104 1386 + f 4 -328 -197 -193 -413 + mu 0 4 1387 215 1388 1389 + f 4 2234 2235 -183 -2131 + mu 0 4 1358 1390 1391 1359 + f 4 2236 -2137 2237 -2115 + mu 0 4 1342 1361 1362 1343 + f 4 2238 -2230 -2238 2239 + mu 0 4 1392 1393 1394 1395 + f 4 -2239 2240 2241 -2059 + mu 0 4 1396 1397 1398 1399 + f 4 -2054 -2242 2242 2243 + mu 0 4 1400 1399 1398 1401 + f 4 -974 -2244 2244 2245 + mu 0 4 1402 1403 1404 1405 + f 3 2246 2247 2248 + mu 0 3 1406 1407 1286 + f 4 -284 -185 -2132 -182 + mu 0 4 110 1408 1409 111 + f 4 -940 2249 -935 2250 + mu 0 4 570 580 577 574 + f 4 -928 -2251 -931 2251 + mu 0 4 571 570 574 573 + f 4 -966 -2252 -964 2252 + mu 0 4 597 571 573 596 + f 4 -1033 -2253 -1007 2253 + mu 0 4 630 597 596 627 + f 4 2254 -1006 -2254 -1001 + mu 0 4 623 618 630 627 + f 4 2255 -990 -2255 -995 + mu 0 4 622 609 618 623 + f 4 -1028 2256 -980 -2256 + mu 0 4 622 643 610 609 + f 4 -2155 2257 -2158 2258 + mu 0 4 608 1365 1368 1367 + f 3 2259 -2157 -986 + mu 0 3 615 1367 612 + f 4 -1020 2260 -1037 2261 + mu 0 4 640 639 617 646 + f 4 -983 -2156 2262 2263 + mu 0 4 613 612 1366 1380 + f 4 -951 2264 -946 -943 + mu 0 4 583 589 586 584 + f 4 -963 -933 -956 2265 + mu 0 4 594 576 575 581 + f 4 -2199 -2266 -944 -945 + mu 0 4 585 594 581 584 + f 4 2266 -1027 2267 -2159 + mu 0 4 1368 643 632 1366 + f 4 -2267 -2258 2268 -2257 + mu 0 4 643 1368 1365 610 + f 4 -2269 -2154 2269 -981 + mu 0 4 610 1365 625 611 + f 4 2270 -1031 -2270 -1000 + mu 0 4 626 644 611 625 + f 4 -1010 -2226 -2263 -2268 + mu 0 4 632 631 1380 1366 + f 3 -1008 -961 2271 + mu 0 3 628 595 587 + f 3 -2167 2272 -2169 + mu 0 3 633 593 1268 + f 4 -2024 2273 2274 2275 + mu 0 4 1274 1273 1270 1410 + f 4 -2021 -2274 -2056 2276 + mu 0 4 1269 1270 1273 1303 + f 4 -2276 2277 -2249 -2037 + mu 0 4 1274 1410 1406 1286 + f 4 -2125 2278 -2029 2279 + mu 0 4 1349 1352 1279 1278 + f 4 2280 -2121 -2280 -2068 + mu 0 4 1311 1350 1349 1278 + f 4 2281 -2126 -2281 -2065 + mu 0 4 1283 1353 1350 1311 + f 4 -2128 -2282 -2033 2282 + mu 0 4 1355 1353 1283 1282 + f 4 2283 -2141 -2283 -2044 + mu 0 4 1293 1357 1355 1282 + f 4 -2130 -2284 -2135 2284 + mu 0 4 1358 1357 1293 1361 + f 4 -2235 -2285 -2237 2285 + mu 0 4 1390 1358 1361 1342 + f 3 -2286 -2114 2286 + mu 0 3 1390 1342 1341 + f 4 2287 2288 -936 2289 + mu 0 4 1411 1412 578 577 + f 4 2290 -959 -955 -2289 + mu 0 4 1412 592 582 578 + f 4 2291 2292 2293 2294 + mu 0 4 1413 1414 1415 1416 + f 4 2295 -972 2296 2297 + mu 0 4 1417 599 602 1418 + f 4 -2294 2298 -2291 2299 + mu 0 4 1416 1415 592 1412 + f 4 2300 -2300 -2288 2301 + mu 0 4 1417 1416 1412 1411 + f 4 -957 -2299 2302 -2273 + mu 0 4 593 592 1415 1268 + f 4 2303 2304 2305 2306 + mu 0 4 1419 1420 1421 1422 + f 4 2307 -2018 -2303 -2293 + mu 0 4 1414 1266 1268 1415 + f 4 2308 -2278 2309 -2292 + mu 0 4 1413 1406 1410 1414 + f 4 -2310 -2275 -2020 -2308 + mu 0 4 1414 1410 1270 1266 + f 4 2310 -2072 2311 -2306 + mu 0 4 1423 1312 1315 1424 + f 4 -2304 2312 -2026 2313 + mu 0 4 1425 1426 1427 1428 + f 4 -2297 -2246 2314 2315 + mu 0 4 1429 1402 1405 1430 + f 4 2316 -2316 2317 2318 + mu 0 4 1431 1432 1433 1434 + f 4 -2309 -2319 2319 -2247 + mu 0 4 1435 1436 1437 1438 + f 4 -2296 -2302 2320 -1022 + mu 0 4 599 1417 1411 591 + f 4 -2321 -2290 -2250 -954 + mu 0 4 591 1411 577 580 + f 4 -2301 -2298 -2317 -2295 + mu 0 4 1416 1417 1418 1413 + f 3 2321 -2232 -2019 + mu 0 3 1269 1385 1267 + f 3 2322 -2200 -2168 + mu 0 3 613 589 1370 + f 4 -989 -2261 2323 -2260 + mu 0 4 615 617 639 1367 + f 4 -2272 -2227 -1009 -1003 + mu 0 4 628 587 631 624 + f 4 -2264 -2225 -2265 -2323 + mu 0 4 613 1380 586 589 + f 3 -1019 -2259 -2324 + mu 0 3 639 608 1367 + f 4 2324 -2314 2325 -2320 + mu 0 4 1437 1425 1428 1438 + f 4 -2326 -2028 2326 -2248 + mu 0 4 1407 1275 1277 1286 + f 4 -2327 -2042 2327 -2038 + mu 0 4 1439 1288 1291 1440 + f 4 2328 -2134 -2328 -2119 + mu 0 4 1347 1441 1442 1348 + f 4 2329 -2035 -2329 -2063 + mu 0 4 1309 1443 1444 1310 + f 4 -2330 -2049 2330 -2045 + mu 0 4 1445 1294 1297 1446 + f 4 -2228 2331 -2240 2332 + mu 0 4 1384 1383 1392 1395 + f 4 -2332 -2140 2333 -2241 + mu 0 4 1397 1363 1337 1398 + f 4 -2243 -2334 -2108 2334 + mu 0 4 1401 1398 1337 1336 + f 4 -2245 -2335 -2069 2335 + mu 0 4 1405 1404 1313 1312 + f 4 -2315 -2336 -2311 2336 + mu 0 4 1430 1405 1312 1423 + f 4 -2325 -2318 -2337 -2305 + mu 0 4 1420 1434 1433 1421 + f 4 -2313 2337 -2113 2338 + mu 0 4 1447 1448 1326 1318 + f 4 2339 -2040 -2339 -2074 + mu 0 4 1317 1449 1447 1318 + f 4 2340 -2118 -2340 -2083 + mu 0 4 1322 1450 1449 1317 + f 4 2341 -2062 -2341 -2078 + mu 0 4 1321 1295 1450 1322 + f 4 -2342 -2105 2342 -2047 + mu 0 4 1295 1321 1334 1296 + f 4 -2139 -2343 -2106 2343 + mu 0 4 1451 1296 1334 1335 + f 4 2344 -2110 -2344 -2112 + mu 0 4 1329 1452 1453 1340 + f 4 2345 -2071 -2345 -2091 + mu 0 4 1328 1454 1452 1329 + f 4 -2312 -2346 -2101 2346 + mu 0 4 1455 1454 1328 1324 + f 4 -2307 -2347 -2089 -2338 + mu 0 4 1448 1455 1324 1326 + f 4 -2331 -2229 -2333 -2136 + mu 0 4 1456 1381 1384 1395 + f 4 2347 2348 2349 2350 + mu 0 4 1457 1458 1459 1460 + f 4 2351 2352 2353 2354 + mu 0 4 1461 1462 1463 1464 + f 4 -176 2355 2356 2357 + mu 0 4 102 105 1465 1466 + f 4 -2351 2358 2359 2360 + mu 0 4 1457 1460 1467 1468 + f 4 -2360 2361 2362 -2352 + mu 0 4 1468 1467 1469 1470 + f 3 -184 2363 2364 + mu 0 3 1471 1472 1473 + f 4 2365 -2353 2366 2367 + mu 0 4 1474 1475 1476 1477 + f 4 -2367 -2363 2368 2369 + mu 0 4 1478 1470 1469 1479 + f 4 -2361 -2355 2370 2371 + mu 0 4 1480 1481 1482 1483 + f 3 -194 2372 2373 + mu 0 3 123 125 1484 + f 4 2374 2375 -196 2376 + mu 0 4 1485 1486 1487 1488 + f 4 -2377 -201 2377 2378 + mu 0 4 1485 1488 1489 1490 + f 4 2379 2380 2381 2382 + mu 0 4 1491 1492 1493 1494 + f 4 -2382 2383 2384 2385 + mu 0 4 1494 1493 1495 1496 + f 4 2386 2387 2388 2389 + mu 0 4 1497 1498 1499 1500 + f 4 2390 2391 2392 2393 + mu 0 4 1501 1499 1495 1502 + f 4 -2391 2394 2395 -2389 + mu 0 4 1499 1501 1503 1500 + f 4 2396 2397 -2393 -2384 + mu 0 4 1493 1504 1502 1495 + f 4 2398 2399 -2397 -2381 + mu 0 4 1492 1505 1504 1493 + f 4 2400 -2385 -2392 -2388 + mu 0 4 1498 1496 1495 1499 + f 4 2401 2402 2403 2404 + mu 0 4 1506 1507 1508 1509 + f 4 2405 2406 2407 2408 + mu 0 4 1510 1511 1512 1513 + f 4 -2402 2409 -2408 2410 + mu 0 4 1507 1506 1513 1512 + f 4 -2410 2411 2412 2413 + mu 0 4 1513 1506 1514 1515 + f 4 -2405 2414 2415 -2412 + mu 0 4 1506 1509 1516 1514 + f 4 2416 2417 2418 -2396 + mu 0 4 1503 1517 1518 1500 + f 4 -2399 2419 -2413 -2416 + mu 0 4 1516 1519 1515 1514 + f 4 -2417 2420 2421 2422 + mu 0 4 1517 1503 1520 1521 + f 4 2423 2424 2425 2426 + mu 0 4 1522 1523 1518 1524 + f 4 2427 -2390 -2419 -2425 + mu 0 4 1523 1497 1500 1518 + f 4 2428 2429 2430 2431 + mu 0 4 1525 1526 1527 1528 + f 4 -2418 -2423 2432 -2426 + mu 0 4 1518 1517 1521 1524 + f 3 2433 2434 2435 + mu 0 3 1529 1530 1531 + f 4 2436 -2436 2437 2438 + mu 0 4 1532 1529 1531 1533 + f 4 2439 -2439 2440 -2431 + mu 0 4 1527 1532 1533 1528 + f 4 -2403 2441 2442 2443 + mu 0 4 1508 1507 1534 1535 + f 4 -2442 -2411 2444 2445 + mu 0 4 1534 1507 1512 1536 + f 4 2446 2447 -2445 -2407 + mu 0 4 1511 1537 1536 1512 + f 4 2448 -2427 2449 -2448 + mu 0 4 1537 1522 1524 1536 + f 4 -2446 -2450 -2433 2450 + mu 0 4 1534 1536 1524 1521 + f 4 -2451 -2422 2451 -2443 + mu 0 4 1534 1521 1520 1535 + f 4 2452 -2369 2453 2454 + mu 0 4 1490 1479 1469 1538 + f 4 -279 2455 -2453 -2378 + mu 0 4 1489 1539 1479 1490 + f 4 2456 2457 -2454 -2362 + mu 0 4 1467 1540 1538 1469 + f 4 2458 -2457 -2359 2459 + mu 0 4 1541 1540 1467 1460 + f 4 -2456 -285 2460 -2370 + mu 0 4 1479 1539 1542 1478 + f 4 2461 2462 2463 2464 + mu 0 4 1543 1544 1545 1546 + f 4 2465 2466 2467 2468 + mu 0 4 1547 1548 1549 1550 + f 4 -2469 2469 2470 2471 + mu 0 4 1547 1550 1551 1552 + f 4 -2468 2472 2473 2474 + mu 0 4 1550 1549 1553 1554 + f 4 2475 2476 2477 2478 + mu 0 4 1555 1556 1557 1558 + f 4 -2463 2479 2480 2481 + mu 0 4 1545 1544 1559 1560 + f 4 -2481 2482 2483 2484 + mu 0 4 1560 1559 1561 1562 + f 4 2485 -2460 -2350 2486 + mu 0 4 1563 1541 1460 1459 + f 4 2487 2488 2489 2490 + mu 0 4 1564 1565 1566 1567 + f 4 2491 2492 2493 2494 + mu 0 4 1568 1569 1566 1525 + f 4 -2490 -2493 2495 2496 + mu 0 4 1567 1566 1569 1570 + f 4 -2465 2497 2498 2499 + mu 0 4 1543 1546 1571 1572 + f 4 -2477 2500 -2485 2501 + mu 0 4 1557 1556 1560 1562 + f 3 2502 2503 2504 + mu 0 3 1573 1574 1575 + f 4 2505 2506 -2496 2507 + mu 0 4 1576 1577 1570 1569 + f 4 2508 2509 -2349 2510 + mu 0 4 1578 1579 1459 1458 + f 4 2511 -2507 2512 2513 + mu 0 4 1580 1570 1577 1581 + f 4 2514 2515 -2497 -2512 + mu 0 4 1580 1582 1567 1570 + f 4 -2516 2516 2517 -2491 + mu 0 4 1567 1582 1554 1564 + f 4 -2475 -2517 2518 -2470 + mu 0 4 1550 1554 1582 1551 + f 4 -2519 -2515 2519 2520 + mu 0 4 1551 1582 1580 1555 + f 4 -2476 -2520 -2514 2521 + mu 0 4 1556 1555 1580 1581 + f 4 -2518 -2474 2522 2523 + mu 0 4 1564 1554 1553 1583 + f 4 -2501 -2522 2524 -2482 + mu 0 4 1560 1556 1581 1545 + f 4 -2525 -2513 2525 -2464 + mu 0 4 1545 1581 1577 1546 + f 4 2526 2527 -2502 2528 + mu 0 4 1584 1585 1586 1587 + f 4 -2459 2529 2530 2531 + mu 0 4 1540 1541 1572 1588 + f 4 2532 2533 -2529 -2484 + mu 0 4 1589 1590 1584 1587 + f 4 2534 -2531 -2499 2535 + mu 0 4 1591 1588 1572 1571 + f 4 2536 2537 -2478 -2528 + mu 0 4 1585 1592 1593 1586 + f 3 2538 -2466 2539 + mu 0 3 1594 1595 1596 + f 4 2540 -2540 -2472 2541 + mu 0 4 1531 1594 1596 1597 + f 4 2542 2543 -2535 2544 + mu 0 4 1598 1599 1588 1591 + f 4 2545 -2543 2546 2547 + mu 0 4 1600 1599 1598 1601 + f 4 -2544 2548 -2458 -2532 + mu 0 4 1588 1599 1538 1540 + f 4 -2546 2549 2550 -2549 + mu 0 4 1599 1600 1602 1538 + f 4 2551 2552 -2495 -2432 + mu 0 4 1528 1603 1568 1525 + f 4 2553 2554 -2552 -2441 + mu 0 4 1533 1604 1603 1528 + f 4 2555 -2545 2556 2557 + mu 0 4 1605 1598 1591 1606 + f 4 2558 -2558 2559 -2553 + mu 0 4 1603 1605 1606 1568 + f 4 2560 -2559 -2555 2561 + mu 0 4 1607 1605 1603 1604 + f 4 -2547 -2556 -2561 2562 + mu 0 4 1601 1598 1605 1607 + f 4 2563 2564 -2420 -2380 + mu 0 4 1608 1609 1515 1519 + f 4 2565 -2409 -2414 -2565 + mu 0 4 1609 1510 1513 1515 + f 3 -2541 -2435 2566 + mu 0 3 1594 1531 1530 + f 4 -2557 -2536 2567 2568 + mu 0 4 1606 1591 1571 1576 + f 4 -2560 -2569 -2508 -2492 + mu 0 4 1568 1606 1576 1569 + f 4 -2494 -2489 2569 -2429 + mu 0 4 1525 1566 1565 1526 + f 4 2570 2571 2572 -2533 + mu 0 4 1589 1610 1611 1590 + f 4 2573 -2523 2574 -2401 + mu 0 4 1498 1583 1553 1496 + f 4 -2428 2575 2576 2577 + mu 0 4 1497 1523 1526 1612 + f 4 -2430 -2576 -2424 2578 + mu 0 4 1527 1526 1523 1522 + f 4 -2579 -2449 2579 -2440 + mu 0 4 1527 1522 1537 1532 + f 4 -2437 -2580 -2447 2580 + mu 0 4 1529 1532 1537 1511 + f 4 -2434 -2581 -2406 2581 + mu 0 4 1530 1529 1511 1510 + f 4 -2567 -2582 -2566 2582 + mu 0 4 1594 1530 1510 1609 + f 4 2583 -2539 -2583 -2564 + mu 0 4 1608 1595 1594 1609 + f 4 -2467 -2584 -2383 2584 + mu 0 4 1549 1548 1491 1494 + f 4 -2473 -2585 -2386 -2575 + mu 0 4 1553 1549 1494 1496 + f 4 2585 -2511 2586 -2357 + mu 0 4 1465 1613 1614 1466 + f 4 -2586 2587 2588 2589 + mu 0 4 1615 1616 1617 1618 + f 4 -2590 -2503 2590 -2509 + mu 0 4 1578 1574 1573 1579 + f 4 -2573 2591 -2550 2592 + mu 0 4 1590 1611 1602 1600 + f 4 -2534 -2593 -2548 2593 + mu 0 4 1584 1590 1600 1601 + f 4 -2527 -2594 -2563 2594 + mu 0 4 1585 1584 1601 1607 + f 4 -2537 -2595 -2562 2595 + mu 0 4 1592 1585 1607 1604 + f 4 2596 -2596 -2554 -2438 + mu 0 4 1531 1592 1604 1533 + f 4 -2538 -2597 -2542 2597 + mu 0 4 1593 1592 1531 1597 + f 4 -2479 -2598 -2471 -2521 + mu 0 4 1555 1558 1552 1551 + f 4 2598 2599 2600 2601 + mu 0 4 1619 1620 1621 1622 + f 4 2602 2603 2604 2605 + mu 0 4 1623 1624 1625 1626 + f 4 2606 2607 2608 2609 + mu 0 4 1627 1628 1629 1621 + f 4 2610 2611 2612 2613 + mu 0 4 1630 1631 1632 1633 + f 4 2614 2615 -2603 2616 + mu 0 4 1632 1634 1624 1623 + f 4 2617 2618 -2607 2619 + mu 0 4 1635 1636 1628 1627 + f 4 -2611 2620 -2620 2621 + mu 0 4 1631 1630 1635 1627 + f 4 2622 -2616 2623 2624 + mu 0 4 1637 1624 1634 1638 + f 4 -2604 -2623 2625 2626 + mu 0 4 1625 1624 1637 1639 + f 4 -2606 2627 2628 2629 + mu 0 4 1623 1626 1640 1641 + f 4 2630 2631 -2608 2632 + mu 0 4 1642 1643 1644 1645 + f 4 2633 -2631 2634 2635 + mu 0 4 1646 1643 1642 1647 + f 4 2636 2637 -2635 2638 + mu 0 4 1648 1649 1647 1642 + f 4 2639 2640 2641 -2638 + mu 0 4 1649 1650 1651 1647 + f 4 2642 -2628 2643 -2641 + mu 0 4 1650 1640 1626 1651 + f 4 2644 -2636 -2642 2645 + mu 0 4 1652 1646 1647 1651 + f 4 -2605 2646 -2646 -2644 + mu 0 4 1626 1625 1652 1651 + f 4 2647 2648 2649 2650 + mu 0 4 1653 1654 1655 1656 + f 4 2651 2652 2653 2654 + mu 0 4 1657 1658 1622 1659 + f 4 2655 2656 -2602 -2653 + mu 0 4 1658 1660 1619 1622 + f 4 2657 2658 2659 -2657 + mu 0 4 1660 1661 1638 1619 + f 4 2660 2661 2662 2663 + mu 0 4 1662 1663 1664 1665 + f 4 2664 2665 2666 -2648 + mu 0 4 1653 1666 1667 1654 + f 4 2667 2668 2669 -2666 + mu 0 4 1666 1668 1669 1667 + f 4 -2650 2670 2671 2672 + mu 0 4 1656 1655 1670 1671 + f 4 -2672 2673 2674 2675 + mu 0 4 1671 1670 1672 1673 + f 4 2676 2677 2678 2679 + mu 0 4 1674 1675 1676 1677 + f 4 -2626 2680 2681 2682 + mu 0 4 1639 1637 1663 1678 + f 4 -2682 -2661 2683 2684 + mu 0 4 1678 1663 1662 1679 + f 4 -2670 2685 2686 2687 + mu 0 4 1667 1669 1680 1681 + f 4 2688 2689 -2632 2690 + mu 0 4 1682 1683 1644 1643 + f 4 2691 2692 2693 2694 + mu 0 4 1684 1685 1686 1687 + f 4 2695 -2691 -2634 2696 + mu 0 4 1688 1682 1643 1646 + f 4 -2696 2697 2698 2699 + mu 0 4 1682 1688 1689 1680 + f 4 2700 -2697 -2645 2701 + mu 0 4 1690 1688 1646 1652 + f 4 -2701 2702 2703 -2698 + mu 0 4 1688 1690 1691 1689 + f 4 2704 -2684 2705 -2694 + mu 0 4 1686 1679 1662 1687 + f 4 -2688 2706 2707 -2667 + mu 0 4 1667 1681 1692 1654 + f 4 -2707 2708 2709 2710 + mu 0 4 1692 1681 1693 1694 + f 4 -2710 2711 2712 2713 + mu 0 4 1694 1693 1695 1696 + f 4 -2671 2714 2715 2716 + mu 0 4 1670 1655 1697 1698 + f 4 -2716 2717 -2711 2718 + mu 0 4 1698 1697 1692 1694 + f 4 -2674 -2717 2719 2720 + mu 0 4 1672 1670 1698 1699 + f 4 2721 -2720 -2719 -2714 + mu 0 4 1696 1699 1698 1694 + f 4 -2692 2722 -2721 2723 + mu 0 4 1685 1684 1672 1699 + f 4 -2705 2724 -2713 2725 + mu 0 4 1679 1686 1696 1695 + f 4 2726 -2683 2727 -2703 + mu 0 4 1690 1639 1678 1691 + f 4 -2627 -2727 -2702 -2647 + mu 0 4 1625 1639 1690 1652 + f 4 2728 2729 2730 2731 + mu 0 4 1700 1701 1702 1703 + f 4 2732 -2731 2733 2734 + mu 0 4 1704 1703 1702 1705 + f 4 2735 2736 2737 2738 + mu 0 4 1706 1707 1708 1709 + f 4 2739 2740 2741 -2738 + mu 0 4 1708 1710 1711 1709 + f 4 2742 2743 2744 2745 + mu 0 4 1712 1713 1714 1715 + f 4 2746 2747 -2743 2748 + mu 0 4 1716 1717 1713 1712 + f 3 2749 2750 2751 + mu 0 3 1718 1719 1720 + f 4 2752 2753 2754 2755 + mu 0 4 1721 1722 1723 1724 + f 4 2756 2757 2758 2759 + mu 0 4 1677 1725 1726 1727 + f 4 2760 -2750 2761 2762 + mu 0 4 1728 1719 1718 1729 + f 4 -2679 2763 2764 -2757 + mu 0 4 1677 1676 1730 1725 + f 4 2765 2766 2767 2768 + mu 0 4 1723 1731 1674 1732 + f 4 -2755 -2769 2769 2770 + mu 0 4 1724 1723 1732 1733 + f 4 -2762 2771 -2765 2772 + mu 0 4 1729 1718 1734 1735 + f 4 2773 2774 -2766 -2754 + mu 0 4 1722 1736 1731 1723 + f 4 -2772 2775 2776 -2758 + mu 0 4 1734 1718 1737 1738 + f 4 2777 2778 2779 2780 + mu 0 4 1720 1739 1740 1741 + f 4 -2779 2781 -2753 2782 + mu 0 4 1740 1739 1742 1743 + f 4 2783 -2778 -2751 2784 + mu 0 4 1744 1739 1720 1719 + f 4 -2784 2785 -2774 -2782 + mu 0 4 1739 1744 1745 1742 + f 4 -2752 -2781 2786 -2776 + mu 0 4 1718 1720 1741 1737 + f 4 -2770 2787 -2760 2788 + mu 0 4 1733 1732 1677 1727 + f 4 2789 2790 -2756 2791 + mu 0 4 1746 1747 1721 1724 + f 4 -2790 2792 2793 2794 + mu 0 4 1748 1749 1750 1751 + f 4 2795 2796 2797 2798 + mu 0 4 1752 1753 1754 1755 + f 4 -2797 2799 -2759 2800 + mu 0 4 1756 1757 1727 1726 + f 4 2801 -2801 -2777 2802 + mu 0 4 1704 1758 1738 1737 + f 4 -2780 2803 -2732 2804 + mu 0 4 1741 1740 1700 1703 + f 4 2805 -2804 -2783 -2791 + mu 0 4 1748 1700 1740 1743 + f 4 -2806 -2795 2806 -2729 + mu 0 4 1700 1748 1751 1701 + f 4 2807 -2798 -2802 -2735 + mu 0 4 1705 1755 1758 1704 + f 4 2808 2809 2810 2811 + mu 0 4 1759 1760 1761 1762 + f 4 -2787 -2805 -2733 -2803 + mu 0 4 1737 1741 1703 1704 + f 4 2812 -2792 -2771 2813 + mu 0 4 1763 1746 1724 1733 + f 4 2814 -2814 -2789 -2800 + mu 0 4 1757 1763 1733 1727 + f 4 2815 -2793 -2813 2816 + mu 0 4 1764 1765 1746 1763 + f 4 2817 -2817 -2815 -2796 + mu 0 4 1766 1764 1763 1757 + f 4 2818 2819 -2730 -2807 + mu 0 4 1751 1767 1702 1701 + f 4 2820 -2808 -2734 -2820 + mu 0 4 1767 1755 1705 1702 + f 4 2821 2822 2823 2824 + mu 0 4 1768 1769 1770 1728 + f 3 -2763 2825 2826 + mu 0 3 1728 1729 1771 + f 3 -2825 -2827 2827 + mu 0 3 1768 1728 1771 + f 4 -2822 2828 2829 2830 + mu 0 4 1769 1768 1772 1773 + f 4 2831 -2830 2832 2833 + mu 0 4 1774 1775 1776 1777 + f 4 2834 -2834 2835 2836 + mu 0 4 1778 1774 1777 1675 + f 4 2837 2838 2839 2840 + mu 0 4 1779 1777 1780 1781 + f 4 -2833 2841 2842 -2839 + mu 0 4 1777 1776 1782 1780 + f 4 2843 -2841 2844 2845 + mu 0 4 1676 1779 1781 1783 + f 4 -2832 2846 2847 2848 + mu 0 4 1775 1774 1784 1785 + f 4 2849 -2842 -2829 2850 + mu 0 4 1786 1787 1772 1768 + f 4 -2850 2851 2852 2853 + mu 0 4 1787 1786 1788 1789 + f 4 -2843 -2854 2854 2855 + mu 0 4 1780 1782 1790 1791 + f 4 -2846 2856 2857 -2764 + mu 0 4 1676 1783 1792 1730 + f 4 2858 2859 -2773 -2858 + mu 0 4 1793 1794 1729 1735 + f 4 -2840 -2856 2860 2861 + mu 0 4 1781 1780 1791 1795 + f 4 -2845 -2862 2862 2863 + mu 0 4 1783 1781 1795 1760 + f 4 -2826 -2860 2864 2865 + mu 0 4 1771 1729 1794 1796 + f 4 -2851 -2828 -2866 2866 + mu 0 4 1786 1768 1771 1796 + f 4 2867 -2812 2868 2869 + mu 0 4 1797 1798 1799 1800 + f 4 -2853 2870 2871 2872 + mu 0 4 1789 1788 1801 1802 + f 4 -2855 -2873 2873 2874 + mu 0 4 1791 1790 1803 1804 + f 4 -2864 -2809 2875 -2857 + mu 0 4 1783 1760 1759 1792 + f 4 -2868 2876 -2859 -2876 + mu 0 4 1798 1797 1794 1793 + f 4 -2875 2877 2878 -2861 + mu 0 4 1791 1804 1805 1795 + f 4 2879 -2810 -2863 -2879 + mu 0 4 1805 1761 1760 1795 + f 4 -2865 -2877 2880 2881 + mu 0 4 1796 1794 1797 1806 + f 4 -2852 -2867 -2882 2882 + mu 0 4 1788 1786 1796 1806 + f 4 -2878 -2874 2883 2884 + mu 0 4 1805 1804 1803 1807 + f 4 -2880 -2885 2885 -2811 + mu 0 4 1761 1805 1807 1762 + f 4 -2886 2886 2887 -2869 + mu 0 4 1799 1808 1809 1800 + f 4 -2884 -2872 2888 -2887 + mu 0 4 1808 1802 1801 1809 + f 4 -2888 2889 -2881 -2870 + mu 0 4 1800 1809 1806 1797 + f 4 -2889 -2871 -2883 -2890 + mu 0 4 1809 1801 1788 1806 + f 3 2890 2891 2892 + mu 0 3 1810 1770 1811 + f 3 -2823 2893 -2892 + mu 0 3 1770 1769 1811 + f 4 2894 -2891 2895 2896 + mu 0 4 1812 1770 1810 1813 + f 4 -2896 2897 2898 2899 + mu 0 4 1813 1810 1814 1815 + f 4 2900 2901 -2899 2902 + mu 0 4 1816 1817 1818 1819 + f 4 -2902 2903 2904 2905 + mu 0 4 1818 1817 1820 1821 + f 4 2906 2907 2908 -2847 + mu 0 4 1774 1822 1823 1784 + f 4 2909 2910 2911 -2908 + mu 0 4 1822 1816 1824 1823 + f 4 -2831 -2849 2912 2913 + mu 0 4 1769 1773 1825 1826 + f 4 -2903 2914 2915 -2911 + mu 0 4 1816 1819 1827 1824 + f 4 2916 2917 -2893 2918 + mu 0 4 1828 1829 1810 1811 + f 4 2919 -2917 2920 2921 + mu 0 4 1830 1829 1828 1831 + f 4 -2894 -2914 2922 -2919 + mu 0 4 1811 1769 1826 1828 + f 4 2923 2924 -2921 -2923 + mu 0 4 1826 1832 1831 1828 + f 4 2925 -2909 2926 2927 + mu 0 4 1833 1784 1823 1834 + f 4 2928 2929 -2927 -2912 + mu 0 4 1824 1835 1834 1823 + f 4 -2913 2930 2931 -2924 + mu 0 4 1826 1825 1836 1832 + f 4 -2926 2932 -2931 -2848 + mu 0 4 1784 1833 1837 1785 + f 4 -2916 2933 2934 -2929 + mu 0 4 1824 1827 1838 1835 + f 4 -2920 2935 -2934 2936 + mu 0 4 1829 1830 1839 1840 + f 4 -2937 -2915 -2898 -2918 + mu 0 4 1829 1840 1814 1810 + f 4 2937 2938 2939 2940 + mu 0 4 1841 1710 1842 1843 + f 4 2941 -2941 -2905 2942 + mu 0 4 1844 1845 1821 1820 + f 4 2943 -2922 2944 2945 + mu 0 4 1846 1830 1831 1847 + f 4 -2928 2946 2947 2948 + mu 0 4 1833 1834 1848 1849 + f 4 -2930 2949 2950 -2947 + mu 0 4 1834 1835 1850 1848 + f 4 2951 -2950 -2935 2952 + mu 0 4 1851 1850 1835 1838 + f 4 -2944 2953 -2953 -2936 + mu 0 4 1830 1846 1852 1839 + f 4 2954 -2932 2955 2956 + mu 0 4 1853 1832 1836 1854 + f 4 -2933 -2949 2957 -2956 + mu 0 4 1837 1833 1849 1855 + f 4 -2925 -2955 2958 -2945 + mu 0 4 1831 1832 1853 1847 + f 4 2959 2960 -2959 -2957 + mu 0 4 1854 1856 1847 1853 + f 4 2961 -2954 -2946 -2961 + mu 0 4 1856 1852 1846 1847 + f 4 -2952 -2962 2962 -2951 + mu 0 4 1850 1851 1857 1848 + f 4 -2960 -2958 -2948 -2963 + mu 0 4 1857 1855 1849 1848 + f 4 2963 2964 2965 2966 + mu 0 4 1858 1812 1859 1860 + f 4 2967 2968 2969 2970 + mu 0 4 1861 1862 1863 1864 + f 4 2971 -2969 2972 2973 + mu 0 4 1865 1863 1862 1866 + f 4 2974 -2675 -2723 2975 + mu 0 4 1867 1673 1672 1684 + f 3 -2965 2976 2977 + mu 0 3 1859 1812 1868 + f 3 -2897 2978 -2977 + mu 0 3 1812 1813 1868 + f 4 2979 -2971 2980 -2966 + mu 0 4 1859 1869 1870 1860 + f 4 2981 2982 -2978 2983 + mu 0 4 1871 1872 1859 1868 + f 4 -2979 2984 2985 -2984 + mu 0 4 1868 1813 1842 1871 + f 4 -2980 -2983 2986 2987 + mu 0 4 1869 1859 1872 1873 + f 4 2988 -2968 -2988 2989 + mu 0 4 1874 1862 1861 1875 + f 4 -2900 -2906 -2940 -2985 + mu 0 4 1813 1815 1843 1842 + f 4 2990 2991 2992 -2904 + mu 0 4 1817 1876 1877 1820 + f 4 2993 -2992 2994 -2989 + mu 0 4 1874 1877 1876 1862 + f 4 2995 -2982 2996 -2737 + mu 0 4 1707 1872 1871 1708 + f 4 -2939 -2740 -2997 -2986 + mu 0 4 1842 1710 1708 1871 + f 4 -2943 -2993 2997 2998 + mu 0 4 1844 1820 1877 1878 + f 4 -2998 -2994 2999 3000 + mu 0 4 1878 1877 1874 1879 + f 4 3001 3002 3003 3004 + mu 0 4 1880 1881 1879 1882 + f 4 3005 -3005 3006 -2736 + mu 0 4 1706 1883 1884 1707 + f 4 3007 3008 -2942 3009 + mu 0 4 1885 1886 1845 1844 + f 4 3010 -2741 -2938 -3009 + mu 0 4 1887 1711 1710 1841 + f 4 3011 -3010 -2999 3012 + mu 0 4 1888 1885 1844 1878 + f 4 -3003 3013 -3013 -3001 + mu 0 4 1879 1881 1888 1878 + f 4 -3004 -3000 -2990 3014 + mu 0 4 1882 1879 1874 1875 + f 4 -2996 -3007 -3015 -2987 + mu 0 4 1872 1707 1884 1873 + f 4 3015 3016 -2742 -3011 + mu 0 4 1887 1889 1709 1711 + f 4 3017 -3006 -2739 -3017 + mu 0 4 1889 1883 1706 1709 + f 4 -3002 -3018 3018 -3014 + mu 0 4 1881 1880 1890 1888 + f 4 -3016 -3008 -3012 -3019 + mu 0 4 1890 1886 1885 1888 + f 4 3019 3020 3021 3022 + mu 0 4 1891 1892 1893 1894 + f 4 3023 3024 3025 -2972 + mu 0 4 1865 1895 1896 1863 + f 4 3026 3027 3028 3029 + mu 0 4 1897 1898 1858 1899 + f 4 3030 -3027 3031 -3021 + mu 0 4 1892 1898 1897 1893 + f 4 3032 3033 3034 3035 + mu 0 4 1899 1860 1900 1901 + f 4 3036 -3030 -3036 3037 + mu 0 4 1902 1897 1899 1901 + f 4 -3032 -3037 3038 3039 + mu 0 4 1893 1897 1902 1903 + f 4 -3022 -3040 3040 3041 + mu 0 4 1894 1893 1903 1904 + f 4 3042 3043 -3041 3044 + mu 0 4 1905 1906 1904 1903 + f 4 -3026 3045 3046 3047 + mu 0 4 1863 1896 1907 1908 + f 4 3048 3049 -3047 3050 + mu 0 4 1909 1910 1908 1907 + f 4 -3034 -2981 3051 3052 + mu 0 4 1900 1860 1870 1911 + f 4 -2970 -3048 3053 -3052 + mu 0 4 1864 1863 1908 1912 + f 4 3054 3055 -3054 -3050 + mu 0 4 1910 1913 1912 1908 + f 4 -3046 3056 -3042 3057 + mu 0 4 1907 1896 1894 1904 + f 4 3058 -3051 -3058 -3044 + mu 0 4 1906 1909 1907 1904 + f 4 -3059 3059 3060 3061 + mu 0 4 1909 1906 1914 1915 + f 4 3062 3063 -3053 -3056 + mu 0 4 1916 1714 1900 1911 + f 4 -3064 -2744 3064 -3035 + mu 0 4 1900 1714 1713 1901 + f 4 -3055 3065 3066 3067 + mu 0 4 1913 1910 1917 1918 + f 4 -3063 -3068 3068 -2745 + mu 0 4 1714 1916 1919 1715 + f 4 -3049 -3062 3069 -3066 + mu 0 4 1910 1909 1915 1917 + f 4 -3060 -3043 3070 3071 + mu 0 4 1914 1906 1905 1920 + f 4 3072 -2747 3073 -3071 + mu 0 4 1905 1717 1716 1921 + f 4 -3038 -3065 -2748 3074 + mu 0 4 1902 1901 1713 1717 + f 4 -3061 -3072 3075 3076 + mu 0 4 1915 1914 1920 1922 + f 4 -3070 -3077 3077 -3067 + mu 0 4 1917 1915 1922 1918; + setAttr ".fc[1500:1999]" + f 4 -3078 3078 -2746 -3069 + mu 0 4 1919 1923 1712 1715 + f 4 -3076 -3074 -2749 -3079 + mu 0 4 1923 1921 1716 1712 + f 4 -2614 3079 -2394 3080 + mu 0 4 1630 1633 1501 1502 + f 4 -2400 3081 -2618 3082 + mu 0 4 1504 1505 1636 1635 + f 4 -2398 -3083 -2621 -3081 + mu 0 4 1502 1504 1635 1630 + f 4 -3082 -2415 3083 3084 + mu 0 4 1924 1516 1509 1648 + f 4 -2395 -3080 3085 3086 + mu 0 4 1503 1501 1633 1641 + f 4 -2404 3087 -2637 -3084 + mu 0 4 1509 1508 1649 1648 + f 4 -2421 -3087 -2629 3088 + mu 0 4 1520 1503 1641 1640 + f 4 -3088 -2444 3089 -2640 + mu 0 4 1649 1508 1535 1650 + f 4 -2643 -3090 -2452 -3089 + mu 0 4 1640 1650 1535 1520 + f 4 -2686 3090 -2689 -2700 + mu 0 4 1680 1669 1683 1682 + f 4 3091 -2709 -2687 -2699 + mu 0 4 1689 1693 1681 1680 + f 4 -2704 3092 -2712 -3092 + mu 0 4 1689 1691 1695 1693 + f 4 -2728 -2685 -2726 -3093 + mu 0 4 1691 1678 1679 1695 + f 4 -2715 -2649 -2708 -2718 + mu 0 4 1697 1655 1654 1692 + f 4 -2617 -2630 -3086 -2613 + mu 0 4 1632 1623 1641 1633 + f 4 -2633 -2619 -3085 -2639 + mu 0 4 1642 1645 1924 1648 + f 4 3093 -2901 3094 3095 + mu 0 4 1866 1817 1816 1778 + f 4 -3075 -3073 -3045 -3039 + mu 0 4 1902 1717 1905 1903 + f 4 -2655 -3091 -2669 3096 + mu 0 4 1657 1659 1925 1926 + f 4 -2660 -2624 3097 -2599 + mu 0 4 1619 1638 1634 1620 + f 4 -2612 3098 -3098 -2615 + mu 0 4 1632 1631 1620 1634 + f 4 -2600 -3099 -2622 -2610 + mu 0 4 1621 1620 1631 1627 + f 4 -2725 -2693 -2724 -2722 + mu 0 4 1696 1686 1685 1699 + f 4 -2695 3099 3100 -2976 + mu 0 4 1684 1687 1927 1867 + f 4 -2601 -2609 -2690 -2654 + mu 0 4 1622 1621 1629 1659 + f 4 -3025 3101 -3023 -3057 + mu 0 4 1896 1895 1891 1894 + f 4 -930 3102 3103 3104 + mu 0 4 1928 1929 1930 1931 + f 4 3105 3106 3107 3108 + mu 0 4 1932 1933 1934 1935 + f 4 -3108 3109 3110 3111 + mu 0 4 1935 1934 1936 1937 + f 4 -3105 3112 3113 -938 + mu 0 4 1928 1931 1938 1939 + f 4 3114 3115 3116 3117 + mu 0 4 1940 1941 1942 1943 + f 4 3118 3119 3120 3121 + mu 0 4 1944 1945 1946 1941 + f 4 -3117 3122 3123 3124 + mu 0 4 1943 1942 1947 1948 + f 4 -3114 3125 3126 -952 + mu 0 4 1939 1938 1949 1950 + f 4 3127 -3118 3128 -3110 + mu 0 4 1934 1940 1943 1936 + f 4 3129 -3125 3130 3131 + mu 0 4 1951 1943 1948 1952 + f 4 3132 3133 3134 3135 + mu 0 4 1953 1933 1954 1945 + f 4 3136 -3134 -3106 3137 + mu 0 4 1955 1954 1933 1932 + f 4 -968 3138 3139 -3103 + mu 0 4 1929 1956 1957 1930 + f 4 3140 3141 -970 3142 + mu 0 4 1958 1959 1960 1961 + f 4 -975 -3142 3143 3144 + mu 0 4 1962 1960 1959 1963 + f 4 3145 3146 3147 -976 + mu 0 4 605 1964 1965 606 + f 3 3148 3149 3150 + mu 0 3 1966 1967 1968 + f 4 3151 3152 3153 3154 + mu 0 4 1969 1970 1971 1972 + f 4 3155 3156 3157 -3153 + mu 0 4 1970 1973 1974 1971 + f 4 3158 -992 3159 3160 + mu 0 4 1975 620 619 1966 + f 4 3161 3162 3163 3164 + mu 0 4 1976 1977 1978 1979 + f 4 3165 -999 -3148 3166 + mu 0 4 1980 626 606 1965 + f 4 3167 3168 3169 -3163 + mu 0 4 1977 1981 1982 1978 + f 4 3170 3171 -1004 -3159 + mu 0 4 1975 1983 629 620 + f 4 -3169 3172 -3137 3173 + mu 0 4 1982 1981 1954 1955 + f 4 -3162 3174 3175 3176 + mu 0 4 1977 1976 1984 1985 + f 4 3177 3178 3179 3180 + mu 0 4 1986 1987 1988 1989 + f 4 -1018 3181 -3180 3182 + mu 0 4 637 638 1989 1988 + f 4 -3146 -1021 3183 3184 + mu 0 4 1964 605 640 1990 + f 4 -1023 -3127 3185 -3143 + mu 0 4 1961 1950 1949 1958 + f 4 -3182 -1026 3186 3187 + mu 0 4 1989 638 642 1991 + f 4 -3175 -3165 3188 3189 + mu 0 4 1984 1976 1979 1992 + f 4 -3179 3190 -3158 3191 + mu 0 4 1988 1987 1971 1974 + f 4 -3149 -3160 -1032 3192 + mu 0 4 1967 1966 619 644 + f 4 -3139 -1034 -3172 3193 + mu 0 4 1957 1956 629 1983 + f 4 -3157 3194 -1036 3195 + mu 0 4 1974 1973 646 645 + f 4 -3183 -3192 -3196 -1038 + mu 0 4 637 1988 1974 645 + f 4 3196 3197 3198 3199 + mu 0 4 1993 1994 1995 1996 + f 4 3200 3201 3202 3203 + mu 0 4 1997 1998 1999 2000 + f 4 3204 -3204 3205 3206 + mu 0 4 2001 1997 2000 2002 + f 4 3207 3208 3209 -3202 + mu 0 4 1998 2003 2004 1999 + f 4 3210 3211 3212 -3209 + mu 0 4 2003 2005 1994 2004 + f 4 -3203 3213 3214 3215 + mu 0 4 2000 1999 2006 2007 + f 4 3216 -3213 -3197 3217 + mu 0 4 2008 2004 1994 1993 + f 4 -3210 -3217 3218 -3214 + mu 0 4 1999 2004 2008 2006 + f 4 3219 3220 3221 3222 + mu 0 4 2009 2010 2011 2012 + f 4 3223 3224 3225 3226 + mu 0 4 2013 2014 2015 2016 + f 4 -3227 3227 3228 3229 + mu 0 4 2013 2016 2017 2018 + f 4 3230 -3230 3231 3232 + mu 0 4 2019 2013 2018 2020 + f 4 3233 3234 3235 3236 + mu 0 4 2021 2022 2023 2024 + f 4 3237 -3237 3238 3239 + mu 0 4 2025 2021 2024 2026 + f 4 -3201 3240 3241 3242 + mu 0 4 2027 2028 2029 2030 + f 4 3243 3244 3245 -3225 + mu 0 4 2014 2031 2032 2015 + f 4 -3245 3246 3247 3248 + mu 0 4 2032 2031 2033 2034 + f 3 3249 3250 3251 + mu 0 3 2033 2035 2036 + f 4 3252 3253 3254 -3247 + mu 0 4 2031 2037 2038 2033 + f 4 -3211 3255 3256 3257 + mu 0 4 2039 2040 2041 2042 + f 4 -3240 3258 -3220 3259 + mu 0 4 2025 2026 2010 2009 + f 4 -3257 3260 3261 3262 + mu 0 4 2042 2041 2043 2044 + f 4 -3252 3263 -3242 3264 + mu 0 4 2033 2036 2030 2029 + f 4 3265 -3248 -3265 3266 + mu 0 4 2045 2034 2033 2029 + f 4 3267 -3267 -3241 -3205 + mu 0 4 2046 2045 2029 2028 + f 4 -3222 3268 -3262 3269 + mu 0 4 2012 2011 2044 2043 + f 4 -3229 3270 3271 3272 + mu 0 4 2018 2017 2047 2007 + f 4 -3231 3273 3274 -3224 + mu 0 4 2013 2019 2048 2014 + f 4 -3218 3275 3276 3277 + mu 0 4 2008 1993 2049 2050 + f 4 -3235 3278 -3277 3279 + mu 0 4 2023 2022 2050 2049 + f 4 -3215 3280 -3232 -3273 + mu 0 4 2007 2006 2020 2018 + f 4 -3208 -3243 3281 -3256 + mu 0 4 2040 2027 2030 2041 + f 4 -3282 -3264 3282 -3261 + mu 0 4 2041 2030 2036 2043 + f 4 -3270 -3283 -3251 3283 + mu 0 4 2012 2043 2036 2035 + f 4 3284 -3223 -3284 3285 + mu 0 4 2038 2009 2012 2035 + f 4 3286 -3260 -3285 -3254 + mu 0 4 2037 2025 2009 2038 + f 4 -3206 -3216 -3272 3287 + mu 0 4 2002 2000 2007 2047 + f 4 3288 -3253 -3244 -3275 + mu 0 4 2048 2037 2031 2014 + f 4 -3234 3289 -3274 3290 + mu 0 4 2022 2021 2048 2019 + f 4 -3219 -3278 3291 -3281 + mu 0 4 2006 2008 2050 2020 + f 4 -3291 -3233 -3292 -3279 + mu 0 4 2022 2019 2020 2050 + f 4 3292 3293 3294 3295 + mu 0 4 2051 2052 2053 2054 + f 4 3296 3297 -3294 3298 + mu 0 4 2055 2056 2053 2052 + f 4 3299 3300 3301 3302 + mu 0 4 2057 2058 2059 2060 + f 4 3303 3304 3305 3306 + mu 0 4 2061 2062 2063 2064 + f 3 3307 3308 3309 + mu 0 3 2065 2066 2067 + f 4 -3306 3310 -3300 3311 + mu 0 4 2064 2063 2058 2057 + f 3 3312 3313 3314 + mu 0 3 2068 2069 2070 + f 4 3315 -3310 3316 3317 + mu 0 4 2071 2065 2067 2072 + f 4 3318 3319 3320 3321 + mu 0 4 2073 2074 2075 2076 + f 4 3322 3323 3324 3325 + mu 0 4 2077 2074 2078 2079 + f 4 3326 3327 3328 3329 + mu 0 4 2080 2081 2082 2083 + f 4 3330 3331 3332 -3313 + mu 0 4 2068 2084 2085 2069 + f 4 -3314 3333 3334 3335 + mu 0 4 2070 2069 2086 2087 + f 4 3336 3337 3338 -3335 + mu 0 4 2086 2088 2089 2087 + f 4 -3336 3339 3340 3341 + mu 0 4 2070 2087 2090 2059 + f 4 -3339 3342 3343 -3340 + mu 0 4 2087 2089 2091 2090 + f 4 3344 3345 3346 3347 + mu 0 4 2092 2093 2094 2095 + f 4 -3346 3348 3349 3350 + mu 0 4 2094 2093 2096 2060 + f 4 3351 -3351 -3302 -3341 + mu 0 4 2090 2094 2060 2059 + f 4 -3347 -3352 -3344 3352 + mu 0 4 2095 2094 2090 2091 + f 4 3353 3354 3355 3356 + mu 0 4 2097 2098 2099 2100 + f 4 3357 3358 3359 -3320 + mu 0 4 2074 2101 2102 2075 + f 4 3360 -3326 3361 -3328 + mu 0 4 2081 2077 2079 2082 + f 4 3362 3363 -3309 3364 + mu 0 4 2099 2103 2067 2066 + f 4 3365 3366 3367 3368 + mu 0 4 2104 2100 2105 2106 + f 4 3369 3370 3371 3372 + mu 0 4 2103 2107 2108 2109 + f 4 -3317 3373 3374 3375 + mu 0 4 2072 2067 2110 2111 + f 4 -3318 3376 3377 3378 + mu 0 4 2112 2113 2114 2115 + f 4 -3376 3379 3380 -3377 + mu 0 4 2113 2116 2117 2114 + f 4 3381 -3324 -3319 3382 + mu 0 4 2118 2078 2074 2073 + f 4 -3382 3383 3384 3385 + mu 0 4 2078 2118 2119 2120 + f 4 -3325 -3386 3386 3387 + mu 0 4 2079 2078 2120 2121 + f 4 -3362 -3388 3388 3389 + mu 0 4 2082 2079 2121 2122 + f 4 3390 -3329 -3390 3391 + mu 0 4 2123 2083 2082 2122 + f 4 3392 3393 3394 -3385 + mu 0 4 2119 2124 2125 2120 + f 4 -3389 3395 3396 3397 + mu 0 4 2122 2121 2126 2127 + f 4 3398 3399 -3392 -3398 + mu 0 4 2127 2128 2123 2122 + f 4 -3394 3400 3401 3402 + mu 0 4 2125 2124 2129 2130 + f 4 -3403 3403 3404 3405 + mu 0 4 2125 2130 2131 2126 + f 4 -3405 3406 3407 -3397 + mu 0 4 2126 2131 2132 2127 + f 4 -3399 -3408 3408 3409 + mu 0 4 2128 2127 2132 2133 + f 4 -3402 3410 3411 3412 + mu 0 4 2130 2129 2134 2135 + f 4 -3404 -3413 3413 3414 + mu 0 4 2131 2130 2135 2136 + f 4 -3407 -3415 3415 3416 + mu 0 4 2132 2131 2136 2137 + f 4 3417 -3409 -3417 3418 + mu 0 4 2138 2133 2132 2137 + f 4 -3387 -3395 -3406 -3396 + mu 0 4 2121 2120 2125 2126 + f 4 3419 3420 3421 3422 + mu 0 4 2139 2140 2141 2142 + f 4 -3420 3423 3424 3425 + mu 0 4 2140 2139 2143 2144 + f 4 -3425 3426 3427 3428 + mu 0 4 2144 2143 2145 2146 + f 4 -3428 3429 3430 3431 + mu 0 4 2146 2145 2147 2148 + f 4 3432 3433 3434 -3412 + mu 0 4 2134 2149 2150 2135 + f 4 3435 3436 3437 3438 + mu 0 4 2150 2147 2151 2152 + f 4 3439 3440 -3419 3441 + mu 0 4 2153 2154 2138 2137 + f 4 -3442 -3416 3442 3443 + mu 0 4 2153 2137 2136 2152 + f 4 -3414 -3435 -3439 -3443 + mu 0 4 2136 2135 2150 2152 + f 4 -3424 -3423 3444 3445 + mu 0 4 2143 2139 2142 2151 + f 4 -3430 -3427 -3446 -3437 + mu 0 4 2147 2145 2143 2151 + f 4 -3445 3446 -3444 -3438 + mu 0 4 2151 2142 2153 2152 + f 4 -3431 -3436 -3434 3447 + mu 0 4 2148 2147 2150 2149 + f 4 -3447 -3422 3448 -3440 + mu 0 4 2153 2142 2141 2154 + f 4 3449 3450 3451 3452 + mu 0 4 2155 2156 2157 2158 + f 4 3453 3454 3455 3456 + mu 0 4 2159 2160 2161 2162 + f 4 3457 3458 -3454 3459 + mu 0 4 2163 2164 2160 2159 + f 4 3460 3461 3462 3463 + mu 0 4 2155 2163 2165 2166 + f 4 3464 3465 -3457 3466 + mu 0 4 2167 2168 2159 2162 + f 4 -3462 -3460 -3466 3467 + mu 0 4 2165 2163 2159 2168 + f 4 3468 3469 -3450 -3464 + mu 0 4 2166 2169 2156 2155 + f 4 -3465 3470 3471 3472 + mu 0 4 2168 2167 2170 2171 + f 4 3473 -3468 -3473 3474 + mu 0 4 2172 2165 2168 2171 + f 4 -3474 3475 3476 -3463 + mu 0 4 2165 2172 2173 2166 + f 4 3477 -3469 -3477 3478 + mu 0 4 2174 2169 2166 2173 + f 4 3479 3480 3481 -3472 + mu 0 4 2170 2175 2176 2171 + f 4 3482 -3475 -3482 3483 + mu 0 4 2177 2172 2171 2176 + f 4 -3476 -3483 3484 3485 + mu 0 4 2173 2172 2177 2178 + f 4 3486 3487 -3479 -3486 + mu 0 4 2178 2179 2174 2173 + f 4 -3481 3488 3489 3490 + mu 0 4 2176 2175 2180 2181 + f 4 3491 -3484 -3491 3492 + mu 0 4 2182 2177 2176 2181 + f 4 -3492 3493 3494 -3485 + mu 0 4 2177 2182 2183 2178 + f 4 -3487 -3495 3495 3496 + mu 0 4 2179 2178 2183 2184 + f 4 -3490 3497 3498 3499 + mu 0 4 2181 2180 2185 2186 + f 4 3500 -3493 -3500 3501 + mu 0 4 2187 2182 2181 2186 + f 4 -3494 -3501 3502 3503 + mu 0 4 2183 2182 2187 2188 + f 4 3504 -3496 -3504 3505 + mu 0 4 2189 2184 2183 2188 + f 4 3506 3507 3508 3509 + mu 0 4 2190 2191 2192 2193 + f 4 3510 3511 3512 3513 + mu 0 4 2194 2195 2196 2197 + f 4 3514 3515 -3511 3516 + mu 0 4 2198 2199 2195 2194 + f 4 -3515 3517 -3507 3518 + mu 0 4 2199 2198 2191 2190 + f 4 -3510 3519 3520 -3519 + mu 0 4 2190 2193 2200 2199 + f 4 3521 3522 3523 -3499 + mu 0 4 2185 2201 2202 2186 + f 4 3524 -3502 -3524 3525 + mu 0 4 2203 2187 2186 2202 + f 4 -3503 -3525 3526 3527 + mu 0 4 2188 2187 2203 2204 + f 4 3528 3529 -3506 -3528 + mu 0 4 2204 2205 2189 2188 + f 4 3530 -3523 3531 -3513 + mu 0 4 2196 2202 2201 2197 + f 4 3532 -3526 -3531 3533 + mu 0 4 2200 2203 2202 2196 + f 4 -3533 -3520 3534 -3527 + mu 0 4 2203 2200 2193 2204 + f 4 3535 -3529 -3535 -3509 + mu 0 4 2192 2205 2204 2193 + f 4 -3521 -3534 -3512 -3516 + mu 0 4 2199 2200 2196 2195 + f 4 3536 3537 3538 3539 + mu 0 4 2075 2206 2207 2208 + f 4 3540 3541 3542 -3538 + mu 0 4 2206 2158 2209 2207 + f 4 -3452 3543 3544 -3542 + mu 0 4 2158 2157 2210 2209 + f 4 -3540 3545 3546 -3321 + mu 0 4 2075 2208 2211 2076 + f 4 -3545 3547 3548 3549 + mu 0 4 2209 2210 2212 2213 + f 4 -3543 -3550 3550 3551 + mu 0 4 2207 2209 2213 2214 + f 4 -3539 -3552 3552 3553 + mu 0 4 2208 2207 2214 2215 + f 4 3554 -3546 -3554 3555 + mu 0 4 2216 2211 2208 2215 + f 4 3556 3557 3558 3559 + mu 0 4 2217 2218 2219 2220 + f 4 3560 -3560 3561 3562 + mu 0 4 2221 2217 2220 2222 + f 4 3563 -3563 3564 3565 + mu 0 4 2223 2221 2222 2224 + f 4 3566 3567 -3566 3568 + mu 0 4 2225 2226 2223 2224 + f 4 3569 3570 3571 -3549 + mu 0 4 2212 2227 2228 2213 + f 4 -3551 -3572 3572 3573 + mu 0 4 2214 2213 2228 2229 + f 4 -3553 -3574 3574 3575 + mu 0 4 2215 2214 2229 2230 + f 4 3576 3577 -3556 -3576 + mu 0 4 2230 2231 2216 2215 + f 4 -3571 3578 -3557 3579 + mu 0 4 2228 2227 2218 2217 + f 4 -3580 -3561 3580 -3573 + mu 0 4 2228 2217 2221 2229 + f 4 -3581 -3564 3581 -3575 + mu 0 4 2229 2221 2223 2230 + f 4 -3577 -3582 -3568 3582 + mu 0 4 2231 2230 2223 2226 + f 4 3583 3584 3585 3586 + mu 0 4 2232 2233 2234 2235 + f 4 -3584 3587 3588 3589 + mu 0 4 2233 2232 2236 2237 + f 4 -3589 3590 3591 3592 + mu 0 4 2237 2236 2238 2239 + f 4 -3592 3593 3594 3595 + mu 0 4 2239 2238 2240 2241 + f 4 3596 3597 3598 3599 + mu 0 4 2242 2234 2243 2244 + f 4 -3599 3600 3601 3602 + mu 0 4 2244 2243 2241 2245 + f 4 3603 -3586 -3597 3604 + mu 0 4 2246 2235 2234 2242 + f 4 3605 3606 -3602 -3595 + mu 0 4 2240 2247 2245 2241 + f 4 3607 -3605 3608 -3559 + mu 0 4 2219 2246 2242 2220 + f 4 -3562 -3609 -3600 3609 + mu 0 4 2222 2220 2242 2244 + f 4 -3565 -3610 -3603 3610 + mu 0 4 2224 2222 2244 2245 + f 4 -3607 3611 -3569 -3611 + mu 0 4 2245 2247 2225 2224 + f 4 -3585 -3590 3612 -3598 + mu 0 4 2234 2233 2237 2243 + f 4 -3593 -3596 -3601 -3613 + mu 0 4 2237 2239 2241 2243 + f 4 3613 -3331 3614 3615 + mu 0 4 2248 2084 2068 2249 + f 4 -3334 -3333 3616 3617 + mu 0 4 2086 2069 2085 2250 + f 4 3618 -3337 -3618 3619 + mu 0 4 2251 2088 2086 2250 + f 4 -3614 3620 3621 3622 + mu 0 4 2084 2248 2252 2253 + f 4 -3332 -3623 3623 3624 + mu 0 4 2085 2084 2253 2254 + f 4 -3617 -3625 3625 3626 + mu 0 4 2250 2085 2254 2255 + f 4 3627 -3620 -3627 3628 + mu 0 4 2256 2251 2250 2255 + f 4 3629 3630 3631 -3622 + mu 0 4 2252 2257 2258 2253 + f 4 -3624 -3632 3632 3633 + mu 0 4 2254 2253 2258 2259 + f 4 -3626 -3634 3634 3635 + mu 0 4 2255 2254 2259 2260 + f 4 3636 3637 -3629 -3636 + mu 0 4 2260 2261 2256 2255 + f 4 -3631 3638 3639 3640 + mu 0 4 2258 2257 2262 2263 + f 4 -3641 3641 3642 -3633 + mu 0 4 2258 2263 2264 2259 + f 4 -3643 3643 3644 -3635 + mu 0 4 2259 2264 2265 2260 + f 4 -3637 -3645 3645 3646 + mu 0 4 2261 2260 2265 2266 + f 4 -3640 3647 3648 3649 + mu 0 4 2263 2262 2267 2268 + f 4 3650 -3642 -3650 3651 + mu 0 4 2269 2264 2263 2268 + f 4 -3644 -3651 3652 3653 + mu 0 4 2265 2264 2269 2270 + f 4 3654 -3646 -3654 3655 + mu 0 4 2271 2266 2265 2270 + f 4 3656 3657 3658 3659 + mu 0 4 2272 2273 2274 2275 + f 4 -3657 3660 3661 3662 + mu 0 4 2273 2272 2276 2277 + f 4 -3662 3663 3664 3665 + mu 0 4 2277 2276 2278 2279 + f 4 -3665 3666 3667 3668 + mu 0 4 2279 2278 2280 2281 + f 4 3669 3670 3671 3672 + mu 0 4 2275 2282 2283 2284 + f 4 -3670 -3659 3673 3674 + mu 0 4 2282 2275 2274 2285 + f 4 3675 -3668 3676 3677 + mu 0 4 2286 2281 2280 2287 + f 4 -3677 3678 -3672 3679 + mu 0 4 2287 2280 2284 2283 + f 4 3680 -3678 3681 -3649 + mu 0 4 2267 2286 2287 2268 + f 4 -3652 -3682 -3680 3682 + mu 0 4 2269 2268 2287 2283 + f 4 -3653 -3683 -3671 3683 + mu 0 4 2270 2269 2283 2282 + f 4 -3675 3684 -3656 -3684 + mu 0 4 2282 2285 2271 2270 + f 4 -3661 -3660 -3673 3685 + mu 0 4 2276 2272 2275 2284 + f 4 -3667 -3664 -3686 -3679 + mu 0 4 2280 2278 2276 2284 + f 4 3686 3687 3688 3689 + mu 0 4 2288 2289 2290 2291 + f 4 -3687 3690 3691 3692 + mu 0 4 2289 2288 2292 2293 + f 4 3693 3694 -3692 3695 + mu 0 4 2294 2295 2293 2292 + f 4 3696 3697 3698 3699 + mu 0 4 2296 2297 2298 2299 + f 4 3700 3701 -3697 3702 + mu 0 4 2300 2301 2297 2296 + f 4 3703 3704 3705 3706 + mu 0 4 2300 2302 2303 2304 + f 4 3707 3708 3709 3710 + mu 0 4 2305 2302 2299 2306 + f 4 3711 3712 3713 3714 + mu 0 4 2307 2305 2308 2309 + f 4 -3713 -3711 3715 3716 + mu 0 4 2308 2305 2306 2310 + f 4 -3716 3717 3718 3719 + mu 0 4 2310 2306 2311 2312 + f 4 3720 -3718 -3710 -3699 + mu 0 4 2298 2311 2306 2299 + f 4 3721 -3705 -3708 -3712 + mu 0 4 2307 2303 2302 2305 + f 4 -3722 3722 3723 3724 + mu 0 4 2303 2313 2314 2315 + f 4 -3725 3725 3726 -3706 + mu 0 4 2303 2315 2316 2304 + f 4 -3690 3727 -3714 3728 + mu 0 4 2288 2291 2309 2308 + f 4 -3729 -3717 3729 -3691 + mu 0 4 2288 2308 2310 2292 + f 4 3730 -3696 -3730 -3720 + mu 0 4 2312 2294 2292 2310 + f 4 -3727 3731 -3701 -3707 + mu 0 4 2304 2316 2301 2300 + f 4 -3704 -3703 -3700 -3709 + mu 0 4 2302 2300 2296 2299 + f 4 3732 -3307 3733 3734 + mu 0 4 2317 2061 2064 2318 + f 4 -3694 3735 3736 3737 + mu 0 4 2319 2320 2321 2322 + f 4 3738 3739 3740 3741 + mu 0 4 2323 2324 2325 2326 + f 4 3742 3743 3744 3745 + mu 0 4 2327 2328 2325 2329 + f 4 3746 3747 3748 3749 + mu 0 4 2330 2328 2331 2332 + f 4 3750 3751 3752 3753 + mu 0 4 2333 2334 2335 2336 + f 4 3754 3755 3756 3757 + mu 0 4 2337 2338 2324 2335 + f 4 3758 3759 -3758 -3752 + mu 0 4 2334 2339 2337 2335 + f 4 3760 -3746 3761 3762 + mu 0 4 2340 2327 2329 2341 + f 4 3763 3764 3765 3766 + mu 0 4 2342 2343 2344 2345 + f 4 -3767 3767 3768 3769 + mu 0 4 2342 2345 2346 2347 + f 3 3770 3771 3772 + mu 0 3 2348 2343 2349 + f 3 3773 3774 3775 + mu 0 3 2349 2342 2350 + f 4 -3322 3776 3777 3778 + mu 0 4 2351 2352 2353 2354 + f 4 3779 3780 3781 3782 + mu 0 4 2347 2355 2356 2357 + f 4 -3770 3783 -3778 3784 + mu 0 4 2342 2347 2354 2353 + f 4 -3451 3785 -3773 3786 + mu 0 4 2358 2359 2348 2349 + f 4 3787 3788 3789 3790 + mu 0 4 2360 2361 2362 2363 + f 3 -3784 3791 3792 + mu 0 3 2354 2347 2364 + f 3 3793 -3781 3794 + mu 0 3 2365 2356 2355 + f 4 3795 3796 -3795 3797 + mu 0 4 2366 2367 2365 2355 + f 4 -3798 3798 3799 3800 + mu 0 4 2366 2355 2368 2369 + f 4 -3348 3801 3802 -3760 + mu 0 4 2339 2370 2371 2337 + f 4 3803 3804 3805 3806 + mu 0 4 2372 2368 2346 2373 + f 4 -3353 3807 3808 -3802 + mu 0 4 2370 2374 2369 2371 + f 4 -3809 -3800 -3804 3809 + mu 0 4 2371 2369 2368 2372 + f 4 -3330 3810 3811 3812 + mu 0 4 2375 2376 2377 2357 + f 4 -3383 -3779 3813 3814 + mu 0 4 2378 2351 2354 2379 + f 4 -3338 3815 -3796 3816 + mu 0 4 2380 2381 2367 2366 + f 4 -3794 3817 3818 3819 + mu 0 4 2356 2365 2382 2383 + f 4 -3797 3820 3821 -3818 + mu 0 4 2365 2367 2384 2382 + f 4 -3343 -3817 -3801 -3808 + mu 0 4 2374 2380 2366 2369 + f 4 -3799 -3780 -3769 -3805 + mu 0 4 2368 2355 2347 2346 + f 4 3822 3823 3824 3825 + mu 0 4 2385 2386 2344 2387 + f 4 3826 -3763 3827 3828 + mu 0 4 2388 2340 2341 2389 + f 4 -3826 3829 -3378 3830 + mu 0 4 2385 2387 2115 2114 + f 4 -3354 3831 -3761 3832 + mu 0 4 2390 2097 2327 2340 + f 4 -3833 -3827 3833 3834 + mu 0 4 2390 2340 2388 2391 + f 4 3835 -3829 3836 3837 + mu 0 4 2392 2388 2389 2393 + f 4 -3834 -3836 3838 -3371 + mu 0 4 2391 2388 2392 2394 + f 4 3839 -3813 -3782 3840 + mu 0 4 2395 2375 2357 2356 + f 4 3841 3842 3843 3844 + mu 0 4 2396 2397 2379 2398 + f 4 3845 3846 3847 -3845 + mu 0 4 2398 2377 2399 2396 + f 4 3848 3849 -3842 3850 + mu 0 4 2400 2401 2397 2396 + f 4 -3848 3851 3852 -3851 + mu 0 4 2396 2399 2402 2400 + f 4 3853 3854 3855 -3849 + mu 0 4 2400 2403 2404 2401 + f 4 3856 3857 -3854 -3853 + mu 0 4 2402 2405 2403 2400 + f 4 3858 3859 -3855 3860 + mu 0 4 2406 2407 2404 2403 + f 4 -3858 3861 3862 -3861 + mu 0 4 2403 2405 2408 2406 + f 4 -3863 3863 3864 3865 + mu 0 4 2406 2408 2409 2410 + f 4 3866 -3859 -3866 3867 + mu 0 4 2411 2407 2406 2410 + f 4 3868 3869 3870 3871 + mu 0 4 2412 2413 2414 2415 + f 4 3872 3873 3874 -3870 + mu 0 4 2413 2416 2417 2414 + f 4 -3384 -3815 -3843 3875 + mu 0 4 2418 2378 2379 2397 + f 4 -3391 3876 -3847 -3811 + mu 0 4 2376 2419 2399 2377 + f 4 -3393 -3876 -3850 3877 + mu 0 4 2420 2418 2397 2401 + f 4 -3400 3878 -3852 -3877 + mu 0 4 2419 2421 2402 2399 + f 4 -3401 -3878 -3856 3879 + mu 0 4 2422 2420 2401 2404 + f 4 -3410 3880 -3857 -3879 + mu 0 4 2421 2423 2405 2402 + f 4 -3411 -3880 -3860 3881 + mu 0 4 2424 2422 2404 2407 + f 4 -3418 3882 -3862 -3881 + mu 0 4 2423 2425 2408 2405 + f 4 -3426 3883 -3875 3884 + mu 0 4 2426 2427 2414 2417 + f 4 -3429 3885 -3871 -3884 + mu 0 4 2427 2428 2415 2414 + f 4 -3449 3886 3887 3888 + mu 0 4 2429 2430 2416 2409 + f 4 -3433 -3882 -3867 3889 + mu 0 4 2431 2424 2407 2411 + f 4 -3432 3890 -3872 -3886 + mu 0 4 2428 2432 2412 2415 + f 4 -3421 -3885 -3874 -3887 + mu 0 4 2430 2426 2417 2416 + f 4 -3865 -3888 -3873 3891 + mu 0 4 2410 2409 2416 2413 + f 4 -3441 -3889 -3864 -3883 + mu 0 4 2425 2429 2409 2408 + f 4 -3868 -3892 -3869 3892 + mu 0 4 2411 2410 2413 2412 + f 4 -3448 -3890 -3893 -3891 + mu 0 4 2432 2431 2411 2412 + f 4 -3470 3893 3894 -3786 + mu 0 4 2359 2433 2434 2348 + f 4 -3456 3895 -3790 3896 + mu 0 4 2435 2436 2363 2362 + f 4 3897 3898 3899 -3789 + mu 0 4 2361 2437 2438 2362 + f 4 3900 3901 3902 -3899 + mu 0 4 2437 2439 2440 2438 + f 4 3903 3904 3905 -3901 + mu 0 4 2437 2434 2441 2439 + f 4 3906 3907 3908 -3902 + mu 0 4 2439 2442 2443 2440 + f 4 -3906 3909 3910 -3907 + mu 0 4 2439 2441 2444 2442 + f 4 3911 3912 3913 -3908 + mu 0 4 2442 2445 2446 2443 + f 4 3914 3915 -3912 -3911 + mu 0 4 2444 2447 2445 2442 + f 4 3916 3917 3918 -3913 + mu 0 4 2445 2448 2449 2446 + f 4 -3916 3919 3920 -3917 + mu 0 4 2445 2447 2450 2448 + f 4 3921 3922 3923 3924 + mu 0 4 2451 2452 2453 2454 + f 4 3925 3926 3927 -3922 + mu 0 4 2451 2455 2456 2452 + f 4 3928 3929 3930 -3918 + mu 0 4 2448 2457 2458 2449 + f 4 -3921 3931 3932 -3929 + mu 0 4 2448 2450 2459 2457 + f 4 3933 -3925 3934 -3930 + mu 0 4 2457 2451 2454 2458 + f 4 3935 -3926 -3934 -3933 + mu 0 4 2459 2455 2451 2457 + f 4 -3467 -3897 -3900 3936 + mu 0 4 2460 2435 2362 2438 + f 4 -3471 -3937 -3903 3937 + mu 0 4 2461 2460 2438 2440 + f 4 -3478 3938 -3905 -3894 + mu 0 4 2433 2462 2441 2434 + f 4 -3480 -3938 -3909 3939 + mu 0 4 2463 2461 2440 2443 + f 4 -3488 3940 -3910 -3939 + mu 0 4 2462 2464 2444 2441 + f 4 -3489 -3940 -3914 3941 + mu 0 4 2465 2463 2443 2446 + f 4 -3497 3942 -3915 -3941 + mu 0 4 2464 2466 2447 2444 + f 4 -3498 -3942 -3919 3943 + mu 0 4 2467 2465 2446 2449 + f 4 -3505 3944 -3920 -3943 + mu 0 4 2466 2468 2450 2447 + f 4 3945 -3517 3946 -3923 + mu 0 4 2452 2469 2470 2453 + f 4 -3518 -3946 -3928 3947 + mu 0 4 2471 2469 2452 2456 + f 4 -3514 3948 -3924 -3947 + mu 0 4 2470 2472 2454 2453 + f 4 -3522 -3944 -3931 3949 + mu 0 4 2473 2467 2449 2458 + f 4 -3530 3950 -3932 -3945 + mu 0 4 2468 2474 2459 2450 + f 4 -3532 -3950 -3935 -3949 + mu 0 4 2472 2473 2458 2454 + f 4 -3536 3951 -3936 -3951 + mu 0 4 2474 2475 2455 2459 + f 4 -3508 -3948 -3927 -3952 + mu 0 4 2475 2471 2456 2455 + f 4 -3544 -3787 3952 3953 + mu 0 4 2476 2358 2349 2477 + f 4 -3547 3954 3955 -3777 + mu 0 4 2352 2478 2479 2353 + f 4 3956 3957 3958 3959 + mu 0 4 2480 2481 2477 2482 + f 4 3960 3961 3962 -3960 + mu 0 4 2482 2479 2483 2480 + f 4 3963 3964 3965 3966 + mu 0 4 2484 2485 2486 2487 + f 4 3967 3968 3969 -3967 + mu 0 4 2487 2488 2489 2484 + f 4 3970 3971 -3957 3972 + mu 0 4 2490 2491 2481 2480 + f 4 -3963 3973 3974 -3973 + mu 0 4 2480 2483 2492 2490 + f 4 3975 -3966 3976 -3971 + mu 0 4 2490 2487 2486 2491 + f 4 3977 -3968 -3976 -3975 + mu 0 4 2492 2488 2487 2490 + f 4 3978 3979 3980 3981 + mu 0 4 2493 2494 2495 2496 + f 4 3982 3983 -3981 3984 + mu 0 4 2497 2498 2496 2495 + f 4 -3980 3985 -3964 3986 + mu 0 4 2495 2494 2485 2484 + f 4 -3970 3987 -3985 -3987 + mu 0 4 2484 2489 2497 2495 + f 4 -3982 3988 3989 3990 + mu 0 4 2493 2496 2499 2500 + f 4 -3984 3991 3992 -3989 + mu 0 4 2496 2498 2501 2499 + f 4 -3548 -3954 -3958 3993 + mu 0 4 2502 2476 2477 2481 + f 4 -3555 3994 -3962 -3955 + mu 0 4 2478 2503 2483 2479 + f 4 -3558 3995 -3965 3996 + mu 0 4 2504 2505 2486 2485 + f 4 -3567 3997 -3969 3998 + mu 0 4 2506 2507 2489 2488 + f 4 -3570 -3994 -3972 3999 + mu 0 4 2508 2502 2481 2491 + f 4 -3578 4000 -3974 -3995 + mu 0 4 2503 2509 2492 2483 + f 4 -3579 -4000 -3977 -3996 + mu 0 4 2505 2508 2491 2486 + f 4 -3583 -3999 -3978 -4001 + mu 0 4 2509 2506 2488 2492 + f 4 -3588 4001 -3990 4002 + mu 0 4 2510 2511 2500 2499 + f 4 -3591 -4003 -3993 4003 + mu 0 4 2512 2510 2499 2501 + f 4 -3604 4004 -3979 4005 + mu 0 4 2513 2514 2494 2493 + f 4 -3608 -3997 -3986 -4005 + mu 0 4 2514 2504 2485 2494 + f 4 -3612 4006 -3988 -3998 + mu 0 4 2507 2515 2497 2489 + f 4 -3587 -4006 -3991 -4002 + mu 0 4 2511 2513 2493 2500 + f 4 -3594 -4004 -3992 4007 + mu 0 4 2516 2512 2501 2498 + f 4 -3606 -4008 -3983 -4007 + mu 0 4 2515 2516 2498 2497 + f 4 4008 4009 -3819 4010 + mu 0 4 2517 2518 2383 2382 + f 4 -3822 4011 4012 -4011 + mu 0 4 2382 2384 2519 2517 + f 4 4013 4014 -4009 4015 + mu 0 4 2520 2521 2518 2517 + f 4 -4013 4016 4017 -4016 + mu 0 4 2517 2519 2522 2520 + f 4 4018 4019 4020 -4014 + mu 0 4 2520 2523 2524 2521 + f 4 4021 4022 -4019 -4018 + mu 0 4 2522 2525 2523 2520 + f 4 4023 4024 -4020 4025 + mu 0 4 2526 2527 2524 2523 + f 4 -4023 4026 4027 -4026 + mu 0 4 2523 2525 2528 2526 + f 4 4028 4029 4030 4031 + mu 0 4 2529 2530 2531 2532 + f 4 -4031 4032 4033 4034 + mu 0 4 2532 2531 2533 2534 + f 4 -4033 4035 4036 4037 + mu 0 4 2533 2531 2535 2536 + f 4 -4030 4038 4039 -4036 + mu 0 4 2531 2530 2537 2535 + f 4 -4035 4040 -4024 4041 + mu 0 4 2532 2534 2527 2526 + f 4 -4028 4042 -4032 -4042 + mu 0 4 2526 2528 2529 2532 + f 4 -3619 4043 -3821 -3816 + mu 0 4 2381 2538 2384 2367 + f 4 -3621 4044 -4010 4045 + mu 0 4 2539 2540 2383 2518 + f 4 -3628 4046 -4012 -4044 + mu 0 4 2538 2541 2519 2384 + f 4 -3630 -4046 -4015 4047 + mu 0 4 2542 2539 2518 2521 + f 4 -3638 4048 -4017 -4047 + mu 0 4 2541 2543 2522 2519 + f 4 -3639 -4048 -4021 4049 + mu 0 4 2544 2542 2521 2524 + f 4 -3647 4050 -4022 -4049 + mu 0 4 2543 2545 2525 2522 + f 4 -3648 -4050 -4025 4051 + mu 0 4 2546 2544 2524 2527 + f 4 -3655 4052 -4027 -4051 + mu 0 4 2545 2547 2528 2525 + f 4 -3674 4053 -4029 4054 + mu 0 4 2548 2549 2530 2529 + f 4 -3676 4055 -4034 4056 + mu 0 4 2550 2551 2534 2533 + f 4 -3669 -4057 -4038 4057 + mu 0 4 2552 2550 2533 2536 + f 4 -3658 4058 -4039 -4054 + mu 0 4 2549 2553 2537 2530 + f 4 -3681 -4052 -4041 -4056 + mu 0 4 2551 2546 2527 2534 + f 4 -3685 -4055 -4043 -4053 + mu 0 4 2547 2548 2529 2528 + f 4 4059 4060 4061 4062 + mu 0 4 2554 2555 2556 2557 + f 4 -4063 4063 -3737 4064 + mu 0 4 2554 2557 2322 2321 + f 4 4065 4066 -4061 4067 + mu 0 4 2558 2559 2556 2555 + f 4 4068 4069 4070 -4060 + mu 0 4 2554 2560 2561 2555 + f 4 -4069 -4065 4071 4072 + mu 0 4 2560 2554 2321 2562 + f 4 4073 4074 4075 4076 + mu 0 4 2314 2563 2561 2564 + f 4 4077 4078 -4076 -4070 + mu 0 4 2560 2565 2564 2561 + f 4 -4078 -4073 4079 4080 + mu 0 4 2565 2560 2562 2566 + f 4 4081 4082 4083 -4079 + mu 0 4 2565 2567 2568 2564 + f 4 -3724 -4077 -4084 4084 + mu 0 4 2315 2314 2564 2568 + f 4 -4082 -4081 4085 4086 + mu 0 4 2567 2565 2566 2569 + f 4 4087 4088 4089 -4083 + mu 0 4 2567 2570 2571 2568 + f 4 -3726 -4085 -4090 4090 + mu 0 4 2316 2315 2568 2571 + f 4 -4088 -4087 4091 4092 + mu 0 4 2570 2567 2569 2572 + f 4 -3731 4093 -4072 -3736 + mu 0 4 2320 2573 2562 2321 + f 4 -3698 4094 -4092 4095 + mu 0 4 2574 2575 2572 2569 + f 4 4096 -4093 -4095 -3702 + mu 0 4 2576 2570 2572 2575 + f 4 -3715 4097 -4074 -3723 + mu 0 4 2313 2577 2563 2314 + f 4 -3719 4098 -4080 -4094 + mu 0 4 2573 2578 2566 2562 + f 4 -3721 -4096 -4086 -4099 + mu 0 4 2578 2574 2569 2566 + f 4 -3728 4099 4100 -4098 + mu 0 4 2577 2579 2558 2563 + f 4 -3689 4101 -4066 -4100 + mu 0 4 2579 2580 2559 2558 + f 4 -3756 4102 4103 -3740 + mu 0 4 2324 2338 2581 2325 + f 4 4104 -3342 -3301 4105 + mu 0 4 2101 2070 2059 2058 + f 3 4106 -3368 4107 + mu 0 3 2317 2106 2105 + f 4 -3810 4108 -3755 -3803 + mu 0 4 2371 2372 2338 2337 + f 4 4109 4110 4111 -3459 + mu 0 4 2164 2062 2065 2160 + f 3 -3458 -3461 4112 + mu 0 3 2164 2163 2155 + f 4 4113 4114 -3305 -4110 + mu 0 4 2164 2102 2063 2062 + f 4 -3807 4115 -4103 -4109 + mu 0 4 2372 2373 2581 2338 + f 4 -3359 -4106 -3311 -4115 + mu 0 4 2102 2101 2058 2063 + f 4 4116 -3327 -3840 -3615 + mu 0 4 2068 2081 2080 2249 + f 4 -3806 -3768 4117 4118 + mu 0 4 2373 2346 2345 2582 + f 4 -4119 4119 4120 -4116 + mu 0 4 2373 2582 2329 2581 + f 4 -3732 -4091 -4089 -4097 + mu 0 4 2576 2316 2571 2570 + f 4 -3296 4121 -3751 4122 + mu 0 4 2051 2054 2583 2584 + f 4 -3747 4123 -3741 -3744 + mu 0 4 2328 2330 2326 2325 + f 3 -4104 -4121 -3745 + mu 0 3 2325 2581 2329 + f 4 -3753 -3757 -3739 4124 + mu 0 4 2336 2335 2324 2323 + f 4 4125 4126 -3837 4127 + mu 0 4 2385 2585 2393 2389 + f 4 -3823 -4128 -3828 4128 + mu 0 4 2386 2385 2389 2341 + f 4 -3835 -3370 -3363 -3355 + mu 0 4 2098 2107 2103 2099 + f 4 -3373 4129 -3374 -3364 + mu 0 4 2103 2109 2110 2067 + f 4 -3663 4130 -4040 -4059 + mu 0 4 2553 2586 2535 2537 + f 4 -3666 -4058 -4037 -4131 + mu 0 4 2586 2552 2536 2535; + setAttr ".fc[2000:2267]" + f 4 -3749 4131 4132 4133 + mu 0 4 2332 2331 2104 2587 + f 4 -3366 -4132 4134 -3357 + mu 0 4 2100 2104 2331 2097 + f 4 4135 -4129 -3762 -4120 + mu 0 4 2582 2386 2341 2329 + f 4 -3303 -3350 4136 4137 + mu 0 4 2057 2060 2096 2588 + f 4 -3312 -4138 4138 -3734 + mu 0 4 2064 2057 2588 2318 + f 4 -3733 -4108 4139 4140 + mu 0 4 2061 2317 2105 2066 + f 4 -3356 -3365 -4140 -3367 + mu 0 4 2100 2099 2066 2105 + f 4 -3299 4141 4142 4143 + mu 0 4 2589 2590 2591 2592 + f 4 4144 4145 4146 -4124 + mu 0 4 2593 2594 2595 2596 + f 4 4147 -4134 4148 4149 + mu 0 4 2597 2598 2599 2600 + f 4 4150 4151 -4123 4152 + mu 0 4 2601 2602 2603 2604 + f 4 -4152 4153 -4142 -3293 + mu 0 4 2603 2602 2591 2590 + f 4 4154 -3280 4155 -4146 + mu 0 4 2594 2023 2049 2595 + f 4 -4151 4156 -3258 4157 + mu 0 4 2602 2601 2039 2042 + f 4 -4157 4158 -3198 -3212 + mu 0 4 2005 2605 1995 1994 + f 4 -4153 -3754 4159 -4159 + mu 0 4 2605 2606 2607 1995 + f 4 -3199 -4160 -4125 4160 + mu 0 4 1996 1995 2607 2608 + f 4 -4145 -3750 -4148 4161 + mu 0 4 2594 2593 2598 2597 + f 4 -3200 4162 -4156 -3276 + mu 0 4 1993 1996 2595 2049 + f 4 -4161 -3742 -4147 -4163 + mu 0 4 1996 2608 2596 2595 + f 4 4163 -3239 4164 -4150 + mu 0 4 2600 2026 2024 2597 + f 4 -3236 -4155 -4162 -4165 + mu 0 4 2024 2023 2594 2597 + f 4 -3269 4165 -4143 4166 + mu 0 4 2044 2011 2592 2591 + f 4 -4158 -3263 -4167 -4154 + mu 0 4 2602 2042 2044 2591 + f 4 -4164 4167 4168 -3259 + mu 0 4 2026 2600 2609 2010 + f 4 -4149 4169 4170 -4168 + mu 0 4 2600 2599 2610 2609 + f 4 -4133 -3369 4171 -4170 + mu 0 4 2587 2104 2106 2611 + f 4 4172 4173 4174 4175 + mu 0 4 2612 2613 1991 2614 + f 4 4176 4177 -4176 4178 + mu 0 4 1269 2615 2612 2614 + f 4 4179 4180 4181 4182 + mu 0 4 2616 2617 2618 2619 + f 3 4183 4184 4185 + mu 0 3 2620 2621 2622 + f 4 4186 4187 -2030 4188 + mu 0 4 2623 2624 1280 1279 + f 4 4189 4190 4191 4192 + mu 0 4 2625 2626 2627 2628 + f 4 4193 4194 4195 -4180 + mu 0 4 2616 2629 2630 2617 + f 4 4196 4197 4198 -4185 + mu 0 4 2631 2632 2633 2634 + f 4 4199 -4190 4200 4201 + mu 0 4 2635 2626 2625 2636 + f 4 4202 4203 4204 4205 + mu 0 4 2637 2638 2639 2640 + f 4 -4183 4206 4207 4208 + mu 0 4 2616 2619 2624 2641 + f 4 -2055 -3145 4209 4210 + mu 0 4 2642 2643 2644 2645 + f 4 -2058 4211 -4182 4212 + mu 0 4 1303 1304 2619 2618 + f 4 4213 -2060 -4211 4214 + mu 0 4 2646 2647 2642 2645 + f 4 4215 4216 -4206 4217 + mu 0 4 2648 2649 2650 2651 + f 4 4218 4219 4220 -4192 + mu 0 4 2627 2641 2652 2628 + f 4 -4208 -4187 4221 -4220 + mu 0 4 2641 2624 2623 2652 + f 4 4222 4223 4224 4225 + mu 0 4 2653 2654 2655 2656 + f 3 4226 4227 4228 + mu 0 3 2657 2658 2659 + f 4 4229 4230 4231 4232 + mu 0 4 2660 2661 2662 2663 + f 4 4233 4234 4235 -3228 + mu 0 4 2016 2657 2660 2017 + f 4 -4229 4236 -4230 -4235 + mu 0 4 2657 2659 2661 2660 + f 4 4237 -4234 -3226 4238 + mu 0 4 2664 2657 2016 2015 + f 4 4239 4240 4241 4242 + mu 0 4 2665 2666 2664 2667 + f 4 4243 4244 4245 4246 + mu 0 4 2668 2669 2670 2671 + f 4 4247 -3207 4248 4249 + mu 0 4 2672 2001 2002 2673 + f 4 -4248 4250 4251 -3268 + mu 0 4 2046 2674 2669 2045 + f 4 -4252 -4244 4252 -3266 + mu 0 4 2045 2669 2668 2034 + f 4 -4236 -4233 4253 -3271 + mu 0 4 2017 2660 2663 2047 + f 4 -4243 4254 -4247 4255 + mu 0 4 2665 2667 2668 2671 + f 4 4256 4257 4258 -4232 + mu 0 4 2662 2675 2673 2663 + f 4 4259 -4250 -4258 4260 + mu 0 4 2676 2672 2673 2675 + f 4 -4225 4261 4262 4263 + mu 0 4 2677 2678 2679 2680 + f 4 -2111 -4188 -4207 -4212 + mu 0 4 1304 1280 2624 2619 + f 4 -4251 -4260 4264 -4245 + mu 0 4 2669 2674 2681 2670 + f 4 -4227 -4238 -4241 4265 + mu 0 4 2658 2657 2664 2666 + f 4 -2117 4266 4267 4268 + mu 0 4 2682 2683 2684 2685 + f 4 -4198 4269 -4216 4270 + mu 0 4 2686 2687 2688 2689 + f 4 4271 4272 4273 4274 + mu 0 4 1466 2690 2691 2692 + f 4 -2358 -4275 4275 -2124 + mu 0 4 102 1466 2692 1352 + f 4 -4273 -2371 4276 4277 + mu 0 4 2691 2690 2693 2694 + f 4 -2354 4278 4279 -4277 + mu 0 4 2693 2695 2696 2694 + f 4 4280 4281 4282 4283 + mu 0 4 2697 2698 2699 2700 + f 4 -4194 -4209 -4219 4284 + mu 0 4 2629 2616 2641 2627 + f 4 4285 4286 -4202 4287 + mu 0 4 2701 2702 2635 2636 + f 4 4288 -4263 4289 4290 + mu 0 4 2703 2680 2679 2704 + f 4 -4281 4291 -4279 -2366 + mu 0 4 2698 2697 2696 2695 + f 4 4292 -3249 -4253 -4255 + mu 0 4 2667 2032 2034 2668 + f 4 -4249 -3288 -4254 -4259 + mu 0 4 2673 2002 2047 2663 + f 4 -4101 -4068 -4071 -4075 + mu 0 4 2563 2558 2555 2561 + f 4 -3616 -3841 -3820 -4045 + mu 0 4 2540 2395 2356 2383 + f 4 -3812 -3846 4293 4294 + mu 0 4 2357 2377 2398 2364 + f 4 -3956 -3961 4295 4296 + mu 0 4 2353 2479 2482 2350 + f 4 -3793 -4294 -3844 -3814 + mu 0 4 2354 2364 2398 2379 + f 4 -3895 -3904 -3898 4297 + mu 0 4 2348 2434 2437 2361 + f 4 -3776 -4296 -3959 -3953 + mu 0 4 2349 2350 2482 2477 + f 4 -3765 4298 4299 -3825 + mu 0 4 2344 2343 2360 2387 + f 4 -4300 -3791 4300 -3830 + mu 0 4 2387 2360 2363 2115 + f 4 4301 -3379 -4301 -3896 + mu 0 4 2436 2112 2115 2363 + f 4 -3455 -4112 -3316 -4302 + mu 0 4 2161 2160 2065 2071 + f 4 -4126 -3831 -3381 4302 + mu 0 4 2585 2385 2114 2117 + f 4 -4118 -3766 -3824 -4136 + mu 0 4 2582 2345 2344 2386 + f 4 -4299 -3771 -4298 -3788 + mu 0 4 2360 2343 2348 2361 + f 3 -3785 -4297 -3775 + mu 0 3 2342 2353 2350 + f 3 -3783 -4295 -3792 + mu 0 3 2347 2357 2364 + f 4 4303 -3345 -3759 -4122 + mu 0 4 2054 2093 2092 2583 + f 4 4304 4305 -3167 -3147 + mu 0 4 1964 2705 1980 1965 + f 4 4306 4307 4308 4309 + mu 0 4 2706 2707 2708 1969 + f 4 -2681 4310 4311 -2662 + mu 0 4 1663 1637 2709 1664 + f 4 -2706 -2664 4312 -3100 + mu 0 4 1687 1662 1665 1927 + f 4 -2659 4313 -4311 -2625 + mu 0 4 1638 1661 2709 1637 + f 4 -2506 -2568 -2498 -2526 + mu 0 4 1577 1576 1571 1546 + f 4 4314 -2574 -2387 -2578 + mu 0 4 1612 1583 1498 1497 + f 4 -4293 -4242 -4239 -3246 + mu 0 4 2032 2667 2664 2015 + f 4 -3178 4315 4316 4317 + mu 0 4 1987 1986 1952 2710 + f 4 -3154 -3191 -4318 4318 + mu 0 4 1972 1971 1987 2710 + f 4 4319 -3181 -3188 -4174 + mu 0 4 2613 1986 1989 1991 + f 4 -2488 -2524 -4315 4320 + mu 0 4 1565 1564 1583 1612 + f 4 4321 -2592 4322 -2379 + mu 0 4 1490 1602 1611 1485 + f 3 4323 -2656 4324 + mu 0 3 1728 1660 1658 + f 3 4325 -2658 4326 + mu 0 3 1812 1661 1660 + f 4 -4314 4327 -3028 4328 + mu 0 4 2709 1661 1858 1898 + f 4 -4312 -4329 -3031 4329 + mu 0 4 1664 2709 1898 1892 + f 4 -2663 -4330 -3020 4330 + mu 0 4 1665 1664 1892 1891 + f 4 -4313 -4331 -3102 4331 + mu 0 4 1927 1665 1891 1895 + f 4 -3101 -4332 -3024 4332 + mu 0 4 1867 1927 1895 1865 + f 4 -2974 4333 -2975 -4333 + mu 0 4 1865 1866 1673 1867 + f 4 4334 -2676 -4334 -3096 + mu 0 4 1778 1671 1673 1866 + f 4 4335 -2673 -4335 -2837 + mu 0 4 1675 1656 1671 1778 + f 4 4336 -2651 -4336 -2677 + mu 0 4 1674 1653 1656 1675 + f 4 -2767 4337 -2665 -4337 + mu 0 4 1674 1731 1666 1653 + f 4 -2775 4338 -2668 -4338 + mu 0 4 1731 1736 1668 1666 + f 4 4339 -3097 -4339 -2786 + mu 0 4 1744 1657 1926 1745 + f 4 -2785 4340 -2652 -4340 + mu 0 4 1744 1719 1658 1657 + f 4 -3375 4341 -3695 4342 + mu 0 4 2111 2110 2293 2295 + f 4 -4343 -3738 4343 -3380 + mu 0 4 2116 2319 2322 2117 + f 4 4344 -4303 -4344 -4064 + mu 0 4 2557 2585 2117 2322 + f 4 -4127 -4345 -4062 4345 + mu 0 4 2393 2585 2557 2556 + f 4 4346 -3838 -4346 -4067 + mu 0 4 2559 2392 2393 2556 + f 4 -3839 -4347 -4102 4347 + mu 0 4 2394 2392 2559 2580 + f 4 -3372 -4348 -3688 4348 + mu 0 4 2109 2108 2290 2289 + f 4 -4349 -3693 -4342 -4130 + mu 0 4 2109 2289 2293 2110 + f 3 -3119 4349 -3136 + mu 0 3 1945 1944 1953 + f 4 -3124 4350 -4317 -3131 + mu 0 4 1948 1947 2710 1952 + f 3 -4325 -4341 -2761 + mu 0 3 1728 1658 1719 + f 3 -2824 4351 -4324 + mu 0 3 1728 1770 1660 + f 3 -4327 -4352 -2895 + mu 0 3 1812 1660 1770 + f 3 -2964 -4328 -4326 + mu 0 3 1812 1858 1661 + f 3 -2967 -3033 -3029 + mu 0 3 1858 1860 1899 + f 3 -2973 -2995 4352 + mu 0 3 1866 1862 1876 + f 3 -2991 -3094 -4353 + mu 0 3 1876 1817 1866 + f 3 -3095 -2910 4353 + mu 0 3 1778 1816 1822 + f 3 -2907 -2835 -4354 + mu 0 3 1822 1774 1778 + f 3 -2836 -2838 4354 + mu 0 3 1675 1777 1779 + f 3 -2678 -4355 -2844 + mu 0 3 1676 1675 1779 + f 3 -2680 -2788 -2768 + mu 0 3 1674 1677 1732 + f 3 -2570 -4321 -2577 + mu 0 3 1526 1565 1612 + f 4 4355 4356 -2571 -2483 + mu 0 4 1559 2711 2712 1561 + f 4 4357 -4356 -2480 4358 + mu 0 4 2713 2711 1559 1544 + f 4 4359 4360 -4359 -2462 + mu 0 4 1543 1563 2713 1544 + f 4 -2500 -2530 -2486 -4360 + mu 0 4 1543 1572 1541 1563 + f 4 -2572 4361 -2375 -4323 + mu 0 4 1611 1610 1486 1485 + f 4 4362 -2505 -4362 -4357 + mu 0 4 2711 1573 1575 2712 + f 4 -4358 4363 -2591 -4363 + mu 0 4 2711 2713 1579 1573 + f 4 -2510 -4364 -4361 -2487 + mu 0 4 1459 1579 2713 1563 + f 3 -2455 -2551 -4322 + mu 0 3 1490 1538 1602 + f 4 -2348 -2372 -4272 -2587 + mu 0 4 2714 2715 2716 2717 + f 4 -3289 -3290 -3238 -3287 + mu 0 4 2037 2048 2021 2025 + f 4 4364 -4166 -3221 -4169 + mu 0 4 2609 2592 2011 2010 + f 4 4365 -4144 -4365 -4171 + mu 0 4 2610 2589 2592 2609 + f 4 -3297 -4366 -4172 4366 + mu 0 4 2056 2055 2611 2106 + f 4 4367 -3298 4368 -4139 + mu 0 4 2588 2053 2056 2318 + f 4 -3743 -3832 -4135 -3748 + mu 0 4 2328 2327 2097 2331 + f 3 -3764 -3774 -3772 + mu 0 3 2343 2342 2349 + f 4 -3304 -4141 -3308 -4111 + mu 0 4 2062 2061 2066 2065 + f 4 -4369 -4367 -4107 -3735 + mu 0 4 2318 2056 2106 2317 + f 4 -3295 -4368 -4137 4369 + mu 0 4 2054 2053 2588 2096 + f 3 -4370 -3349 -4304 + mu 0 3 2054 2096 2093 + f 4 -4113 -3453 4370 -4114 + mu 0 4 2164 2155 2158 2102 + f 3 -4371 -3541 4371 + mu 0 3 2102 2158 2206 + f 3 -3360 -4372 -3537 + mu 0 3 2075 2102 2206 + f 3 -3323 4372 -3358 + mu 0 3 2074 2077 2101 + f 3 4373 -4373 -3361 + mu 0 3 2081 2101 2077 + f 4 -3315 -4105 -4374 -4117 + mu 0 4 2068 2070 2101 2081 + f 3 -3286 -3250 -3255 + mu 0 3 2038 2035 2033 + f 4 -2816 4374 -2819 -2794 + mu 0 4 2718 2719 1767 1751 + f 4 -2818 -2799 -2821 -4375 + mu 0 4 2719 1752 1755 1767 + f 4 4375 4376 4377 -3120 + mu 0 4 1945 1985 2720 1946 + f 4 4378 4379 -4291 -4204 + mu 0 4 2721 2722 2723 2724 + f 4 -4267 -2231 -4214 4380 + mu 0 4 2684 2683 2647 2646 + f 4 -4175 -3187 -2233 4381 + mu 0 4 2614 1991 642 1385 + f 4 -2374 -2588 -2356 -2234 + mu 0 4 123 2725 1465 105 + f 4 -2589 -2373 -2376 -2504 + mu 0 4 2726 2727 2728 1575 + f 4 -4283 -2364 -2236 4382 + mu 0 4 2700 2699 2729 2730 + f 4 -4268 4383 -4286 4384 + mu 0 4 2685 2684 2702 2701 + f 4 4385 -4384 -4381 4386 + mu 0 4 2731 2732 2733 2734 + f 4 -4215 4387 4388 -4387 + mu 0 4 2735 2736 2737 2738 + f 4 4389 4390 -4388 -4210 + mu 0 4 2739 2740 2737 2736 + f 4 4391 4392 -4390 -3144 + mu 0 4 2741 2742 2743 2744 + f 3 4393 4394 4395 + mu 0 3 2745 2630 2746 + f 4 -2365 -4282 -2368 -2461 + mu 0 4 1471 1473 2747 2748 + f 4 4396 -3112 4397 -3113 + mu 0 4 1931 1935 1937 1938 + f 4 4398 -3109 -4397 -3104 + mu 0 4 1930 1932 1935 1931 + f 4 4399 -3138 -4399 -3140 + mu 0 4 1957 1955 1932 1930 + f 4 4400 -3174 -4400 -3194 + mu 0 4 1983 1982 1955 1957 + f 4 -3170 -4401 -3171 4401 + mu 0 4 1978 1982 1983 1975 + f 4 -3164 -4402 -3161 4402 + mu 0 4 1979 1978 1975 1966 + f 4 -4403 -3151 4403 -3189 + mu 0 4 1979 1966 1968 1992 + f 4 4404 -4308 4405 -4305 + mu 0 4 1964 2708 2707 2705 + f 3 -3152 -4309 4406 + mu 0 3 1970 1969 2708 + f 4 -2262 -3195 4407 -3184 + mu 0 4 640 646 1973 1990 + f 4 4408 4409 -4310 -3155 + mu 0 4 1972 2720 2706 1969 + f 4 -3116 -3121 4410 -3123 + mu 0 4 1942 1941 1946 1947 + f 4 4411 -3128 -3107 -3133 + mu 0 4 1953 1940 1934 1933 + f 4 -3122 -3115 -4412 -4350 + mu 0 4 1944 1941 1940 1953 + f 4 -4307 4412 -3190 4413 + mu 0 4 2707 2706 1984 1992 + f 4 -4404 4414 -4406 -4414 + mu 0 4 1992 1968 2705 2707 + f 4 -3150 4415 -4306 -4415 + mu 0 4 1968 1967 1980 2705 + f 4 -3166 -4416 -3193 -2271 + mu 0 4 626 1980 1967 644 + f 4 -4413 -4410 -4377 -3176 + mu 0 4 1984 2706 2720 1985 + f 3 4416 -3135 -3173 + mu 0 3 1981 1945 1954 + f 3 -4320 4417 -4316 + mu 0 3 1986 2613 1952 + f 4 4418 4419 4420 -4181 + mu 0 4 2617 2749 2615 2618 + f 4 -2277 -4213 -4421 -4177 + mu 0 4 1269 1303 2618 2615 + f 4 -4196 -4394 4421 -4419 + mu 0 4 2617 2630 2745 2749 + f 4 4422 -4189 -2279 -4276 + mu 0 4 2692 2623 1279 1352 + f 4 -4222 -4423 -4274 4423 + mu 0 4 2652 2623 2692 2691 + f 4 -4221 -4424 -4278 4424 + mu 0 4 2628 2652 2691 2694 + f 4 4425 -4193 -4425 -4280 + mu 0 4 2696 2625 2628 2694 + f 4 -4201 -4426 -4292 4426 + mu 0 4 2636 2625 2696 2697 + f 4 4427 -4288 -4427 -4284 + mu 0 4 2700 2701 2636 2697 + f 4 4428 -4385 -4428 -4383 + mu 0 4 2730 2685 2701 2700 + f 3 -2287 -4269 -4429 + mu 0 3 2730 2682 2685 + f 4 4429 -3111 4430 4431 + mu 0 4 2750 1937 1936 2751 + f 4 -4431 -3129 -3130 4432 + mu 0 4 2751 1936 1943 1951 + f 4 4433 4434 4435 4436 + mu 0 4 2752 2753 2754 2755 + f 4 4437 4438 -3141 4439 + mu 0 4 2756 2757 1959 1958 + f 4 4440 -4433 4441 -4435 + mu 0 4 2753 2751 1951 2754 + f 4 4442 -4432 -4441 4443 + mu 0 4 2756 2750 2751 2753 + f 4 -4418 4444 -4442 -3132 + mu 0 4 1952 2613 2754 1951 + f 4 4445 4446 4447 4448 + mu 0 4 2758 2759 2760 2761 + f 4 -4436 -4445 -4173 4449 + mu 0 4 2755 2754 2613 2612 + f 4 -4437 4450 -4422 4451 + mu 0 4 2752 2755 2749 2745 + f 4 -4450 -4178 -4420 -4451 + mu 0 4 2755 2612 2615 2749 + f 4 -4447 4452 -4223 4453 + mu 0 4 2762 2763 2654 2653 + f 4 4454 -4186 4455 -4449 + mu 0 4 2764 2765 2766 2767 + f 4 4456 4457 -4392 -4439 + mu 0 4 2768 2769 2742 2741 + f 4 4458 4459 -4457 4460 + mu 0 4 2770 2771 2772 2773 + f 4 -4396 4461 -4459 -4452 + mu 0 4 2774 2775 2776 2777 + f 4 -3186 4462 -4443 -4440 + mu 0 4 1958 1949 2750 2756 + f 4 -3126 -4398 -4430 -4463 + mu 0 4 1949 1938 1937 2750 + f 4 -4434 -4461 -4438 -4444 + mu 0 4 2753 2752 2757 2756 + f 3 -4179 -4382 -2322 + mu 0 3 1269 2614 1385 + f 3 -4319 -4351 4463 + mu 0 3 1972 2710 1947 + f 4 -4407 4464 -4408 -3156 + mu 0 4 1970 2708 1990 1973 + f 4 -3168 -3177 -4376 -4417 + mu 0 4 1981 1977 1985 1945 + f 4 -4464 -4411 -4378 -4409 + mu 0 4 1972 1947 1946 2720 + f 3 -4465 -4405 -3185 + mu 0 3 1990 2708 1964 + f 4 -4462 4465 -4455 4466 + mu 0 4 2776 2775 2765 2764 + f 4 -4395 4467 -4184 -4466 + mu 0 4 2746 2630 2621 2620 + f 4 -4195 4468 -4197 -4468 + mu 0 4 2778 2779 2632 2631 + f 4 -4270 -4469 -4285 4469 + mu 0 4 2688 2687 2780 2781 + f 4 -4217 -4470 -4191 4470 + mu 0 4 2650 2649 2782 2783 + f 4 -4200 4471 -4203 -4471 + mu 0 4 2784 2785 2638 2637 + f 4 4472 -4386 4473 -4380 + mu 0 4 2722 2732 2731 2723 + f 4 -4389 4474 -4289 -4474 + mu 0 4 2738 2737 2680 2703 + f 4 4475 -4264 -4475 -4391 + mu 0 4 2740 2677 2680 2737 + f 4 4476 -4226 -4476 -4393 + mu 0 4 2742 2653 2656 2743 + f 4 4477 -4454 -4477 -4458 + mu 0 4 2769 2762 2653 2742 + f 4 -4448 -4478 -4460 -4467 + mu 0 4 2761 2760 2772 2771 + f 4 4478 -4266 4479 -4456 + mu 0 4 2786 2658 2666 2787 + f 4 -4228 -4479 -4199 4480 + mu 0 4 2659 2658 2786 2788 + f 4 -4237 -4481 -4271 4481 + mu 0 4 2661 2659 2788 2789 + f 4 -4231 -4482 -4218 4482 + mu 0 4 2662 2661 2789 2640 + f 4 -4205 4483 -4257 -4483 + mu 0 4 2640 2639 2675 2662 + f 4 4484 -4261 -4484 -4290 + mu 0 4 2790 2676 2675 2639 + f 4 -4265 -4485 -4262 4485 + mu 0 4 2670 2681 2791 2792 + f 4 -4246 -4486 -4224 4486 + mu 0 4 2671 2670 2792 2793 + f 4 4487 -4256 -4487 -4453 + mu 0 4 2794 2665 2671 2793 + f 4 -4480 -4240 -4488 -4446 + mu 0 4 2787 2666 2665 2794 + f 4 -4287 -4473 -4379 -4472 + mu 0 4 2795 2732 2722 2721; + setAttr ".cd" -type "dataPolyComponent" Index_Data Edge 0 ; + setAttr ".cvd" -type "dataPolyComponent" Index_Data Vertex 0 ; + setAttr ".hfd" -type "dataPolyComponent" Index_Data Face 0 ; +createNode transform -n "allCamera:FRB001"; + addAttr -ci true -sn "resWidth" -ln "resWidth" -at "long"; + addAttr -ci true -sn "resHeight" -ln "resHeight" -at "long"; + setAttr ".resWidth" 1024; + setAttr ".resHeight" 2048; +createNode transform -n "allCamera:frame_1_128" -p "allCamera:FRB001"; +createNode transform -n "allCamera:cam" -p "allCamera:FRB001"; + setAttr ".t" -type "double3" 0 6 35.5 ; + setAttr -av ".tx"; + setAttr -av ".ty"; + setAttr -av ".tz"; +createNode camera -n "allCamera:camShape" -p "allCamera:cam"; + setAttr -k off ".v"; + setAttr ".cap" -type "double2" 1.4173 0.9449 ; + setAttr ".ff" 0; + setAttr ".ovr" 1.3; + setAttr ".coi" 4.0852371384722268; + setAttr ".imn" -type "string" "cam1"; + setAttr ".den" -type "string" "cam1_depth"; + setAttr ".man" -type "string" "cam1_mask"; + setAttr ".dr" yes; +createNode lightLinker -s -n "lightLinker1"; + setAttr -s 3 ".lnk"; + setAttr -s 3 ".slnk"; +createNode displayLayerManager -n "layerManager"; + setAttr ".cdl" 1; + setAttr -s 2 ".dli[1]" 1; + setAttr -s 2 ".dli"; +createNode displayLayer -n "defaultLayer"; +createNode renderLayerManager -n "renderLayerManager"; + setAttr -s 2 ".rlmi[1]" 1; + setAttr -s 2 ".rlmi"; +createNode renderLayer -n "defaultRenderLayer"; + setAttr ".g" yes; + setAttr ".rndr" no; +createNode ramp -n "ramp1"; + setAttr -s 2 ".cel"; + setAttr ".cel[0].ep" 0; + setAttr ".cel[0].ec" -type "float3" 1 1 1 ; + setAttr ".cel[2].ep" 1; + setAttr ".cel[2].ec" -type "float3" 0.15700001 0.15700001 0.15700001 ; +createNode dynGlobals -n "dynGlobals1"; + setAttr ".cd" -type "string" ""; + setAttr -l on ".mnf" 1; + setAttr -l on ".mxf" 90; + setAttr ".cnp" -type "string" "KTY004.fxExpFire.v02"; + setAttr ".csn" -type "string" "KTY004.fxExpFire.v05"; +createNode script -n "sceneConfigurationScriptNode"; + setAttr ".b" -type "string" "playbackOptions -min 1 -max 128 -ast 1 -aet 128 "; + setAttr ".st" 6; +createNode partition -n "ffxPrefsPartition"; + addAttr -ci true -sn "ffxLocPrefClearRAMas" -ln "ffxLocPrefClearRAMas" -dv 1 -min + 0 -max 1 -at "bool"; + addAttr -ci true -sn "ffxLocPrefSnapshotOpt" -ln "ffxLocPrefSnapshotOpt" -min 0 + -max 2 -at "long"; + addAttr -ci true -sn "ffxLocPrefNthFrame" -ln "ffxLocPrefNthFrame" -dv 1 -min 1 + -at "long"; + addAttr -ci true -sn "ffxLocPrefFrameList" -ln "ffxLocPrefFrameList" -dt "string"; + addAttr -ci true -sn "ffxLocPrefDelSnaOnScEx" -ln "ffxLocPrefDelSnaOnScEx" -min + 0 -max 1 -at "bool"; + addAttr -ci true -sn "ffxLocPrefAbToStpCon" -ln "ffxLocPrefAbToStpCon" -dv 1 -min + 0 -max 1 -at "bool"; +lockNode -l 1 ; +createNode ffxTurbulenceShader -n "ffxTurbulenceShader1"; + setAttr ".vpar" -type "stringArray" 0 ; + setAttr ".upar" -type "stringArray" 0 ; + setAttr ".glo" 1; +lockNode -l 1 ; +createNode shadingEngine -n "fumeFX1SG"; + setAttr ".ihi" 0; + setAttr ".ro" yes; +createNode materialInfo -n "materialInfo1"; +createNode expression -n "ffxMRVolShape1_linkExp"; + setAttr -k on ".nds"; + setAttr -s 2 ".in"; + setAttr -s 2 ".in"; + setAttr -s 2 ".out"; + setAttr ".ixp" -type "string" ".O[0] = .I[0];\n.O[1] = .I[1];"; +createNode mentalrayItemsList -s -n "mentalrayItemsList"; +createNode mentalrayGlobals -s -n "mentalrayGlobals"; + setAttr ".rvb" 3; + setAttr ".ivb" no; +createNode mentalrayOptions -s -n "miDefaultOptions"; + addAttr -ci true -m -sn "stringOptions" -ln "stringOptions" -at "compound" -nc + 3; + addAttr -ci true -sn "name" -ln "name" -dt "string" -p "stringOptions"; + addAttr -ci true -sn "value" -ln "value" -dt "string" -p "stringOptions"; + addAttr -ci true -sn "type" -ln "type" -dt "string" -p "stringOptions"; + setAttr ".splck" yes; + setAttr ".fil" 0; + setAttr ".rflr" 1; + setAttr ".rfrr" 1; + setAttr ".maxr" 2; + setAttr ".shrd" 2; + setAttr -s 48 ".stringOptions"; + setAttr ".stringOptions[0].name" -type "string" "rast motion factor"; + setAttr ".stringOptions[0].value" -type "string" "1.0"; + setAttr ".stringOptions[0].type" -type "string" "scalar"; + setAttr ".stringOptions[1].name" -type "string" "rast transparency depth"; + setAttr ".stringOptions[1].value" -type "string" "8"; + setAttr ".stringOptions[1].type" -type "string" "integer"; + setAttr ".stringOptions[2].name" -type "string" "rast useopacity"; + setAttr ".stringOptions[2].value" -type "string" "true"; + setAttr ".stringOptions[2].type" -type "string" "boolean"; + setAttr ".stringOptions[3].name" -type "string" "importon"; + setAttr ".stringOptions[3].value" -type "string" "false"; + setAttr ".stringOptions[3].type" -type "string" "boolean"; + setAttr ".stringOptions[4].name" -type "string" "importon density"; + setAttr ".stringOptions[4].value" -type "string" "1.0"; + setAttr ".stringOptions[4].type" -type "string" "scalar"; + setAttr ".stringOptions[5].name" -type "string" "importon merge"; + setAttr ".stringOptions[5].value" -type "string" "0.0"; + setAttr ".stringOptions[5].type" -type "string" "scalar"; + setAttr ".stringOptions[6].name" -type "string" "importon trace depth"; + setAttr ".stringOptions[6].value" -type "string" "0"; + setAttr ".stringOptions[6].type" -type "string" "integer"; + setAttr ".stringOptions[7].name" -type "string" "importon traverse"; + setAttr ".stringOptions[7].value" -type "string" "true"; + setAttr ".stringOptions[7].type" -type "string" "boolean"; + setAttr ".stringOptions[8].name" -type "string" "shadowmap pixel samples"; + setAttr ".stringOptions[8].value" -type "string" "3"; + setAttr ".stringOptions[8].type" -type "string" "integer"; + setAttr ".stringOptions[9].name" -type "string" "ambient occlusion"; + setAttr ".stringOptions[9].value" -type "string" "false"; + setAttr ".stringOptions[9].type" -type "string" "boolean"; + setAttr ".stringOptions[10].name" -type "string" "ambient occlusion rays"; + setAttr ".stringOptions[10].value" -type "string" "256"; + setAttr ".stringOptions[10].type" -type "string" "integer"; + setAttr ".stringOptions[11].name" -type "string" "ambient occlusion cache"; + setAttr ".stringOptions[11].value" -type "string" "false"; + setAttr ".stringOptions[11].type" -type "string" "boolean"; + setAttr ".stringOptions[12].name" -type "string" "ambient occlusion cache density"; + setAttr ".stringOptions[12].value" -type "string" "1.0"; + setAttr ".stringOptions[12].type" -type "string" "scalar"; + setAttr ".stringOptions[13].name" -type "string" "ambient occlusion cache points"; + setAttr ".stringOptions[13].value" -type "string" "64"; + setAttr ".stringOptions[13].type" -type "string" "integer"; + setAttr ".stringOptions[14].name" -type "string" "irradiance particles"; + setAttr ".stringOptions[14].value" -type "string" "false"; + setAttr ".stringOptions[14].type" -type "string" "boolean"; + setAttr ".stringOptions[15].name" -type "string" "irradiance particles rays"; + setAttr ".stringOptions[15].value" -type "string" "256"; + setAttr ".stringOptions[15].type" -type "string" "integer"; + setAttr ".stringOptions[16].name" -type "string" "irradiance particles interpolate"; + setAttr ".stringOptions[16].value" -type "string" "1"; + setAttr ".stringOptions[16].type" -type "string" "integer"; + setAttr ".stringOptions[17].name" -type "string" "irradiance particles interppoints"; + setAttr ".stringOptions[17].value" -type "string" "64"; + setAttr ".stringOptions[17].type" -type "string" "integer"; + setAttr ".stringOptions[18].name" -type "string" "irradiance particles indirect passes"; + setAttr ".stringOptions[18].value" -type "string" "0"; + setAttr ".stringOptions[18].type" -type "string" "integer"; + setAttr ".stringOptions[19].name" -type "string" "irradiance particles scale"; + setAttr ".stringOptions[19].value" -type "string" "1.0"; + setAttr ".stringOptions[19].type" -type "string" "scalar"; + setAttr ".stringOptions[20].name" -type "string" "irradiance particles env"; + setAttr ".stringOptions[20].value" -type "string" "true"; + setAttr ".stringOptions[20].type" -type "string" "boolean"; + setAttr ".stringOptions[21].name" -type "string" "irradiance particles env rays"; + setAttr ".stringOptions[21].value" -type "string" "256"; + setAttr ".stringOptions[21].type" -type "string" "integer"; + setAttr ".stringOptions[22].name" -type "string" "irradiance particles env scale"; + setAttr ".stringOptions[22].value" -type "string" "1"; + setAttr ".stringOptions[22].type" -type "string" "integer"; + setAttr ".stringOptions[23].name" -type "string" "irradiance particles rebuild"; + setAttr ".stringOptions[23].value" -type "string" "true"; + setAttr ".stringOptions[23].type" -type "string" "boolean"; + setAttr ".stringOptions[24].name" -type "string" "irradiance particles file"; + setAttr ".stringOptions[24].value" -type "string" ""; + setAttr ".stringOptions[24].type" -type "string" "string"; + setAttr ".stringOptions[25].name" -type "string" "geom displace motion factor"; + setAttr ".stringOptions[25].value" -type "string" "1.0"; + setAttr ".stringOptions[25].type" -type "string" "scalar"; + setAttr ".stringOptions[26].name" -type "string" "contrast all buffers"; + setAttr ".stringOptions[26].value" -type "string" "true"; + setAttr ".stringOptions[26].type" -type "string" "boolean"; + setAttr ".stringOptions[27].name" -type "string" "finalgather normal tolerance"; + setAttr ".stringOptions[27].value" -type "string" "25.842"; + setAttr ".stringOptions[27].type" -type "string" "scalar"; + setAttr ".stringOptions[28].name" -type "string" "trace camera clip"; + setAttr ".stringOptions[28].value" -type "string" "false"; + setAttr ".stringOptions[28].type" -type "string" "boolean"; + setAttr ".stringOptions[29].name" -type "string" "unified sampling"; + setAttr ".stringOptions[29].value" -type "string" "true"; + setAttr ".stringOptions[29].type" -type "string" "boolean"; + setAttr ".stringOptions[30].name" -type "string" "samples quality"; + setAttr ".stringOptions[30].value" -type "string" "0.25 0.25 0.25 0.25"; + setAttr ".stringOptions[30].type" -type "string" "color"; + setAttr ".stringOptions[31].name" -type "string" "samples min"; + setAttr ".stringOptions[31].value" -type "string" "1.0"; + setAttr ".stringOptions[31].type" -type "string" "scalar"; + setAttr ".stringOptions[32].name" -type "string" "samples max"; + setAttr ".stringOptions[32].value" -type "string" "100.0"; + setAttr ".stringOptions[32].type" -type "string" "scalar"; + setAttr ".stringOptions[33].name" -type "string" "samples error cutoff"; + setAttr ".stringOptions[33].value" -type "string" "0.0 0.0 0.0 0.0"; + setAttr ".stringOptions[33].type" -type "string" "color"; + setAttr ".stringOptions[34].name" -type "string" "samples per object"; + setAttr ".stringOptions[34].value" -type "string" "false"; + setAttr ".stringOptions[34].type" -type "string" "boolean"; + setAttr ".stringOptions[35].name" -type "string" "progressive"; + setAttr ".stringOptions[35].value" -type "string" "false"; + setAttr ".stringOptions[35].type" -type "string" "boolean"; + setAttr ".stringOptions[36].name" -type "string" "progressive max time"; + setAttr ".stringOptions[36].value" -type "string" "0"; + setAttr ".stringOptions[36].type" -type "string" "integer"; + setAttr ".stringOptions[37].name" -type "string" "progressive subsampling size"; + setAttr ".stringOptions[37].value" -type "string" "4"; + setAttr ".stringOptions[37].type" -type "string" "integer"; + setAttr ".stringOptions[38].name" -type "string" "iray"; + setAttr ".stringOptions[38].value" -type "string" "false"; + setAttr ".stringOptions[38].type" -type "string" "boolean"; + setAttr ".stringOptions[39].name" -type "string" "light relative scale"; + setAttr ".stringOptions[39].value" -type "string" "0.31831"; + setAttr ".stringOptions[39].type" -type "string" "scalar"; + setAttr ".stringOptions[40].name" -type "string" "trace camera motion vectors"; + setAttr ".stringOptions[40].value" -type "string" "false"; + setAttr ".stringOptions[40].type" -type "string" "boolean"; + setAttr ".stringOptions[41].name" -type "string" "ray differentials"; + setAttr ".stringOptions[41].value" -type "string" "true"; + setAttr ".stringOptions[41].type" -type "string" "boolean"; + setAttr ".stringOptions[42].name" -type "string" "environment lighting mode"; + setAttr ".stringOptions[42].value" -type "string" "off"; + setAttr ".stringOptions[42].type" -type "string" "string"; + setAttr ".stringOptions[43].name" -type "string" "environment lighting quality"; + setAttr ".stringOptions[43].value" -type "string" "0.2"; + setAttr ".stringOptions[43].type" -type "string" "scalar"; + setAttr ".stringOptions[44].name" -type "string" "environment lighting shadow"; + setAttr ".stringOptions[44].value" -type "string" "transparent"; + setAttr ".stringOptions[44].type" -type "string" "string"; + setAttr ".stringOptions[45].name" -type "string" "environment lighting resolution"; + setAttr ".stringOptions[45].value" -type "string" "512"; + setAttr ".stringOptions[45].type" -type "string" "integer"; + setAttr ".stringOptions[46].name" -type "string" "environment lighting shader samples"; + setAttr ".stringOptions[46].value" -type "string" "2"; + setAttr ".stringOptions[46].type" -type "string" "integer"; + setAttr ".stringOptions[47].name" -type "string" "environment lighting scale"; + setAttr ".stringOptions[47].value" -type "string" "1.0 1.0 1.0"; + setAttr ".stringOptions[47].type" -type "string" "color"; +createNode mentalrayFramebuffer -s -n "miDefaultFramebuffer"; + setAttr ".dat" 2; +createNode fractal -n "fractal1"; + setAttr ".lmn" 0.15000000596046448; + setAttr ".in" yes; +createNode place2dTexture -n "place2dTexture1"; +createNode expression -n "expression1"; + setAttr -k on ".nds"; + setAttr ".ixp" -type "string" ""; +createNode ramp -n "ramp2"; + setAttr -s 3 ".cel"; + setAttr ".cel[0].ep" 0.023560209199786186; + setAttr ".cel[0].ec" -type "float3" 1 1 1 ; + setAttr ".cel[2].ep" 1; + setAttr ".cel[2].ec" -type "float3" 0 0 0 ; + setAttr ".cel[3].ep" 0; + setAttr ".cel[3].ec" -type "float3" 0.31099999 0.31099999 0.31099999 ; +createNode ramp -n "ramp3"; + setAttr -s 3 ".cel"; + setAttr ".cel[0].ep" 0; + setAttr ".cel[0].ec" -type "float3" 1 0 0 ; + setAttr ".cel[1].ep" 1; + setAttr ".cel[1].ec" -type "float3" 0 0 1 ; + setAttr ".cel[2].ep" 0.5; + setAttr ".cel[2].ec" -type "float3" 0 1 0 ; +createNode polySphere -n "polySphere2"; + setAttr ".r" 2.05462553503612; +createNode deleteComponent -n "deleteComponent1"; + setAttr ".dc" -type "componentList" 2 "f[0:199]" "f[360:379]"; +createNode geoConnector -n "geoConnector2"; +createNode deleteComponent -n "deleteComponent2"; + setAttr ".dc" -type "componentList" 1 "f[0:19]"; +createNode deleteComponent -n "deleteComponent3"; + setAttr ".dc" -type "componentList" 1 "f[0:19]"; +createNode deleteComponent -n "deleteComponent4"; + setAttr ".dc" -type "componentList" 1 "f[0:19]"; +createNode arrayMapper -n "arrayMapper4"; +createNode ramp -n "ramp4"; + setAttr -s 3 ".cel"; + setAttr ".cel[0].ep" 0; + setAttr ".cel[0].ec" -type "float3" 1 1 1 ; + setAttr ".cel[1].ep" 0.5; + setAttr ".cel[1].ec" -type "float3" 0.5 0.5 0.5 ; + setAttr ".cel[2].ep" 1; + setAttr ".cel[2].ec" -type "float3" 0 0 0 ; +createNode deleteComponent -n "deleteComponent5"; + setAttr ".dc" -type "componentList" 1 "f[0:19]"; +createNode deleteComponent -n "deleteComponent6"; + setAttr ".dc" -type "componentList" 1 "f[0:19]"; +createNode VRaySettingsNode -s -n "vraySettings"; + setAttr ".pe" 2; + setAttr ".se" 3; + setAttr ".cmph" 60; + setAttr ".cfile" -type "string" ""; + setAttr ".cfile2" -type "string" ""; + setAttr ".casf" -type "string" ""; + setAttr ".casf2" -type "string" ""; + setAttr ".msr" 6; + setAttr ".aaft" 3; + setAttr ".aafs" 2; + setAttr ".dma" 16; + setAttr ".dam" 1; + setAttr ".pt" 0.0099999997764825821; + setAttr ".sd" 1000; + setAttr ".ss" 0.01; + setAttr ".pfts" 20; + setAttr ".ufg" yes; + setAttr ".fnm" -type "string" ""; + setAttr ".lcfnm" -type "string" ""; + setAttr ".asf" -type "string" ""; + setAttr ".lcasf" -type "string" ""; + setAttr ".urtrshd" yes; + setAttr ".rtrshd" 2; + setAttr ".icits" 10; + setAttr ".ifile" -type "string" ""; + setAttr ".ifile2" -type "string" ""; + setAttr ".iasf" -type "string" ""; + setAttr ".iasf2" -type "string" ""; + setAttr ".pmfile" -type "string" ""; + setAttr ".pmfile2" -type "string" ""; + setAttr ".pmasf" -type "string" ""; + setAttr ".pmasf2" -type "string" ""; + setAttr ".dmcstd" yes; + setAttr ".dmculs" no; + setAttr ".dmcsat" 0.004999999888241291; + setAttr ".cmtp" 6; + setAttr ".cmao" 2; + setAttr ".cmlw" yes; + setAttr ".cg" 2.2000000476837158; + setAttr ".mtah" yes; + setAttr ".rgbcs" 1; + setAttr ".srflc" 1; + setAttr ".seu" yes; + setAttr ".gormio" yes; + setAttr ".wi" 1024; + setAttr ".he" 2048; + setAttr ".aspr" 0.5; + setAttr ".aspl" no; + setAttr ".jpegq" 100; + setAttr ".animtp" 1; + setAttr ".imgfs" -type "string" "tif"; + setAttr ".bkc" -type "string" "map1"; + setAttr ".vfbOn" yes; + setAttr ".vfbSA" -type "Int32Array" 251 998 14 0 0 0 0 + 0 0 0 0 -1073724351 0 0 0 0 0 0 0 + 0 453 0 0 0 0 0 0 0 0 886 1 + 3 1 0 0 0 0 1 0 5 0 1065353216 3 + 1 0 0 0 0 1 0 5 0 1065353216 3 1 + 1065353216 0 0 0 1 0 5 0 1065353216 1 3 2 + 1065353216 1065353216 1065353216 1065353216 1 0 5 0 0 0 0 1 + 0 5 0 1065353216 1 137531 65536 1 1313131313 65536 944879383 0 + -525502228 1065353216 1621981420 1034147594 1053609164 1065353216 2 0 0 -1097805629 -1097805629 1049678019 + 1049678019 0 2 1065353216 1065353216 -1097805629 -1097805629 1049678019 1049678019 0 2 1 + 2 -1 0 0 0 1869111636 24941 0 0 1869366016 26740 -334342488 + 2046 0 0 15 0 1131963648 1752461164 1268691456 0 0 0 15 + 0 0 0 0 0 0 16777215 0 70 1 32 53 + 1632775510 1868963961 1632444530 622879097 2036429430 1936876918 544108393 1701978236 1919247470 1835627552 1915035749 1701080677 + 1835627634 12901 1378702848 1713404257 1293972079 543258977 808660531 540094510 1701978236 1919247470 1835627552 807411813 + 807411816 825499757 7551022 16777216 16777216 0 0 0 0 1 1 0 + 0 0 0 1 1 0 0 11 1936614732 1701209669 7566435 1 + 0 1 0 1101004800 1101004800 1082130432 0 0 0 1077936128 0 0 + 0 1 0 1 1112014848 1101004800 1 0 0 0 0 82176 + 0 16576 0 0 0 0 16448 0 65536 65536 0 0 + 0 65536 0 0 0 0 0 0 0 0 0 0 + 0 0 65536 536870912 536888779 ; + setAttr ".mSceneName" -type "string" "x:/IG/proj/XEF/seq/FRB/001/fxBonFire/scenes/FRB001.fxBonFire.ma"; + setAttr ".rt_engineType" 3; +createNode displayLayer -n "body"; + setAttr ".dt" 1; + setAttr ".c" 20; + setAttr ".do" 1; +createNode renderLayer -n "fx_bonfire_COL"; + setAttr ".do" 1; +createNode deleteComponent -n "deleteComponent7"; + setAttr ".dc" -type "componentList" 1 "f[0:19]"; +createNode animCurveTL -n "allCamera:cam_translateX"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 0 2 0 3 0 4 0 5 0 6 0 7 0 8 0 9 0 10 0 + 11 0 12 0 13 0 14 0 15 0 16 0 17 0 18 0 19 0 20 0 21 0 22 0 23 0 24 0 25 0 26 0 27 0 + 28 0 29 0 30 0 31 0 32 0 33 0 34 0 35 0 36 0 37 0 38 0 39 0 40 0 41 0 42 0 43 0 44 0 + 45 0 46 0 47 0 48 0 49 0 50 0 51 0 52 0 53 0 54 0 55 0 56 0 57 0 58 0 59 0 60 0 61 0 + 62 0 63 0 64 0 65 0 66 0 67 0 68 0 69 0 70 0 71 0 72 0 73 0 74 0 75 0 76 0 77 0 78 0 + 79 0 80 0 81 0 82 0 83 0 84 0 85 0 86 0 87 0 88 0 89 0 90 0 91 0 92 0 93 0 94 0 95 0 + 96 0 97 0 98 0 99 0 100 0 101 0 102 0 103 0 104 0 105 0 106 0 107 0 108 0 109 0 110 0 + 111 0 112 0 113 0 114 0 115 0 116 0 117 0 118 0 119 0 120 0 121 0 122 0 123 0 124 0 + 125 0 126 0 127 0 128 0; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTL -n "allCamera:cam_translateY"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 6 2 6 3 6 4 6 5 6 6 6 7 6 8 6 9 6 10 6 + 11 6 12 6 13 6 14 6 15 6 16 6 17 6 18 6 19 6 20 6 21 6 22 6 23 6 24 6 25 6 26 6 27 6 + 28 6 29 6 30 6 31 6 32 6 33 6 34 6 35 6 36 6 37 6 38 6 39 6 40 6 41 6 42 6 43 6 44 6 + 45 6 46 6 47 6 48 6 49 6 50 6 51 6 52 6 53 6 54 6 55 6 56 6 57 6 58 6 59 6 60 6 61 6 + 62 6 63 6 64 6 65 6 66 6 67 6 68 6 69 6 70 6 71 6 72 6 73 6 74 6 75 6 76 6 77 6 78 6 + 79 6 80 6 81 6 82 6 83 6 84 6 85 6 86 6 87 6 88 6 89 6 90 6 91 6 92 6 93 6 94 6 95 6 + 96 6 97 6 98 6 99 6 100 6 101 6 102 6 103 6 104 6 105 6 106 6 107 6 108 6 109 6 110 6 + 111 6 112 6 113 6 114 6 115 6 116 6 117 6 118 6 119 6 120 6 121 6 122 6 123 6 124 6 + 125 6 126 6 127 6 128 6; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTL -n "allCamera:cam_translateZ"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 35.5 2 35.5 3 35.5 4 35.5 5 35.5 6 35.5 + 7 35.5 8 35.5 9 35.5 10 35.5 11 35.5 12 35.5 13 35.5 14 35.5 15 35.5 16 35.5 17 35.5 + 18 35.5 19 35.5 20 35.5 21 35.5 22 35.5 23 35.5 24 35.5 25 35.5 26 35.5 27 35.5 28 35.5 + 29 35.5 30 35.5 31 35.5 32 35.5 33 35.5 34 35.5 35 35.5 36 35.5 37 35.5 38 35.5 39 35.5 + 40 35.5 41 35.5 42 35.5 43 35.5 44 35.5 45 35.5 46 35.5 47 35.5 48 35.5 49 35.5 50 35.5 + 51 35.5 52 35.5 53 35.5 54 35.5 55 35.5 56 35.5 57 35.5 58 35.5 59 35.5 60 35.5 61 35.5 + 62 35.5 63 35.5 64 35.5 65 35.5 66 35.5 67 35.5 68 35.5 69 35.5 70 35.5 71 35.5 72 35.5 + 73 35.5 74 35.5 75 35.5 76 35.5 77 35.5 78 35.5 79 35.5 80 35.5 81 35.5 82 35.5 83 35.5 + 84 35.5 85 35.5 86 35.5 87 35.5 88 35.5 89 35.5 90 35.5 91 35.5 92 35.5 93 35.5 94 35.5 + 95 35.5 96 35.5 97 35.5 98 35.5 99 35.5 100 35.5 101 35.5 102 35.5 103 35.5 104 35.5 + 105 35.5 106 35.5 107 35.5 108 35.5 109 35.5 110 35.5 111 35.5 112 35.5 113 35.5 + 114 35.5 115 35.5 116 35.5 117 35.5 118 35.5 119 35.5 120 35.5 121 35.5 122 35.5 + 123 35.5 124 35.5 125 35.5 126 35.5 127 35.5 128 35.5; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTA -n "allCamera:cam_rotateX"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 3.0000000000000018 2 3.0000000000000018 + 3 3.0000000000000018 4 3.0000000000000018 5 3.0000000000000018 6 3.0000000000000018 + 7 3.0000000000000018 8 3.0000000000000018 9 3.0000000000000018 10 3.0000000000000018 + 11 3.0000000000000018 12 3.0000000000000018 13 3.0000000000000018 14 3.0000000000000018 + 15 3.0000000000000018 16 3.0000000000000018 17 3.0000000000000018 18 3.0000000000000018 + 19 3.0000000000000018 20 3.0000000000000018 21 3.0000000000000018 22 3.0000000000000018 + 23 3.0000000000000018 24 3.0000000000000018 25 3.0000000000000018 26 3.0000000000000018 + 27 3.0000000000000018 28 3.0000000000000018 29 3.0000000000000018 30 3.0000000000000018 + 31 3.0000000000000018 32 3.0000000000000018 33 3.0000000000000018 34 3.0000000000000018 + 35 3.0000000000000018 36 3.0000000000000018 37 3.0000000000000018 38 3.0000000000000018 + 39 3.0000000000000018 40 3.0000000000000018 41 3.0000000000000018 42 3.0000000000000018 + 43 3.0000000000000018 44 3.0000000000000018 45 3.0000000000000018 46 3.0000000000000018 + 47 3.0000000000000018 48 3.0000000000000018 49 3.0000000000000018 50 3.0000000000000018 + 51 3.0000000000000018 52 3.0000000000000018 53 3.0000000000000018 54 3.0000000000000018 + 55 3.0000000000000018 56 3.0000000000000018 57 3.0000000000000018 58 3.0000000000000018 + 59 3.0000000000000018 60 3.0000000000000018 61 3.0000000000000018 62 3.0000000000000018 + 63 3.0000000000000018 64 3.0000000000000018 65 3.0000000000000018 66 3.0000000000000018 + 67 3.0000000000000018 68 3.0000000000000018 69 3.0000000000000018 70 3.0000000000000018 + 71 3.0000000000000018 72 3.0000000000000018 73 3.0000000000000018 74 3.0000000000000018 + 75 3.0000000000000018 76 3.0000000000000018 77 3.0000000000000018 78 3.0000000000000018 + 79 3.0000000000000018 80 3.0000000000000018 81 3.0000000000000018 82 3.0000000000000018 + 83 3.0000000000000018 84 3.0000000000000018 85 3.0000000000000018 86 3.0000000000000018 + 87 3.0000000000000018 88 3.0000000000000018 89 3.0000000000000018 90 3.0000000000000018 + 91 3.0000000000000018 92 3.0000000000000018 93 3.0000000000000018 94 3.0000000000000018 + 95 3.0000000000000018 96 3.0000000000000018 97 3.0000000000000018 98 3.0000000000000018 + 99 3.0000000000000018 100 3.0000000000000018 101 3.0000000000000018 102 3.0000000000000018 + 103 3.0000000000000018 104 3.0000000000000018 105 3.0000000000000018 106 3.0000000000000018 + 107 3.0000000000000018 108 3.0000000000000018 109 3.0000000000000018 110 3.0000000000000018 + 111 3.0000000000000018 112 3.0000000000000018 113 3.0000000000000018 114 3.0000000000000018 + 115 3.0000000000000018 116 3.0000000000000018 117 3.0000000000000018 118 3.0000000000000018 + 119 3.0000000000000018 120 3.0000000000000018 121 3.0000000000000018 122 3.0000000000000018 + 123 3.0000000000000018 124 3.0000000000000018 125 3.0000000000000018 126 3.0000000000000018 + 127 3.0000000000000018 128 3.0000000000000018; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTA -n "allCamera:cam_rotateY"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 0 2 0 3 0 4 0 5 0 6 0 7 0 8 0 9 0 10 0 + 11 0 12 0 13 0 14 0 15 0 16 0 17 0 18 0 19 0 20 0 21 0 22 0 23 0 24 0 25 0 26 0 27 0 + 28 0 29 0 30 0 31 0 32 0 33 0 34 0 35 0 36 0 37 0 38 0 39 0 40 0 41 0 42 0 43 0 44 0 + 45 0 46 0 47 0 48 0 49 0 50 0 51 0 52 0 53 0 54 0 55 0 56 0 57 0 58 0 59 0 60 0 61 0 + 62 0 63 0 64 0 65 0 66 0 67 0 68 0 69 0 70 0 71 0 72 0 73 0 74 0 75 0 76 0 77 0 78 0 + 79 0 80 0 81 0 82 0 83 0 84 0 85 0 86 0 87 0 88 0 89 0 90 0 91 0 92 0 93 0 94 0 95 0 + 96 0 97 0 98 0 99 0 100 0 101 0 102 0 103 0 104 0 105 0 106 0 107 0 108 0 109 0 110 0 + 111 0 112 0 113 0 114 0 115 0 116 0 117 0 118 0 119 0 120 0 121 0 122 0 123 0 124 0 + 125 0 126 0 127 0 128 0; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTA -n "allCamera:cam_rotateZ"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 0 2 0 3 0 4 0 5 0 6 0 7 0 8 0 9 0 10 0 + 11 0 12 0 13 0 14 0 15 0 16 0 17 0 18 0 19 0 20 0 21 0 22 0 23 0 24 0 25 0 26 0 27 0 + 28 0 29 0 30 0 31 0 32 0 33 0 34 0 35 0 36 0 37 0 38 0 39 0 40 0 41 0 42 0 43 0 44 0 + 45 0 46 0 47 0 48 0 49 0 50 0 51 0 52 0 53 0 54 0 55 0 56 0 57 0 58 0 59 0 60 0 61 0 + 62 0 63 0 64 0 65 0 66 0 67 0 68 0 69 0 70 0 71 0 72 0 73 0 74 0 75 0 76 0 77 0 78 0 + 79 0 80 0 81 0 82 0 83 0 84 0 85 0 86 0 87 0 88 0 89 0 90 0 91 0 92 0 93 0 94 0 95 0 + 96 0 97 0 98 0 99 0 100 0 101 0 102 0 103 0 104 0 105 0 106 0 107 0 108 0 109 0 110 0 + 111 0 112 0 113 0 114 0 115 0 116 0 117 0 118 0 119 0 120 0 121 0 122 0 123 0 124 0 + 125 0 126 0 127 0 128 0; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTU -n "allCamera:cam_scaleX"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9 1 10 1 + 11 1 12 1 13 1 14 1 15 1 16 1 17 1 18 1 19 1 20 1 21 1 22 1 23 1 24 1 25 1 26 1 27 1 + 28 1 29 1 30 1 31 1 32 1 33 1 34 1 35 1 36 1 37 1 38 1 39 1 40 1 41 1 42 1 43 1 44 1 + 45 1 46 1 47 1 48 1 49 1 50 1 51 1 52 1 53 1 54 1 55 1 56 1 57 1 58 1 59 1 60 1 61 1 + 62 1 63 1 64 1 65 1 66 1 67 1 68 1 69 1 70 1 71 1 72 1 73 1 74 1 75 1 76 1 77 1 78 1 + 79 1 80 1 81 1 82 1 83 1 84 1 85 1 86 1 87 1 88 1 89 1 90 1 91 1 92 1 93 1 94 1 95 1 + 96 1 97 1 98 1 99 1 100 1 101 1 102 1 103 1 104 1 105 1 106 1 107 1 108 1 109 1 110 1 + 111 1 112 1 113 1 114 1 115 1 116 1 117 1 118 1 119 1 120 1 121 1 122 1 123 1 124 1 + 125 1 126 1 127 1 128 1; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTU -n "allCamera:cam_scaleY"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9 1 10 1 + 11 1 12 1 13 1 14 1 15 1 16 1 17 1 18 1 19 1 20 1 21 1 22 1 23 1 24 1 25 1 26 1 27 1 + 28 1 29 1 30 1 31 1 32 1 33 1 34 1 35 1 36 1 37 1 38 1 39 1 40 1 41 1 42 1 43 1 44 1 + 45 1 46 1 47 1 48 1 49 1 50 1 51 1 52 1 53 1 54 1 55 1 56 1 57 1 58 1 59 1 60 1 61 1 + 62 1 63 1 64 1 65 1 66 1 67 1 68 1 69 1 70 1 71 1 72 1 73 1 74 1 75 1 76 1 77 1 78 1 + 79 1 80 1 81 1 82 1 83 1 84 1 85 1 86 1 87 1 88 1 89 1 90 1 91 1 92 1 93 1 94 1 95 1 + 96 1 97 1 98 1 99 1 100 1 101 1 102 1 103 1 104 1 105 1 106 1 107 1 108 1 109 1 110 1 + 111 1 112 1 113 1 114 1 115 1 116 1 117 1 118 1 119 1 120 1 121 1 122 1 123 1 124 1 + 125 1 126 1 127 1 128 1; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTU -n "allCamera:cam_scaleZ"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9 1 10 1 + 11 1 12 1 13 1 14 1 15 1 16 1 17 1 18 1 19 1 20 1 21 1 22 1 23 1 24 1 25 1 26 1 27 1 + 28 1 29 1 30 1 31 1 32 1 33 1 34 1 35 1 36 1 37 1 38 1 39 1 40 1 41 1 42 1 43 1 44 1 + 45 1 46 1 47 1 48 1 49 1 50 1 51 1 52 1 53 1 54 1 55 1 56 1 57 1 58 1 59 1 60 1 61 1 + 62 1 63 1 64 1 65 1 66 1 67 1 68 1 69 1 70 1 71 1 72 1 73 1 74 1 75 1 76 1 77 1 78 1 + 79 1 80 1 81 1 82 1 83 1 84 1 85 1 86 1 87 1 88 1 89 1 90 1 91 1 92 1 93 1 94 1 95 1 + 96 1 97 1 98 1 99 1 100 1 101 1 102 1 103 1 104 1 105 1 106 1 107 1 108 1 109 1 110 1 + 111 1 112 1 113 1 114 1 115 1 116 1 117 1 118 1 119 1 120 1 121 1 122 1 123 1 124 1 + 125 1 126 1 127 1 128 1; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTU -n "allCamera:cam_visibility"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9 1 10 1 + 11 1 12 1 13 1 14 1 15 1 16 1 17 1 18 1 19 1 20 1 21 1 22 1 23 1 24 1 25 1 26 1 27 1 + 28 1 29 1 30 1 31 1 32 1 33 1 34 1 35 1 36 1 37 1 38 1 39 1 40 1 41 1 42 1 43 1 44 1 + 45 1 46 1 47 1 48 1 49 1 50 1 51 1 52 1 53 1 54 1 55 1 56 1 57 1 58 1 59 1 60 1 61 1 + 62 1 63 1 64 1 65 1 66 1 67 1 68 1 69 1 70 1 71 1 72 1 73 1 74 1 75 1 76 1 77 1 78 1 + 79 1 80 1 81 1 82 1 83 1 84 1 85 1 86 1 87 1 88 1 89 1 90 1 91 1 92 1 93 1 94 1 95 1 + 96 1 97 1 98 1 99 1 100 1 101 1 102 1 103 1 104 1 105 1 106 1 107 1 108 1 109 1 110 1 + 111 1 112 1 113 1 114 1 115 1 116 1 117 1 118 1 119 1 120 1 121 1 122 1 123 1 124 1 + 125 1 126 1 127 1 128 1; +createNode animCurveTU -n "allCamera:camShape_visibility1"; + setAttr ".tan" 18; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9 1 10 1 + 11 1 12 1 13 1 14 1 15 1 16 1 17 1 18 1 19 1 20 1 21 1 22 1 23 1 24 1 25 1 26 1 27 1 + 28 1 29 1 30 1 31 1 32 1 33 1 34 1 35 1 36 1 37 1 38 1 39 1 40 1 41 1 42 1 43 1 44 1 + 45 1 46 1 47 1 48 1 49 1 50 1 51 1 52 1 53 1 54 1 55 1 56 1 57 1 58 1 59 1 60 1 61 1 + 62 1 63 1 64 1 65 1 66 1 67 1 68 1 69 1 70 1 71 1 72 1 73 1 74 1 75 1 76 1 77 1 78 1 + 79 1 80 1 81 1 82 1 83 1 84 1 85 1 86 1 87 1 88 1 89 1 90 1 91 1 92 1 93 1 94 1 95 1 + 96 1 97 1 98 1 99 1 100 1 101 1 102 1 103 1 104 1 105 1 106 1 107 1 108 1 109 1 110 1 + 111 1 112 1 113 1 114 1 115 1 116 1 117 1 118 1 119 1 120 1 121 1 122 1 123 1 124 1 + 125 1 126 1 127 1 128 1; +createNode animCurveTU -n "allCamera:camShape_focalLength"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 50 2 50 3 50 4 50 5 50 6 50 7 50 8 50 + 9 50 10 50 11 50 12 50 13 50 14 50 15 50 16 50 17 50 18 50 19 50 20 50 21 50 22 50 + 23 50 24 50 25 50 26 50 27 50 28 50 29 50 30 50 31 50 32 50 33 50 34 50 35 50 36 50 + 37 50 38 50 39 50 40 50 41 50 42 50 43 50 44 50 45 50 46 50 47 50 48 50 49 50 50 50 + 51 50 52 50 53 50 54 50 55 50 56 50 57 50 58 50 59 50 60 50 61 50 62 50 63 50 64 50 + 65 50 66 50 67 50 68 50 69 50 70 50 71 50 72 50 73 50 74 50 75 50 76 50 77 50 78 50 + 79 50 80 50 81 50 82 50 83 50 84 50 85 50 86 50 87 50 88 50 89 50 90 50 91 50 92 50 + 93 50 94 50 95 50 96 50 97 50 98 50 99 50 100 50 101 50 102 50 103 50 104 50 105 50 + 106 50 107 50 108 50 109 50 110 50 111 50 112 50 113 50 114 50 115 50 116 50 117 50 + 118 50 119 50 120 50 121 50 122 50 123 50 124 50 125 50 126 50 127 50 128 50; +createNode animCurveTU -n "allCamera:camShape_lensSqueezeRatio"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9 1 10 1 + 11 1 12 1 13 1 14 1 15 1 16 1 17 1 18 1 19 1 20 1 21 1 22 1 23 1 24 1 25 1 26 1 27 1 + 28 1 29 1 30 1 31 1 32 1 33 1 34 1 35 1 36 1 37 1 38 1 39 1 40 1 41 1 42 1 43 1 44 1 + 45 1 46 1 47 1 48 1 49 1 50 1 51 1 52 1 53 1 54 1 55 1 56 1 57 1 58 1 59 1 60 1 61 1 + 62 1 63 1 64 1 65 1 66 1 67 1 68 1 69 1 70 1 71 1 72 1 73 1 74 1 75 1 76 1 77 1 78 1 + 79 1 80 1 81 1 82 1 83 1 84 1 85 1 86 1 87 1 88 1 89 1 90 1 91 1 92 1 93 1 94 1 95 1 + 96 1 97 1 98 1 99 1 100 1 101 1 102 1 103 1 104 1 105 1 106 1 107 1 108 1 109 1 110 1 + 111 1 112 1 113 1 114 1 115 1 116 1 117 1 118 1 119 1 120 1 121 1 122 1 123 1 124 1 + 125 1 126 1 127 1 128 1; +createNode animCurveTU -n "allCamera:camShape_fStop"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 5.6 2 5.6 3 5.6 4 5.6 5 5.6 6 5.6 7 5.6 + 8 5.6 9 5.6 10 5.6 11 5.6 12 5.6 13 5.6 14 5.6 15 5.6 16 5.6 17 5.6 18 5.6 19 5.6 + 20 5.6 21 5.6 22 5.6 23 5.6 24 5.6 25 5.6 26 5.6 27 5.6 28 5.6 29 5.6 30 5.6 31 5.6 + 32 5.6 33 5.6 34 5.6 35 5.6 36 5.6 37 5.6 38 5.6 39 5.6 40 5.6 41 5.6 42 5.6 43 5.6 + 44 5.6 45 5.6 46 5.6 47 5.6 48 5.6 49 5.6 50 5.6 51 5.6 52 5.6 53 5.6 54 5.6 55 5.6 + 56 5.6 57 5.6 58 5.6 59 5.6 60 5.6 61 5.6 62 5.6 63 5.6 64 5.6 65 5.6 66 5.6 67 5.6 + 68 5.6 69 5.6 70 5.6 71 5.6 72 5.6 73 5.6 74 5.6 75 5.6 76 5.6 77 5.6 78 5.6 79 5.6 + 80 5.6 81 5.6 82 5.6 83 5.6 84 5.6 85 5.6 86 5.6 87 5.6 88 5.6 89 5.6 90 5.6 91 5.6 + 92 5.6 93 5.6 94 5.6 95 5.6 96 5.6 97 5.6 98 5.6 99 5.6 100 5.6 101 5.6 102 5.6 103 5.6 + 104 5.6 105 5.6 106 5.6 107 5.6 108 5.6 109 5.6 110 5.6 111 5.6 112 5.6 113 5.6 114 5.6 + 115 5.6 116 5.6 117 5.6 118 5.6 119 5.6 120 5.6 121 5.6 122 5.6 123 5.6 124 5.6 125 5.6 + 126 5.6 127 5.6 128 5.6; +createNode animCurveTL -n "allCamera:camShape_focusDistance"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 5 2 5 3 5 4 5 5 5 6 5 7 5 8 5 9 5 10 5 + 11 5 12 5 13 5 14 5 15 5 16 5 17 5 18 5 19 5 20 5 21 5 22 5 23 5 24 5 25 5 26 5 27 5 + 28 5 29 5 30 5 31 5 32 5 33 5 34 5 35 5 36 5 37 5 38 5 39 5 40 5 41 5 42 5 43 5 44 5 + 45 5 46 5 47 5 48 5 49 5 50 5 51 5 52 5 53 5 54 5 55 5 56 5 57 5 58 5 59 5 60 5 61 5 + 62 5 63 5 64 5 65 5 66 5 67 5 68 5 69 5 70 5 71 5 72 5 73 5 74 5 75 5 76 5 77 5 78 5 + 79 5 80 5 81 5 82 5 83 5 84 5 85 5 86 5 87 5 88 5 89 5 90 5 91 5 92 5 93 5 94 5 95 5 + 96 5 97 5 98 5 99 5 100 5 101 5 102 5 103 5 104 5 105 5 106 5 107 5 108 5 109 5 110 5 + 111 5 112 5 113 5 114 5 115 5 116 5 117 5 118 5 119 5 120 5 121 5 122 5 123 5 124 5 + 125 5 126 5 127 5 128 5; +createNode animCurveTA -n "allCamera:camShape_shutterAngle"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 144 2 144 3 144 4 144 5 144 6 144 7 144 + 8 144 9 144 10 144 11 144 12 144 13 144 14 144 15 144 16 144 17 144 18 144 19 144 + 20 144 21 144 22 144 23 144 24 144 25 144 26 144 27 144 28 144 29 144 30 144 31 144 + 32 144 33 144 34 144 35 144 36 144 37 144 38 144 39 144 40 144 41 144 42 144 43 144 + 44 144 45 144 46 144 47 144 48 144 49 144 50 144 51 144 52 144 53 144 54 144 55 144 + 56 144 57 144 58 144 59 144 60 144 61 144 62 144 63 144 64 144 65 144 66 144 67 144 + 68 144 69 144 70 144 71 144 72 144 73 144 74 144 75 144 76 144 77 144 78 144 79 144 + 80 144 81 144 82 144 83 144 84 144 85 144 86 144 87 144 88 144 89 144 90 144 91 144 + 92 144 93 144 94 144 95 144 96 144 97 144 98 144 99 144 100 144 101 144 102 144 103 144 + 104 144 105 144 106 144 107 144 108 144 109 144 110 144 111 144 112 144 113 144 114 144 + 115 144 116 144 117 144 118 144 119 144 120 144 121 144 122 144 123 144 124 144 125 144 + 126 144 127 144 128 144; +createNode animCurveTL -n "allCamera:camShape_centerOfInterest"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 4.0852371384722268 2 4.0852371384722268 + 3 4.0852371384722268 4 4.0852371384722268 5 4.0852371384722268 6 4.0852371384722268 + 7 4.0852371384722268 8 4.0852371384722268 9 4.0852371384722268 10 4.0852371384722268 + 11 4.0852371384722268 12 4.0852371384722268 13 4.0852371384722268 14 4.0852371384722268 + 15 4.0852371384722268 16 4.0852371384722268 17 4.0852371384722268 18 4.0852371384722268 + 19 4.0852371384722268 20 4.0852371384722268 21 4.0852371384722268 22 4.0852371384722268 + 23 4.0852371384722268 24 4.0852371384722268 25 4.0852371384722268 26 4.0852371384722268 + 27 4.0852371384722268 28 4.0852371384722268 29 4.0852371384722268 30 4.0852371384722268 + 31 4.0852371384722268 32 4.0852371384722268 33 4.0852371384722268 34 4.0852371384722268 + 35 4.0852371384722268 36 4.0852371384722268 37 4.0852371384722268 38 4.0852371384722268 + 39 4.0852371384722268 40 4.0852371384722268 41 4.0852371384722268 42 4.0852371384722268 + 43 4.0852371384722268 44 4.0852371384722268 45 4.0852371384722268 46 4.0852371384722268 + 47 4.0852371384722268 48 4.0852371384722268 49 4.0852371384722268 50 4.0852371384722268 + 51 4.0852371384722268 52 4.0852371384722268 53 4.0852371384722268 54 4.0852371384722268 + 55 4.0852371384722268 56 4.0852371384722268 57 4.0852371384722268 58 4.0852371384722268 + 59 4.0852371384722268 60 4.0852371384722268 61 4.0852371384722268 62 4.0852371384722268 + 63 4.0852371384722268 64 4.0852371384722268 65 4.0852371384722268 66 4.0852371384722268 + 67 4.0852371384722268 68 4.0852371384722268 69 4.0852371384722268 70 4.0852371384722268 + 71 4.0852371384722268 72 4.0852371384722268 73 4.0852371384722268 74 4.0852371384722268 + 75 4.0852371384722268 76 4.0852371384722268 77 4.0852371384722268 78 4.0852371384722268 + 79 4.0852371384722268 80 4.0852371384722268 81 4.0852371384722268 82 4.0852371384722268 + 83 4.0852371384722268 84 4.0852371384722268 85 4.0852371384722268 86 4.0852371384722268 + 87 4.0852371384722268 88 4.0852371384722268 89 4.0852371384722268 90 4.0852371384722268 + 91 4.0852371384722268 92 4.0852371384722268 93 4.0852371384722268 94 4.0852371384722268 + 95 4.0852371384722268 96 4.0852371384722268 97 4.0852371384722268 98 4.0852371384722268 + 99 4.0852371384722268 100 4.0852371384722268 101 4.0852371384722268 102 4.0852371384722268 + 103 4.0852371384722268 104 4.0852371384722268 105 4.0852371384722268 106 4.0852371384722268 + 107 4.0852371384722268 108 4.0852371384722268 109 4.0852371384722268 110 4.0852371384722268 + 111 4.0852371384722268 112 4.0852371384722268 113 4.0852371384722268 114 4.0852371384722268 + 115 4.0852371384722268 116 4.0852371384722268 117 4.0852371384722268 118 4.0852371384722268 + 119 4.0852371384722268 120 4.0852371384722268 121 4.0852371384722268 122 4.0852371384722268 + 123 4.0852371384722268 124 4.0852371384722268 125 4.0852371384722268 126 4.0852371384722268 + 127 4.0852371384722268 128 4.0852371384722268; +select -ne :time1; + setAttr ".o" 64; + setAttr ".unw" 64; +select -ne :renderPartition; + setAttr -s 3 ".st"; +select -ne :renderGlobalsList1; +select -ne :defaultShaderList1; + setAttr -s 3 ".s"; +select -ne :postProcessList1; + setAttr -s 2 ".p"; +select -ne :defaultRenderUtilityList1; +select -ne :defaultRenderingList1; + setAttr -s 2 ".r"; +select -ne :defaultTextureList1; + setAttr -s 5 ".tx"; +select -ne :initialShadingGroup; + setAttr -s 2 ".dsm"; + setAttr ".ro" yes; +select -ne :initialParticleSE; + setAttr ".ro" yes; +select -ne :defaultRenderGlobals; + setAttr ".mcfr" 30; + setAttr ".ren" -type "string" "vray"; + setAttr ".an" yes; + setAttr ".fs" 1; + setAttr ".ef" 180; + setAttr ".ep" 1; + setAttr ".cpe" yes; +select -ne :defaultResolution; + setAttr ".w" 1024; + setAttr ".h" 2048; + setAttr ".pa" 1; + setAttr ".dar" 0.5; +select -ne :hardwareRenderGlobals; + setAttr ".ctrs" 256; + setAttr ".btrs" 512; + setAttr ".hwfr" 30; +select -ne :defaultHardwareRenderGlobals; + setAttr ".res" -type "string" "ntsc_4d 646 485 1.333"; +connectAttr "fx_bonfire_COL.ri" "fumeFX_A.rlio[0]"; +connectAttr ":time1.o" "fumeFX_AShape.tm"; +connectAttr "fumeFX_A.wim" "fumeFX_AShape.rndrMat"; +connectAttr "ffxParticleSource_A.msg" "fumeFX_AShape.ffxs[0]"; +connectAttr "fumeFX_AShape.acenterx" "ffxMRVol1.tx" -l on; +connectAttr "fumeFX_AShape.acentery" "ffxMRVol1.ty" -l on; +connectAttr "fumeFX_AShape.acenterz" "ffxMRVol1.tz" -l on; +connectAttr "fumeFX_AShape.awid" "ffxMRVolShape1.szx"; +connectAttr "fumeFX_AShape.ahgt" "ffxMRVolShape1.szy"; +connectAttr "fumeFX_AShape.alen" "ffxMRVolShape1.szz"; +connectAttr "ffxMRVolShape1_linkExp.out[0]" "ffxMRVolShape1.vss"; +connectAttr "ffxMRVolShape1_linkExp.out[1]" "ffxMRVolShape1.vso"; +connectAttr "fumeFX_AShape.os" "ffxWarpsHandleShape1.is"; +connectAttr ":time1.o" "ffxParticleSource_AProxy.tm"; +connectAttr "fxBonFire_particle.msg" "ffxParticleSource_AProxy.pss[0]"; +connectAttr "deleteComponent7.og" "fxBonFire_objShape.i"; +connectAttr ":time1.o" "fxBonFire_emitter.ct"; +connectAttr "geoConnector2.ocd" "fxBonFire_emitter.ocd"; +connectAttr "geoConnector2.ocl" "fxBonFire_emitter.t"; +connectAttr "geoConnector2.pos" "fxBonFire_emitter.opd"; +connectAttr "geoConnector2.vel" "fxBonFire_emitter.ovd"; +connectAttr "geoConnector2.swg" "fxBonFire_emitter.swge"; +connectAttr "fxBonFire_particleShape.ifl" "fxBonFire_emitter.full[0]"; +connectAttr "fxBonFire_particleShape.tss" "fxBonFire_emitter.dt[0]"; +connectAttr "fxBonFire_particleShape.inh" "fxBonFire_emitter.inh[0]"; +connectAttr "fxBonFire_particleShape.stt" "fxBonFire_emitter.stt[0]"; +connectAttr "fxBonFire_particleShape.sd[0]" "fxBonFire_emitter.sd[0]"; +connectAttr ":time1.o" "fxBonFire_particleShape.cti"; +connectAttr "fxBonFire_emitter.ot[0]" "fxBonFire_particleShape.npt[0]"; +connectAttr "turbulenceField2.of[0]" "fxBonFire_particleShape.ifc[0]"; +connectAttr "dragField1.of[0]" "fxBonFire_particleShape.ifc[1]"; +connectAttr "arrayMapper4.ovpp" "fxBonFire_particleShape.opacityPP"; +connectAttr "fxBonFire_particleShape.xo[0]" "fxBonFire_particleShape.lifespanPP" + ; +connectAttr "fxBonFire_particleShape.fd" "turbulenceField2.ind[0]"; +connectAttr "fxBonFire_particleShape.ppfd[0]" "turbulenceField2.ppda[0]"; +connectAttr ":time1.o" "dragField1.cti"; +connectAttr "fxBonFire_particleShape.fd" "dragField1.ind[0]"; +connectAttr "fxBonFire_particleShape.ppfd[1]" "dragField1.ppda[0]"; +connectAttr "body.di" "taiki:taiki.do"; +connectAttr "allCamera:cam_translateX.o" "allCamera:cam.tx"; +connectAttr "allCamera:cam_translateY.o" "allCamera:cam.ty"; +connectAttr "allCamera:cam_translateZ.o" "allCamera:cam.tz"; +connectAttr "allCamera:cam_rotateX.o" "allCamera:cam.rx"; +connectAttr "allCamera:cam_rotateY.o" "allCamera:cam.ry"; +connectAttr "allCamera:cam_rotateZ.o" "allCamera:cam.rz"; +connectAttr "allCamera:cam_scaleX.o" "allCamera:cam.sx"; +connectAttr "allCamera:cam_scaleY.o" "allCamera:cam.sy"; +connectAttr "allCamera:cam_scaleZ.o" "allCamera:cam.sz"; +connectAttr "allCamera:cam_visibility.o" "allCamera:cam.v"; +connectAttr "allCamera:camShape_visibility1.o" "allCamera:camShape.v"; +connectAttr "allCamera:camShape_focalLength.o" "allCamera:camShape.fl"; +connectAttr "allCamera:camShape_lensSqueezeRatio.o" "allCamera:camShape.lsr"; +connectAttr "allCamera:camShape_fStop.o" "allCamera:camShape.fs"; +connectAttr "allCamera:camShape_focusDistance.o" "allCamera:camShape.fd"; +connectAttr "allCamera:camShape_shutterAngle.o" "allCamera:camShape.sa"; +connectAttr "allCamera:camShape_centerOfInterest.o" "allCamera:camShape.coi"; +relationship "link" ":lightLinker1" ":initialShadingGroup.message" ":defaultLightSet.message"; +relationship "link" ":lightLinker1" ":initialParticleSE.message" ":defaultLightSet.message"; +relationship "link" ":lightLinker1" "fumeFX1SG.message" ":defaultLightSet.message"; +relationship "shadowLink" ":lightLinker1" ":initialShadingGroup.message" ":defaultLightSet.message"; +relationship "shadowLink" ":lightLinker1" ":initialParticleSE.message" ":defaultLightSet.message"; +relationship "shadowLink" ":lightLinker1" "fumeFX1SG.message" ":defaultLightSet.message"; +connectAttr "layerManager.dli[0]" "defaultLayer.id"; +connectAttr "renderLayerManager.rlmi[0]" "defaultRenderLayer.rlid"; +connectAttr "fumeFX_AShape.tnoisescale" "ffxTurbulenceShader1.tnoisescale"; +connectAttr "fumeFX_AShape.tnoisedet" "ffxTurbulenceShader1.tnoisedet"; +connectAttr "fumeFX_AShape.tnoisefrms" "ffxTurbulenceShader1.tnoisefrms"; +connectAttr "fumeFX_AShape.tnoiseoffset" "ffxTurbulenceShader1.tnoiseoffset"; +connectAttr "fumeFX_AShape.wid" "ffxTurbulenceShader1.w"; +connectAttr ":time1.o" "ffxTurbulenceShader1.tm"; +connectAttr "ffxMRVolShape1.iog" "fumeFX1SG.dsm" -na; +connectAttr "fumeFX_AShape.msg" "fumeFX1SG.vs"; +connectAttr "fumeFX1SG.msg" "materialInfo1.sg"; +connectAttr "fumeFX_AShape.vss" "ffxMRVolShape1_linkExp.in[0]"; +connectAttr "fumeFX_AShape.sh_vm" "ffxMRVolShape1_linkExp.in[1]"; +connectAttr ":time1.o" "ffxMRVolShape1_linkExp.tim"; +connectAttr "ffxMRVolShape1.msg" "ffxMRVolShape1_linkExp.obm"; +connectAttr ":mentalrayGlobals.msg" ":mentalrayItemsList.glb"; +connectAttr ":miDefaultOptions.msg" ":mentalrayItemsList.opt" -na; +connectAttr ":miDefaultFramebuffer.msg" ":mentalrayItemsList.fb" -na; +connectAttr ":miDefaultOptions.msg" ":mentalrayGlobals.opt"; +connectAttr ":miDefaultFramebuffer.msg" ":mentalrayGlobals.fb"; +connectAttr "place2dTexture1.o" "fractal1.uv"; +connectAttr "place2dTexture1.ofs" "fractal1.fs"; +connectAttr ":time1.o" "expression1.tim"; +connectAttr "ffxParticleSource_AProxy.msg" "expression1.obm"; +connectAttr "polySphere2.out" "deleteComponent1.ig"; +connectAttr ":time1.o" "geoConnector2.ct"; +connectAttr "fxBonFire_objShape.o" "geoConnector2.lge"; +connectAttr "fxBonFire_objShape.wm" "geoConnector2.wm"; +connectAttr "fxBonFire_objShape.msg" "geoConnector2.own"; +connectAttr "deleteComponent1.og" "deleteComponent2.ig"; +connectAttr "deleteComponent2.og" "deleteComponent3.ig"; +connectAttr "deleteComponent3.og" "deleteComponent4.ig"; +connectAttr "ramp4.msg" "arrayMapper4.cn"; +connectAttr "ramp4.oc" "arrayMapper4.cnc"; +connectAttr "fxBonFire_particleShape.ageNormalized" "arrayMapper4.vpp"; +connectAttr "deleteComponent4.og" "deleteComponent5.ig"; +connectAttr "deleteComponent5.og" "deleteComponent6.ig"; +connectAttr "layerManager.dli[1]" "body.id"; +connectAttr "renderLayerManager.rlmi[1]" "fx_bonfire_COL.rlid"; +connectAttr "deleteComponent6.og" "deleteComponent7.ig"; +connectAttr "fumeFX1SG.pa" ":renderPartition.st" -na; +connectAttr "ffxTurbulenceShader1.msg" ":defaultShaderList1.s" -na; +connectAttr "place2dTexture1.msg" ":defaultRenderUtilityList1.u" -na; +connectAttr "defaultRenderLayer.msg" ":defaultRenderingList1.r" -na; +connectAttr "fx_bonfire_COL.msg" ":defaultRenderingList1.r" -na; +connectAttr "ramp1.msg" ":defaultTextureList1.tx" -na; +connectAttr "fractal1.msg" ":defaultTextureList1.tx" -na; +connectAttr "ramp2.msg" ":defaultTextureList1.tx" -na; +connectAttr "ramp3.msg" ":defaultTextureList1.tx" -na; +connectAttr "ramp4.msg" ":defaultTextureList1.tx" -na; +connectAttr "fxBonFire_objShape.iog" ":initialShadingGroup.dsm" -na; +connectAttr "taiki:taikiShape.iog" ":initialShadingGroup.dsm" -na; +connectAttr "fxBonFire_particleShape.iog" ":initialParticleSE.dsm" -na; +// End of FRB001.fxBonFire.ma diff --git a/VFXPackage/Resources/Textures/Maya/SMO001.fxSmoke.ma b/VFXPackage/Resources/Textures/Maya/SMO001.fxSmoke.ma new file mode 100644 index 0000000..d9f3c29 --- /dev/null +++ b/VFXPackage/Resources/Textures/Maya/SMO001.fxSmoke.ma @@ -0,0 +1,8819 @@ +//Maya ASCII 2015 scene +//Name: SMO001.fxSmoke.ma +//Last modified: Wed, Apr 27, 2016 01:09:40 PM +//Codeset: 932 +requires maya "2015"; +requires -nodeType "mentalrayFramebuffer" -nodeType "mentalrayOptions" -nodeType "mentalrayGlobals" + -nodeType "mentalrayItemsList" -dataType "byteArray" "Mayatomr" "2015.0 - 3.12.1.18 "; +requires -nodeType "VRaySettingsNode" -dataType "vrayFloatVectorData" -dataType "vrayFloatVectorData" + -dataType "vrayIntData" "vrayformaya" "3.30.01"; +requires -nodeType "ffxDyna" -nodeType "ffxObjectSource" -nodeType "ffxWarpsHandle" + -nodeType "ffxTurbulenceShader" -dataType "ffxMeshData" "FumeFX" "FumeFX3.5.8-2014_07_30-PTxihnQcZP3aiJoqdo5F"; +requires "mtorsubdiv" "1.1"; +requires "maxwell" "1.6.4"; +requires "TurtleForMaya80" "4.0.0.6"; +currentUnit -l centimeter -a degree -t ntsc; +fileInfo "application" "maya"; +fileInfo "product" "Maya 2015"; +fileInfo "version" "2015"; +fileInfo "cutIdentifier" "201410051530-933320"; +fileInfo "osv" "Microsoft Windows 7 Business Edition, 64-bit Windows 7 Service Pack 1 (Build 7601)\n"; +createNode transform -s -n "persp"; + setAttr ".v" no; + setAttr ".t" -type "double3" 0.0097985391652787301 17.931954220951351 48.210861349172745 ; + setAttr ".r" -type "double3" -2.738352657088587 -1.3999999999924193 6.2138757676485144e-018 ; +createNode camera -s -n "perspShape" -p "persp"; + setAttr -k off ".v" no; + setAttr ".rnd" no; + setAttr ".fl" 31.794661288881883; + setAttr ".coi" 46.410589453617412; + setAttr ".imn" -type "string" "persp"; + setAttr ".den" -type "string" "persp_depth"; + setAttr ".man" -type "string" "persp_mask"; + setAttr ".tp" -type "double3" 0 30 0.060849364905389169 ; + setAttr ".hc" -type "string" "viewSet -p %camera"; +createNode transform -s -n "top"; + setAttr ".v" no; + setAttr ".t" -type "double3" 0 100.1 0 ; + setAttr ".r" -type "double3" -89.999999999999986 0 0 ; +createNode camera -s -n "topShape" -p "top"; + setAttr -k off ".v" no; + setAttr ".rnd" no; + setAttr ".coi" 100.1; + setAttr ".ow" 30; + setAttr ".imn" -type "string" "top"; + setAttr ".den" -type "string" "top_depth"; + setAttr ".man" -type "string" "top_mask"; + setAttr ".hc" -type "string" "viewSet -t %camera"; + setAttr ".o" yes; +createNode transform -s -n "front"; + setAttr ".v" no; + setAttr ".t" -type "double3" 0.14137312281154948 -0.14749373981009542 100.1001514708794 ; +createNode camera -s -n "frontShape" -p "front"; + setAttr -k off ".v" no; + setAttr ".rnd" no; + setAttr ".coi" 100.1; + setAttr ".ow" 1.9674466980088867; + setAttr ".imn" -type "string" "front"; + setAttr ".den" -type "string" "front_depth"; + setAttr ".man" -type "string" "front_mask"; + setAttr ".hc" -type "string" "viewSet -f %camera"; + setAttr ".o" yes; +createNode transform -s -n "side"; + setAttr ".v" no; + setAttr ".t" -type "double3" 100.10000000000002 0 2.2226664952995633e-014 ; + setAttr ".r" -type "double3" 0 89.999999999999986 0 ; +createNode camera -s -n "sideShape" -p "side"; + setAttr -k off ".v" no; + setAttr ".rnd" no; + setAttr ".coi" 100.1; + setAttr ".ow" 36.169997574581622; + setAttr ".imn" -type "string" "side"; + setAttr ".den" -type "string" "side_depth"; + setAttr ".man" -type "string" "side_mask"; + setAttr ".hc" -type "string" "viewSet -s %camera"; + setAttr ".o" yes; +createNode transform -n "normalLightGrp"; + setAttr ".v" no; + setAttr ".t" -type "double3" 0 30 0 ; +createNode transform -n "normalLightG" -p "normalLightGrp"; + setAttr -s 3 ".rlio"; + setAttr -s 3 ".rlio"; + setAttr ".r" -type "double3" -89.999999999999986 0 0 ; +createNode directionalLight -n "normalLightGShape" -p "normalLightG"; + setAttr -k off ".v"; + setAttr ".cl" -type "float3" 0 1 0.50196081 ; + setAttr ".in" 5; + setAttr ".sc" -type "float3" 0.25 0.25 0.5 ; + setAttr ".lls" 10; + setAttr ".phi" 8000; +createNode transform -n "normalLightR" -p "normalLightGrp"; + setAttr -s 3 ".rlio"; + setAttr -s 3 ".rlio"; + setAttr ".r" -type "double3" -89.999999999999972 3.1805546814635183e-015 -90 ; +createNode directionalLight -n "normalLightRShape" -p "normalLightR"; + setAttr -k off ".v"; + setAttr ".cl" -type "float3" 1 0 1 ; + setAttr ".in" 5; + setAttr ".sc" -type "float3" 0.25 0.25 0.5 ; + setAttr ".lls" 10; + setAttr ".phi" 8000; +createNode transform -n "normalLightY" -p "normalLightGrp"; + setAttr ".r" -type "double3" -89.999999999999972 -3.1805546814635168e-015 -45.000000000000014 ; +createNode directionalLight -n "normalLightYShape" -p "normalLightY"; + setAttr -k off ".v"; + setAttr ".cl" -type "float3" 1 1 0 ; + setAttr ".in" 5; + setAttr ".sc" -type "float3" 0.125 0.125 0.25 ; + setAttr ".lls" 10; + setAttr ".phi" 8000; +createNode transform -n "normalLightB" -p "normalLightGrp"; + setAttr -s 4 ".rlio"; + setAttr -s 4 ".rlio"; + setAttr ".r" -type "double3" -89.999999999999943 0 -225 ; +createNode directionalLight -n "normalLightBShape" -p "normalLightB"; + setAttr -k off ".v"; + setAttr ".cl" -type "float3" 0 0 1 ; + setAttr ".in" 5; + setAttr ".sc" -type "float3" 0.25 0.25 0.5 ; + setAttr ".lls" 10; + setAttr ".phi" 8000; +createNode transform -n "keyLight"; + setAttr ".v" no; + setAttr -s 3 ".rlio"; + setAttr -s 3 ".rlio"; + setAttr ".t" -type "double3" 0 30 0 ; + setAttr ".r" -type "double3" -5 14.999999999999998 0 ; +createNode directionalLight -n "keyLightShape" -p "keyLight"; + setAttr -k off ".v"; + setAttr ".in" 5; + setAttr ".lls" 10; + setAttr ".phi" 8000; +createNode transform -n "fxSmokeGrp"; +createNode transform -n "fxSmoke_obj" -p "fxSmokeGrp"; + setAttr ".tmp" yes; + setAttr ".t" -type "double3" 0 17.25 8.8817841970012523e-016 ; + setAttr ".r" -type "double3" 45 45 45 ; +createNode mesh -n "fxSmoke_objShape" -p "fxSmoke_obj"; + setAttr -k off ".v"; + setAttr ".vir" yes; + setAttr ".vif" yes; + setAttr ".pv" -type "double2" 0.50000005960464478 0.90000006556510925 ; + setAttr ".uvst[0].uvsn" -type "string" "map1"; + setAttr -s 104 ".uvst[0].uvsp[0:103]" -type "float2" 0 0.80000013 0.050000001 + 0.80000013 0.1 0.80000013 0.15000001 0.80000013 0.2 0.80000013 0.25 0.80000013 0.30000001 + 0.80000013 0.35000002 0.80000013 0.40000004 0.80000013 0.45000005 0.80000013 0.50000006 + 0.80000013 0.55000007 0.80000013 0.60000008 0.80000013 0.6500001 0.80000013 0.70000011 + 0.80000013 0.75000012 0.80000013 0.80000013 0.80000013 0.85000014 0.80000013 0.90000015 + 0.80000013 0.95000017 0.80000013 1.000000119209 0.80000013 0 0.85000014 0.050000001 + 0.85000014 0.1 0.85000014 0.15000001 0.85000014 0.2 0.85000014 0.25 0.85000014 0.30000001 + 0.85000014 0.35000002 0.85000014 0.40000004 0.85000014 0.45000005 0.85000014 0.50000006 + 0.85000014 0.55000007 0.85000014 0.60000008 0.85000014 0.6500001 0.85000014 0.70000011 + 0.85000014 0.75000012 0.85000014 0.80000013 0.85000014 0.85000014 0.85000014 0.90000015 + 0.85000014 0.95000017 0.85000014 1.000000119209 0.85000014 0 0.90000015 0.050000001 + 0.90000015 0.1 0.90000015 0.15000001 0.90000015 0.2 0.90000015 0.25 0.90000015 0.30000001 + 0.90000015 0.35000002 0.90000015 0.40000004 0.90000015 0.45000005 0.90000015 0.50000006 + 0.90000015 0.55000007 0.90000015 0.60000008 0.90000015 0.6500001 0.90000015 0.70000011 + 0.90000015 0.75000012 0.90000015 0.80000013 0.90000015 0.85000014 0.90000015 0.90000015 + 0.90000015 0.95000017 0.90000015 1.000000119209 0.90000015 0 0.95000017 0.050000001 + 0.95000017 0.1 0.95000017 0.15000001 0.95000017 0.2 0.95000017 0.25 0.95000017 0.30000001 + 0.95000017 0.35000002 0.95000017 0.40000004 0.95000017 0.45000005 0.95000017 0.50000006 + 0.95000017 0.55000007 0.95000017 0.60000008 0.95000017 0.6500001 0.95000017 0.70000011 + 0.95000017 0.75000012 0.95000017 0.80000013 0.95000017 0.85000014 0.95000017 0.90000015 + 0.95000017 0.95000017 0.95000017 1.000000119209 0.95000017 0.025 1 0.075000003 1 + 0.125 1 0.175 1 0.22500001 1 0.27500001 1 0.32500002 1 0.375 1 0.42500001 1 0.47499999 + 1 0.52500004 1 0.57499999 1 0.625 1 0.67500001 1 0.72500002 1 0.77500004 1 0.82499999 + 1 0.875 1 0.92500001 1 0.97500002 1; + setAttr ".cuvs" -type "string" "map1"; + setAttr ".dcc" -type "string" "Ambient+Diffuse"; + setAttr ".covm[0]" 0 1 1; + setAttr ".cdvm[0]" 0 1 1; + setAttr -s 80 ".pt[1:80]" -type "float3" 0.029811969 -0.24028726 -0.14163665 + 0.21392725 -0.11381301 0.13411529 -0.12095145 -0.0091085974 -0.21042278 -0.001691583 + 0.20819676 0.037408505 -0.17464043 0.1897864 0.21132793 0.19632147 -0.091036119 -0.083225243 + 0.20995137 0.10208523 -0.02779332 -0.23893392 -0.14842029 -0.18998857 0.0053891246 + -0.13212021 -0.044121522 0.011269346 0.053565536 0.033528171 -0.015387923 0.040696785 + 0.046003848 -0.19525519 -0.20158158 -0.038667671 0.22214228 0.12494762 -0.029479116 + 0.044962663 0.094262742 -0.052711595 -0.1496103 0.082494609 -0.040322017 0.097224265 + -0.11522252 0.030026453 -0.16444384 -0.03102047 0.21172309 0.037339341 -0.10626388 + 0.16141379 0.14885208 -0.06580139 0.11623302 -0.12445433 -0.21902908 0.16820338 -0.016123848 + -0.1453104 0.14549212 0.15561801 -0.15100381 -0.15945615 -0.023868728 -0.18385857 + 0.19069301 -0.24336618 0.15564583 0.014213598 0.20942953 0.12158924 -0.016240573 + -0.093672842 0.10204177 0.11645461 -0.024982492 0.23682456 0.07331758 -0.19445257 + -0.22210185 0.0075484342 0.054731976 0.082551301 0.16736205 -0.24898323 0.12244658 + 0.021133505 0.10104167 -0.17312892 0.057065606 0.061298128 0.088872418 -0.040636212 + -0.022272125 -0.086877503 -0.12184293 -0.0054107266 -0.21219222 0.082991518 0.07338468 + -0.057184182 0.10276183 0.09376289 0.14172004 0.02924829 0.12051902 -0.080394991 + 0.0016215247 0.209261 0.058362942 -0.026004011 -0.019219128 0.047818199 -0.0013573357 + 0.081320301 -0.11068389 0.16148856 -0.020905778 -0.17027868 -0.20973998 0.10201538 + 0.066331103 0.21675195 0.11880434 -0.092506208 -0.11348905 0.17660949 0.18798111 + -0.021688612 0.24270906 -0.14464246 0.0065446133 -0.1245795 0.15059172 0.010850796 + -0.11361695 -0.103663 -0.086887889 -0.14027551 0.0450202 -0.074583076 0.060736503 + 0.22273979 0.053411108 -0.22181822 0.099803798 -0.099751525 -0.11839929 -0.22871354 + 0.070739411 0.0051322659 -0.22722898 0.13950799 -0.1332363 0.22516833 -0.10081518 + 0.036045298 -0.16170451 -0.14042662 0.11753812 0.17244035 -0.19164534 -0.025004232 + 0.14381792 0.16735436 0.18887883 -0.15071806 0.083047688 0.24986091 -0.22998336 -0.21792193 + -0.19702584 0.2312732 0.096231394 0.060187835 0.18505062 -0.118968 -0.049400549 -0.096644238 + -0.025186382 -0.21411045 0.18722893 -0.19114386 -0.082696997 0.089387164 0.24053681 + 0.15732662 0.083471224 0.110108 0.14754362 -0.020606617 -0.020934122 -0.23512599 + 0.057778791 -0.025198249 -0.011694447 0.027237367 0.22629932 -0.019682189 0.22742563 + -0.23460004 0.054239661 -0.072761796 0.10603116 -0.082003713 -0.18718156 0.18688767 + 0.18190394 -0.095274501 -0.12051724 0.16625753 0.2137797 -0.2368376 -0.21341342 -0.12548219 + 0.10950955 -0.03243285 0.2054543 -0.2065918 0.028380785 0.19232073 0.02271319 0.054676905 + 0.2471932 0.036715575 -0.06370768 -0.2196956 0.16252506 0.042022489 0.069444142 -0.20395581 + 0.075600155 0.20164192 -0.049422614 0.17597304 0.14196758 -0.15585423; + setAttr -s 81 ".vt[0:80]" 1.9403718e-005 -0.19909577 -8.0674936e-006 + 1.6408712e-005 -0.19909577 -1.5196623e-005 1.1954604e-005 -0.19909577 -2.0828254e-005 + 6.2077784e-006 -0.19909577 -2.45912e-005 -1.0220411e-007 -0.19909577 -2.5871122e-005 + -6.4121923e-006 -0.19909577 -2.45912e-005 -1.2107828e-005 -0.19909577 -2.0828254e-005 + -1.6613118e-005 -0.19909577 -1.5196623e-005 -1.9608129e-005 -0.19909577 -8.0674936e-006 + -2.063206e-005 -0.19909577 -1.7040091e-007 -1.9608129e-005 -0.19909577 7.7266741e-006 + -1.6664311e-005 -0.19909577 1.4855802e-005 -1.2107828e-005 -0.19909577 2.0487438e-005 + -6.4377891e-006 -0.19909577 2.4250394e-005 -1.0220472e-007 -0.19909577 2.5530317e-005 + 6.2333784e-006 -0.19909577 2.4250394e-005 1.1954604e-005 -0.19909577 2.0487438e-005 + 1.6459904e-005 -0.19909577 1.4855802e-005 1.9403718e-005 -0.19909577 7.7266741e-006 + 2.0427648e-005 -0.19909577 -1.7040091e-007 0.19526404 -0.11042526 -0.063445464 0.16610205 -0.11042526 -0.12068011 + 0.1206799 -0.11042526 -0.16610226 0.063445248 -0.11042526 -0.19526413 -7.5967023e-008 -0.11042526 -0.20531338 + -0.063445434 -0.11042526 -0.19526413 -0.12068008 -0.11042526 -0.16610226 -0.16610223 -0.11042526 -0.12068003 + -0.19526403 -0.11042526 -0.063445464 -0.20531335 -0.11042526 -1.0170533e-007 -0.19526403 -0.11042526 0.063445225 + -0.16610223 -0.11042526 0.12067987 -0.12068003 -0.11042526 0.16610202 -0.063445434 -0.11042526 0.19526389 + -8.2085968e-008 -0.11042526 0.20531315 0.063445248 -0.11042526 0.19526385 0.12067986 -0.11042526 0.16610202 + 0.16610205 -0.11042526 0.12067983 0.19526383 -0.11042526 0.063445225 0.20531312 -0.11042526 -1.0170533e-007 + 0.25933018 -0.00093577558 -0.084261537 0.22059932 -0.00093577558 -0.16027498 0.16027486 -0.00093577558 -0.22059937 + 0.084261373 -0.00093577558 -0.25933027 -5.1009515e-008 -0.00093577558 -0.27267596 + -0.084261522 -0.00093577558 -0.25933027 -0.16027492 -0.00093577558 -0.22059937 -0.22059932 -0.00093577558 -0.16027491 + -0.25933027 -0.00093577558 -0.084261492 -0.27267587 -0.00093577558 -6.8012675e-008 + -0.25933027 -0.00093577558 0.084261335 -0.22059932 -0.00093577558 0.16027477 -0.16027488 -0.00093577558 0.22059917 + -0.084261477 -0.00093577558 0.25933003 -5.9135861e-008 -0.00093577558 0.27267572 + 0.084261358 -0.00093577558 0.25933003 0.16027477 -0.00093577558 0.22059913 0.22059914 -0.00093577558 0.16027474 + 0.25933009 -0.00093577558 0.084261328 0.27267569 -0.00093577558 -6.8012675e-008 0.19794901 0.11820355 -0.064317659 + 0.16838554 0.11820355 -0.12233931 0.12233923 0.11820355 -0.16838571 0.064317524 0.11820355 -0.19794914 + -4.15756e-008 0.11820355 -0.20813611 -0.064317629 0.11820355 -0.19794913 -0.12233927 0.11820355 -0.16838568 + -0.16838565 0.11820355 -0.12233928 -0.1979491 0.11820355 -0.064317651 -0.20813605 0.11820355 -5.5558431e-008 + -0.1979491 0.11820355 0.064317487 -0.16838565 0.11820355 0.1223392 -0.12233925 0.11820355 0.16838548 + -0.064317629 0.11820355 0.19794898 -4.7778538e-008 0.11820355 0.20813592 0.06431751 0.11820355 0.19794898 + 0.12233916 0.11820355 0.16838548 0.16838551 0.11820355 0.12233917 0.19794896 0.11820355 0.064317487 + 0.2081359 0.11820355 -5.5558431e-008 -4.8589396e-008 0.20399606 -6.4785844e-008; + setAttr -s 160 ".ed[0:159]" 0 1 0 1 2 0 2 3 0 3 4 0 4 5 0 5 6 0 6 7 0 + 7 8 0 8 9 0 9 10 0 10 11 0 11 12 0 12 13 0 13 14 0 14 15 0 15 16 0 16 17 0 17 18 0 + 18 19 0 19 0 0 20 21 1 21 22 1 22 23 1 23 24 1 24 25 1 25 26 1 26 27 1 27 28 1 28 29 1 + 29 30 1 30 31 1 31 32 1 32 33 1 33 34 1 34 35 1 35 36 1 36 37 1 37 38 1 38 39 1 39 20 1 + 40 41 1 41 42 1 42 43 1 43 44 1 44 45 1 45 46 1 46 47 1 47 48 1 48 49 1 49 50 1 50 51 1 + 51 52 1 52 53 1 53 54 1 54 55 1 55 56 1 56 57 1 57 58 1 58 59 1 59 40 1 60 61 1 61 62 1 + 62 63 1 63 64 1 64 65 1 65 66 1 66 67 1 67 68 1 68 69 1 69 70 1 70 71 1 71 72 1 72 73 1 + 73 74 1 74 75 1 75 76 1 76 77 1 77 78 1 78 79 1 79 60 1 0 20 1 1 21 1 2 22 1 3 23 1 + 4 24 1 5 25 1 6 26 1 7 27 1 8 28 1 9 29 1 10 30 1 11 31 1 12 32 1 13 33 1 14 34 1 + 15 35 1 16 36 1 17 37 1 18 38 1 19 39 1 20 40 1 21 41 1 22 42 1 23 43 1 24 44 1 25 45 1 + 26 46 1 27 47 1 28 48 1 29 49 1 30 50 1 31 51 1 32 52 1 33 53 1 34 54 1 35 55 1 36 56 1 + 37 57 1 38 58 1 39 59 1 40 60 1 41 61 1 42 62 1 43 63 1 44 64 1 45 65 1 46 66 1 47 67 1 + 48 68 1 49 69 1 50 70 1 51 71 1 52 72 1 53 73 1 54 74 1 55 75 1 56 76 1 57 77 1 58 78 1 + 59 79 1 60 80 1 61 80 1 62 80 1 63 80 1 64 80 1 65 80 1 66 80 1 67 80 1 68 80 1 69 80 1 + 70 80 1 71 80 1 72 80 1 73 80 1 74 80 1 75 80 1 76 80 1 77 80 1 78 80 1 79 80 1; + setAttr -s 80 -ch 300 ".fc[0:79]" -type "polyFaces" + f 4 0 81 -21 -81 + mu 0 4 0 1 22 21 + f 4 1 82 -22 -82 + mu 0 4 1 2 23 22 + f 4 2 83 -23 -83 + mu 0 4 2 3 24 23 + f 4 3 84 -24 -84 + mu 0 4 3 4 25 24 + f 4 4 85 -25 -85 + mu 0 4 4 5 26 25 + f 4 5 86 -26 -86 + mu 0 4 5 6 27 26 + f 4 6 87 -27 -87 + mu 0 4 6 7 28 27 + f 4 7 88 -28 -88 + mu 0 4 7 8 29 28 + f 4 8 89 -29 -89 + mu 0 4 8 9 30 29 + f 4 9 90 -30 -90 + mu 0 4 9 10 31 30 + f 4 10 91 -31 -91 + mu 0 4 10 11 32 31 + f 4 11 92 -32 -92 + mu 0 4 11 12 33 32 + f 4 12 93 -33 -93 + mu 0 4 12 13 34 33 + f 4 13 94 -34 -94 + mu 0 4 13 14 35 34 + f 4 14 95 -35 -95 + mu 0 4 14 15 36 35 + f 4 15 96 -36 -96 + mu 0 4 15 16 37 36 + f 4 16 97 -37 -97 + mu 0 4 16 17 38 37 + f 4 17 98 -38 -98 + mu 0 4 17 18 39 38 + f 4 18 99 -39 -99 + mu 0 4 18 19 40 39 + f 4 19 80 -40 -100 + mu 0 4 19 20 41 40 + f 4 20 101 -41 -101 + mu 0 4 21 22 43 42 + f 4 21 102 -42 -102 + mu 0 4 22 23 44 43 + f 4 22 103 -43 -103 + mu 0 4 23 24 45 44 + f 4 23 104 -44 -104 + mu 0 4 24 25 46 45 + f 4 24 105 -45 -105 + mu 0 4 25 26 47 46 + f 4 25 106 -46 -106 + mu 0 4 26 27 48 47 + f 4 26 107 -47 -107 + mu 0 4 27 28 49 48 + f 4 27 108 -48 -108 + mu 0 4 28 29 50 49 + f 4 28 109 -49 -109 + mu 0 4 29 30 51 50 + f 4 29 110 -50 -110 + mu 0 4 30 31 52 51 + f 4 30 111 -51 -111 + mu 0 4 31 32 53 52 + f 4 31 112 -52 -112 + mu 0 4 32 33 54 53 + f 4 32 113 -53 -113 + mu 0 4 33 34 55 54 + f 4 33 114 -54 -114 + mu 0 4 34 35 56 55 + f 4 34 115 -55 -115 + mu 0 4 35 36 57 56 + f 4 35 116 -56 -116 + mu 0 4 36 37 58 57 + f 4 36 117 -57 -117 + mu 0 4 37 38 59 58 + f 4 37 118 -58 -118 + mu 0 4 38 39 60 59 + f 4 38 119 -59 -119 + mu 0 4 39 40 61 60 + f 4 39 100 -60 -120 + mu 0 4 40 41 62 61 + f 4 40 121 -61 -121 + mu 0 4 42 43 64 63 + f 4 41 122 -62 -122 + mu 0 4 43 44 65 64 + f 4 42 123 -63 -123 + mu 0 4 44 45 66 65 + f 4 43 124 -64 -124 + mu 0 4 45 46 67 66 + f 4 44 125 -65 -125 + mu 0 4 46 47 68 67 + f 4 45 126 -66 -126 + mu 0 4 47 48 69 68 + f 4 46 127 -67 -127 + mu 0 4 48 49 70 69 + f 4 47 128 -68 -128 + mu 0 4 49 50 71 70 + f 4 48 129 -69 -129 + mu 0 4 50 51 72 71 + f 4 49 130 -70 -130 + mu 0 4 51 52 73 72 + f 4 50 131 -71 -131 + mu 0 4 52 53 74 73 + f 4 51 132 -72 -132 + mu 0 4 53 54 75 74 + f 4 52 133 -73 -133 + mu 0 4 54 55 76 75 + f 4 53 134 -74 -134 + mu 0 4 55 56 77 76 + f 4 54 135 -75 -135 + mu 0 4 56 57 78 77 + f 4 55 136 -76 -136 + mu 0 4 57 58 79 78 + f 4 56 137 -77 -137 + mu 0 4 58 59 80 79 + f 4 57 138 -78 -138 + mu 0 4 59 60 81 80 + f 4 58 139 -79 -139 + mu 0 4 60 61 82 81 + f 4 59 120 -80 -140 + mu 0 4 61 62 83 82 + f 3 60 141 -141 + mu 0 3 63 64 84 + f 3 61 142 -142 + mu 0 3 64 65 85 + f 3 62 143 -143 + mu 0 3 65 66 86 + f 3 63 144 -144 + mu 0 3 66 67 87 + f 3 64 145 -145 + mu 0 3 67 68 88 + f 3 65 146 -146 + mu 0 3 68 69 89 + f 3 66 147 -147 + mu 0 3 69 70 90 + f 3 67 148 -148 + mu 0 3 70 71 91 + f 3 68 149 -149 + mu 0 3 71 72 92 + f 3 69 150 -150 + mu 0 3 72 73 93 + f 3 70 151 -151 + mu 0 3 73 74 94 + f 3 71 152 -152 + mu 0 3 74 75 95 + f 3 72 153 -153 + mu 0 3 75 76 96 + f 3 73 154 -154 + mu 0 3 76 77 97 + f 3 74 155 -155 + mu 0 3 77 78 98 + f 3 75 156 -156 + mu 0 3 78 79 99 + f 3 76 157 -157 + mu 0 3 79 80 100 + f 3 77 158 -158 + mu 0 3 80 81 101 + f 3 78 159 -159 + mu 0 3 81 82 102 + f 3 79 140 -160 + mu 0 3 82 83 103; + setAttr ".cd" -type "dataPolyComponent" Index_Data Edge 0 ; + setAttr ".cvd" -type "dataPolyComponent" Index_Data Vertex 0 ; + setAttr ".hfd" -type "dataPolyComponent" Index_Data Face 0 ; +createNode transform -n "fxSmoke_fields" -p "fxSmokeGrp"; + setAttr ".tmp" yes; + setAttr ".t" -type "double3" 0 17.5 0 ; +createNode dragField -n "fxSmoke_dragField" -p "fxSmoke_fields"; + setAttr ".mag" 15; + setAttr ".att" 0.1; + setAttr ".fc[0]" 0 1 1; + setAttr ".amag[0]" 0 1 1; + setAttr ".crad[0]" 0 1 1; + setAttr ".spa" 0.1; +createNode radialField -n "fxSmoke_radialField" -p "fxSmoke_fields"; + setAttr ".mag" 0.1; + setAttr ".att" 0.1; + setAttr ".max" 20; + setAttr ".umd" yes; + setAttr ".fc[0]" 0 1 1; + setAttr ".amag[0]" 0 1 1; + setAttr ".crad[0]" 0 1 1; +createNode transform -n "fxSmoke_obj_source" -p "fxSmokeGrp"; +createNode ffxObjectSource -n "fxSmoke_obj_sourceProxy" -p "fxSmoke_obj_source"; + setAttr -k off ".v"; + setAttr ".ics" 1; + setAttr ".ftype" 0; + setAttr ".objvel" 0.10000000149011612; + setAttr ".turbamount" 0; + setAttr ".turbscale" 3; + setAttr ".rat" 100; +instanceable -a 0; +createNode transform -n "smoke" -p "fxSmokeGrp"; + setAttr -s 3 ".rlio"; + setAttr -s 3 ".rlio"; + setAttr ".t" -type "double3" -0.02378594119255454 7.5 0 ; + setAttr ".r" -type "double3" 0 180 0 ; +createNode ffxDyna -n "smokeShape" -p "smoke"; + setAttr -k off ".v"; + setAttr ".vir" yes; + setAttr ".vif" yes; + setAttr ".ppopath" -type "string" "Y:/IG/proj/XEF/cache/ffxCache/SMO/001/fxSmoke/SMO001.fxSmoke.v20_smoke/SMO001.fxSmoke.v20_smoke_pp..fxd"; + setAttr ".wopath" -type "string" "Y:/IG/proj/XEF/cache/ffxCache/SMO/001/fxSmoke/SMO001.fxSmoke.v20_smoke/SMO001.fxSmoke.v20_smoke_wt..fxd"; + setAttr ".sp" 0.059999998658895493; + setAttr ".wid" 20; + setAttr ".len" 20; + setAttr ".hgt" 20; + setAttr ".awid" 13.380000114440918; + setAttr ".alen" 13.619999885559082; + setAttr ".ahgt" 13.559999465942383; + setAttr ".acenter" -type "float3" -0.006696701 9.7830029 0.54735756 ; + setAttr ".endfr" 128; + setAttr ".pef" 128; + setAttr ".vptupd" 1; + setAttr ".opath" -type "string" "Y:/IG/proj/XEF/cache/ffxCache/SMO/001/fxSmoke/SMO001.fxSmoke.v20_smoke/SMO001.fxSmoke.v20_smoke..fxd"; + setAttr ".ropath" -type "string" "Y:/IG/proj/XEF/cache/ffxCache/SMO/001/fxSmoke/SMO001.fxSmoke.v20_smoke/SMO001.fxSmoke.v20_smoke.0040.fxd"; + setAttr ".iopa" -type "string" "Y:/IG/proj/XEF/cache/ffxCache/SMO/001/fxSmoke/SMO001.fxSmoke.v20_smoke/SMO001.fxSmoke.v20_smoke..fim"; + setAttr ".pt_im" -type "string" "Y:/IG/proj/XEF/cache/ffxCache/SMO/001/fxSmoke/SMO001.fxSmoke.v20_smoke/SMO001.fxSmoke.v20_smoke.0040.fim"; + setAttr ".maxiter" 100; + setAttr ".ts" 0.25; + setAttr ".vort" 0.25; + setAttr ".tnoisefrms" 50; + setAttr ".tnoiseoffset" -10; + setAttr ".simfuel" no; + setAttr ".brate" 25; + setAttr ".bratevar" 0.40000000596046448; + setAttr ".expan" 0.15000000596046448; + setAttr ".firecrtssmoke" yes; + setAttr ".smokedens" 4.029304027557373; + setAttr ".smokebuoy" -0.10000000149011612; + setAttr ".dissipmindens" 0.30000001192092896; + setAttr ".smokediff" 0.0020000000949949026; + setAttr ".tempbuoy" 0.0010000000474974513; + setAttr ".xtraDtl" 1; + setAttr ".latframes" 10; + setAttr ".ppce" 150; + setAttr -s 2 ".if"; + setAttr -s 5 ".lite"; + setAttr ".sh_sns" 5; + setAttr ".sh_jit" 5; + setAttr ".sh_ft" 1; + setAttr ".sh_fs" 0.25; + setAttr ".sh_sa" yes; + setAttr ".sh_dfr" no; + setAttr ".sh_brig" 0.69999998807907104; + setAttr ".sh_fro" 1.5; + setAttr ".sh_smn" 0.5; + setAttr ".sh_smx" 50; + setAttr ".sh_sac" -type "float3" 0.5 0.5 0.5 ; + setAttr ".sh_smo" 0.15000000596046448; + setAttr ".sh_vfo" 0.85000002384185791; + setAttr ".sh_scs" yes; + setAttr ".sh_srs" yes; + setAttr ".sh_flc" -type "float3" 1 0 0 ; + setAttr ".sh_flo" 1.8686869144439697; + setAttr -s 8 ".sh_fi_cl_tb"; + setAttr ".sh_fi_cl_tb[0].sh_fi_cl_tbp" 0.12855209410190582; + setAttr ".sh_fi_cl_tb[0].sh_fi_cl_tbcv" -type "float3" 1 0.31275636 0.059000015 ; + setAttr ".sh_fi_cl_tb[1].sh_fi_cl_tbp" 1; + setAttr ".sh_fi_cl_tb[1].sh_fi_cl_tbcv" -type "float3" 0.061000001 0.061000001 0.061000001 ; + setAttr ".sh_fi_cl_tb[2].sh_fi_cl_tbp" 0.067658998072147369; + setAttr ".sh_fi_cl_tb[2].sh_fi_cl_tbcv" -type "float3" 1 0.5638032 0.17400002 ; + setAttr ".sh_fi_cl_tb[3].sh_fi_cl_tbp" 0.19485791027545929; + setAttr ".sh_fi_cl_tb[3].sh_fi_cl_tbcv" -type "float3" 1 0.80898339 0 ; + setAttr ".sh_fi_cl_tb[4].sh_fi_cl_tbp" 0.78890395164489746; + setAttr ".sh_fi_cl_tb[4].sh_fi_cl_tbcv" -type "float3" 0.093999997 0.055529129 0.021150002 ; + setAttr ".sh_fi_cl_tb[5].sh_fi_cl_tbcv" -type "float3" 0.077410698 0.058279399 0.041182801 ; + setAttr ".sh_fi_cl_tb[6].sh_fi_cl_tbp" 0.63328820466995239; + setAttr ".sh_fi_cl_tb[6].sh_fi_cl_tbcv" -type "float3" 0.85317802 0.30961901 0.036604099 ; + setAttr ".sh_fi_cl_tb[7].sh_fi_cl_tbp" 0.24357239902019501; + setAttr ".sh_fi_cl_tb[7].sh_fi_cl_tbcv" -type "float3" 0.92284399 0.33293599 0.038022202 ; + setAttr -s 4 ".sh_fi_op_tb[0:3]" 0 0.001 1 0.12173913 0.68000001 + 1 0.17391305 0.22 1 1 0 1; + setAttr -s 4 ".sh_sm_cl_tb"; + setAttr ".sh_sm_cl_tb[0].sh_sm_cl_tbcv" -type "float3" 0.1 0.1 0.1 ; + setAttr ".sh_sm_cl_tb[1].sh_sm_cl_tbp" 1; + setAttr ".sh_sm_cl_tb[1].sh_sm_cl_tbcv" -type "float3" 1 1 1 ; + setAttr ".sh_sm_cl_tb[2].sh_sm_cl_tbp" 0.26086956262588501; + setAttr ".sh_sm_cl_tb[2].sh_sm_cl_tbcv" -type "float3" 1.1 1.1 1.1 ; + setAttr ".sh_sm_cl_tb[3].sh_sm_cl_tbp" 0.086956523358821869; + setAttr ".sh_sm_cl_tb[3].sh_sm_cl_tbcv" -type "float3" 0.57777798 0.57777798 0.57777798 ; + setAttr -s 4 ".sh_sm_op_tb[1:4]" 1 1 1 0.28709677 1 1 0.11774193 + 0.70198673 1 0.0064516128 0.2781457 1; + setAttr -s 256 ".sh_fi_cl_ar"; + setAttr ".sh_fi_cl_ar[0:165]" -type "float3" 0.077410698 0.058279399 0.041182801 + 0.13088471 0.087579951 0.048880994 0.18435872 0.11688051 0.056579184 0.23783271 0.14618108 + 0.064277373 0.2913067 0.17548163 0.071975559 0.34478068 0.20478219 0.079673752 0.39825472 + 0.23408274 0.087371945 0.45172873 0.2633833 0.095070139 0.50520271 0.29268387 0.10276832 + 0.55867672 0.32198441 0.11046652 0.61215067 0.35128495 0.11816471 0.66562474 0.38058552 + 0.1258629 0.71909875 0.40988609 0.13356109 0.77257276 0.43918666 0.1412593 0.82604676 + 0.4684872 0.14895749 0.87952077 0.49778774 0.15665567 0.93299478 0.52708834 0.16435385 + 0.98646873 0.55638891 0.17205206 1 0.5517267 0.168468 1 0.53555906 0.1610619 1 0.51939142 + 0.15365578 1 0.50322378 0.1462497 1 0.48705614 0.1388436 1 0.47088853 0.1314375 1 + 0.45472082 0.12403136 1 0.43855321 0.11662527 1 0.42238557 0.10921916 1 0.40621793 + 0.10181306 1 0.39005029 0.094406977 1 0.37388265 0.087000877 1 0.35771504 0.079594769 + 1 0.34154737 0.072188668 1 0.32537976 0.064782567 1 0.31919011 0.05823506 1 0.34853879 + 0.054745585 1 0.37788749 0.051256105 1 0.40723616 0.04776663 1 0.43658483 0.044277154 + 1 0.4659335 0.040787674 1 0.4952822 0.037298199 1 0.52463084 0.033808723 1 0.55397952 + 0.030319246 1 0.58332825 0.026829772 1 0.61267692 0.023340294 1 0.64202559 0.019850818 + 1 0.67137426 0.016361341 1 0.70072293 0.012871863 1 0.73007166 0.0093823867 1 0.75942045 + 0.0058928956 1 0.78876913 0.0024034223 0.9980669 0.79705602 0.00095264445 0.99185574 + 0.75873369 0.0040134722 0.98564458 0.72041136 0.0070743002 0.97943342 0.68208903 + 0.010135128 0.97322226 0.6437667 0.013195955 0.96701109 0.60544437 0.016256783 0.96080005 + 0.5671221 0.01931761 0.95458889 0.52879977 0.022378439 0.94837773 0.49047744 0.025439268 + 0.94216657 0.45215511 0.028500095 0.93595546 0.41383284 0.03156092 0.9297443 0.37551048 + 0.034621749 0.92353314 0.33718815 0.037682578 0.92222071 0.3327274 0.038009513 0.9215197 + 0.33249277 0.037995245 0.92081869 0.33225814 0.037980977 0.92011768 0.3320235 0.037966706 + 0.91941667 0.33178887 0.037952434 0.91871566 0.33155423 0.037938166 0.91801465 0.33131963 + 0.037923895 0.91731358 0.33108497 0.037909627 0.91661257 0.33085036 0.037895359 0.91591156 + 0.33061573 0.037881084 0.91521055 0.3303811 0.037866816 0.91450948 0.33014646 0.037852544 + 0.91380847 0.32991186 0.037838276 0.91310751 0.32967719 0.037824009 0.91240644 0.32944259 + 0.037809737 0.91170543 0.32920796 0.037795469 0.91100442 0.32897332 0.037781198 0.91030335 + 0.32873869 0.03776693 0.90960234 0.32850406 0.037752658 0.90890133 0.32826942 0.037738387 + 0.90820032 0.32803482 0.037724119 0.90749925 0.32780015 0.037709851 0.90679824 0.32756552 + 0.037695579 0.90609729 0.32733089 0.037681308 0.90539622 0.32709625 0.03766704 0.90469515 + 0.32686165 0.037652768 0.90399414 0.32662702 0.037638497 0.90329319 0.32639238 0.037624232 + 0.90259206 0.32615775 0.037609957 0.90189111 0.32592312 0.037595689 0.90119004 0.32568848 + 0.037581418 0.90048903 0.32545388 0.03756715 0.89978796 0.32521921 0.037552878 0.89908695 + 0.32498458 0.03753861 0.898386 0.32474995 0.037524339 0.89768493 0.32451534 0.037510067 + 0.89698386 0.32428068 0.037495799 0.89628291 0.32404608 0.037481532 0.8955819 0.32381144 + 0.03746726 0.89488083 0.32357681 0.037452992 0.89417982 0.32334217 0.03743872 0.89347881 + 0.32310754 0.037424453 0.89277768 0.32287291 0.037410177 0.89207673 0.3226383 0.037395913 + 0.89137566 0.32240367 0.037381642 0.89067471 0.32216904 0.037367374 0.88997364 0.3219344 + 0.037353098 0.88927269 0.32169977 0.037338831 0.88857162 0.32146513 0.037324563 0.88787061 + 0.3212305 0.037310295 0.8871696 0.32099587 0.037296023 0.88646853 0.32076126 0.037281752 + 0.88576752 0.3205266 0.037267484 0.88506651 0.320292 0.037253216 0.8843655 0.32005736 + 0.037238941 0.88366449 0.31982273 0.037224673 0.88296342 0.31958809 0.037210405 0.88226241 + 0.31935346 0.037196133 0.8815614 0.31911886 0.037181862 0.88086033 0.31888419 0.037167594 + 0.88015932 0.31864959 0.037153322 0.87945831 0.31841493 0.037139054 0.87875724 0.31818032 + 0.037124783 0.87805629 0.31794569 0.037110515 0.87735528 0.31771106 0.037096247 0.87665427 + 0.31747642 0.037081975 0.8759532 0.31724179 0.037067704 0.87525219 0.31700718 0.037053436 + 0.87455118 0.31677252 0.037039164 0.87385011 0.31653792 0.037024897 0.8731491 0.31630325 + 0.037010625 0.87244809 0.31606865 0.036996357 0.87174702 0.31583402 0.036982086 0.87104607 + 0.31559938 0.036967818 0.870345 0.31536475 0.036953546 0.86964399 0.31513011 0.036939278 + 0.86894298 0.31489548 0.036925007 0.86824197 0.31466085 0.036910735 0.86754096 0.31442624 + 0.036896467 0.86683995 0.31419161 0.036882196 0.86613888 0.31395698 0.036867928 0.86543787 + 0.31372234 0.036853656 0.86473686 0.31348771 0.036839388 0.86403584 0.31325307 0.036825117 + 0.86333477 0.31301844 0.036810849 0.86263376 0.31278384 0.036796577 0.86193275 0.31254917 + 0.036782306 0.86123168 0.31231457 0.036768038 0.86053067 0.31207991 0.036753766 0.85982966 + 0.3118453 0.036739498 0.85912865 0.31161067 0.036725231 0.85842764 0.31137604 0.036710959 + 0.85772663 0.3111414 0.036696687 0.85702562 0.3109068 0.036682419 0.85632455 0.31067213 + 0.036668148 0.85562354 0.31043753 0.03665388 0.85492253 0.31020287 0.036639612 0.85422146 + 0.30996826 0.036625341 0.85352045 0.30973363 0.036611069 0.84339201 0.30634373 0.036404893 + 0.82426041 0.29994056 0.03601544 0.80512893 0.29353744 0.035625994 0.78599733 0.28713426 + 0.035236545; + setAttr ".sh_fi_cl_ar[166:255]" 0.76686579 0.28073111 0.034847096 0.74773437 + 0.27432796 0.03445765 0.72860277 0.26792482 0.034068201 0.70947123 0.26152167 0.033678751 + 0.69033968 0.25511852 0.033289306 0.67120814 0.24871537 0.032899857 0.6520766 0.24231221 + 0.032510407 0.63294506 0.23590907 0.032120958 0.61381352 0.22950593 0.031731512 0.59468198 + 0.22310276 0.031342063 0.57555044 0.21669963 0.030952614 0.55641896 0.21029648 0.030563166 + 0.53728735 0.20389332 0.030173717 0.51815581 0.19749017 0.029784266 0.49902433 0.19108704 + 0.02939482 0.47989276 0.18468389 0.029005373 0.46076119 0.17828073 0.028615922 0.44162968 + 0.17187758 0.028226476 0.42249817 0.16547444 0.027837027 0.40336663 0.15907128 0.027447578 + 0.38423508 0.15266813 0.02705813 0.36510351 0.14626497 0.026668681 0.345972 0.13986182 + 0.026279233 0.32684046 0.13345869 0.025889784 0.30770892 0.12705553 0.025500337 0.28857741 + 0.12065239 0.025110889 0.26944557 0.11424914 0.024721434 0.25031406 0.10784599 0.024331987 + 0.23118249 0.10144284 0.023942538 0.21205096 0.095039696 0.02355309 0.19291939 0.088636532 + 0.023163639 0.17378786 0.082233399 0.022774192 0.15465635 0.075830251 0.022384744 + 0.13552478 0.069427095 0.021995295 0.11639327 0.063023947 0.021605847 0.097261697 + 0.056620788 0.0212164 0.093491472 0.055613436 0.02176409 0.092878416 0.055715069 + 0.022504389 0.092265375 0.055816703 0.02324469 0.091652326 0.055918336 0.023984991 + 0.091039278 0.056019966 0.02472529 0.090426236 0.056121599 0.025465591 0.089813188 + 0.056223232 0.026205894 0.089200146 0.056324869 0.026946191 0.08858709 0.056426503 + 0.027686492 0.087974049 0.056528136 0.028426792 0.087361 0.05662977 0.029167093 0.086747959 + 0.056731403 0.029907394 0.086134911 0.056833033 0.030647693 0.085521862 0.05693467 + 0.031387992 0.084908821 0.057036303 0.032128297 0.084295765 0.057137936 0.032868594 + 0.083682723 0.05723957 0.033608895 0.083069682 0.057341203 0.034349196 0.082456626 + 0.057442833 0.035089497 0.081843585 0.057544466 0.035829797 0.081230536 0.057646103 + 0.036570098 0.080617487 0.057747737 0.037310399 0.080004439 0.05784937 0.038050696 + 0.07939139 0.057951003 0.038791001 0.078778341 0.058052637 0.039531298 0.0781653 + 0.05815427 0.040271599 0.077552252 0.058255903 0.0410119 0.07693921 0.058357537 0.041752201 + 0.076326162 0.05845917 0.042492501 0.075713113 0.058560804 0.043232806 0.075100064 + 0.058662433 0.043973099 0.074487016 0.058764067 0.0447134 0.073873967 0.058865704 + 0.045453705 0.073260926 0.058967337 0.046194002 0.072647884 0.05906897 0.046934303 + 0.072034836 0.059170604 0.047674607 0.071421787 0.059272237 0.048414908 0.070808738 + 0.059373867 0.049155205 0.07019569 0.0594755 0.049895503 0.069582641 0.059577137 + 0.050635807 0.0689696 0.059678771 0.051376108 0.068356551 0.059780404 0.052116409 + 0.06774351 0.059882037 0.05285671 0.067130461 0.059983667 0.053597007 0.066517413 + 0.0600853 0.054337308 0.065904364 0.060186934 0.055077609 0.065291315 0.060288571 + 0.05581791 0.064678274 0.060390204 0.05655821 0.064065225 0.060491838 0.057298511 + 0.063452177 0.060593467 0.058038808 0.062839128 0.060695101 0.058779109 0.062226083 + 0.060796734 0.05951941 0.061613038 0.060898367 0.060259711 0.061000001 0.061000001 + 0.061000001; + setAttr -s 256 ".sh_fi_op_ar[0:255]" 0.001 0.02287255 0.044745099 0.066617653 + 0.088490203 0.11036275 0.1322353 0.15410785 0.1759804 0.19785295 0.2197255 0.24159804 + 0.26347062 0.28534317 0.30721572 0.32908827 0.35096079 0.37283337 0.39470592 0.41657847 + 0.43845102 0.46032357 0.48219609 0.50406867 0.52594125 0.54781377 0.56968635 0.59155887 + 0.61343145 0.63530397 0.65717655 0.67904907 0.64692807 0.61235285 0.57777768 0.54320252 + 0.50862736 0.47405225 0.43947709 0.40490192 0.37032676 0.33575159 0.30117643 0.26660129 + 0.23202613 0.21931888 0.2182745 0.21723014 0.21618575 0.21514137 0.21409701 0.21305263 + 0.21200825 0.21096388 0.2099195 0.20887512 0.20783074 0.20678638 0.205742 0.20469762 + 0.20365325 0.20260887 0.20156449 0.20052011 0.19947575 0.19843137 0.19738698 0.19634262 + 0.19529824 0.19425386 0.1932095 0.19216512 0.19112074 0.19007635 0.18903199 0.18798761 + 0.18694323 0.18589887 0.18485448 0.1838101 0.18276574 0.18172136 0.18067698 0.1796326 + 0.17858824 0.17754386 0.17649947 0.17545511 0.17441073 0.17336635 0.17232198 0.1712776 + 0.17023322 0.16918884 0.16814448 0.1671001 0.16605571 0.16501135 0.16396697 0.16292258 + 0.16187821 0.16083384 0.15978946 0.1587451 0.15770072 0.15665634 0.15561196 0.1545676 + 0.15352321 0.15247884 0.15143447 0.15039009 0.14934571 0.14830133 0.14725696 0.14621258 + 0.1451682 0.14412384 0.14307946 0.14203508 0.14099072 0.13994634 0.13890195 0.13785757 + 0.13681321 0.13576883 0.13472444 0.13368008 0.1326357 0.13159132 0.13054696 0.12950258 + 0.1284582 0.12741382 0.12636946 0.12532507 0.1242807 0.12323632 0.12219194 0.12114757 + 0.12010319 0.11905882 0.11801444 0.11697007 0.11592569 0.11488132 0.11383695 0.11279256 + 0.11174819 0.11070381 0.10965944 0.10861507 0.10757068 0.10652631 0.10548194 0.10443756 + 0.10339319 0.10234881 0.10130443 0.10026006 0.099215679 0.098171309 0.097126931 0.096082561 + 0.095038183 0.093993798 0.092949428 0.09190505 0.09086068 0.089816302 0.088771932 + 0.087727547 0.086683169 0.085638799 0.084594421 0.083550051 0.082505681 0.081461288 + 0.080416918 0.079372548 0.07832817 0.0772838 0.076239422 0.075195037 0.074150667 + 0.073106289 0.072061919 0.071017541 0.069973171 0.068928793 0.067884408 0.066840038 + 0.065795653 0.064751275 0.063706905 0.062662512 0.061618142 0.060573768 0.059529394 + 0.05848502 0.057440646 0.056396261 0.055351887 0.054307513 0.053263139 0.052218769 + 0.051174395 0.050130006 0.049085632 0.048041262 0.046996888 0.045952514 0.04490814 + 0.043863751 0.042819381 0.041775007 0.040730633 0.039686259 0.038641885 0.037597511 + 0.036553126 0.035508752 0.034464378 0.033420004 0.03237563 0.031331256 0.030286871 + 0.029242497 0.028198125 0.027153751 0.026109377 0.025065003 0.024020616 0.022976244 + 0.02193187 0.020887496 0.019843122 0.01879875 0.017754376 0.016709989 0.015665615 + 0.014621242 0.013576869 0.012532495 0.011488122 0.010443735 0.0093993619 0.0083549879 + 0.0073106145 0.006266241 0.0052218675 0.0041774809 0.0031331074 0.0020887339 0.0010443603 + 0; + setAttr -s 256 ".sh_sm_cl_ar"; + setAttr ".sh_sm_cl_ar[0:165]" -type "float3" 0.1 0.1 0.1 0.12154685 0.12154685 + 0.12154685 0.14309371 0.14309371 0.14309371 0.16464055 0.16464055 0.16464055 0.18618742 + 0.18618742 0.18618742 0.20773426 0.20773426 0.20773426 0.2292811 0.2292811 0.2292811 + 0.25082797 0.25082797 0.25082797 0.27237481 0.27237481 0.27237481 0.29392165 0.29392165 + 0.29392165 0.31546849 0.31546849 0.31546849 0.33701536 0.33701536 0.33701536 0.3585622 + 0.3585622 0.3585622 0.38010907 0.38010907 0.38010907 0.40165591 0.40165591 0.40165591 + 0.42320275 0.42320275 0.42320275 0.44474962 0.44474962 0.44474962 0.46629649 0.46629649 + 0.46629649 0.4878433 0.4878433 0.4878433 0.50939018 0.50939018 0.50939018 0.53093696 + 0.53093696 0.53093696 0.55248392 0.55248392 0.55248392 0.57403076 0.57403076 0.57403076 + 0.5875057 0.5875057 0.5875057 0.59928125 0.59928125 0.59928125 0.61105686 0.61105686 + 0.61105686 0.62283248 0.62283248 0.62283248 0.63460803 0.63460803 0.63460803 0.64638364 + 0.64638364 0.64638364 0.65815926 0.65815926 0.65815926 0.66993487 0.66993487 0.66993487 + 0.68171042 0.68171042 0.68171042 0.69348603 0.69348603 0.69348603 0.70526165 0.70526165 + 0.70526165 0.7170372 0.7170372 0.7170372 0.72881281 0.72881281 0.72881281 0.74058843 + 0.74058843 0.74058843 0.75236404 0.75236404 0.75236404 0.76413959 0.76413959 0.76413959 + 0.77591521 0.77591521 0.77591521 0.78769076 0.78769076 0.78769076 0.79946637 0.79946637 + 0.79946637 0.81124198 0.81124198 0.81124198 0.82301754 0.82301754 0.82301754 0.83479315 + 0.83479315 0.83479315 0.84656882 0.84656882 0.84656882 0.85834432 0.85834432 0.85834432 + 0.87011993 0.87011993 0.87011993 0.8818956 0.8818956 0.8818956 0.89367121 0.89367121 + 0.89367121 0.90544683 0.90544683 0.90544683 0.91722238 0.91722238 0.91722238 0.92899793 + 0.92899793 0.92899793 0.94077355 0.94077355 0.94077355 0.9525491 0.9525491 0.9525491 + 0.96432471 0.96432471 0.96432471 0.97610033 0.97610033 0.97610033 0.98787594 0.98787594 + 0.98787594 0.99965149 0.99965149 0.99965149 1.011427045 1.011427045 1.011427045 1.023202658 + 1.023202658 1.023202658 1.034978271 1.034978271 1.034978271 1.046753883 1.046753883 + 1.046753883 1.058529496 1.058529496 1.058529496 1.070305109 1.070305109 1.070305109 + 1.082080722 1.082080722 1.082080722 1.093856335 1.093856335 1.093856335 1.099746227 + 1.099746227 1.099746227 1.099215746 1.099215746 1.099215746 1.098685145 1.098685145 + 1.098685145 1.098154545 1.098154545 1.098154545 1.097623944 1.097623944 1.097623944 + 1.097093344 1.097093344 1.097093344 1.096562862 1.096562862 1.096562862 1.096032262 + 1.096032262 1.096032262 1.095501661 1.095501661 1.095501661 1.09497118 1.09497118 + 1.09497118 1.094440579 1.094440579 1.094440579 1.093909979 1.093909979 1.093909979 + 1.093379498 1.093379498 1.093379498 1.092849016 1.092849016 1.092849016 1.092318416 + 1.092318416 1.092318416 1.091787815 1.091787815 1.091787815 1.091257334 1.091257334 + 1.091257334 1.090726733 1.090726733 1.090726733 1.090196133 1.090196133 1.090196133 + 1.089665532 1.089665532 1.089665532 1.089134932 1.089134932 1.089134932 1.088604331 + 1.088604331 1.088604331 1.08807385 1.08807385 1.08807385 1.087543249 1.087543249 + 1.087543249 1.087012649 1.087012649 1.087012649 1.086482167 1.086482167 1.086482167 + 1.085951567 1.085951567 1.085951567 1.085421085 1.085421085 1.085421085 1.084890366 + 1.084890366 1.084890366 1.084359884 1.084359884 1.084359884 1.083829284 1.083829284 + 1.083829284 1.083298683 1.083298683 1.083298683 1.082768202 1.082768202 1.082768202 + 1.082237601 1.082237601 1.082237601 1.081707001 1.081707001 1.081707001 1.081176519 + 1.081176519 1.081176519 1.080645919 1.080645919 1.080645919 1.080115438 1.080115438 + 1.080115438 1.079584837 1.079584837 1.079584837 1.079054236 1.079054236 1.079054236 + 1.078523636 1.078523636 1.078523636 1.077993035 1.077993035 1.077993035 1.077462554 + 1.077462554 1.077462554 1.076931953 1.076931953 1.076931953 1.076401353 1.076401353 + 1.076401353 1.075870752 1.075870752 1.075870752 1.075340271 1.075340271 1.075340271 + 1.07480967 1.07480967 1.07480967 1.07427907 1.07427907 1.07427907 1.073748589 1.073748589 + 1.073748589 1.073217988 1.073217988 1.073217988 1.072687387 1.072687387 1.072687387 + 1.072156906 1.072156906 1.072156906 1.071626306 1.071626306 1.071626306 1.071095705 + 1.071095705 1.071095705 1.070565224 1.070565224 1.070565224 1.070034623 1.070034623 + 1.070034623 1.069504023 1.069504023 1.069504023 1.068973541 1.068973541 1.068973541 + 1.068442941 1.068442941 1.068442941 1.06791234 1.06791234 1.06791234 1.067381859 + 1.067381859 1.067381859 1.066851258 1.066851258 1.066851258 1.066320658 1.066320658 + 1.066320658 1.065790176 1.065790176 1.065790176 1.065259457 1.065259457 1.065259457 + 1.064728975 1.064728975 1.064728975 1.064198375 1.064198375 1.064198375 1.063667774 + 1.063667774 1.063667774 1.063137293 1.063137293 1.063137293 1.062606692 1.062606692 + 1.062606692 1.062076092 1.062076092 1.062076092 1.06154561 1.06154561 1.06154561 + 1.06101501 1.06101501 1.06101501 1.060484409 1.060484409 1.060484409 1.059953809 + 1.059953809 1.059953809 1.059423327 1.059423327 1.059423327 1.058892727 1.058892727 + 1.058892727 1.058362126 1.058362126 1.058362126 1.057831526 1.057831526 1.057831526 + 1.057301044 1.057301044 1.057301044 1.056770444 1.056770444 1.056770444 1.056239843 + 1.056239843 1.056239843 1.055709362 1.055709362 1.055709362 1.055178761 1.055178761 + 1.055178761 1.054648161 1.054648161 1.054648161 1.05411768 1.05411768 1.05411768 + 1.053587079 1.053587079 1.053587079 1.053056479 1.053056479 1.053056479 1.052525997 + 1.052525997 1.052525997 1.051995397 1.051995397 1.051995397 1.051464915 1.051464915 + 1.051464915 1.050934315 1.050934315 1.050934315 1.050403714 1.050403714 1.050403714 + 1.049873114 1.049873114 1.049873114 1.049342632 1.049342632 1.049342632 1.048811913 + 1.048811913 1.048811913 1.048281431 1.048281431 1.048281431 1.04775095 1.04775095 + 1.04775095; + setAttr ".sh_sm_cl_ar[166:255]" 1.04722023 1.04722023 1.04722023 1.046689749 + 1.046689749 1.046689749 1.046159148 1.046159148 1.046159148 1.045628548 1.045628548 + 1.045628548 1.045098066 1.045098066 1.045098066 1.044567466 1.044567466 1.044567466 + 1.044036865 1.044036865 1.044036865 1.043506384 1.043506384 1.043506384 1.042975783 + 1.042975783 1.042975783 1.042445183 1.042445183 1.042445183 1.041914701 1.041914701 + 1.041914701 1.041384101 1.041384101 1.041384101 1.0408535 1.0408535 1.0408535 1.040323019 + 1.040323019 1.040323019 1.039792418 1.039792418 1.039792418 1.039261818 1.039261818 + 1.039261818 1.038731337 1.038731337 1.038731337 1.038200736 1.038200736 1.038200736 + 1.037670135 1.037670135 1.037670135 1.037139535 1.037139535 1.037139535 1.036608934 + 1.036608934 1.036608934 1.036078453 1.036078453 1.036078453 1.035547853 1.035547853 + 1.035547853 1.035017252 1.035017252 1.035017252 1.034486771 1.034486771 1.034486771 + 1.03395617 1.03395617 1.03395617 1.03342557 1.03342557 1.03342557 1.032895088 1.032895088 + 1.032895088 1.032364488 1.032364488 1.032364488 1.031833887 1.031833887 1.031833887 + 1.031303406 1.031303406 1.031303406 1.030772805 1.030772805 1.030772805 1.030242205 + 1.030242205 1.030242205 1.029711604 1.029711604 1.029711604 1.029181123 1.029181123 + 1.029181123 1.028650522 1.028650522 1.028650522 1.028119922 1.028119922 1.028119922 + 1.027589321 1.027589321 1.027589321 1.02705884 1.02705884 1.02705884 1.026528239 + 1.026528239 1.026528239 1.025997639 1.025997639 1.025997639 1.025467157 1.025467157 + 1.025467157 1.024936557 1.024936557 1.024936557 1.024405956 1.024405956 1.024405956 + 1.023875475 1.023875475 1.023875475 1.023344874 1.023344874 1.023344874 1.022814274 + 1.022814274 1.022814274 1.022283792 1.022283792 1.022283792 1.021753192 1.021753192 + 1.021753192 1.021222591 1.021222591 1.021222591 1.020691991 1.020691991 1.020691991 + 1.02016151 1.02016151 1.02016151 1.019630909 1.019630909 1.019630909 1.019100308 + 1.019100308 1.019100308 1.018569827 1.018569827 1.018569827 1.018039227 1.018039227 + 1.018039227 1.017508626 1.017508626 1.017508626 1.016978025 1.016978025 1.016978025 + 1.016447544 1.016447544 1.016447544 1.015916944 1.015916944 1.015916944 1.015386343 + 1.015386343 1.015386343 1.014855862 1.014855862 1.014855862 1.014325261 1.014325261 + 1.014325261 1.013794661 1.013794661 1.013794661 1.013264179 1.013264179 1.013264179 + 1.012733579 1.012733579 1.012733579 1.012202978 1.012202978 1.012202978 1.011672378 + 1.011672378 1.011672378 1.011141896 1.011141896 1.011141896 1.010611296 1.010611296 + 1.010611296 1.010080695 1.010080695 1.010080695 1.0095502138 1.0095502138 1.0095502138 + 1.0090196133 1.0090196133 1.0090196133 1.0084890127 1.0084890127 1.0084890127 1.0079584122 + 1.0079584122 1.0079584122 1.0074279308 1.0074279308 1.0074279308 1.0068973303 1.0068973303 + 1.0068973303 1.0063667297 1.0063667297 1.0063667297 1.0058362484 1.0058362484 1.0058362484 + 1.0053056479 1.0053056479 1.0053056479 1.0047750473 1.0047750473 1.0047750473 1.004244566 + 1.004244566 1.004244566 1.0037139654 1.0037139654 1.0037139654 1.0031833649 1.0031833649 + 1.0031833649 1.0026527643 1.0026527643 1.0026527643 1.002122283 1.002122283 1.002122283 + 1.0015916824 1.0015916824 1.0015916824 1.0010610819 1.0010610819 1.0010610819 1.00053060055 + 1.00053060055 1.00053060055 1 1 1; + setAttr -s 256 ".sh_sm_op_ar[0:255]" 0.2781457 0.2781457 0.28344521 0.29838023 + 0.31331524 0.32825026 0.34318525 0.35812026 0.37305528 0.3879903 0.40292528 0.41786027 + 0.43279529 0.4477303 0.46266532 0.47760034 0.49253532 0.50747037 0.52240533 0.5373404 + 0.55227536 0.56721038 0.58214533 0.59708041 0.61201543 0.62695038 0.6418854 0.65682042 + 0.67175549 0.68669045 0.70162547 0.70872056 0.71562135 0.72252214 0.72942293 0.73632371 + 0.7432245 0.75012529 0.75702596 0.76392674 0.77082753 0.77772832 0.78462911 0.79152989 + 0.79843068 0.80533147 0.8122322 0.81913298 0.82603371 0.8329345 0.83983529 0.84673607 + 0.85363686 0.86053765 0.86743844 0.87433916 0.88123995 0.88814068 0.89504147 0.90194225 + 0.90884304 0.91574383 0.92264462 0.92954534 0.93644613 0.94334692 0.9502477 0.95714843 + 0.96404922 0.97095001 0.97785079 0.98475158 0.99165231 0.9985531 1 1 1 1 1 1 1 1 + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 + 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 + 1 1 1 1 1 1 1 1 1 1; + setAttr ".popath" -type "string" "X:/IG/proj/XEF/seq/SMO/001/fxSmoke/movie/fxSmoke.v18.avi"; + setAttr ".prEnFr" 128; + setAttr ".prFpFr" 30; +instanceable -a 0; +createNode transform -n "smoke_ffxMRVol" -p "smoke"; + setAttr ".ovdt" 2; + setAttr ".ove" yes; + setAttr -l on ".t"; + setAttr -l on ".r"; + setAttr -l on ".s"; +createNode renderBox -n "smoke_ffxMRVolShape" -p "smoke_ffxMRVol"; + setAttr -k off ".v"; + setAttr ".rt" 1; +createNode transform -n "smoke_ffxWarpsHandle" -p "smoke"; +createNode ffxWarpsHandle -n "smoke_ffxWarpsHandleShape" -p "smoke_ffxWarpsHandle"; + setAttr -k off ".v"; + setAttr ".tw" yes; + setAttr ".covm[0]" 0 1 1; + setAttr ".cdvm[0]" 0 1 1; +createNode transform -n "taiki:all"; +createNode transform -n "taiki:taiki" -p "taiki:all"; + setAttr ".tmp" yes; + setAttr ".t" -type "double3" -6.3858264006815215 0 0 ; +createNode mesh -n "taiki:taikiShape" -p "taiki:taiki"; + addAttr -ci true -sn "vraySeparator_vray_objectID" -ln "vraySeparator_vray_objectID" + -dt "string"; + addAttr -ci true -sn "vrayObjectID" -ln "vrayObjectID" -min 0 -max 1000000000 -smx + 15 -at "long"; + setAttr -k off ".v"; + setAttr ".vir" yes; + setAttr ".vif" yes; + setAttr ".pv" -type "double2" 0.5 0.80669501423835754 ; + setAttr ".uvst[0].uvsn" -type "string" "map1"; + setAttr -s 2796 ".uvst[0].uvsp"; + setAttr ".uvst[0].uvsp[0:249]" -type "float2" 0.708004 0.70800298 0.50000101 + 0.79416001 0.50000101 0.74268597 0.671606 0.67160499 0.29199901 0.70800298 0.32839701 + 0.67160499 0.205842 0.5 0.25731599 0.5 0.29199901 0.29199699 0.32839701 0.32839501 + 0.50000101 0.20584001 0.50000101 0.257314 0.708004 0.29199699 0.671606 0.32839501 + 0.79416198 0.5 0.742688 0.5 0.50000101 0.5 0.026961001 0.100332 0.026961001 0.018568 + 0.124577 0.018568 0.124577 0.100332 0.026961001 0.97916299 0.026961001 0.89739901 + 0.124577 0.89739901 0.124577 0.97916299 0.026961001 0.817931 0.026961001 0.74423403 + 0.124577 0.74423403 0.124577 0.817931 0.026961001 0.67053699 0.124577 0.67053699 + 0.026961001 0.582232 0.124577 0.582232 0.026961001 0.49886501 0.026961001 0.41549799 + 0.124577 0.41549799 0.124577 0.49886501 0.026961001 0.32719299 0.026961001 0.253497 + 0.124577 0.253497 0.124577 0.32719299 0.026961001 0.1798 0.124577 0.1798 0.95586097 + 0.56197703 0.89550102 0.58697999 0.89550102 0.56137198 0.93791902 0.54380202 0.83514202 + 0.561979 0.85308403 0.54380202 0.81014001 0.50161898 0.83551401 0.50138497 0.83514202 + 0.44126001 0.85308403 0.458967 0.89550102 0.41625801 0.89550102 0.44139701 0.95586002 + 0.441259 0.93791902 0.45896599 0.98086298 0.50161701 0.95548898 0.50138301 0.89550102 + 0.50134701 0.95525098 0.74331498 0.89550102 0.76806498 0.89550102 0.75043499 0.94294399 + 0.73078299 0.83575302 0.74331599 0.848059 0.730784 0.81100398 0.68356699 0.828408 + 0.68334198 0.83575302 0.62381798 0.848059 0.63590002 0.89550102 0.599069 0.89550102 + 0.61624902 0.95525002 0.62381798 0.94294298 0.63589901 0.97999901 0.68356502 0.96259397 + 0.68334103 0.89550102 0.68330097 0.95525098 0.37830999 0.89550102 0.40305999 0.89550102 + 0.38543001 0.94294298 0.365778 0.83575302 0.37831101 0.848059 0.36577901 0.81100398 + 0.318562 0.828408 0.31833699 0.83575302 0.25881299 0.848059 0.270895 0.89550102 0.234064 + 0.89550102 0.25124401 0.95525002 0.25881201 0.94294298 0.27089399 0.97999901 0.31856 + 0.96259397 0.31833601 0.89550102 0.31829599 0.127886 0.476886 0.128489 0.41718301 + 0.15161499 0.41411901 0.14964999 0.47040999 0.33458999 0.13846301 0.34006 0.16773599 + 0.30664501 0.173186 0.29356301 0.14166699 0.5 0.155931 0.424519 0.15526301 0.43130401 + 0.101426 0.5 0.094815999 0.111361 0.48251501 0.102062 0.42235899 0.080747999 0.48688301 + 0.068604998 0.43252099 0.25099999 0.119172 0.26966599 0.17471001 0.25099999 0.17469899 + 0.28833199 0.174721 0.27737999 0.138539 0.29356301 0.14166699 0.30664501 0.173186 + 0.068360001 0.48776099 0.054026 0.43677801 0.36816299 0.131908 0.37394699 0.16391 + 0.34006 0.16773599 0.33458999 0.13846301 0.5 0.056798 0.45440301 0.059316002 0.5 + 0.011954 0.034193002 0.39894 0.032203998 0.40503299 0.0079840003 0.40735799 0.0086399997 + 0.40076801 0.050276998 0.42316699 0.043949001 0.42493501 0.199058 0.220339 0.182172 + 0.225721 0.17738099 0.20158701 0.196183 0.198746 0.168281 0.22684699 0.166591 0.20274401 + 0.13582601 0.227791 0.13719299 0.203187 0.14638101 0.20308299 0.146883 0.228788 0.13804901 + 0.16204301 0.16119801 0.164297 0.13115001 0.170432 0.170056 0.16281299 0.191037 0.15559 + 0.082892001 0.16384999 0.084097996 0.15753099 0.092050001 0.15956099 0.090631999 + 0.165041 0.074979 0.223042 0.076378003 0.19604599 0.085346997 0.19499101 0.082730003 + 0.223286 0.048976 0.19863801 0.062799998 0.16593499 0.059675999 0.15799101 0.129384 + 0.20242 0.12575001 0.175473 0.037879001 0.198476 0.103261 0.16828001 0.104489 0.16285001 + 0.097934999 0.224255 0.099609002 0.195107 0.12629201 0.22772101 0.116496 0.25560099 + 0.088707998 0.25867599 0.097318999 0.240601 0.123023 0.241402 0.082787998 0.239784 + 0.073940001 0.252471 0.074643001 0.238268 0.089760996 0.24047001 0.080983996 0.25672999 + 0.098728001 0.161212 0.097251996 0.166614 0.093433 0.194747 0.091108002 0.223727 + 0.066207998 0.39591199 0.047215 0.43793499 0.101855 0.39829299 0.127918 0.40432301 + 0.055488002 0.48614901 0.148147 0.366734 0.149389 0.29113299 0.17093299 0.292317 + 0.18201301 0.367304 0.214828 0.235964 0.189915 0.244197 0.186037 0.237304 0.20777901 + 0.229232 0.225324 0.248767 0.193222 0.25962901 0.168909 0.243186 0.16905101 0.235789 + 0.195078 0.27157301 0.22822499 0.26069599 0.2307 0.27202299 0.194374 0.28147599 0.19356 + 0.29224801 0.196684 0.366844 0.234218 0.29558399 0.22845399 0.36175099 0.15096401 + 0.40522501 0.146035 0.252103 0.145013 0.26328099 0.133367 0.26365101 0.13402399 0.250882 + 0.114945 0.262862 0.13326 0.27113101 0.14605799 0.27175301 0.12922101 0.36596301 + 0.133678 0.29458499 0.191487 0.42065799 0.218934 0.41485101 0.193426 0.444143 0.133154 + 0.27860999 0.14822499 0.28181499 0.18085299 0.45779201 0.17816401 0.41919899 0.169994 + 0.271752 0.1708 0.285743 0.169194 0.262389 0.145413 0.242578 0.062880002 0.298915 + 0.048976 0.29442099 0.053799 0.27731201 0.067992002 0.28025901 0.102325 0.363967 + 0.018817 0.36411199 0.042776 0.36465299 0.111448 0.29982099 0.055528 0.26204801 0.071592003 + 0.26034501 0.058398001 0.235558 0.054083999 0.240989 0.050055001 0.232288 0.056023002 + 0.252065 0.079916999 0.30081999 0.069752999 0.36534101 0.055018999 0.36490101 0.069825999 + 0.30026299 0.050854001 0.401007 0.085974 0.265643 0.078914002 0.26165 0.084572002 + 0.28337801 0.113685 0.28260601 0.074845001 0.28259301 0.041311 0.221645; + setAttr ".uvst[0].uvsp[250:499]" 0.052565999 0.22379901 0.035239998 0.39707801 + 0.0087479996 0.399165 0.134304 0.241409 0.40514201 0.12055 0.41822299 0.110988 0.18085399 + 0.45779201 0.193426 0.444143 0.20021901 0.44859901 0.185307 0.464872 0.151049 0.083989002 + 0.16054 0.08422 0.16061001 0.091020003 0.149489 0.090202004 0.12819999 0.10383 0.1077 + 0.10638 0.10653 0.09973 0.12710001 0.096500002 0.16038001 0.097089998 0.17214 0.095720001 + 0.17133 0.099339999 0.15092801 0.119863 0.13403 0.12074 0.13423 0.10118 0.149435 + 0.096280999 0.13441999 0.092749998 0.159531 0.1182 0.17327 0.1147 0.1234 0.084279999 + 0.13352001 0.08585 0.10705 0.092649996 0.12807 0.12158 0.1098 0.12358 0.094439998 + 0.10606 0.076289997 0.103 0.075230002 0.092820004 0.094149999 0.1008 0.098269999 + 0.10024 0.099420004 0.1064 0.093560003 0.12298 0.099090002 0.12348 0.10416 0.10605 + 0.10545 0.1236 0.10308 0.09984 0.094070002 0.050560001 0.099569999 0.049855001 0.097000003 + 0.069399998 0.092479996 0.070370004 0.176265 0.07068 0.17498 0.086860001 0.16590001 + 0.067460001 0.15416899 0.064400002 0.13672499 0.065485001 0.11823 0.07745 0.12272 + 0.060024999 0.125835 0.061790001 0.12151 0.079680003 0.088349998 0.071419999 0.088610001 + 0.050889999 0.083230004 0.074589998 0.081694998 0.052864999 0.105675 0.050285 0.10188 + 0.068899997 0.111465 0.052354999 0.10587 0.069870003 0.095660001 0.030750001 0.095550001 + 0.02421 0.098459996 0.0232 0.10214 0.030309999 0.10667 0.087379999 0.10658 0.083999999 + 0.095710002 0.081820004 0.09426 0.085040003 0.093489997 0.08969 0.078939997 0.077880003 + 0.11014 0.071620002 0.11535 0.074929997 0.10667 0.081119999 0.10585 0.076289997 0.098250002 + 0.09144 0.09832 0.086860001 0.10273 0.092629999 0.10251 0.087729998 0.097379997 0.079070002 + 0.1 0.081150003 0.099129997 0.083849996 0.10334 0.080940001 0.10275 0.084559999 0.1006 + 0.077069998 0.098410003 0.077660002 0.1036 0.076339997 0.18961 0.04183 0.18413 0.038860001 + 0.19017 0.031380001 0.19208001 0.033640001 0.17952 0.035300002 0.18793 0.03035 0.14636 + 0.027519999 0.14838 0.02685 0.14805999 0.032469999 0.14501999 0.032109998 0.14997 + 0.02743 0.15058 0.031950001 0.13790999 0.02867 0.13926999 0.02898 0.14108001 0.03184 + 0.1383 0.032219999 0.13661 0.02915 0.13590001 0.031810001 0.17357001 0.044100001 + 0.17719001 0.04733 0.17126 0.050700001 0.079400003 0.022329999 0.085170001 0.021081001 + 0.087849997 0.02674 0.081069998 0.02785 0.091240004 0.01626 0.094169997 0.01425 0.096780002 + 0.02018 0.16546001 0.04727 0.171336 0.043294001 0.0977 0.020400001 0.092749998 0.023940001 + 0.088869996 0.03036 0.089230001 0.01863 0.17310999 0.040580001 0.17336001 0.04022 + 0.080159999 0.03114 0.17558999 0.035259999 0.177701 0.038011 0.18194 0.041979998 + 0.18708999 0.044810001 0.18155999 0.050330002 0.1894 0.046670001 0.18440001 0.052409999 + 0.17755 0.054499999 0.18117 0.057459999 0.082477003 0.017426001 0.077440001 0.018610001 + 0.193849 0.039198998 0.193556 0.032972001 0.19462 0.03249 0.194956 0.036033999 0.18802001 + 0.028525 0.18796299 0.029571 0.17738 0.03176 0.180939 0.029614 0.091499999 0.01078 + 0.088610001 0.01247 0.17738 0.03176 0.095509999 0.01349 0.095760003 0.0051000002 + 0.096639998 0.0055399998 0.09725 0.01302 0.086340003 0.01471 0.080119997 0.00728 + 0.078359999 0.00997 0.08258 0.00599 0.19099499 0.030439001 0.16237999 0.040199999 + 0.15729 0.044810001 0.15989099 0.038844999 0.16686 0.04411 0.16145 0.037039999 0.16162001 + 0.037020002 0.10811 0.023940001 0.10678 0.02351 0.10727 0.021779999 0.10771 0.022430001 + 0.10947 0.03167 0.10204 0.023870001 0.10196 0.018510001 0.10485 0.01784 0.1069 0.0165 + 0.099550001 0.01791 0.10774 0.01859 0.10923 0.01859 0.16543999 0.035659999 0.16267 + 0.03469 0.1646 0.029209999 0.16695 0.030540001 0.10411 0.01173 0.10614 0.01121 0.097800002 + 0.01749 0.17338 0.038989998 0.17262 0.038449999 0.10089 0.01271 0.16904999 0.037020002 + 0.17400999 0.032820001 0.17415 0.025830001 0.17452 0.02541 0.17583001 0.03311 0.17037 + 0.02437 0.17072 0.024700001 0.10029 0.00465 0.10094 0.0038000001 0.098520003 0.0054100002 + 0.17039999 0.03184 0.098190002 0.00367 0.17249 0.024870001 0.17253999 0.02441 0.15344 + 0.0394 0.157233 0.040273 0.14892 0.04487 0.15158001 0.039407 0.15200999 0.037919998 + 0.15244 0.037519999 0.11564 0.02696 0.11625 0.024879999 0.11641 0.024940001 0.11671 + 0.027589999 0.11666 0.022779999 0.11825 0.02372 0.11177 0.01918 0.11097 0.025560001 + 0.1147 0.01905 0.16080999 0.034230001 0.16249999 0.033969998 0.11631 0.01877 0.1577 + 0.034389999 0.15457 0.033750001 0.15457 0.031169999 0.15782 0.031539999 0.16119 0.03115 + 0.10858 0.016209999 0.11178 0.016589999 0.11486 0.01636 0.16291 0.03111 0.10724 0.01616 + 0.11675 0.01646 0.15291999 0.033459999 0.15282001 0.030889999 0.15184 0.031649999 + 0.15152 0.035349999 0.15057001 0.035399999 0.11866 0.020059999 0.11659 0.019540001 + 0.15662999 0.024250001 0.15854 0.023949999 0.10912 0.0096500004 0.11075 0.0097500002 + 0.11256 0.0094499998 0.11269 0.0087000001 0.15620001 0.023530001 0.16041 0.024630001 + 0.16114999 0.023700001 0.10821 0.0089699998 0.15859 0.022919999 0.11045 0.0081099998 + 0.13992999 0.045120001; + setAttr ".uvst[0].uvsp[500:749]" 0.14196999 0.038600001 0.14474501 0.040185999 + 0.12485 0.029619999 0.12519 0.029379999 0.12552001 0.03077 0.12297 0.032000002 0.12257 + 0.039489999 0.11706 0.034839999 0.116355 0.055555001 0.14885999 0.041540001 0.14322001 + 0.037470002 0.143566 0.037501998 0.14813 0.035969999 0.14503001 0.035500001 0.14343999 + 0.035440002 0.12335 0.024800001 0.12515999 0.02489 0.12063 0.02437 0.11882 0.03067 + 0.12139 0.02083 0.12424 0.02111 0.1237 0.01667 0.12614 0.02134 0.12324 0.017240001 + 0.1434 0.031629998 0.14598 0.02706 0.12013 0.01646 0.11962 0.01565 0.15041 0.02695 + 0.12158 0.01729 0.14831001 0.026419999 0.12159 0.01567 0.12721001 0.042599998 0.12987 + 0.0361 0.13214 0.037349999 0.13016 0.043900002 0.1274 0.034079999 0.1247 0.04115 + 0.13437 0.038249999 0.13891999 0.039620001 0.13348 0.04465 0.13856 0.035039999 0.14147 + 0.03461 0.13534001 0.03427 0.13345 0.03365 0.13175 0.032930002 0.13434 0.03114 0.1332 + 0.03036 0.12784 0.02891 0.12971 0.03131 0.13162 0.029270001 0.1301 0.0273 0.14300001 + 0.034230001 0.12699001 0.02712 0.12929 0.02572 0.13313 0.02754 0.13409001 0.02813 + 0.14232001 0.031339999 0.13299 0.025830001 0.13282999 0.026550001 0.13943 0.02833 + 0.13478 0.02802 0.13631999 0.02847 0.13406999 0.02674 0.13785 0.028100001 0.079580002 + 0.12182 0.17921001 0.070289999 0.17725 0.083120003 0.120025 0.05804 0.25512201 0.854577 + 0.28090799 0.83529598 0.34790501 0.95466501 0.34489799 0.992989 0.34947401 0.912269 + 0.299086 0.81742501 0.31659999 0.80131102 0.35404599 0.867621 0.288614 0.76835901 + 0.311526 0.76030701 0.25 0.77787298 0.26958799 0.77324897 0.33688301 0.78190702 0.339582 + 0.75 0.34780401 0.75519103 0.34829399 0.77804297 0.35982001 0.80046099 0.375312 0.77194202 + 0.37980801 0.79049301 0.359099 0.73512697 0.366539 0.73890102 0.25 0.71837902 0.268022 + 0.71668899 0.341167 0.707928 0.363199 0.706074 0.35898399 0.80895197 0.38981801 0.86517102 + 0.40667701 0.909904 0.431797 0.94637603 0.45893201 0.97854799 0.28653601 0.60175699 + 0.25099999 0.60268599 0.25099999 0.553029 0.30159801 0.55289602 0.25099999 0.51370001 + 0.284872 0.51289397 0.5 0.73697603 0.5 0.74835497 0.49473101 0.748941 0.48387301 + 0.73583901 0.489732 0.804492 0.47621101 0.76963598 0.49201301 0.78716898 0.41726601 + 0.71065903 0.39215899 0.71113998 0.418863 0.68333501 0.438503 0.68910801 0.47477901 + 0.65965903 0.47826701 0.668612 0.48760399 0.83349597 0.5 0.805718 0.5 0.83335698 + 0.44758099 0.80474901 0.468656 0.80462098 0.465639 0.83085698 0.44367301 0.82821798 + 0.49269199 0.77761197 0.5 0.77885598 0.446778 0.874053 0.41959801 0.85054302 0.5 + 0.893224 0.474709 0.88780099 0.41079599 0.78007698 0.443082 0.770657 0.400922 0.65758198 + 0.46623799 0.62544203 0.46888101 0.63751501 0.40595701 0.66579401 0.5 0.63271099 + 0.5 0.62040102 0.489674 0.71673799 0.5 0.71776801 0.47395799 0.57857001 0.5 0.575652 + 0.462165 0.77014703 0.5 0.78902298 0.5 0.65607202 0.5 0.66636097 0.076396003 0.73531199 + 0.084756002 0.83408803 0.075267002 0.82950902 0.060575001 0.74194902 0.049194001 + 0.66275901 0.057323001 0.66013199 0.058074001 0.670237 0.049965002 0.67622501 0.046471 + 0.623496 0.052829999 0.62215197 0.058433998 0.67809099 0.049472999 0.68450499 0.053263001 + 0.74484199 0.069145001 0.65670598 0.069870003 0.66387701 0.070793003 0.67154402 0.15911999 + 0.68100899 0.166005 0.68066299 0.158898 0.74305803 0.14845 0.74251199 0.106324 0.65926301 + 0.102697 0.61998498 0.119377 0.62396401 0.119222 0.65988898 0.090002999 0.65647697 + 0.079630002 0.619111 0.106216 0.67260599 0.090865999 0.66491598 0.119794 0.68308598 + 0.115073 0.73929101 0.104847 0.73738801 0.107127 0.68123698 0.15036701 0.68117899 + 0.13857201 0.74167001 0.20296501 0.67588699 0.188605 0.67491698 0.189579 0.66285801 + 0.20362601 0.66251802 0.147195 0.626531 0.151667 0.65643299 0.166945 0.62741399 0.16737901 + 0.66000301 0.17697801 0.67461699 0.167587 0.67613202 0.162404 0.67202801 0.152927 + 0.668616 0.194783 0.74415803 0.186536 0.74483001 0.188655 0.68420398 0.20135 0.68414599 + 0.171277 0.74575502 0.177095 0.68164003 0.19063 0.626095 0.204209 0.62344402 0.063816004 + 0.61940497 0.119627 0.672566 0.091986001 0.67648202 0.093838997 0.735349 0.16793901 + 0.85045201 0.16769899 0.85608703 0.15672299 0.85990101 0.154659 0.853854 0.145711 + 0.85559398 0.149114 0.86228102 0.1664 0.88219303 0.177314 0.87698299 0.18688001 0.88971198 + 0.17626899 0.89829499 0.14738201 0.88907802 0.15756799 0.88582999 0.165767 0.90540302 + 0.15202799 0.910676 0.142841 0.911964 0.13639 0.91839701 0.13877399 0.89306802 0.197715 + 0.91422701 0.19817001 0.905487 0.200683 0.90822703 0.14365201 0.93121803 0.138826 + 0.92145199 0.18498699 0.92990202 0.18458 0.930408 0.18198 0.92744899 0.184029 0.92614597 + 0.189055 0.91837198 0.20194601 0.93838102 0.196373 0.942168 0.199192 0.91812098 0.208969 + 0.935238 0.20724399 0.93582201 0.196227 0.91546202 0.215718 0.92150199 0.211807 0.92559999 + 0.20365 0.90232801 0.20575 0.90572703 0.206205 0.902089 0.20784099 0.90537202 0.193312 + 0.884794 0.196391 0.88300401 0.182732 0.85969901 0.187618 0.86901802 0.18492401 0.87188202 + 0.179176 0.86182499; + setAttr ".uvst[0].uvsp[750:999]" 0.170441 0.86621499 0.113864 0.87817699 0.129398 + 0.879143 0.129483 0.89534903 0.114599 0.89387703 0.173584 0.92499 0.18787301 0.91624999 + 0.127483 0.91164899 0.12881701 0.86476398 0.14119101 0.864546 0.138972 0.87759799 + 0.127178 0.92231798 0.118791 0.92304301 0.117325 0.91125 0.138521 0.92829001 0.13579901 + 0.92671299 0.098196998 0.94202602 0.096577004 0.93993199 0.099159002 0.93282801 0.099945001 + 0.93614799 0.101754 0.93579602 0.101304 0.93809402 0.194611 0.94363898 0.200307 0.94692701 + 0.19777501 0.94859898 0.205336 0.94334197 0.21008401 0.94126999 0.212106 0.94035 + 0.20317701 0.95132101 0.201157 0.95254999 0.21288 0.94569099 0.208415 0.94822198 + 0.214368 0.94477302 0.207692 0.95817298 0.20595901 0.95926702 0.212522 0.955338 0.21680599 + 0.95292997 0.218189 0.95210701 0.20989799 0.96168798 0.208243 0.96261197 0.214745 + 0.95912802 0.21885499 0.95647502 0.22026999 0.95535898 0.22605599 0.97215301 0.22295199 + 0.96356601 0.224686 0.96300697 0.226813 0.97206801 0.224308 0.97601002 0.223795 0.97515899 + 0.219638 0.97639298 0.220053 0.97584599 0.21346401 0.96962398 0.21474101 0.96836102 + 0.212579 0.96542102 0.21094599 0.96625298 0.21728 0.96322501 0.218586 0.96530002 + 0.22123501 0.96046102 0.22254699 0.95898902 0.16494399 0.93455899 0.167493 0.93313998 + 0.167694 0.93790102 0.167229 0.93836403 0.15165199 0.94247597 0.149675 0.94440401 + 0.148479 0.94098401 0.150511 0.93910301 0.158079 0.93784302 0.157196 0.93383098 0.168378 + 0.95667398 0.162513 0.95800698 0.154001 0.96032399 0.15614299 0.95972598 0.170551 + 0.95623302 0.157278 0.964145 0.154928 0.96501797 0.163385 0.96232802 0.169118 0.96101397 + 0.171331 0.960756 0.158271 0.96833599 0.15621801 0.96887302 0.164415 0.966842 0.170241 + 0.96532601 0.17195299 0.96485901 0.15987401 0.975227 0.158053 0.97570699 0.165898 + 0.973638 0.171472 0.97235501 0.17303 0.97200203 0.160713 0.97908199 0.15893599 0.97960001 + 0.16674601 0.977516 0.172244 0.976403 0.17386299 0.97614002 0.173365 0.993747 0.173806 + 0.98508298 0.17554501 0.98514098 0.174226 0.99424303 0.166769 0.99568999 0.161477 + 0.98757899 0.16285899 0.98698097 0.167284 0.99487901 0.170766 0.99637198 0.170571 + 0.99531901 0.16837101 0.98408997 0.161645 0.98318201 0.160065 0.98385298 0.167592 + 0.98153698 0.17316601 0.98092997 0.17489301 0.98065501 0.1893 0.95101398 0.183586 + 0.95336199 0.174806 0.929039 0.17733 0.95577002 0.175016 0.95643198 0.191431 0.950082 + 0.17941099 0.96099198 0.177215 0.96197599 0.18565901 0.95864302 0.19104899 0.95655698 + 0.193482 0.95545602 0.184939 0.97360301 0.186821 0.97791398 0.184846 0.97850698 0.182932 + 0.97426301 0.190603 0.97149903 0.19225 0.97578502 0.195709 0.96940601 0.197294 0.973827 + 0.19897901 0.97306001 0.197437 0.96868002 0.181427 0.96604103 0.179272 0.966757 0.187622 + 0.963853 0.193158 0.96140301 0.194931 0.96049201 0.19451401 0.99430799 0.188493 0.98711503 + 0.19018701 0.98659903 0.194791 0.99361402 0.199094 0.99322701 0.19950999 0.99442297 + 0.20230199 0.99057198 0.203086 0.99078703 0.200821 0.98234099 0.20238601 0.98170298 + 0.188512 0.98246503 0.194043 0.98038203 0.19511899 0.98259997 0.199111 0.97819 0.186719 + 0.98301798 0.20074099 0.97727603 0.209993 0.92723101 0.199518 0.91767299 0.218685 + 0.91789502 0.219441 0.91584098 0.21479701 0.92736101 0.212993 0.92954999 0.218027 + 0.92362797 0.220924 0.92044002 0.22238401 0.91891402 0.21703801 0.92967999 0.215665 + 0.931288 0.220322 0.92556202 0.223646 0.92216003 0.22463199 0.92095 0.222601 0.93419999 + 0.22105999 0.93505502 0.226299 0.93074399 0.229165 0.92686498 0.22975001 0.92563498 + 0.22459599 0.93599701 0.223456 0.93703502 0.227953 0.93241602 0.23110899 0.92876601 + 0.23203699 0.927854 0.240146 0.94226402 0.236534 0.93541598 0.237451 0.93439901 0.24078301 + 0.942083 0.239857 0.94504601 0.23913801 0.944552 0.23680601 0.94668502 0.236845 0.94610798 + 0.230188 0.94281 0.231038 0.94176197 0.232299 0.93681902 0.229479 0.93392599 0.233274 + 0.93110901 0.23453601 0.930641 0.226228 0.93949598 0.226998 0.93808401 0.127406 0.93696499 + 0.120426 0.93711001 0.120256 0.93483502 0.126873 0.93298799 0.135208 0.93502802 0.135418 + 0.93730402 0.138557 0.937361 0.138217 0.93512797 0.13484301 0.95838702 0.13573 0.95041502 + 0.13813999 0.950589 0.13661601 0.959113 0.128893 0.962506 0.128952 0.96385598 0.122769 + 0.95831001 0.121826 0.95047897 0.12809099 0.94947797 0.12792601 0.94651699 0.13592701 + 0.94666201 0.121816 0.94682002 0.121042 0.94180799 0.127884 0.94177997 0.135801 0.942083 + 0.13905799 0.94222999 0.138676 0.94668901 0.119866 0.95080602 0.119359 0.94703603 + 0.121816 0.94682002 0.121189 0.95842898 0.14495701 0.875875 0.151894 0.87354201 0.102663 + 0.94003999 0.10435 0.93876398 0.104872 0.94067401 0.102803 0.94090497 0.089212999 + 0.85166597 0.10009 0.85436302 0.099225 0.860659 0.088738002 0.85734397 0.106657 0.87695998 + 0.096276 0.878425 0.105694 0.86207801 0.107309 0.85506803 0.116683 0.85639799 0.115965 + 0.86446702 0.073407002 0.84662801 0.079002999 0.84849298 0.078143999 0.85329503 0.07209 + 0.85127902 0.074072003 0.86446398 0.084062003 0.86947399 0.068902001 0.86129802 0.108468 + 0.89461201 0.101152 0.89617598 0.069939002 0.93711197 0.080362 0.91954798 0.084806003 + 0.92556602 0.076081 0.940018; + setAttr ".uvst[0].uvsp[1000:1249]" 0.055716999 0.92547601 0.072131999 0.90794498 + 0.079218999 0.94669002 0.073535003 0.94431198 0.068046004 0.94135302 0.058013 0.93673301 + 0.057842001 0.93403101 0.061585002 0.937163 0.058256 0.937271 0.04947 0.924568 0.046312999 + 0.91872197 0.045894001 0.91259199 0.074824996 0.94753498 0.075260997 0.94762802 0.086864002 + 0.94450903 0.093994997 0.94703501 0.092439003 0.95111197 0.085423 0.94891 0.052933998 + 0.92883801 0.043494001 0.914563 0.042578999 0.90636897 0.040729001 0.908952 0.055041 + 0.88790101 0.062325001 0.89656001 0.066022001 0.87493902 0.062212002 0.872069 0.073991001 + 0.882581 0.081325002 0.89050901 0.052338 0.88480699 0.045788001 0.92276901 0.037811998 + 0.93660903 0.036860999 0.93537498 0.048898 0.94578201 0.048014998 0.94511598 0.041246001 + 0.90340298 0.039652001 0.906129 0.034712002 0.925511 0.031868 0.92120397 0.028750001 + 0.91544598 0.101578 0.91877198 0.091609001 0.93581402 0.091614 0.90198803 0.112513 + 0.912233 0.108445 0.91389799 0.114599 0.89387703 0.117325 0.91125 0.115048 0.92373103 + 0.111729 0.924559 0.118791 0.92304301 0.045708999 0.92069697 0.039822001 0.945687 + 0.042748 0.94179398 0.045857001 0.94899398 0.034139 0.94126701 0.037351999 0.94920802 + 0.041947 0.952245 0.031833 0.94532299 0.036630001 0.95850998 0.032710999 0.95609301 + 0.027512001 0.95246702 0.030985 0.95878899 0.034334999 0.961703 0.025214 0.95534003 + 0.027983001 0.96311098 0.022768 0.95913202 0.031312998 0.96529502 0.028508 0.96898198 + 0.02341 0.974684 0.019317999 0.973813 0.025008 0.96698397 0.016692 0.97009599 0.020305 + 0.96308798 0.046654999 0.949148 0.033085998 0.94013202 0.042856 0.952797 0.030692 + 0.94458199 0.037370998 0.95898598 0.026391 0.95167702 0.034885999 0.962152 0.024101 + 0.95472801 0.016373999 0.97052097 0.018847 0.97448802 0.023009 0.97513598 0.021454999 + 0.957995 0.018958 0.96170503 0.032225002 0.96564502 0.029788001 0.96909201 0.074767001 + 0.95906299 0.072828002 0.958372 0.094883002 0.95185602 0.096449003 0.947905 0.088151999 + 0.96389002 0.081435002 0.96166903 0.086714 0.9677 0.080216996 0.96574801 0.073415004 + 0.96357298 0.085167997 0.97128701 0.079154998 0.96934903 0.07265 0.96748 0.082672 + 0.97803199 0.077026002 0.97611398 0.071382999 0.97451502 0.081859 0.98191702 0.075882003 + 0.97996598 0.070013002 0.97835302 0.073298998 0.98774201 0.078682996 0.98960203 0.074325003 + 0.99687099 0.070678003 0.996535 0.067299999 0.99483198 0.067868002 0.98696101 0.080316998 + 0.98588097 0.074735999 0.98381901 0.068885997 0.98261797 0.090305001 0.96462899 0.088521004 + 0.968373 0.071696997 0.96283901 0.087181002 0.97206497 0.070781998 0.96682203 0.084679 + 0.978692 0.069541998 0.97392702 0.083687998 0.98252499 0.068346001 0.97795898 0.074221 + 0.99759001 0.070421003 0.99780101 0.067244999 0.99587399 0.080586001 0.99030101 0.082185999 + 0.98659402 0.067106001 0.98234701 0.066147998 0.98668802 0.069500998 0.95880699 0.067569003 + 0.957838 0.054405998 0.95166099 0.052797001 0.95105702 0.058777001 0.96048498 0.061395999 + 0.95490301 0.064873002 0.96314901 0.05192 0.95702398 0.051197998 0.97615302 0.053052001 + 0.97232902 0.058015998 0.97486699 0.056097001 0.97883499 0.045715999 0.97393298 0.047612 + 0.96995401 0.056740001 0.96473002 0.062252998 0.96739697 0.050776001 0.96197402 0.051860999 + 0.98714399 0.047063001 0.984622 0.049355999 0.980012 0.054106999 0.98308998 0.043802001 + 0.978019 0.041685998 0.98236197 0.047313001 0.99356401 0.043099001 0.99239397 0.039342001 + 0.98989999 0.066946998 0.96419603 0.0504 0.95628601 0.057509001 0.98006803 0.059599999 + 0.97570902 0.046169002 0.96936601 0.044174999 0.97350299 0.063929997 0.96848297 0.049082 + 0.961303 0.04259 0.99346101 0.046913002 0.99400598 0.039159998 0.99033701 0.053365 + 0.98830199 0.055511001 0.98440599 0.042102002 0.97749001 0.040178999 0.98191899 0.028252 + 0.92334503 0.031291001 0.92753601 0.025184 0.91766602 0.025986001 0.92447001 0.028667999 + 0.92861801 0.022668 0.91928601 0.022600001 0.93139601 0.020358 0.92761803 0.017111 + 0.92298698 0.017642001 0.929295 0.019924 0.93317598 0.014492 0.92470503 0.011376 + 0.92721403 0.014054 0.93208301 0.010255 0.934632 0.0078299996 0.93016601 0.016493 + 0.93522501 0.012445 0.937751 0.006664 0.94062698 0.0043279999 0.93833202 0.0033559999 + 0.93554997 0.028068 0.91386902 0.032157 0.92844403 0.035507001 0.926705 0.024564 + 0.91614503 0.029113 0.929627 0.022051999 0.91788399 0.023122 0.93229401 0.016251 + 0.92167699 0.020439999 0.93389797 0.013609 0.92338598 0.010699 0.92575502 0.0072889999 + 0.929115 0.01289 0.93849897 0.017298 0.935817 0.0060000001 0.94085097 0.0030139999 + 0.93595999 0.11079 0.93894303 0.110083 0.936189 0.115013 0.93521899 0.115644 0.93792498 + 0.117907 0.93757302 0.117582 0.935229 0.116573 0.94272202 0.112167 0.94404203 0.105976 + 0.94576401 0.117249 0.94757402 0.118769 0.94223601 0.113016 0.94849902 0.107056 0.95000499 + 0.118021 0.95130903 0.113946 0.95208699 0.108104 0.95347899 0.120099 0.959117 0.116349 + 0.96103799 0.110317 0.95948601 0.103921 0.94603002 0.106365 0.95394403 0.109453 0.96099502 + 0.117097 0.96392602 0.121042 0.94180799 0.105119 0.95052499 0.120426 0.93711001 0.120256 + 0.93483502 0.092041999 0.87420601 0.085219003 0.89363301 0.181035 0.84540802 0.18070699 + 0.85042 0.10583 0.92747998 0.0036319999 0.93878001 0.129813 0.856471 0.160511 0.87040901 + 0.145711 0.85559398 0.148104 0.83515102 0.15667 0.83393002 0.154659 0.853854 0.107309 + 0.85506803 0.10009 0.85436302 0.096547 0.83719099; + setAttr ".uvst[0].uvsp[1250:1499]" 0.104758 0.83908802 0.113543 0.840186 0.12633599 + 0.83885098 0.129813 0.856471 0.116683 0.85639799 0.182769 0.82109898 0.181035 0.84540802 + 0.16793901 0.85045201 0.174411 0.83075303 0.070846997 0.82511002 0.079002999 0.84849298 + 0.073407002 0.84662801 0.089212999 0.85166597 0.135847 0.836891 0.137045 0.856583 + 0.137045 0.856583 0.448493 0.53891897 0.49309099 0.536304 0.43079999 0.58338702 0.5 + 0.51463997 0.455542 0.50899601 0.40466899 0.37459999 0.440552 0.35821 0.44804701 + 0.43360299 0.416778 0.44255799 0.38488799 0.51627302 0.38018399 0.51559597 0.38848001 + 0.48485801 0.43463901 0.26182601 0.5 0.25973099 0.5 0.33173099 0.43832001 0.328219 + 0.32704201 0.30178601 0.35991499 0.29888901 0.37030399 0.38490799 0.33708 0.38794899 + 0.396777 0.45412001 0.37910101 0.40700001 0.105855 0.526968 0.110295 0.53736299 0.079706997 + 0.53676498 0.079031996 0.53163201 0.31940299 0.39412501 0.30877599 0.30609199 0.052990999 + 0.53213698 0.053619001 0.536677 0.043683998 0.536672 0.043593999 0.532722 0.40021399 + 0.35100999 0.25099999 0.46149501 0.280781 0.46108401 0.284872 0.51289397 0.25099999 + 0.51370001 0.5 0.43915999 0.5 0.36367899 0.27968001 0.44675401 0.25099999 0.448668 + 0.071411997 0.53469402 0.053619001 0.536677 0.052990999 0.53213698 0.069528997 0.52920598 + 0.390847 0.27828899 0.31060499 0.53540802 0.295697 0.51177001 0.29930499 0.51139599 + 0.31360701 0.52957898 0.098390996 0.571356 0.089048997 0.55405998 0.104343 0.55435902 + 0.077453002 0.55766499 0.057158999 0.559214 0.055388998 0.54794502 0.074432001 0.54618001 + 0.115361 0.58231097 0.13975599 0.56675297 0.14121 0.58938998 0.120328 0.562038 0.16216099 + 0.58150601 0.15799201 0.561589 0.17920899 0.55396903 0.187878 0.57041198 0.040465001 + 0.55882001 0.044888001 0.55918598 0.201924 0.55882698 0.044286001 0.54792899 0.040293001 + 0.54743099 0.295697 0.51177001 0.293697 0.45967501 0.29800299 0.45920601 0.29930499 + 0.51139599 0.20220201 0.54743499 0.25099999 0.339647 0.26479 0.332764 0.27858001 + 0.43242401 0.25099999 0.43584001 0.079706997 0.53676498 0.071411997 0.53469402 0.069528997 + 0.52920598 0.079031996 0.53163201 0.42852199 0.20355099 0.38148001 0.205568 0.37394699 + 0.16391 0.5 0.199909 0.349527 0.212871 0.34006 0.16773599 0.317004 0.215624 0.30664501 + 0.173186 0.29814899 0.218059 0.274575 0.22558101 0.26966599 0.17471001 0.28833199 + 0.174721 0.28678301 0.319428 0.29899201 0.413275 0.28898099 0.44487301 0.29208201 + 0.44424599 0.47728699 0.76076698 0.43662801 0.75565702 0.443223 0.70998502 0.4594 + 0.75734502 0.12843999 0.064465001 0.37176999 0.707569 0.219897 0.404066 0.192729 + 0.40838301 0.178913 0.407897 0.40514201 0.12055 0.424519 0.15526301 0.37394699 0.16391 + 0.36816299 0.131908 0.19462 0.03249 0.19159 0.029759999 0.40630999 0.76308697 0.290252 + 0.43641701 0.29208201 0.44424599 0.28898099 0.44487301 0.289617 0.44064501 0.5 0.53803998 + 0.45440301 0.059316002 0.193426 0.444143 0.21949001 0.426296 0.20021901 0.44859901 + 0.25099999 0.23310401 0.25099999 0.17469899 0.28588101 0.44549999 0.27968001 0.44675401 + 0.27858001 0.43242401 0.28350201 0.43050599 0.27968001 0.44675401 0.28588101 0.44549999 + 0.28939199 0.460145 0.280781 0.46108401 0.284872 0.51289397 0.29208899 0.51214498 + 0.30159801 0.55289602 0.284872 0.51289397 0.29208899 0.51214498 0.307603 0.541237 + 0.39899901 0.51830298 0.38959101 0.516949 0.27737999 0.138539 0.28833199 0.174721 + 0.42888701 0.51051599 0.289693 0.713193 0.31482199 0.71056098 0.38633499 0.53995401 + 0.42016801 0.54090798 0.391458 0.58829302 0.358311 0.593503 0.32185599 0.59969902 + 0.34502199 0.55883998 0.365201 0.52581 0.37048399 0.52934599 0.34240699 0.54087198 + 0.341535 0.53488201 0.34240699 0.54087198 0.341535 0.53488201 0.37048399 0.52934599 + 0.365201 0.52581 0.38018399 0.51559597 0.38488799 0.51627302 0.34502199 0.55883998 + 0.343279 0.54686099 0.38633499 0.53995401 0.34502199 0.55883998 0.343279 0.54686099 + 0.37576801 0.53288198 0.39899901 0.51830298 0.38633499 0.53995401 0.37576801 0.53288198 + 0.38959101 0.516949 0.101416 0.516572 0.078357004 0.52649999 0.067644998 0.523718 + 0.078357004 0.52649999 0.052361999 0.52759701 0.067644998 0.523718 0.052361999 0.52759701 + 0.043503001 0.52877098 0.110295 0.53736299 0.125295 0.54176402 0.079706997 0.53676498 + 0.071411997 0.53469402 0.040121 0.53604198 0.17054 0.53752601 0.202481 0.53604299 + 0.153824 0.54167199 0.138302 0.54411697 0.288423 0.42858699 0.872114 0.476886 0.85035002 + 0.47040999 0.84838498 0.41411901 0.87151098 0.41718301 0.66540998 0.13846301 0.70643699 + 0.14166699 0.69335502 0.173186 0.65994 0.16773599 0.56869602 0.101426 0.575481 0.15526301 + 0.89793801 0.42235899 0.88863897 0.48251501 0.93139499 0.43252099 0.91925198 0.48688301 + 0.74900001 0.119172 0.74900001 0.17469899 0.73033398 0.17471001 0.71166801 0.174721 + 0.69335502 0.173186 0.70643699 0.14166699 0.72262001 0.138539 0.93164003 0.48776099 + 0.94597399 0.43677801 0.63183701 0.131908 0.66540998 0.13846301 0.65994 0.16773599 + 0.62605298 0.16391 0.54559702 0.059316002 0.96580702 0.39894 0.99136001 0.40076801 + 0.99201602 0.40735799 0.96779603 0.40503299 0.95605099 0.42493501 0.94972301 0.42316699 + 0.800942 0.220339 0.80381697 0.198746 0.82261902 0.20158701 0.817828 0.225721 0.83340901 + 0.20274401 0.83171898 0.22684699 0.86417401 0.227791 0.85311699 0.228788 0.85361898 + 0.20308299; + setAttr ".uvst[0].uvsp[1500:1749]" 0.86280698 0.203187 0.86195099 0.16204301 + 0.83880198 0.164297 0.86884999 0.170432 0.82994401 0.16281299 0.808963 0.15559 0.917108 + 0.16384999 0.90936798 0.165041 0.90794998 0.15956099 0.91590202 0.15753099 0.92502099 + 0.223042 0.91727 0.223286 0.914653 0.19499101 0.92362201 0.19604599 0.93720001 0.16593499 + 0.951024 0.19863801 0.94032401 0.15799101 0.87424999 0.175473 0.87061602 0.20242 + 0.96212101 0.198476 0.89551097 0.16285001 0.89673901 0.16828001 0.90206498 0.224255 + 0.87370801 0.22772101 0.90039098 0.195107 0.88350397 0.25560099 0.87697703 0.241402 + 0.90268099 0.240601 0.91129202 0.25867599 0.91721201 0.239784 0.92535698 0.238268 + 0.92606002 0.252471 0.91023898 0.24047001 0.919016 0.25672999 0.90274799 0.166614 + 0.901272 0.161212 0.90656698 0.194747 0.90889198 0.223727 0.933792 0.39591199 0.95278502 + 0.43793499 0.89814502 0.39829299 0.872082 0.40432301 0.94451201 0.48614901 0.85185301 + 0.366734 0.81798702 0.367304 0.82906699 0.292317 0.85061097 0.29113299 0.78517199 + 0.235964 0.79222101 0.229232 0.813963 0.237304 0.810085 0.244197 0.80677801 0.25962901 + 0.77467602 0.248767 0.83094901 0.235789 0.83109099 0.243186 0.80492198 0.27157301 + 0.80562598 0.28147599 0.76929998 0.27202299 0.77177501 0.26069599 0.803316 0.366844 + 0.80644 0.29224801 0.77154601 0.36175099 0.765782 0.29558399 0.84903598 0.40522501 + 0.85396498 0.252103 0.86597598 0.250882 0.866633 0.26365101 0.85498703 0.26328099 + 0.88505501 0.262862 0.86673999 0.27113101 0.85394198 0.27175301 0.86632198 0.29458499 + 0.87077898 0.36596301 0.80851299 0.42065799 0.80657399 0.444143 0.781066 0.41485101 + 0.86684602 0.27860999 0.85177499 0.28181499 0.81914699 0.45779201 0.82183599 0.41919899 + 0.830006 0.271752 0.82920003 0.285743 0.83080602 0.262389 0.85458702 0.242578 0.93712002 + 0.298915 0.93200803 0.28025901 0.94620103 0.27731201 0.951024 0.29442099 0.89767498 + 0.363967 0.98118299 0.36411199 0.95722401 0.36465299 0.88855201 0.29982099 0.92840803 + 0.26034501 0.94447201 0.26204801 0.94160199 0.235558 0.94994497 0.232288 0.945916 + 0.240989 0.943977 0.252065 0.92008299 0.30081999 0.93024701 0.36534101 0.94498098 + 0.36490101 0.93017399 0.30026299 0.94914597 0.401007 0.91402602 0.265643 0.92108601 + 0.26165 0.91542798 0.28337801 0.88631499 0.28260601 0.92515498 0.28259301 0.95868897 + 0.221645 0.94743401 0.22379901 0.99125201 0.399165 0.96476001 0.39707801 0.86569601 + 0.241409 0.58177698 0.110988 0.59485799 0.12055 0.81914598 0.45779201 0.81469297 + 0.464872 0.79978102 0.44859901 0.80657399 0.444143 0.84895098 0.083989002 0.85051101 + 0.090202004 0.83938998 0.091020003 0.83946002 0.08422 0.87180001 0.10383 0.87290001 + 0.096500002 0.89346999 0.09973 0.89230001 0.10638 0.83961999 0.097089998 0.82867002 + 0.099339999 0.82786 0.095720001 0.84907198 0.119863 0.85056502 0.096280999 0.86576998 + 0.10118 0.86597002 0.12074 0.86558002 0.092749998 0.840469 0.1182 0.82673001 0.1147 + 0.87660003 0.084279999 0.86647999 0.08585 0.89295 0.092649996 0.89020002 0.12358 + 0.87193 0.12158 0.90556002 0.10606 0.90584999 0.1008 0.92477 0.092820004 0.92370999 + 0.103 0.90173 0.10024 0.90057999 0.1064 0.90644002 0.12298 0.90091002 0.12348 0.89455003 + 0.1236 0.89583999 0.10605 0.89692003 0.09984 0.90592998 0.050560001 0.90752 0.070370004 + 0.903 0.069399998 0.90043002 0.049855001 0.823735 0.07068 0.83410001 0.067460001 + 0.82502002 0.086860001 0.84583098 0.064400002 0.86327499 0.065485001 0.88177001 0.07745 + 0.87848997 0.079680003 0.874165 0.061790001 0.87728 0.060024999 0.91139001 0.050889999 + 0.91165 0.071419999 0.91830498 0.052864999 0.91676998 0.074589998 0.89811999 0.068899997 + 0.89432502 0.050285 0.89412999 0.069870003 0.88853502 0.052354999 0.90434003 0.030750001 + 0.89785999 0.030309999 0.90153998 0.0232 0.90445 0.02421 0.89332998 0.087379999 0.89341998 + 0.083999999 0.90574002 0.085040003 0.90429002 0.081820004 0.90651 0.08969 0.92106003 + 0.077880003 0.88985997 0.071620002 0.89415002 0.076289997 0.89332998 0.081119999 + 0.88464999 0.074929997 0.90175003 0.09144 0.90167999 0.086860001 0.89727002 0.092629999 + 0.89749002 0.087729998 0.90262002 0.079070002 0.90087003 0.083849996 0.89999998 0.081150003 + 0.89725 0.084559999 0.89665997 0.080940001 0.90158999 0.077660002 0.8994 0.077069998 + 0.89639997 0.076339997 0.81039 0.04183 0.80791998 0.033640001 0.80983001 0.031380001 + 0.81586999 0.038860001 0.82047999 0.035300002 0.81207001 0.03035 0.85364002 0.027519999 + 0.85497999 0.032109998 0.85193998 0.032469999 0.85162002 0.02685 0.84942001 0.031950001 + 0.85003 0.02743 0.86208999 0.02867 0.8617 0.032219999 0.85891998 0.03184 0.86072999 + 0.02898 0.86339003 0.02915 0.86409998 0.031810001 0.82643002 0.044100001 0.82874 + 0.050700001 0.82280999 0.04733 0.9206 0.022329999 0.91892999 0.02785 0.91215003 0.02674 + 0.91483003 0.021081001 0.90322 0.02018 0.90583003 0.01425 0.90876001 0.01626 0.83454001 + 0.04727 0.828664 0.043294001 0.9023 0.020400001 0.91113001 0.03036 0.90724999 0.023940001 + 0.91077 0.01863 0.82664001 0.04022 0.82688999 0.040580001 0.91983998 0.03114 0.822299 + 0.038011 0.82441002 0.035259999 0.81844002 0.050330002 0.81291002 0.044810001 0.81805998 + 0.041979998 0.81559998 0.052409999 0.81059998 0.046670001 0.82244998 0.054499999 + 0.81883001 0.057459999 0.91752303 0.017426001 0.92255998 0.018610001 0.80615097 0.039198998 + 0.805044 0.036033999; + setAttr ".uvst[0].uvsp[1750:1999]" 0.80537999 0.03249 0.80644399 0.032972001 + 0.81198001 0.028525 0.81906098 0.029614 0.82261997 0.03176 0.81203699 0.029571 0.90850002 + 0.01078 0.91139001 0.01247 0.82261997 0.03176 0.90448999 0.01349 0.90275002 0.01302 + 0.90336001 0.0055399998 0.90424001 0.0051000002 0.91365999 0.01471 0.91987997 0.00728 + 0.92163998 0.00997 0.91742003 0.00599 0.80900502 0.030439001 0.83762002 0.040199999 + 0.84010899 0.038844999 0.84271002 0.044810001 0.83314002 0.04411 0.83837998 0.037020002 + 0.83854997 0.037039999 0.89188999 0.023940001 0.89229 0.022430001 0.89273 0.021779999 + 0.89322001 0.02351 0.89052999 0.03167 0.89796001 0.023870001 0.89515001 0.01784 0.89804 + 0.018510001 0.89310002 0.0165 0.90044999 0.01791 0.89077002 0.01859 0.89226002 0.01859 + 0.83455998 0.035659999 0.83732998 0.03469 0.83305001 0.030540001 0.83539999 0.029209999 + 0.89385998 0.01121 0.89589 0.01173 0.90219998 0.01749 0.82661998 0.038989998 0.82738 + 0.038449999 0.89911002 0.01271 0.83095002 0.037020002 0.82599002 0.032820001 0.82416999 + 0.03311 0.82547998 0.02541 0.82585001 0.025830001 0.82928002 0.024700001 0.82963002 + 0.02437 0.89906001 0.0038000001 0.89971 0.00465 0.90148002 0.0054100002 0.82959998 + 0.03184 0.90180999 0.00367 0.82745999 0.02441 0.82751 0.024870001 0.84656 0.0394 + 0.842767 0.040273 0.85108 0.04487 0.84842002 0.039407 0.84755999 0.037519999 0.84798998 + 0.037919998 0.88436002 0.02696 0.88328999 0.027589999 0.88358998 0.024940001 0.88375002 + 0.024879999 0.88174999 0.02372 0.88334 0.022779999 0.88902998 0.025560001 0.88823003 + 0.01918 0.88529998 0.01905 0.83749998 0.033969998 0.83919001 0.034230001 0.88369 + 0.01877 0.8423 0.034389999 0.84543002 0.033750001 0.84543002 0.031169999 0.84218001 + 0.031539999 0.83881003 0.03115 0.89142001 0.016209999 0.88822001 0.016589999 0.88514 + 0.01636 0.83709002 0.03111 0.89275998 0.01616 0.88325 0.01646 0.84718001 0.030889999 + 0.84707999 0.033459999 0.84816003 0.031649999 0.84943002 0.035399999 0.84847999 0.035349999 + 0.88134003 0.020059999 0.88340998 0.019540001 0.84337002 0.024250001 0.84145999 0.023949999 + 0.88924998 0.0097500002 0.89087999 0.0096500004 0.88744003 0.0094499998 0.88731003 + 0.0087000001 0.84380001 0.023530001 0.83959001 0.024630001 0.83885002 0.023700001 + 0.89178997 0.0089699998 0.84140998 0.022919999 0.88954997 0.0081099998 0.86006999 + 0.045120001 0.85525501 0.040185999 0.85803002 0.038600001 0.87515002 0.029619999 + 0.87703001 0.032000002 0.87448001 0.03077 0.87480998 0.029379999 0.87743002 0.039489999 + 0.88293999 0.034839999 0.883645 0.055555001 0.85114002 0.041540001 0.85643399 0.037501998 + 0.85677999 0.037470002 0.85187 0.035969999 0.85496998 0.035500001 0.85655999 0.035440002 + 0.87664998 0.024800001 0.87484002 0.02489 0.88117999 0.03067 0.87936997 0.02437 0.87861001 + 0.02083 0.87576002 0.02111 0.87629998 0.01667 0.87676001 0.017240001 0.87386 0.02134 + 0.85402 0.02706 0.85659999 0.031629998 0.87987 0.01646 0.88037997 0.01565 0.84959 + 0.02695 0.87842 0.01729 0.85168999 0.026419999 0.87840998 0.01567 0.87278998 0.042599998 + 0.86984003 0.043900002 0.86786002 0.037349999 0.87013 0.0361 0.87529999 0.04115 0.87260002 + 0.034079999 0.86562997 0.038249999 0.86651999 0.04465 0.86107999 0.039620001 0.85852998 + 0.03461 0.86144 0.035039999 0.86466002 0.03427 0.86655003 0.03365 0.86825001 0.032930002 + 0.86566001 0.03114 0.86680001 0.03036 0.87028998 0.03131 0.87216002 0.02891 0.86838001 + 0.029270001 0.86989999 0.0273 0.85699999 0.034230001 0.87300998 0.02712 0.87071002 + 0.02572 0.86590999 0.02813 0.86686999 0.02754 0.85768002 0.031339999 0.86716998 0.026550001 + 0.86701 0.025830001 0.86057001 0.02833 0.86522001 0.02802 0.86368001 0.02847 0.86593002 + 0.02674 0.86215001 0.028100001 0.92041999 0.12182 0.82274997 0.083120003 0.82078999 + 0.070289999 0.87997502 0.05804 0.74487799 0.854577 0.65510201 0.992989 0.65209502 + 0.95466501 0.71909201 0.83529598 0.65052599 0.912269 0.64595401 0.867621 0.68339998 + 0.80131102 0.70091403 0.81742501 0.688474 0.76030701 0.71138602 0.76835901 0.73041201 + 0.77324897 0.75 0.77787298 0.66311699 0.78190702 0.65170598 0.77804297 0.65219599 + 0.75519103 0.66041797 0.75 0.64017999 0.80046099 0.62019199 0.79049301 0.62468803 + 0.77194202 0.633461 0.73890102 0.64090103 0.73512697 0.731978 0.71668899 0.75 0.71837902 + 0.65883303 0.707928 0.636801 0.706074 0.64101601 0.80895197 0.61018199 0.86517102 + 0.59332299 0.909904 0.54106802 0.97854799 0.56820297 0.94637603 0.71346402 0.60175699 + 0.69840199 0.55289602 0.74900001 0.553029 0.74900001 0.60268599 0.74900001 0.51370001 + 0.715128 0.51289397 0.51612699 0.73583901 0.50526899 0.748941 0.51026797 0.804492 + 0.50798702 0.78716898 0.52378899 0.76963598 0.58273399 0.71065903 0.56149697 0.68910801 + 0.581137 0.68333501 0.60784101 0.71113998 0.52173299 0.668612 0.52522099 0.65965903 + 0.51239598 0.83349597 0.55241901 0.80474901 0.55632699 0.82821798 0.534361 0.83085698 + 0.531344 0.80462098 0.50730801 0.77761197 0.58040202 0.85054302 0.553222 0.874053 + 0.52529103 0.88780099 0.55691803 0.770657 0.58920401 0.78007698 0.599078 0.65758198 + 0.59404302 0.66579401 0.53111899 0.63751501 0.53376198 0.62544203 0.51032603 0.71673799 + 0.52604198 0.57857001 0.537835 0.77014703 0.92360401 0.73531199 0.93942499 0.74194902 + 0.92473298 0.82950902 0.91524398 0.83408803 0.95080602 0.66275901 0.95003498 0.67622501 + 0.941926 0.670237; + setAttr ".uvst[0].uvsp[2000:2249]" 0.94267702 0.66013199 0.953529 0.623496 0.94717002 + 0.62215197 0.95052701 0.68450499 0.94156599 0.67809099 0.94673699 0.74484199 0.93013 + 0.66387701 0.93085498 0.65670598 0.92920703 0.67154402 0.84087998 0.68100899 0.85154998 + 0.74251199 0.841102 0.74305803 0.83399498 0.68066299 0.89367598 0.65926301 0.88077801 + 0.65988898 0.88062298 0.62396401 0.89730299 0.61998498 0.92036998 0.619111 0.90999699 + 0.65647697 0.89378399 0.67260599 0.90913397 0.66491598 0.88020599 0.68308598 0.89287299 + 0.68123698 0.89515299 0.73738801 0.88492697 0.73929101 0.84963298 0.68117899 0.86142802 + 0.74167001 0.79703498 0.67588699 0.79637402 0.66251802 0.81042099 0.66285801 0.81139499 + 0.67491698 0.848333 0.65643299 0.85280502 0.626531 0.83262098 0.66000301 0.83305502 + 0.62741399 0.83241302 0.67613202 0.82302201 0.67461699 0.84707302 0.668616 0.837596 + 0.67202801 0.80521703 0.74415803 0.79865003 0.68414599 0.81134498 0.68420398 0.81346399 + 0.74483001 0.822905 0.68164003 0.82872301 0.74575502 0.80936998 0.626095 0.79579097 + 0.62344402 0.93618399 0.61940497 0.880373 0.672566 0.90616101 0.735349 0.908014 0.67648202 + 0.83206099 0.85045201 0.84534103 0.853854 0.84327698 0.85990101 0.83230102 0.85608703 + 0.854289 0.85559398 0.85088599 0.86228102 0.83359998 0.88219303 0.82373101 0.89829499 + 0.81312001 0.88971198 0.82268602 0.87698299 0.85261798 0.88907802 0.84797198 0.910676 + 0.83423299 0.90540302 0.84243202 0.88582999 0.85715902 0.911964 0.86122602 0.89306802 + 0.86361003 0.91839701 0.80228502 0.91422701 0.799317 0.90822703 0.80182999 0.905487 + 0.85634798 0.93121803 0.86117399 0.92145199 0.81501299 0.92990202 0.81597102 0.92614597 + 0.81801999 0.92744899 0.81541997 0.930408 0.81094497 0.91837198 0.80362701 0.942168 + 0.79805398 0.93838102 0.80080801 0.91812098 0.80377299 0.91546202 0.79275602 0.93582201 + 0.791031 0.935238 0.78819299 0.92559999 0.78428203 0.92150199 0.79425001 0.90572703 + 0.79635 0.90232801 0.79215902 0.90537202 0.79379499 0.902089 0.80668801 0.884794 + 0.80360901 0.88300401 0.81726801 0.85969901 0.82082403 0.86182499 0.81507599 0.87188202 + 0.81238198 0.86901802 0.82955903 0.86621499 0.886136 0.87817699 0.88540101 0.89387703 + 0.87051702 0.89534903 0.87060201 0.879143 0.81212699 0.91624999 0.82641602 0.92499 + 0.87251699 0.91164899 0.87118298 0.86476398 0.86102802 0.87759799 0.85880899 0.864546 + 0.88267499 0.91125 0.88120902 0.92304301 0.87282199 0.92231798 0.86420101 0.92671299 + 0.86147898 0.92829001 0.90180302 0.94202602 0.90005499 0.93614799 0.900841 0.93282801 + 0.90342301 0.93993199 0.89869601 0.93809402 0.89824599 0.93579602 0.80538899 0.94363898 + 0.80222499 0.94859898 0.79969299 0.94692701 0.79466403 0.94334197 0.78991598 0.94126999 + 0.78789401 0.94035 0.79884303 0.95254999 0.79682302 0.95132101 0.79158503 0.94822198 + 0.78711998 0.94569099 0.78563201 0.94477302 0.79404098 0.95926702 0.79230797 0.95817298 + 0.78747803 0.955338 0.78319401 0.95292997 0.781811 0.95210701 0.79175699 0.96261197 + 0.79010201 0.96168798 0.78525501 0.95912802 0.78114498 0.95647502 0.77973002 0.95535898 + 0.77394402 0.97215301 0.77318698 0.97206801 0.77531397 0.96300697 0.77704799 0.96356601 + 0.776205 0.97515899 0.77569199 0.97601002 0.77994698 0.97584599 0.78036201 0.97639298 + 0.78525901 0.96836102 0.78653598 0.96962398 0.78905398 0.96625298 0.78742099 0.96542102 + 0.78141397 0.96530002 0.78272003 0.96322501 0.77876502 0.96046102 0.77745301 0.95898902 + 0.83505601 0.93455899 0.832771 0.93836403 0.83230603 0.93790102 0.83250701 0.93313998 + 0.84834802 0.94247597 0.84948897 0.93910301 0.85152102 0.94098401 0.85032499 0.94440401 + 0.84192097 0.93784302 0.84280401 0.93383098 0.83748698 0.95800698 0.831622 0.95667398 + 0.845999 0.96032399 0.84385699 0.95972598 0.829449 0.95623302 0.84507197 0.96501797 + 0.842722 0.964145 0.83661503 0.96232802 0.83088201 0.96101397 0.82866901 0.960756 + 0.84378201 0.96887302 0.84172899 0.96833599 0.835585 0.966842 0.829759 0.96532601 + 0.82804698 0.96485901 0.84194702 0.97570699 0.84012598 0.975227 0.83410197 0.973638 + 0.82852799 0.97235501 0.82696998 0.97200203 0.84106398 0.97960001 0.83928698 0.97908199 + 0.83325398 0.977516 0.82775599 0.976403 0.82613701 0.97614002 0.826635 0.993747 0.82577401 + 0.99424303 0.82445502 0.98514098 0.82619399 0.98508298 0.83323097 0.99568999 0.83271599 + 0.99487901 0.83714098 0.98698097 0.83852297 0.98757899 0.829234 0.99637198 0.82942897 + 0.99531901 0.83162898 0.98408997 0.839935 0.98385298 0.838355 0.98318201 0.83240801 + 0.98153698 0.82683402 0.98092997 0.82510698 0.98065501 0.825194 0.929039 0.816414 + 0.95336199 0.8107 0.95101398 0.82266998 0.95577002 0.82498401 0.95643198 0.80856901 + 0.950082 0.82278502 0.96197599 0.82058901 0.96099198 0.81434101 0.95864302 0.80895102 + 0.95655698 0.80651802 0.95545602 0.81506097 0.97360301 0.81706798 0.97426301 0.81515402 + 0.97850698 0.81317902 0.97791398 0.80939698 0.97149903 0.80774999 0.97578502 0.80429101 + 0.96940601 0.802706 0.973827 0.80102098 0.97306001 0.80256301 0.96868002 0.820728 + 0.966757 0.818573 0.96604103 0.81237799 0.963853 0.80684203 0.96140301 0.80506903 + 0.96049201 0.80548602 0.99430799 0.80520898 0.99361402 0.80981302 0.98659903 0.81150699 + 0.98711503 0.80049002 0.99442297 0.800906 0.99322701 0.79691398 0.99078703 0.79769802 + 0.99057198 0.79761398 0.98170298 0.79917902 0.98234099 0.81148797 0.98246503 0.80488098 + 0.98259997 0.80595702 0.98038203 0.80088902 0.97819 0.813281 0.98301798 0.79925901 + 0.97727603 0.790007 0.92723101 0.80048198 0.91767299; + setAttr ".uvst[0].uvsp[2250:2499]" 0.78131503 0.91789502 0.780559 0.91584098 + 0.78700697 0.92954999 0.78520298 0.92736101 0.781973 0.92362797 0.77907598 0.92044002 + 0.77761602 0.91891402 0.78433502 0.931288 0.78296202 0.92967999 0.77967799 0.92556202 + 0.77635401 0.92216003 0.77536798 0.92095 0.77894002 0.93505502 0.777399 0.93419999 + 0.77370101 0.93074399 0.77083498 0.92686498 0.77025002 0.92563498 0.77654397 0.93703502 + 0.77540398 0.93599701 0.77204698 0.93241602 0.76889098 0.92876601 0.76796299 0.927854 + 0.75985402 0.94226402 0.75921702 0.942083 0.76254898 0.93439901 0.763466 0.93541598 + 0.76086199 0.944552 0.76014298 0.94504601 0.76315498 0.94610798 0.76319402 0.94668502 + 0.76896203 0.94176197 0.76981199 0.94281 0.76672602 0.93110901 0.77052099 0.93392599 + 0.76770103 0.93681902 0.76546401 0.930641 0.773772 0.93949598 0.77300203 0.93808401 + 0.872594 0.93696499 0.87312698 0.93298799 0.87974399 0.93483502 0.879574 0.93711001 + 0.864582 0.93730402 0.86479199 0.93502802 0.86144298 0.937361 0.86178303 0.93512797 + 0.86515701 0.95838702 0.86338401 0.959113 0.86185998 0.950589 0.86426997 0.95041502 + 0.87110698 0.962506 0.87104797 0.96385598 0.87190902 0.94947797 0.87817401 0.95047897 + 0.877231 0.95831001 0.87207401 0.94651699 0.86407298 0.94666201 0.87818402 0.94682002 + 0.87211603 0.94177997 0.87895799 0.94180799 0.86419898 0.942083 0.86132401 0.94668901 + 0.86094201 0.94222999 0.87818402 0.94682002 0.88064098 0.94703603 0.88013399 0.95080602 + 0.878811 0.95842898 0.85504299 0.875875 0.84810603 0.87354201 0.89733702 0.94003999 + 0.89719701 0.94090497 0.89512801 0.94067401 0.89565003 0.93876398 0.91078699 0.85166597 + 0.91126198 0.85734397 0.90077502 0.860659 0.89990997 0.85436302 0.89334297 0.87695998 + 0.894306 0.86207801 0.90372401 0.878425 0.89269102 0.85506803 0.88403499 0.86446702 + 0.88331699 0.85639799 0.92659301 0.84662801 0.92790997 0.85127902 0.92185599 0.85329503 + 0.92099702 0.84849298 0.925928 0.86446398 0.91593802 0.86947399 0.93109798 0.86129802 + 0.891532 0.89461201 0.898848 0.89617598 0.93006098 0.93711197 0.92391902 0.940018 + 0.91519397 0.92556602 0.91963798 0.91954798 0.92786801 0.90794498 0.94428301 0.92547601 + 0.92078102 0.94669002 0.92646497 0.94431198 0.93195403 0.94135302 0.94198698 0.93673301 + 0.94174403 0.937271 0.93841499 0.937163 0.94215798 0.93403101 0.95410597 0.91259199 + 0.95368701 0.91872197 0.95052999 0.924568 0.92517501 0.94753498 0.924739 0.94762802 + 0.91313601 0.94450903 0.91457701 0.94891 0.907561 0.95111197 0.90600502 0.94703501 + 0.94706601 0.92883801 0.95650601 0.914563 0.957421 0.90636897 0.95927101 0.908952 + 0.937675 0.89656001 0.94495898 0.88790101 0.93778801 0.872069 0.93397802 0.87493902 + 0.926009 0.882581 0.91867501 0.89050901 0.947662 0.88480699 0.95421201 0.92276901 + 0.963139 0.93537498 0.96218801 0.93660903 0.95110202 0.94578201 0.951985 0.94511598 + 0.958754 0.90340298 0.96034801 0.906129 0.96813202 0.92120397 0.96528798 0.925511 + 0.97125 0.91544598 0.898422 0.91877198 0.90838599 0.90198803 0.908391 0.93581402 + 0.88748699 0.912233 0.89155501 0.91389799 0.88540101 0.89387703 0.88267499 0.91125 + 0.88495201 0.92373103 0.88827097 0.924559 0.88120902 0.92304301 0.95429099 0.92069697 + 0.96017802 0.945687 0.95414299 0.94899398 0.95725203 0.94179398 0.96586102 0.94126701 + 0.96264797 0.94920802 0.95805299 0.952245 0.96816701 0.94532299 0.96728897 0.95609301 + 0.96337003 0.95850998 0.97248799 0.95246702 0.969015 0.95878899 0.96566498 0.961703 + 0.97478598 0.95534003 0.97723198 0.95913202 0.97201699 0.96311098 0.968687 0.96529502 + 0.97149199 0.96898198 0.97499198 0.96698397 0.98068202 0.973813 0.97658998 0.974684 + 0.97969502 0.96308798 0.98330802 0.97009599 0.953345 0.949148 0.966914 0.94013202 + 0.95714402 0.952797 0.96930802 0.94458199 0.96262902 0.95898598 0.97360897 0.95167702 + 0.965114 0.962152 0.97589898 0.95472801 0.98362601 0.97052097 0.98115301 0.97448802 + 0.976991 0.97513598 0.97854501 0.957995 0.98104203 0.96170503 0.96777499 0.96564502 + 0.97021198 0.96909201 0.92717201 0.958372 0.92523301 0.95906299 0.90511698 0.95185602 + 0.90355098 0.947905 0.91856498 0.96166903 0.91184801 0.96389002 0.919783 0.96574801 + 0.91328597 0.9677 0.92658502 0.96357298 0.92084497 0.96934903 0.914832 0.97128701 + 0.92734998 0.96748 0.92297399 0.97611398 0.917328 0.97803199 0.928617 0.97451502 + 0.92411798 0.97996598 0.91814101 0.98191702 0.92998701 0.97835302 0.92670101 0.98774201 + 0.929322 0.996535 0.92567497 0.99687099 0.92131698 0.98960203 0.93213201 0.98696101 + 0.93269998 0.99483198 0.925264 0.98381901 0.91968298 0.98588097 0.93111402 0.98261797 + 0.90969503 0.96462899 0.911479 0.968373 0.928303 0.96283901 0.91281903 0.97206497 + 0.92921799 0.96682203 0.91532099 0.978692 0.93045801 0.97392702 0.91631198 0.98252499 + 0.93165398 0.97795898 0.92957902 0.99780101 0.92577899 0.99759001 0.93275499 0.99587399 + 0.91941398 0.99030101 0.91781402 0.98659402 0.93289399 0.98234701 0.93385202 0.98668802 + 0.93049902 0.95880699 0.93243098 0.957838 0.94720298 0.95105702 0.94559401 0.95166099 + 0.94122303 0.96048498 0.93512702 0.96314901 0.938604 0.95490301 0.94808 0.95702398 + 0.94880199 0.97615302 0.94390303 0.97883499 0.941984 0.97486699 0.94694799 0.97232902 + 0.95238799 0.96995401 0.95428401 0.97393298 0.94326001 0.96473002 0.937747 0.96739697 + 0.949224 0.96197402 0.94813901 0.98714399 0.94589299 0.98308998 0.95064402 0.980012 + 0.95293701 0.984622 0.95619798 0.978019 0.958314 0.98236197 0.95690101 0.99239397; + setAttr ".uvst[0].uvsp[2500:2749]" 0.95268703 0.99356401 0.96065801 0.98989999 + 0.93305302 0.96419603 0.94959998 0.95628601 0.94249099 0.98006803 0.9404 0.97570902 + 0.95383102 0.96936601 0.95582497 0.97350299 0.93607002 0.96848297 0.95091802 0.961303 + 0.95740998 0.99346101 0.95308697 0.99400598 0.96083999 0.99033701 0.94663501 0.98830199 + 0.944489 0.98440599 0.95789802 0.97749001 0.95982099 0.98191899 0.97174799 0.92334503 + 0.96870899 0.92753601 0.97481602 0.91766602 0.97401398 0.92447001 0.97133201 0.92861801 + 0.977332 0.91928601 0.97964197 0.92761803 0.9774 0.93139601 0.982889 0.92298698 0.98235798 + 0.929295 0.98007601 0.93317598 0.98550802 0.92470503 0.98862398 0.92721403 0.99216998 + 0.93016601 0.98974502 0.934632 0.985946 0.93208301 0.98755503 0.937751 0.98350698 + 0.93522501 0.99567199 0.93833202 0.99333602 0.94062698 0.99664402 0.93554997 0.97193199 + 0.91386902 0.967843 0.92844403 0.96449298 0.926705 0.97543597 0.91614503 0.97088701 + 0.929627 0.97794801 0.91788399 0.97687799 0.93229401 0.98374897 0.92167699 0.97956002 + 0.93389797 0.98639101 0.92338598 0.98930103 0.92575502 0.99271101 0.929115 0.98711002 + 0.93849897 0.98270202 0.935817 0.99400002 0.94085097 0.99698597 0.93595999 0.88920999 + 0.93894303 0.88435602 0.93792498 0.884987 0.93521899 0.88991702 0.936189 0.88209301 + 0.93757302 0.88241798 0.935229 0.887833 0.94404203 0.88342702 0.94272202 0.89402401 + 0.94576401 0.88123101 0.94223601 0.88275099 0.94757402 0.88698399 0.94849902 0.89294398 + 0.95000499 0.88605398 0.95208699 0.88197899 0.95130903 0.89189601 0.95347899 0.88365102 + 0.96103799 0.87990099 0.959117 0.88968301 0.95948601 0.896079 0.94603002 0.89363497 + 0.95394403 0.89054698 0.96099502 0.88290298 0.96392602 0.87895799 0.94180799 0.89488101 + 0.95052499 0.879574 0.93711001 0.87974399 0.93483502 0.90795797 0.87420601 0.91478097 + 0.89363301 0.81929302 0.85042 0.81896502 0.84540802 0.89416999 0.92747998 0.99636799 + 0.93878001 0.87018698 0.856471 0.83948898 0.87040901 0.854289 0.85559398 0.84534103 + 0.853854 0.84333003 0.83393002 0.85189599 0.83515102 0.89269102 0.85506803 0.89524198 + 0.83908802 0.90345299 0.83719099 0.89990997 0.85436302 0.88645703 0.840186 0.88331699 + 0.85639799 0.87018698 0.856471 0.87366402 0.83885098 0.817231 0.82109898 0.825589 + 0.83075303 0.83206099 0.85045201 0.81896502 0.84540802 0.92915303 0.82511002 0.92659301 + 0.84662801 0.92099702 0.84849298 0.91078699 0.85166597 0.86415303 0.836891 0.86295497 + 0.856583 0.86295497 0.856583 0.551507 0.53891897 0.56919998 0.58338702 0.50690901 + 0.536304 0.54445797 0.50899601 0.59533101 0.37459999 0.58322197 0.44255799 0.55195302 + 0.43360299 0.559448 0.35821 0.61511201 0.51627302 0.61151999 0.48485801 0.61981601 + 0.51559597 0.56536102 0.26182601 0.56168002 0.328219 0.67295802 0.30178601 0.66292 + 0.38794899 0.62969601 0.38490799 0.64008498 0.29888901 0.62089902 0.40700001 0.60322303 + 0.45412001 0.89414501 0.526968 0.920968 0.53163201 0.92029297 0.53676498 0.889705 + 0.53736299 0.68059701 0.39412501 0.69122398 0.30609199 0.94700903 0.53213698 0.956406 + 0.532722 0.95631599 0.536672 0.94638097 0.536677 0.59978598 0.35100999 0.74900001 + 0.46149501 0.74900001 0.51370001 0.715128 0.51289397 0.71921903 0.46108401 0.72031999 + 0.44675401 0.74900001 0.448668 0.92858797 0.53469402 0.930471 0.52920598 0.94700903 + 0.53213698 0.94638097 0.536677 0.60915297 0.27828899 0.68939501 0.53540802 0.68639302 + 0.52957898 0.70069498 0.51139599 0.70430303 0.51177001 0.901609 0.571356 0.895657 + 0.55435902 0.91095102 0.55405998 0.92254698 0.55766499 0.92556798 0.54618001 0.94461101 + 0.54794502 0.94284099 0.559214 0.88463902 0.58231097 0.86024398 0.56675297 0.87967199 + 0.562038 0.85878998 0.58938998 0.83783901 0.58150601 0.81212199 0.57041198 0.82079101 + 0.55396903 0.84200799 0.561589 0.959535 0.55882001 0.95511198 0.55918598 0.79807597 + 0.55882698 0.95571399 0.54792899 0.95970702 0.54743099 0.70430303 0.51177001 0.70069498 + 0.51139599 0.70199698 0.45920601 0.706303 0.45967501 0.79779798 0.54743499 0.74900001 + 0.339647 0.74900001 0.43584001 0.72141999 0.43242401 0.73521 0.332764 0.92029297 + 0.53676498 0.920968 0.53163201 0.930471 0.52920598 0.92858797 0.53469402 0.62605298 + 0.16391 0.61852002 0.205568 0.57147801 0.20355099 0.65994 0.16773599 0.650473 0.212871 + 0.69335502 0.173186 0.68299598 0.215624 0.70185101 0.218059 0.71166801 0.174721 0.73033398 + 0.17471001 0.725425 0.22558101 0.71321702 0.319428 0.70100802 0.413275 0.71101898 + 0.44487301 0.70791799 0.44424599 0.52271301 0.76076698 0.56337202 0.75565702 0.5406 + 0.75734502 0.556777 0.70998502 0.87155998 0.064465001 0.62822998 0.707569 0.807271 + 0.40838301 0.78010303 0.404066 0.821087 0.407897 0.59485799 0.12055 0.63183701 0.131908 + 0.62605298 0.16391 0.575481 0.15526301 0.80537999 0.03249 0.80840999 0.029759999 + 0.59368998 0.76308697 0.70974803 0.43641701 0.710383 0.44064501 0.71101898 0.44487301 + 0.70791799 0.44424599 0.54559702 0.059316002 0.80657399 0.444143 0.79978102 0.44859901 + 0.78051001 0.426296 0.74900001 0.17469899 0.74900001 0.23310401 0.71411902 0.44549999 + 0.71649802 0.43050599 0.72141999 0.43242401 0.72031999 0.44675401 0.72031999 0.44675401 + 0.71921903 0.46108401 0.71060801 0.460145 0.71411902 0.44549999 0.715128 0.51289397 + 0.70791101 0.51214498 0.69840199 0.55289602 0.692397 0.541237 0.70791101 0.51214498 + 0.715128 0.51289397 0.60100102 0.51830298 0.61040902 0.516949 0.71166801 0.174721 + 0.72262001 0.138539 0.57111299 0.51051599; + setAttr ".uvst[0].uvsp[2750:2795]" 0.710307 0.713193 0.68517798 0.71056098 0.61366498 + 0.53995401 0.641689 0.593503 0.60854203 0.58829302 0.57983202 0.54090798 0.67814398 + 0.59969902 0.65497798 0.55883998 0.634799 0.52581 0.65846503 0.53488201 0.65759301 + 0.54087198 0.62951601 0.52934599 0.65759301 0.54087198 0.65846503 0.53488201 0.62951601 + 0.52934599 0.61511201 0.51627302 0.61981601 0.51559597 0.634799 0.52581 0.65497798 + 0.55883998 0.656721 0.54686099 0.61366498 0.53995401 0.62423199 0.53288198 0.656721 + 0.54686099 0.65497798 0.55883998 0.60100102 0.51830298 0.61040902 0.516949 0.62423199 + 0.53288198 0.61366498 0.53995401 0.89858401 0.516572 0.92164302 0.52649999 0.92164302 + 0.52649999 0.93235499 0.523718 0.93235499 0.523718 0.94763798 0.52759701 0.94763798 + 0.52759701 0.95649701 0.52877098 0.889705 0.53736299 0.87470502 0.54176402 0.92029297 + 0.53676498 0.92858797 0.53469402 0.95987898 0.53604198 0.79751903 0.53604299 0.82946002 + 0.53752601 0.84617603 0.54167199 0.86169797 0.54411697 0.711577 0.42858699; + setAttr ".cuvs" -type "string" "map1"; + setAttr ".dcc" -type "string" "Ambient+Diffuse"; + setAttr ".sdt" 0; + setAttr ".ugsdt" no; + setAttr -s 2226 ".vt"; + setAttr ".vt[0:165]" 2.59383035 8.83124447 0.37452728 2.5957675 8.92690563 0.30317232 + 2.57264829 9.046378136 0.31192374 2.53801537 9.11967659 0.39565355 2.51215601 9.10386276 0.50531542 + 2.51021791 9.0082006454 0.57666934 2.53333688 8.88872814 0.56791896 2.56797099 8.81542873 0.48418817 + 2.63957906 8.84161472 0.38791561 2.64151621 8.93727684 0.31656164 2.618397 9.056749344 0.32531309 + 2.58376384 9.1300478 0.40904287 2.55790472 9.11423397 0.51870471 2.55596662 9.0185709 0.59005868 + 2.57908559 8.8990984 0.58130729 2.6137197 8.82579994 0.49757746 2.59874201 8.97792339 0.45330966 + 2.38341522 8.93663692 0.69789374 2.56420374 8.88153267 0.46591395 2.54669499 8.78147984 0.1759012 + 2.44572306 8.74734116 0.11299402 2.32563353 8.73136902 0.11120428 2.1672442 8.79154968 0.34973955 + 2.16235495 8.88652515 0.63319683 2.26332688 8.92066479 0.69610399 2.36635756 9.10989285 0.64747661 + 2.54714584 9.054788589 0.41549778 2.52963614 8.95473576 0.12548406 2.42866421 8.92059708 0.062577859 + 2.30857587 8.90462494 0.060788125 2.1501863 8.9648056 0.2993224 2.1452961 9.059782028 0.58278066 + 2.24626803 9.093919754 0.64568681 2.59964919 8.82821465 0.29437602 2.58259034 9.0014705658 0.24395885 + 2.47833061 9.10054398 0.57726985 2.49538946 8.92728901 0.62768698 2.23311472 8.75843811 0.2265722 + 2.21605659 8.93169498 0.17615506 2.15147543 8.83601761 0.48756844 2.13441634 9.0092725754 0.43715131 + 2.59774327 8.84582806 0.50246823 2.58320618 8.84454155 0.50417209 2.57208323 8.84001064 0.4949578 + 2.5708921 8.83488941 0.48022306 2.58032846 8.83217525 0.46859813 2.59486675 8.83346176 0.46689332 + 2.60598874 8.83799267 0.47610751 2.60718083 8.84311581 0.4908433 2.60093355 8.81343269 0.5118944 + 2.58639526 8.81214714 0.51359916 2.57527351 8.80761623 0.50438488 2.57408118 8.80249405 0.48964912 + 2.58351874 8.79978085 0.47802517 2.59805584 8.8010664 0.47632042 2.60917902 8.80559635 0.48553461 + 2.61037111 8.81072044 0.50027037 2.59222627 8.80660725 0.4949598 2.61319304 8.83396053 0.44494981 + 2.60061908 8.83070087 0.44669461 2.59045482 8.82880497 0.43829468 2.58865428 8.82938576 0.42467201 + 2.5962708 8.83210278 0.41380569 2.60884428 8.83536339 0.41206089 2.61900949 8.83725739 0.42046082 + 2.62081003 8.83667564 0.43408349 2.61825514 8.80751324 0.4432264 2.60568166 8.80425358 0.44497126 + 2.59551668 8.80235958 0.43657133 2.59371614 8.80293941 0.42294869 2.60133266 8.80565548 0.41208237 + 2.6139071 8.80891514 0.41033757 2.62407112 8.81081009 0.4187375 2.6258719 8.81022835 0.43236014 + 2.6097939 8.80658436 0.42765394 2.57846332 8.87578487 0.5500831 2.56549358 8.8765583 0.55065435 + 2.55572414 8.87063122 0.54342806 2.55488157 8.86147881 0.53263789 2.56345701 8.85445976 0.52460414 + 2.57642841 8.85368824 0.52403289 2.58619642 8.85961533 0.53125823 2.58703899 8.86876774 0.54204935 + 2.57810211 8.85449123 0.56569862 2.56513119 8.85526466 0.56626981 2.55536366 8.84933758 0.55904442 + 2.55452108 8.84018517 0.54825336 2.56309652 8.83316708 0.54021955 2.57606602 8.83239555 0.53964835 + 2.58583403 8.83832169 0.5468747 2.5866766 8.84747505 0.55766481 2.5705986 8.84383011 0.55295962 + 0.0022468525 8.0062322617 0.78026897 0.0023183245 8.049283981 0.23885716 0.0021085571 10.43730259 -0.45813784 + 0.0022359635 9.048955917 1.2901473 0.0021629143 9.84497261 1.3394177 0.0020536981 8.22111797 -0.45257586 + 0.0022618084 8.7673254 -0.65210658 0.00064479292 15.24143887 -0.35785595 2.8885874e-005 16.72198868 0.72269619 + 1.3877788e-017 16.79142761 0.066035375 0.00099389628 14.36218071 -0.66548657 0.00055243744 15.46344852 1.23071778 + 0.0007566312 14.97259617 1.14040565 0.00036421439 15.91590977 1.3055191 0.00017047569 16.38162804 1.14781761 + 0.0009506151 14.50628757 0.9803946 0.00087916484 14.67804337 0.59551716 0.00082276302 14.81362534 1.12432146 + 0.00092017639 14.57945824 0.77365065 0.00073431031 15.026252747 1.32971132 0.00086087757 14.68193817 -0.54129642 + 0.0010601042 14.20302677 0.48536479 0.00051240256 15.55968666 1.29802334 0.0012661414 13.70774364 0.6489132 + 0.0012232369 13.81087971 0.49466977 0.0011088751 14.085788727 -0.79307908 0.0013108294 13.65933895 -0.95499378 + 0.0017356111 12.57920742 1.23889887 0.0017610993 10.64888573 1.30644774 0.0017610993 12.28007412 1.17075419 + 0.0016787146 12.71597862 -0.97025031 0.0017610993 10.95499134 -0.45164806 0.00045699877 15.69286919 -0.43354088 + 0.0021914402 9.53412437 -0.6098904 0.0015042343 13.13540363 -0.97968584 0.0022857881 8.50601578 1.18069005 + 0.00092581601 14.5659008 1.053489208 0.00020162975 16.3067379 -0.37127864 0.000610905 15.32290077 1.26040888 + 0.0014774017 13.19990444 0.93164963 0.0017610993 11.4622879 1.28830099 0.0017610993 11.89213181 -0.79078853 + -1.19926679 9.44057369 0.85058862 -1.26843488 9.725173 0.46005344 -1.026540279 10.12021065 0.55849099 + -1.13452303 10.29289913 0.011660585 -1.21824861 9.81996632 -0.13244937 -0.65856993 9.025680542 1.1859864 + -0.71979398 9.90525913 -0.62350476 -0.76237458 10.36813545 -0.41885775 -0.4349992 8.50985241 1.099225998 + -0.48860332 8.40227032 1.021452427 -1.047198772 5.055290699 0.91470408 -0.58972269 6.56577444 1.00012969971 + -0.37470412 6.70466042 -0.33676684 -0.59667063 5.39145327 -0.17922124 -0.23489109 6.57868576 0.68717533 + -1.34507263 6.75812864 -0.32516041 -0.68326843 5.056622028 -0.12532592 -0.43383682 4.98088455 0.45348287 + -0.48568279 4.50136852 0.32720739 -0.43512729 5.3087368 0.5353663 -0.76498485 4.23869658 0.55590755 + -1.016611099 4.056600094 0.57428712 -1.05142653 4.71261692 0.87092775 -0.72932315 4.50055695 0.66361207 + -1.28612411 4.51645088 0.57087654 -1.044807553 4.49410772 0.80437762 -0.72016037 4.99873018 0.77778858 + -0.72037059 4.72340918 0.72749203 -1.28597903 4.73046255 0.63829839 -1.033116698 4.22999477 0.69122893 + -1.27002311 4.261343 0.45626307 -1.39232588 8.60801506 -0.49237469; + setAttr ".vt[166:331]" -1.37452447 7.63160133 -0.41859341 -0.23410217 7.6067338 -0.3910948 + -0.76847637 8.61514378 -0.95580208 -1.25180721 4.096190453 0.39733109 -1.17487729 5.016149521 -0.01802407 + -1.20077443 4.80670309 -0.03784322 -1.37757874 4.98947239 0.34218591 -1.36276996 4.56104088 0.25904962 + -1.27363575 5.023901463 0.688371 -0.70905054 5.24067974 0.82030392 -1.49296129 6.68545485 0.32372355 + -1.53376949 7.59602404 0.30945134 -1.031125784 5.23818731 0.90893811 -1.22408903 2.34691501 -0.0032865 + -0.79031777 2.28096676 -0.61056447 -0.74971282 2.83318663 -0.67238939 -0.71861702 4.3878355 -0.31533226 + -0.67703348 2.27547884 -0.49832213 -0.61756176 2.81690645 -0.53972805 -0.60146093 4.12754202 0.21418753 + -0.5239585 2.86754465 -0.25117224 -0.64612067 2.32036877 -0.17353874 -1.29729676 2.30691576 -0.27643701 + -1.41092956 2.92996359 -0.46621227 -0.75447214 4.69034243 -0.1666792 -0.72756201 4.85128307 -0.13192374 + -1.37284136 4.3496356 -0.11986991 -1.23041046 4.60536528 -0.081621341 -0.48023364 4.26464939 0.031067546 + -0.60996783 4.35581827 -0.20912074 -0.60622555 4.65550756 -0.057585943 -0.78707248 7.63884115 -0.60409188 + -0.83357203 6.75025272 -0.43085667 -1.29050946 5.2594099 0.70555258 -1.36976779 5.31007814 0.35318831 + -1.19151902 5.35084677 -0.088195696 -0.97675979 4.6772747 -0.18272647 -0.94446063 4.84755373 -0.1510634 + -0.90951109 5.060671806 -0.14914483 -0.86174595 5.39057255 -0.22091641 -1.078785181 4.38958883 -0.34663996 + -0.86789614 4.39214849 -0.40280503 -0.96816689 2.85341692 -0.73102576 -0.9707365 2.2778945 -0.64763999 + -1.21747565 2.87602186 -0.65180063 -1.16365933 2.31095362 -0.58549136 -0.7946195 4.073348045 0.45780241 + -0.57055479 4.25431871 0.23974851 -1.0036851168 6.5726161 1.086196899 -1.42063618 6.62983608 0.82524604 + -1.37764215 4.20850182 0.11470345 -1.29290617 3.88456964 0.31296575 -1.43615592 3.95606375 -0.02784922 + -1.44063604 3.99542189 -0.33171642 -1.19726372 4.0041685104 -0.52294517 -0.95453858 3.98949051 -0.61383021 + -0.72879755 3.98603559 -0.55135638 -0.56926692 3.97214007 -0.41988975 -0.43541762 3.92874169 -0.10921481 + -0.63283563 3.86896825 0.15536378 -1.35640073 4.32088232 0.17225116 -1.32528782 3.41982102 0.19487125 + -1.49615645 3.45965505 -0.16684151 -1.49704802 3.49452972 -0.44712326 -1.25008953 3.48590541 -0.6455164 + -0.96677655 3.47074223 -0.74945325 -0.71569383 3.47561193 -0.68152088 -0.54354823 3.47507381 -0.54579264 + -0.42655754 3.4838047 -0.20470451 -0.64960492 3.4342351 0.045684628 -0.78157109 8.88504696 1.0059819221 + -0.098981105 8.7403841 -0.83119941 -0.13199605 8.04360199 -0.65010005 -0.15226959 7.95512056 0.79861635 + -0.1089086 7.9134717 0.16993824 -0.22049622 6.64402866 0.095297001 -0.13094711 7.51218939 0.79127306 + -0.097385645 7.55606461 0.15563983 -0.4708274 5.37305593 0.013280397 -0.53746647 5.034420013 -0.0061148601 + -0.58109921 4.80918074 -0.018971009 -0.45092878 4.73197317 0.39991471 -0.70330608 9.86446095 1.18046188 + -0.4613212 10.39655685 -0.52140051 -0.28793874 9.79662323 -0.7000556 -0.78192109 3.83414316 0.37847075 + -0.79773247 3.39661956 0.26410827 -0.80618078 2.34875631 0.051276751 -1.015160322 3.81356597 0.50682884 + -1.029509306 3.37960768 0.38839412 -1.004953742 2.35915136 0.18021324 -1.39289343 0.3052952 -0.38145363 + -1.40244067 0.16569246 -0.36696449 -1.36111212 0.061525773 -0.33490536 -0.71544671 0.17504212 -0.098732375 + -0.71263373 0.43141672 -0.11477288 -1.36122906 0.43493533 -0.380597 -0.72202152 0.67965037 -0.19754 + -1.19711232 1.80679166 -0.037682749 -0.69614011 1.82504809 -0.19963038 -0.85038418 1.84501112 -0.59127951 + -0.76514161 0.47889659 -0.79452103 -0.75223643 0.31138417 -0.80518723 -1.64573336 0.20905112 0.92735738 + -1.68606806 0.20408314 0.91205716 -1.7651453 0.21450996 0.77635425 -1.77577043 0.16879067 0.88430649 + -1.7783612 0.12831703 1.018275142 -1.77106631 0.091895834 1.080555916 -1.54825318 0.21719125 1.0097482204 + -1.53388655 0.22122818 1.02356708 -1.54853153 0.18428603 1.1686877 -1.55945635 0.15903354 1.2538383 + -1.39141357 0.24646007 1.0731709 -1.41190696 0.19661787 1.18679142 -1.42534316 0.16174491 1.27982926 + -1.3646239 0.25664532 1.08508575 -1.17315972 0.27831477 1.13034689 -1.23872864 0.22385962 1.35456991 + -0.95924288 0.12368433 1.36995339 -0.91124445 0.10795514 1.023348331 -1.7818234 0.15296176 0.77377474 + -1.78624332 0.13451345 0.88036114 -1.76588011 0.055832244 1.07626915 -1.77057207 0.10496953 0.76035142 + -1.76513779 0.09847308 0.88243926 -1.74429142 0.032005057 1.064168811 -1.67049277 0.071663737 0.92621374 + -1.68030179 0.055023305 1.071125984 -1.39664125 0.076323956 1.065768361 -1.43597758 0.11712426 1.1917851 + -1.43913352 0.094220348 1.26774645 -1.51496065 0.064458936 1.025422096 -1.5385952 0.10639141 1.16348052 + -1.55448949 0.085413143 1.2405777 -1.54498374 0.065662451 0.9948951 -1.72842932 0.044453789 1.12242901 + -1.34534323 0.076244868 1.081296086 -1.14946795 0.084531128 1.12930822 -1.21846199 0.057701144 1.33105528 + -1.1858151 0.16028778 1.13241887 -1.25835526 0.12847865 1.32972956 -1.20891201 0.27457955 1.11618066 + -1.21178603 0.16565119 1.13631785 -1.39264822 0.12969679 1.091916919 -1.67106175 0.15287922 0.9176414 + -1.67417896 0.1072932 1.091039181 -1.21182191 0.079951711 1.11465454 -1.086720347 0.081605703 1.49747849 + -1.21056795 0.088570662 1.47554564 -1.010619402 0.054759391 1.35264671 -1.52968311 0.13655859 1.030358911 + -1.37692714 0.12986785 1.097320914 -0.85527444 0.20513967 1.047137856 -0.98953605 0.21984759 1.3871007 + -1.091319323 0.15274684 1.51745212 -1.20969677 0.15565594 1.49597001 -1.68567336 0.1306106 1.0989151 + -1.6875304 0.061879948 1.13631964 -1.68975425 0.07536801 1.14350343 -1.6998086 0.090854779 1.14382446 + -1.73811042 0.075582065 1.13266909 -1.73672819 0.055108409 1.12930036 -1.55357575 0.098657906 1.3680048 + -1.54685628 0.11913759 1.35954964 -1.47241771 0.12149736 1.3736887; + setAttr ".vt[332:497]" -1.46882379 0.10299318 1.37826502 -1.47096837 0.082970843 1.3792336 + -1.55060792 0.079032741 1.36523366 -1.4190551 0.14387773 1.19279218 -1.5457499 0.13869399 1.024660826 + -1.62881649 0.074399173 0.9402706 -1.64516914 0.15080057 0.9307996 -1.43190312 0.12350037 1.27429307 + -1.56408751 0.12050015 1.23975945 -1.55361271 0.12965637 1.16436338 -1.40272105 0.13322398 1.2035774 + -1.42149925 0.10784167 1.30926073 -1.27697396 0.12876233 1.33361459 -1.24609542 0.16555578 1.2334832 + -1.41574979 0.086655341 1.41673088 -1.33923674 0.086296871 1.43275118 -1.33582628 0.11028567 1.43214226 + -1.34083736 0.13028049 1.42888021 -1.4132179 0.12821989 1.42020988 -1.42074418 0.1079345 1.42306328 + -1.41396761 0.059038777 1.30117309 -1.39236236 0.11480489 1.21752834 -1.28093231 0.084258609 1.32486987 + -1.25844383 0.11631961 1.23865962 -1.28160429 0.17297378 1.34108448 -1.24652779 0.19594905 1.23935354 + -1.41237342 0.17390823 1.32173467 -1.39998639 0.21372938 1.21721518 -1.67034245 0.16258565 1.096064329 + -1.67431903 0.14103656 1.16876721 -1.56277645 0.1614062 1.11658919 -1.56727672 0.14388031 1.18799365 + -1.56032491 0.10684273 1.098922968 -1.56519222 0.055299256 1.16908932 -1.66101921 0.11031318 1.079317689 + -1.67137969 0.067590676 1.14713192 -1.66498923 0.079332761 1.25835681 -1.66273224 0.098314054 1.25710464 + -1.60127449 0.10029557 1.27667749 -1.59589005 0.078752495 1.28039622 -1.5963521 0.063106686 1.26762474 + -1.66038299 0.057709742 1.24828553 -1.55223238 0.12474773 1.10851562 -1.55521965 0.10718746 1.17995071 + -1.67798948 0.10942343 1.1565758 -1.67401302 0.12561856 1.082476497 -0.64917523 0.45649388 -0.67325652 + -0.63233775 0.30276522 -0.66960168 -0.74056661 1.83222532 -0.48098049 -1.06482935 1.8350184 -0.58373266 + -0.93349695 1.8413111 -0.62675554 -0.90561932 0.48160538 -0.8254829 -0.90632927 0.31592575 -0.84770441 + -0.92834294 0.057818919 -0.75607961 -0.78795928 0.05824187 -0.69582975 -0.95098263 0.0010409701 -0.64245301 + -1.11830711 0.26238272 1.37768745 -1.15523231 0.075916469 1.49356103 -1.12178588 0.032607675 1.33962405 + -1.15580201 0.16205353 1.51719832 -1.26339221 0.37849349 1.0056051016 -1.42490792 0.34379762 0.96181494 + -1.4578197 0.29506263 1.046851754 -1.48547506 0.2327528 1.18310845 -1.49957705 0.20364559 1.27134085 + -1.49025834 0.090228945 1.17161882 -1.4932549 0.050391458 1.24270129 -1.27740192 0.34688982 1.07748723 + -1.51495969 0.12706709 1.38151991 -1.51468134 0.099061087 1.3836261 -1.51247406 0.066039845 1.37739086 + -1.37664127 0.075812452 1.43581986 -1.37757993 0.11042149 1.44165874 -1.37533212 0.13621216 1.43616819 + -1.34465814 0.046573706 1.30237091 -1.32279277 0.09462525 1.22769153 -1.34411502 0.22316244 1.34592068 + -1.31561136 0.27243724 1.24055839 -1.60008514 0.30221847 0.88890553 -1.61175954 0.27472138 0.97168666 + -1.62235141 0.20781147 1.12027037 -1.62114358 0.17220697 1.18781424 -1.61325407 0.075291499 1.088164926 + -1.61132336 0.032886203 1.15802932 -1.62986016 0.10078299 1.27794099 -1.63110662 0.075668037 1.28133428 + -1.62776911 0.048473559 1.26373363 -1.71217084 0.27304074 0.81689477 -1.73020518 0.23896727 0.91104567 + -1.74155223 0.18051815 1.044327378 -1.72407758 0.078944191 0.89203799 -1.70363963 0.029892873 1.062970161 + -1.70607924 0.046166226 1.12365401 -1.71079063 0.063667186 1.14644337 -1.7221607 0.085701123 1.14707947 + -1.73358703 0.1288165 1.099842668 -1.048671246 0.47524649 -0.78393525 -1.086405039 0.3138445 -0.8101564 + -1.095468402 0.15310189 -0.80328417 -1.07762301 0.06126013 -0.76049227 -1.038097858 0.40242556 1.051813841 + -0.70041633 0.28392577 -0.082851999 -0.65469897 0.15482722 -0.62314087 -0.75550491 0.14938559 -0.75791276 + -0.91813087 0.14799979 -0.81565225 -0.70718193 0.059633657 -0.55761909 -0.84166759 0.003388701 -0.58563316 + -0.77788734 0.0060880324 -0.4905434 -1.063170671 0.057402838 1.13723755 -0.93659949 0.096299 1.14209282 + -0.87908781 0.18732665 1.13857973 -0.90992236 0.27833024 1.15134251 -1.058546782 0.37120187 1.1448772 + -1.042798996 0.035137653 0.98979914 -1.27442753 0.07353694 1.10050237 -1.44764829 0.058498051 1.048199296 + -0.89258134 0.30039084 1.054158926 -1.40134811 0.029370196 0.89338636 -1.59044659 0.054573704 0.96746564 + -1.55881369 0.026576305 0.83890712 -1.22574317 0.032236304 0.94252813 -1.6439724 0.024844088 0.79916376 + -1.34856641 0.6303128 0.070633501 -1.28396845 1.81671631 -0.30664989 -1.096570015 0.31765023 1.30719054 + -1.23192143 0.25841278 1.27126741 -1.24148631 0.15795468 1.25403953 -1.20917106 0.099202931 1.24294186 + -1.094448566 0.066933885 1.2518791 -0.98588765 0.090803199 1.27272773 -0.92632282 0.15145735 1.29083943 + -0.95089686 0.24497372 1.30935788 -0.87250292 0.64293087 0.31176773 -0.84988165 1.0021990538 0.019138001 + -0.74691278 0.96713775 -0.23478702 -0.80482918 1.0047805309 -0.56493324 -0.88175708 1.018072605 -0.65497863 + -1.038116336 0.74103004 -0.72521228 -0.93292248 0.74616313 -0.732669 -0.82643157 0.7351079 -0.70664215 + -0.72377336 0.71558326 -0.6181035 -1.28309977 0.70139539 -0.39559799 -1.26816702 0.76833802 -0.077118121 + -0.94709551 1.022724271 -0.66410226 -1.046890974 1.02291429 -0.6284976 -1.26218796 0.99183065 -0.36714825 + -1.20753276 1.015466928 -0.094831623 -0.83960599 0.78274935 0.082590371 -1.062051415 -0.0001290269 -0.64358175 + -1.27076626 0.0053805322 -0.28668937 -1.16948652 0.0074110487 -0.24078426 -1.026850343 0.010022695 -0.18765688 + -0.90125453 0.012268127 -0.14340463 -0.79295468 0.067937113 -0.1190175 -1.71515715 0.042718135 0.77632451 + -1.77953291 0.096281812 1.0024988651 -1.75933766 0.072384991 0.9906776 -1.71811688 0.056054037 0.99227446 + -1.680619 0.0706416 1.0018994808 -1.67114556 0.13067423 1.034397006 -1.67932546 0.16477434 1.045571685 + -1.10611284 0.68236858 0.28632975 -1.029324889 0.83708417 0.083398871 -1.0071296692 1.030024409 0.052681122 + -0.99383897 1.83120668 0.11490849 -0.82241994 1.82139289 0.040872127; + setAttr ".vt[498:663]" -0.24065836 15.22966385 -0.30574942 -0.64857626 15.3692503 0.17625031 + -0.77612662 15.78343296 0.30130538 -0.59382087 15.26827431 0.32525456 -0.4871344 15.068079948 0.15175632 + -0.55493045 15.33718109 0.1741066 -0.63454276 16.20087624 0.56575841 -0.24989946 16.69621468 0.70997655 + -0.44403267 15.14034176 -0.080664694 -0.66510797 15.77148628 0.27958596 -0.27383843 16.75072289 0.079248533 + -0.65987426 16.23870277 0.18488862 -0.62767118 15.64702606 0.41107613 -0.84950703 14.24668407 -0.55806112 + -0.92668819 14.15943718 -0.17188852 -0.054293334 15.45932484 1.20453727 -0.43211475 15.58750916 1.075014591 + -0.12007548 14.82025433 1.085306048 -0.11251266 14.99105263 1.10948431 -0.56218368 16.099069595 0.80639106 + -0.19947684 16.36986732 1.12949991 -0.48107034 15.84601402 1.055336833 -0.16247301 15.91368866 1.29799879 + -0.5652777 15.56540966 0.64835483 -0.13082312 15.55892658 1.28508735 -0.11004733 15.4428978 1.14520895 + -0.54302931 15.024586678 0.3210772 -0.49380997 15.034637451 0.27410343 -0.062375825 15.041158676 1.29462731 + -0.50567013 14.94906616 0.52390248 -0.32255644 14.6332798 -0.43131524 -0.50961703 14.44976521 -0.03834866 + -0.44290537 14.35839844 0.18513794 -0.30112413 14.26523495 0.32797244 -0.14546569 14.53156376 0.93686497 + -0.148351 14.60122776 0.73042983 -0.14003204 14.69508839 0.5482589 -0.13984288 14.20965576 0.45513856 + -2.25591922 10.031908035 -0.41467819 -2.10601401 11.4140625 -0.95002484 -1.9184165 12.081455231 -0.90251732 + -1.96050429 11.22274208 -0.8609395 -2.14138651 11.21227074 -0.95116913 -2.16465497 10.056437492 -0.394335 + -2.16456389 11.050236702 -0.88904113 -1.99256289 11.057920456 -0.81390268 -1.90262282 11.40665245 -0.8671279 + -2.19265532 12.071493149 -0.11839794 -1.57981586 12.040805817 -0.41869703 -2.32800293 12.12273979 -0.70375651 + -2.30476403 11.23779011 -0.91400266 -2.47499371 11.37358379 -0.60811764 -2.41603565 11.38724327 -0.39963487 + -2.56319308 10.15404129 -0.15599111 -2.39978433 10.051441193 -0.38215545 -2.50010061 10.10084629 -0.26460528 + -2.55590296 10.22798347 -0.00025413939 -2.13347411 12.097424507 -0.88452917 -1.71785498 11.47437382 -0.54972243 + -1.81318796 11.46612835 -0.29462749 -2.41021395 11.26754379 -0.8158887 -2.46961665 11.31261826 -0.71677679 + -1.9504323 12.044260979 -0.0038687538 -2.49181175 10.28914356 0.1245018 -2.28128242 10.31170177 0.21756397 + -2.12510037 10.28634548 0.18000595 -1.94916618 10.15480518 -0.2243939 -2.26642537 11.47678566 -0.91694844 + -1.7394768 11.26701832 -0.5828886 -2.42050838 11.58430767 -0.74886113 -2.38561487 11.56328583 -0.43716359 + -2.33439517 11.070815086 -0.83453292 -2.44684339 11.11052799 -0.74422711 -2.52745533 11.1398716 -0.6330626 + -2.51216507 11.18231487 -0.47948346 -2.44789886 11.20515442 -0.28492016 -2.03991127 11.1378088 -0.15050864 + -1.74142301 11.11095715 -0.56915265 -1.99887133 10.24879742 0.070884056 -1.85650253 11.10686874 -0.27382344 + -1.85051239 11.28812122 -0.30542248 -2.02392292 11.41172028 -0.17531885 -2.033223152 11.28166294 -0.18997061 + -2.20883465 11.47760677 -0.20442225 -2.21504974 11.33219147 -0.21327229 -2.22991323 11.17456627 -0.15790874 + -1.70064116 12.054386139 -0.14161858 -1.68512297 12.042677879 -0.7743665 -2.33280945 12.090650558 -0.39308912 + -2.32695746 8.9342947 0.79683763 -2.52978992 8.65649128 0.18784642 -2.41815042 8.65119648 0.14159361 + -2.69827056 8.36244678 0.85075319 -2.67001581 8.23154068 0.47344193 -2.66538382 7.96555138 0.52476323 + -2.70446086 8.26244164 0.64217865 -2.70674109 8.02531147 0.72164649 -2.52054596 7.90620852 0.41490415 + -2.53950882 7.89170456 0.46993572 -2.47793961 7.86318064 0.46208647 -2.47808409 7.8737874 0.4565376 + -2.64839888 8.01557827 0.89159292 -2.60853791 7.89847803 0.64819229 -2.53172541 7.90481091 0.3201372 + -2.45399237 7.89757347 0.24062154 -2.38834405 7.89934969 0.24660781 -2.40449667 7.96227026 0.22134359 + -2.50542617 8.23556423 0.19857505 -2.41530442 8.23192406 0.1589959 -2.6403811 7.99604464 0.86137348 + -2.62845421 8.14792061 1.092717648 -2.64225268 7.89386368 0.54260784 -2.69531465 7.95231867 0.75078702 + -2.70708942 8.13586044 0.96846551 -2.62059498 8.40397549 0.98860657 -2.26556611 8.829319 0.96164834 + -2.56394625 8.14013195 1.12135339 -2.25623441 8.68856335 1.11312723 -2.61328459 7.90008783 0.6677866 + -2.49414086 7.71306896 0.71976411 -2.46803713 7.72167063 0.73098207 -2.51137018 7.67955112 0.62801635 + -2.44052935 7.67322159 0.55228657 -2.38958979 7.6779027 0.55350411 -2.44600153 7.67362165 0.75538158 + -2.37353396 7.63933754 0.5648306 -2.47125506 7.66378117 0.74288023 -2.49195957 7.62491703 0.64755374 + -2.43431711 7.62085199 0.75345457 -2.4137876 7.64472151 0.76344085 -2.43612957 7.58099413 0.67085838 + -2.38122725 7.58802509 0.59068465 -2.34638596 7.61522532 0.58393896 -2.33026814 7.52382374 0.79344547 + -2.30892682 7.54407978 0.80385089 -2.33338022 7.49128342 0.72044498 -2.28679538 7.49435377 0.65018833 + -2.25832033 7.51028967 0.64084965 -2.27471781 7.51412153 0.81834555 -2.23116612 7.48410749 0.65741408 + -2.29347515 7.4906354 0.80971313 -2.30251694 7.44893312 0.74404919 -2.25375724 7.46514034 0.67357779 + -2.050377846 7.40214014 0.76919597 -2.041353226 7.40432215 0.76534104 -2.032284498 7.40127087 0.82386726 + -2.047884703 7.38994169 0.82229292 -2.064009666 7.41856003 0.86883187 -2.068291426 7.41358423 0.85765415 + -2.15472984 7.41975164 0.70789456 -2.19322324 7.44956255 0.84486556 -2.19906139 7.41665459 0.77819359 + -2.25937843 7.477777 0.82531112 -2.24817252 7.5012536 0.83576012 -2.25255942 7.43793631 0.75814605 + -2.21811533 7.44519472 0.68325162 -2.20197201 7.46530581 0.66589278 -2.17531896 7.46676064 0.85764825 + -2.13182998 7.43525743 0.69572914 -2.41773295 7.62415648 0.56514663 -2.53435183 7.80760431 1.22245097 + -2.49244714 7.8279376 1.2315414 -2.57984638 7.76806641 1.14296961 -2.53969955 7.73791838 1.05308497 + -2.48981285 7.74077272 1.032576561 -2.47987413 7.78148937 1.2581985; + setAttr ".vt[664:829]" -2.48516321 7.70254898 1.05403471 -2.51320052 7.75486183 1.25273347 + -2.55257726 7.70397806 1.17664754 -2.51979733 7.690557 1.086217642 -2.47227931 7.72292185 1.2645781 + -2.44382262 7.75169754 1.26636028 -2.50547767 7.6728735 1.19198859 -2.48626781 7.66223431 1.10239661 + -2.45778275 7.68354321 1.070983648 -2.38758183 7.65722656 1.28953719 -2.36195636 7.67714357 1.28789735 + -2.42064834 7.6094141 1.22257078 -2.40026832 7.59969568 1.13641703 -2.37262774 7.61594057 1.11461616 + -2.31797791 7.64619923 1.29895067 -2.33499742 7.58907413 1.13006008 -2.33438873 7.62579632 1.29859102 + -2.37027764 7.56890917 1.24182808 -2.34912491 7.57445955 1.15184844 -2.11240435 7.545084 1.18022692 + -2.1091063 7.55274963 1.16981637 -2.10736108 7.57293367 1.26512527 -2.098496914 7.58457518 1.26270282 + -2.082760334 7.56321669 1.21766269 -2.095882177 7.55310202 1.22849798 -2.20701075 7.60743618 1.29423881 + -2.19904304 7.62642717 1.29020786 -2.20753288 7.56573343 1.13397908 -2.21900868 7.55022573 1.15083218 + -2.24484873 7.55760241 1.23109162 -2.28085852 7.6144805 1.30124533 -2.26563358 7.6414628 1.29870963 + -2.30579019 7.5645752 1.23730278 -2.29722118 7.56324434 1.14981151 -2.28629446 7.58225107 1.12926936 + -2.52836943 7.68805981 0.9686439 -2.48859882 7.70318365 0.98532355 -2.56071091 7.65040064 0.88098419 + -2.50501299 7.63618469 0.80365741 -2.45311999 7.64179564 0.78433353 -2.47559857 7.67284632 1.00076413155 + -2.44748211 7.61085987 0.79321402 -2.50900245 7.6493907 0.98589832 -2.5414958 7.60418606 0.90206558 + -2.48561406 7.59715223 0.81329203 -2.33488464 7.54325294 1.039505959 -2.31582975 7.56596375 1.04468894 + -2.29857373 7.54905844 1.047738433 -2.35648274 7.49400711 0.97043788 -2.32312942 7.49135542 0.87943375 + -2.28415537 7.49639368 0.87357438 -2.29940271 7.50955153 0.86445141 -2.46256065 7.63120651 0.99545562 + -2.43717957 7.65722418 1.0021475554 -2.48765922 7.58013725 0.91851485 -2.44604826 7.57877874 0.82963765 + -2.41500568 7.59821892 0.80583507 -2.31286931 7.52176666 1.049516439 -2.325073 7.46716642 0.98338342 + -2.30120397 7.47027254 0.89294505 -2.049658775 7.50072622 1.051000834 -2.040341854 7.50619984 1.048935175 + -2.01876688 7.47821999 1.0063639879 -2.037326813 7.46682596 1.0081644058 -2.032666206 7.47004604 0.95010245 + -2.043893337 7.46702957 0.95057487 -2.15937948 7.46412086 0.9105652 -2.18952417 7.46052217 0.9989078 + -2.16964316 7.51531601 1.0691998 -2.26525068 7.52568722 1.057424307 -2.27470112 7.46371698 0.99025285 + -2.25418472 7.47389936 0.89475656 -2.25783515 7.5516057 1.056042671 -2.16056681 7.53779697 1.072206974 + -2.14767075 7.48143673 0.89472967 -2.24507642 7.49419069 0.87772578 -2.42722869 7.75815916 0.44287661 + -2.40153265 7.77239418 0.46434641 -2.43535233 7.7367816 0.36768025 -2.37841511 7.75616741 0.30521697 + -2.33371115 7.77380323 0.30267161 -2.38186598 7.72986507 0.47088 -2.31432772 7.73062658 0.31252465 + -2.39920068 7.71119261 0.45459974 -2.39726186 7.68338823 0.38435802 -2.35165215 7.70555449 0.32029122 + -2.35762978 7.68052387 0.46899974 -2.34635091 7.70387602 0.48354816 -2.35079312 7.65507841 0.40260029 + -2.31222105 7.67618275 0.3414081 -2.28302336 7.70589161 0.32899919 -2.29110169 7.65078783 0.4917686 + -2.28382921 7.62277651 0.43100047 -2.2493186 7.64056921 0.36956075 -2.2232039 7.67070818 0.36091703 + -2.27670932 7.68026304 0.504412 -2.24517703 7.66201735 0.5180493 -2.19314122 7.64636421 0.37819466 + -2.020064116 7.63222361 0.50281101 -2.015137196 7.64761543 0.50159961 -2.018835306 7.65062571 0.5414111 + -2.024831057 7.63209248 0.5422017 -2.047397852 7.65315914 0.57349885 -2.049603462 7.64030504 0.57138729 + -2.11316395 7.63350439 0.43311465 -2.15178132 7.61981726 0.41594058 -2.10453606 7.65558147 0.42188603 + -2.14429379 7.65173054 0.40133891 -2.20305896 7.6648016 0.53316528 -2.15526843 7.65975809 0.5504179 + -2.1610465 7.63225412 0.5376904 -2.19808865 7.62425327 0.52510983 -2.14195061 7.6011095 0.49187472 + -2.17934632 7.59824991 0.47544098 -2.19078827 8.37172413 1.32204151 -2.398844 8.25822926 1.27517164 + -2.39234734 8.21929646 1.24038267 -2.34985065 8.35956478 1.36432433 -2.27652144 8.017726898 1.40951002 + -2.26868582 8.010873795 1.39575064 -2.1547575 8.094281197 1.4670099 -2.20191956 8.011926651 1.45331109 + -2.22488642 8.031200409 1.47548211 -2.29865575 8.22184944 1.40994644 -2.28147793 8.17342377 1.43262231 + -2.31787109 8.2801199 1.38871455 -2.1721344 8.31182194 1.35383487 -2.15713072 8.24650097 1.38254285 + -2.34859848 8.13317585 1.32015502 -2.37329626 8.19425106 1.29359138 -2.34336805 8.11225224 1.29580283 + -2.36523175 8.16444206 1.25971723 -2.32286286 8.071572304 1.32999325 -2.32624459 8.086352348 1.3500787 + -2.26183844 8.88318729 0.70091861 -2.26988459 8.75745106 0.51896536 -2.31216311 8.67046738 0.17531145 + -2.23806381 8.68568039 0.29524693 -2.43480563 8.060657501 0.99161869 -2.47550631 7.95702219 0.93164754 + -2.4509573 7.9931922 1.02809298 -2.42943788 8.02742672 0.87588757 -2.41423845 7.98620415 0.76240021 + -2.43275332 7.90719938 0.7993753 -2.47090745 7.91914654 0.87808347 -2.4646368 7.88256788 0.72237778 + -2.44433546 7.88858366 0.67519253 -2.37585759 7.89713812 0.46779162 -2.40970588 7.87549257 0.51984608 + -2.38427258 7.98228884 0.5791592 -2.40587807 7.88348341 0.60236615 -2.32420993 7.92117643 0.3933844 + -2.32806492 7.99025297 0.37728462 -2.32792807 7.9708662 0.27691317 -2.31757784 7.90798759 0.3011727 + -2.37818289 8.19993687 0.69263774 -2.3805542 8.19748688 0.82534063 -2.27078724 8.21204376 0.31636438 + -2.31407619 8.22408295 0.19548184 -2.5064137 8.11510563 1.11579871 -2.19444585 8.6901226 0.79682004 + -2.20811701 8.52935696 1.014959455 -2.21266818 8.77626991 0.87295055 -2.21840668 8.60650063 1.052739978 + -2.33189559 7.72483492 0.66134554 -2.41057897 7.72879219 0.7388339; + setAttr ".vt[830:995]" -2.36021852 7.69025993 0.56695938 -2.40743232 7.69097281 0.75126165 + -2.34297991 7.6618247 0.57885373 -2.31668735 7.6834898 0.68081385 -2.37784719 7.66880894 0.75826412 + -2.31800032 7.64489794 0.59915292 -2.22900128 7.57866049 0.73316962 -2.27679348 7.56692457 0.7986089 + -2.22290969 7.54282618 0.65269798 -2.25135994 7.53843498 0.81217349 -2.21081972 7.51257944 0.66269839 + -2.33763337 7.69540119 0.66917503 -2.17569423 7.49891663 0.67082065 -2.16674137 7.55919981 0.75067884 + -2.2161994 7.53550053 0.8295747 -2.082775116 7.52169037 0.78227818 -2.13844824 7.50036478 0.85299432 + -2.10021925 7.46750879 0.70044088 -2.21795321 7.54969215 0.74352026 -2.40009761 7.79758453 1.1250273 + -2.44692707 7.83303022 1.21940291 -2.44165587 7.74951077 1.031624436 -2.45403481 7.79773951 1.24087739 + -2.45125675 7.72510433 1.047435045 -2.38561606 7.77128887 1.14064431 -2.41439176 7.77421999 1.24529147 + -2.42037153 7.71238852 1.060968757 -2.31084299 7.6956377 1.17527342 -2.34032273 7.69413805 1.26903915 + -2.34234762 7.64166784 1.1129545 -2.31141257 7.66246939 1.28212392 -2.32826209 7.61159086 1.13523424 + -2.42540026 7.77206421 1.14254153 -2.18356061 7.65171528 1.26960135 -2.1791997 7.66173935 1.17849433 + -2.19454169 7.60081768 1.12657547 -2.2565794 7.67728758 1.18101931 -2.25710297 7.66546106 1.27661359 + -2.27254748 7.61642265 1.12261975 -2.30816722 7.66352558 1.19214344 -2.37811947 7.69636869 0.88271493 + -2.43125224 7.71495008 0.97745454 -2.4073391 7.65560961 0.78723264 -2.44241762 7.69340611 0.99237347 + -2.41653442 7.63295937 0.79239291 -2.25518894 7.59063816 0.93997562 -2.27869081 7.56792307 1.037188411 + -2.28785729 7.58918905 1.030304432 -2.27295017 7.53740025 0.86217642 -2.25972819 7.52228165 0.87221533 + -2.36264253 7.68318796 0.89237565 -2.40334058 7.68321323 0.98739433 -2.38166428 7.628582 0.8028478 + -2.14709568 7.56268311 1.051816583 -2.24261212 7.57999086 1.036764622 -2.22891307 7.53548288 0.86953443 + -2.13300657 7.51683474 0.88884556 -2.21945238 7.59311914 0.94148076 -2.12104177 7.58311081 0.95450377 + -2.25160456 7.56966591 0.94769931 -2.28756332 7.80704165 0.41049418 -2.35361242 7.79120731 0.47193217 + -2.30043983 7.79135704 0.32492304 -2.34550714 7.75920773 0.47620249 -2.29355049 7.74675179 0.33154795 + -2.27264977 7.76806307 0.41831926 -2.31836987 7.74143553 0.48632643 -2.26784062 7.73261642 0.34394142 + -2.20845938 7.72823811 0.44334501 -2.25540566 7.70559883 0.50090933 -2.21259546 7.6949873 0.37790975 + -2.23472047 7.6823082 0.50767493 -2.18731332 7.66745234 0.389377 -2.29383349 7.77264786 0.41119117 + -2.14571905 7.6778717 0.40441388 -2.10514641 7.67807722 0.42289773 -2.11921072 7.7181139 0.48469332 + -2.17159867 7.72242403 0.46113741 -2.15060472 7.68860054 0.54510885 -2.19540095 7.69558477 0.52779138 + -2.19984126 7.70123911 0.44837713 -2.17699504 8.33043671 1.25850165 -2.1762197 8.3534565 1.2901026 + -2.35219979 8.2108736 1.21751356 -2.12779331 8.22896767 1.35023987 -2.14281368 8.30139923 1.31378627 + -2.14184117 8.27056503 1.27729928 -2.12307835 8.1999836 1.31546354 -2.32776427 8.15429592 1.22875583 + -2.309196 8.1019907 1.26904571 -2.11906123 8.15093136 1.35220528 -2.12457299 8.17986488 1.38260543 + -2.28920627 8.057537079 1.31002116 -2.14377356 8.060009956 1.43368649 -2.13556337 8.083381653 1.44798768 + -2.25261211 8.0072546005 1.38875079 -2.3926785 7.68140364 0.89009809 -2.5967474 8.2351799 0.30624798 + -2.65529156 8.68273926 0.37168208 -2.67542076 8.71995163 0.49594885 -2.66285467 8.78713417 0.67208171 + -2.25247288 7.62763405 0.5056774 -2.23861885 7.59943628 0.45191634 -2.20938778 7.6178546 0.39000845 + -2.55928016 7.96299934 0.88908064 -2.56563735 7.96961498 0.89614785 -2.53738904 7.8706007 0.68848616 + -2.53710699 7.87060976 0.67628217 -2.47413278 7.95016146 0.22078899 -2.57290173 7.94931221 0.31158593 + -2.50226188 8.054711342 1.11974716 -2.55814624 8.083747864 1.13280642 -2.617522 8.087612152 1.1074388 + -2.69355917 8.064723969 1.0016492605 -2.30171204 8.19176388 0.51406687 -2.2472589 8.73063183 0.42333531 + -2.60810995 8.65439987 0.24965614 -2.10593843 7.6058526 1.26175213 -2.087260485 7.59425211 1.20333588 + -2.11221886 7.56357908 1.15988135 -2.45245361 8.6810112 1.129143 -2.43134809 8.3641243 1.075913787 + -2.48125219 8.40258598 1.066558003 -2.52820969 8.47487831 1.072818756 -2.49064469 8.81540775 0.97873026 + -2.045121431 7.5278039 1.045787811 -2.017217159 7.51693296 0.98933059 -2.036756992 7.49034977 0.93608212 + -2.053640842 7.43590164 0.8686111 -2.01507163 7.42828655 0.81961662 -2.026279449 7.41915941 0.75942683 + -2.018545628 7.66411209 0.49479097 -2.024721384 7.67563105 0.53351814 -2.05036211 7.66841269 0.56973267 + -2.645432 8.83130264 0.32867187 -2.57092309 8.79146767 0.20411314 -2.41928363 8.76507187 0.15185063 + -2.36089087 8.77125549 0.18520527 -2.29842973 8.80608463 0.30714238 -2.31167698 8.85306454 0.44770813 + -2.31721354 8.91443062 0.60274792 -2.37749195 8.96919537 0.70049977 -2.15264225 8.20083809 1.41129386 + -2.18365574 8.022350311 1.40333331 -2.1710186 8.094589233 1.31075728 -2.17494726 8.1439867 1.26719356 + -2.19028783 8.20393276 1.22316885 -2.22995377 8.26586246 1.21721089 -2.27454901 8.40694046 0.96276039 + -2.26831388 8.47390938 0.75721169 -2.28019261 8.48501492 0.60445172 -2.23614788 8.47010326 0.46433222 + -2.21386957 8.45594025 0.29884398 -2.29277349 8.46324253 0.17291734 -2.41179991 8.46515369 0.14164633 + -2.51647162 8.45777798 0.1908498 -2.61008406 8.45988369 0.28627682 -2.6708715 8.46963215 0.42000777 + -2.69282174 8.51207924 0.56245697 -2.67983627 8.58779049 0.75012791 -2.5862956 8.71382618 0.91457629 + -2.62655592 8.83177567 0.74557304 -2.64067149 8.93311977 0.61921966 -2.36284256 8.41262054 1.31189787 + -2.20898008 8.41377258 1.28349638 -2.18693256 8.38404942 1.24966145; + setAttr ".vt[996:1161]" -2.1809442 8.35301495 1.2188766 -2.23422265 8.28600216 1.18366873 + -2.36041379 8.23568344 1.1888485 -2.40280867 8.25444794 1.20745778 -2.41234112 8.29714489 1.23813295 + -2.55472851 8.85876465 0.16511399 -2.63939738 8.90927124 0.29812536 -2.30209947 8.87766457 0.27328587 + -2.3045373 8.99214935 0.57789767 -2.35283875 8.83546448 0.16335647 -2.40143847 8.833951 0.13294566 + -2.28344631 8.93493366 0.42109841 -2.36977434 9.029989243 0.66720951 -2.27960348 9.13998795 0.52327913 + -2.25856423 9.021714211 0.22680457 -2.24959898 9.078717232 0.38153487 -2.37457967 8.99038792 0.080469318 + -2.52270174 9.022769928 0.088983484 -2.61653447 9.089993477 0.20965223 -2.35968924 9.19122505 0.61035693 + -2.31965613 8.99536991 0.12105806 -2.61522603 9.19663239 0.49479282 -2.62756157 9.0097332001 0.58357537 + -2.52605128 8.90906334 0.81733322 -2.53237176 8.97275543 0.70266736 -2.54841709 9.03887558 0.6672368 + -2.53980923 9.21921253 0.59154665 -0.77471268 13.75494576 0.45399049 -1.070301771 13.7273531 0.33277729 + -0.38384348 13.74255371 0.60003924 -0.30676073 13.836092 0.43829268 -0.663481 13.83743763 0.29209363 + -0.96537185 13.82090187 0.13243999 -0.80009091 14.022947311 -0.78394771 -1.30909276 12.5443306 -0.60095531 + -1.40700924 12.50159645 -0.2215119 -1.12110543 12.26210403 0.74943775 -0.68242908 13.60438156 -0.98269093 + -1.40368032 12.5305357 0.2495912 -1.96361613 13.68395233 -0.56458873 -2.032382488 13.63870049 -0.19675262 + -1.46045828 12.88046837 -0.58254844 -1.63001001 12.91728687 -0.78462517 -1.47370136 12.81397057 -0.23338951 + -2.21870184 12.71028042 -0.67336023 -1.9313904 12.79607296 0.17009214 -1.42713594 12.82779121 0.45827115 + -1.97201002 12.86836529 -0.81631845 -1.76406515 13.60364342 -0.7182945 -1.41611755 13.076757431 -0.23359172 + -1.32359207 13.30494499 0.44416133 -1.53370893 13.42260742 -0.73648357 -1.42361975 13.10314178 -0.58365208 + -1.74409842 13.43239212 0.23950133 -1.49173641 13.19186592 0.25430381 -2.18895912 12.68298435 -0.03553357 + -2.28276587 12.70767307 -0.3190769 -1.4496423 13.12038231 0.082570709 -1.61265218 12.8475914 0.055573031 + -1.96827686 13.54897404 0.070359968 -0.97647595 10.71192169 0.63878596 -1.062952995 10.75070572 0.1276101 + -0.84700876 10.77582264 -0.32022876 -0.63941777 10.6592474 1.14812267 -0.66179776 12.54990101 1.20364356 + -1.1677959 12.59675694 0.86473513 -0.49252516 12.68757153 -0.96209669 -0.62206388 10.82671642 -0.48245335 + -0.6635114 12.22486782 1.13015342 -2.37627053 8.22799778 0.99375212 -2.47720456 8.26344109 1.094510198 + -2.53787231 8.29483414 1.066030741 -1.37204218 4.77504396 0.30520287 -0.31036866 14.75404739 0.46096042 + -0.32150799 14.69697094 0.57255757 -0.31818238 14.64941406 0.76068747 -0.41634691 14.86025238 0.84129953 + -0.46255174 15.47357845 0.93640858 -0.94953138 0.53782803 0.609182 -1.24784994 0.53967106 0.57272863 + -1.49381459 0.47372571 0.36107138 -1.58840525 0.33449095 0.17805725 -1.59216976 0.25003368 0.13634776 + -1.57759213 0.14060329 0.1330245 -1.55754781 0.065680504 0.15553036 -1.47370756 0.013618652 0.19449237 + -1.3716532 0.015402446 0.228571 -1.21572936 0.018135304 0.28093538 -1.052459717 0.020955848 0.33388075 + -0.90553916 0.093348652 0.38234964 -0.78427863 0.22074163 0.43695748 -0.78546339 0.29302958 0.48004249 + -0.81347561 0.40446469 0.53096837 -2.46868253 8.38004971 1.14446163 -2.44090271 8.33914948 1.13098049 + -2.40212083 8.30863285 1.078383088 -2.25630903 8.36145687 1.066422343 -2.19969392 8.45424652 1.10287201 + -2.20604086 8.49868774 1.14943159 -2.23407793 8.54581738 1.2064724 -2.40819669 8.54294491 1.22997928 + -0.25631201 15.6686697 -0.39350063 -0.52333528 15.51026535 -0.12104277 -0.55932844 15.25364685 0.28494483 + -0.56404692 7.51263618 1.043949008 -0.97607458 7.53804398 1.12899184 -1.4465735 7.55644989 0.83189809 + -1.51411176 8.51521015 0.29952818 -1.4298867 8.45656204 0.79443449 -0.55226856 8.059742928 1.045358181 + -0.9539156 8.23951435 1.10769939 -2.62396836 9.13869953 0.3353748 -2.64589381 8.94976521 0.4214626 + -2.65519571 8.87133884 0.44961596 -1.080360532 0.11518574 1.50741851 -1.15378201 0.11436905 1.50427461 + -1.21529138 0.12019928 1.48556888 -0.57623178 13.13516045 -0.99981451 -0.10159411 13.83220768 0.49529573 + -0.19266145 10.42873669 -0.48355907 -0.32788053 10.89085388 -0.46522933 -0.9433865 12.62608719 -0.80701435 + -1.046620607 13.080767632 -0.89018905 -1.16930079 13.49607468 -0.87522334 -1.34276414 13.88356781 -0.73312151 + -1.44653225 14.057746887 -0.53043997 -1.47501683 13.98967743 -0.15286607 -1.4193064 13.81589699 0.056775033 + -1.35251856 13.62962246 0.22465652 -0.46395707 14.54793549 -0.25559613 -0.37139755 15.19937325 -0.25410026 + -0.42219925 15.62171936 -0.31548601 -0.49582654 16.62443542 0.11330778 -0.4704594 16.60032845 0.66704077 + -0.41693556 16.29612923 1.026978135 -0.3389529 15.89920998 1.22281444 -0.28429085 15.56566906 1.22065663 + -0.28691649 15.45867825 1.058277607 -0.28610459 14.84006977 0.95352054 -0.29638746 14.69559956 0.8800863 + -0.1311558 14.58813381 1.012080908 -0.27755111 16.27834129 -0.3512961 -0.48056638 16.14053535 -0.24254926 + -0.60731554 15.91001701 -0.078181177 -0.63422143 15.59236526 0.15670988 -0.72124064 15.58388329 0.15616067 + -0.61871725 15.51837158 0.38238794 -0.56183445 15.44569874 0.6157341 -0.46973783 15.33652687 0.95962447 + -0.28572273 15.31706238 1.068576813 -0.13002266 15.31656837 1.134758 -0.056362826 15.32353306 1.23200631 + -1.083186507 13.22800827 0.72296625 -0.58418071 13.19764328 0.90900499 -0.62729257 11.43884754 1.12309802 + -1.065110564 11.50035191 0.70917284 -1.23203027 11.60597801 0.18991897 -1.21743405 11.65394783 -0.25390083 + -1.012308478 11.70467091 -0.4960441 -0.65461785 11.78033638 -0.65890759 -0.2702657 11.86323357 -0.7705403 + -1.69913101 13.75435066 0.080481455 -1.58297086 13.56886673 0.24112701 -1.49031675 13.38838673 0.34368595 + -1.439098 12.96338654 0.37548509 -1.39279664 12.73374176 0.18484907; + setAttr ".vt[1162:1327]" -1.3921628 12.73749924 -0.20197077 -1.33869302 12.77767277 -0.57140231 + -1.24756503 13.11426067 -0.76187658 -1.38329005 13.48734379 -0.8046121 -1.58924782 13.78286076 -0.71838117 + -1.74021268 13.9019413 -0.54135412 -1.75976872 13.87557316 -0.15823759 -2.14951777 13.16989708 0.028508328 + -1.90396357 13.14706326 0.211943 -1.68457115 13.1087513 0.23161022 -1.56254876 13.074278831 0.088471726 + -1.48965907 13.023816109 -0.21996003 -1.39658964 13.12631702 -0.53045332 -1.58641303 13.23672676 -0.74091059 + -1.89335525 13.23176003 -0.76916832 -2.16276145 13.22267342 -0.61435187 -2.23164415 13.22933102 -0.2455028 + -1.21222949 12.91077995 -0.71523792 1.20393169 9.44025898 0.85121667 1.27283323 9.72514439 0.46017617 + 1.030815721 10.12021065 0.55849099 1.13876653 10.29289913 0.011660585 1.22257912 9.81996632 -0.13244937 + 0.66309524 9.025151253 1.18608224 0.72410876 9.90525913 -0.62350476 0.76660442 10.36813545 -0.41885775 + 0.43961188 8.50921917 1.099303365 0.49315798 8.40100574 1.021306634 1.03891933 5.054422855 0.88697958 + 0.58692837 6.56479836 0.98498112 0.3726218 6.71005774 -0.35092676 0.58985662 5.39427614 -0.20237339 + 0.23224264 6.57994652 0.67231494 1.34317458 6.76038885 -0.33885136 0.67504299 5.058180809 -0.15175079 + 0.42529187 4.98247433 0.42594153 0.47522289 4.50304937 0.2962217 0.4279466 5.3102355 0.51151764 + 0.75347686 4.23971844 0.52705276 1.0043781996 4.056382656 0.54827309 1.041778088 4.71236563 0.84025729 + 0.71884775 4.5022254 0.63284856 1.27570069 4.5169282 0.54013318 1.034293532 4.49405432 0.77360559 + 0.71166694 4.99971533 0.74955964 0.71077919 4.7253809 0.6971693 1.27640426 4.73079824 0.60820794 + 1.02156353 4.23025084 0.66264206 1.25859141 4.26112747 0.42735916 1.39573741 8.60988331 -0.49487698 + 1.37576973 7.63443136 -0.42611691 0.23679809 7.61134338 -0.39524314 0.77308756 8.61679649 -0.95550823 + 1.23972464 4.095407009 0.37089163 1.16646647 5.016129494 -0.04545575 1.19151771 4.8055644 -0.068218231 + 1.36903322 4.98824596 0.31443548 1.35252047 4.55985403 0.22791263 1.26522398 5.022899628 0.66050464 + 0.70154095 5.24078608 0.79540563 1.49064553 6.68411827 0.30955341 1.53493059 7.59433413 0.30190331 + 1.023600578 5.23672581 0.88407439 1.20537734 2.34184456 -0.0056892503 0.77142709 2.26977992 -0.61210799 + 0.73292994 2.82130003 -0.68114901 0.7077238 4.3834343 -0.34520954 0.6581105 2.26606226 -0.49982187 + 0.60070223 2.80711389 -0.54830563 0.58952945 4.12775946 0.18750575 0.50725937 2.86165833 -0.2604481 + 0.62733144 2.31508946 -0.175658 1.27846324 2.29820633 -0.27828148 1.39448667 2.91845703 -0.47614527 + 0.74477363 4.68912029 -0.1978538 0.71850383 4.8513546 -0.16113117 1.36174273 4.34491396 -0.1492247 + 1.2203449 4.60275602 -0.11301445 0.46885246 4.26418352 0.0025728571 0.59895188 4.3528986 -0.23869191 + 0.59639102 4.65466118 -0.089084551 0.78973609 7.64370012 -0.60853112 0.83169764 6.75467157 -0.44464999 + 1.28305185 5.25763559 0.68044674 1.36255252 5.30894804 0.32933486 1.18449557 5.35148096 -0.11173421 + 0.96699822 4.6754446 -0.21368361 0.93538117 4.84683895 -0.17999321 0.90130097 5.061037064 -0.17530383 + 0.85492778 5.39225864 -0.24407899 1.067870378 4.3843565 -0.37652901 0.85701066 4.38700962 -0.43274572 + 0.9514659 2.84007597 -0.74000758 0.95183754 2.26565027 -0.6491161 1.20085025 2.86284494 -0.66103625 + 1.14487743 2.298841 -0.58737522 0.78246224 4.073489666 0.43143767 0.55912137 4.25505686 0.21117592 + 1.00086283684 6.56979799 1.071010232 1.41802418 6.62678337 0.8105433 1.36598969 4.20544434 0.08716885 + 1.28001213 3.88267446 0.28996804 1.42349637 3.95087981 -0.051312156 1.42811775 3.98702836 -0.35552937 + 1.1848098 3.99521446 -0.54680133 0.94205618 3.98013258 -0.6374768 0.71632719 3.97777581 -0.57505488 + 0.55675399 3.96572471 -0.44351345 0.42272741 3.92606115 -0.13239941 0.61989915 3.86777282 0.13290767 + 1.34519732 4.31872654 0.14314574 1.31063545 3.41637707 0.17845625 1.48169041 3.45186734 -0.18369663 + 1.48274612 3.48345208 -0.46440452 1.23577547 3.47355556 -0.66268998 0.95241928 3.45802951 -0.7664659 + 0.70134962 3.46444678 -0.69864637 0.52918828 3.466043 -0.56295228 0.41219479 3.47912025 -0.22203389 + 0.6350255 3.43155289 0.029007999 0.78665447 8.883955 1.0073524714 0.10351342 8.74051571 -0.83118379 + 0.13623954 8.046209335 -0.65085334 0.15618011 7.95523453 0.79724932 0.11287121 7.91483641 0.16871667 + 0.21818677 6.64757252 0.080950901 0.13280129 7.51243973 0.78556478 0.099844702 7.55883217 0.15120623 + 0.46394295 5.37542725 -0.0099762464 0.52915782 5.036091805 -0.032660414 0.5718742 4.80943441 -0.049013048 + 0.44138283 4.73416996 0.36929616 0.70762843 9.86446095 1.18046188 0.4655458 10.39655685 -0.52140051 + 0.29227343 9.79662323 -0.7000556 0.76883346 3.8337431 0.35603225 0.78298897 3.3955245 0.24790761 + 0.78747171 2.34574485 0.048784748 1.0019823313 3.81331229 0.48470187 1.014687419 3.37912297 0.37243149 + 0.98626864 2.35708809 0.17760575 1.37488508 0.302203 -0.35502076 1.38555813 0.16242918 -0.34318638 + 1.34414923 0.057180189 -0.3151356 0.6869027 0.15893555 -0.10345125 0.68164086 0.4160744 -0.1127525 + 1.34149301 0.43139434 -0.35273087 0.69356972 0.66928709 -0.18465912 1.17634988 1.80141699 -0.033074126 + 0.67546999 1.81931686 -0.19529212 0.82983297 1.83391452 -0.58715475 0.76437473 0.47814524 -0.78976715 + 0.75412393 0.31077808 -0.80459309 1.5690093 0.18050267 0.96060652 1.61006498 0.17628002 0.94688386 + 1.69511855 0.19043261 0.81483412 1.70139742 0.14251947 0.92210567 1.69839549 0.099208951 1.055144072 + 1.68873572 0.061386507 1.1162585 1.46776545 0.18586695 1.039050341 1.45273137 0.18945776 1.052346706 + 1.4612174 0.14956266 1.19709897 1.46857131 0.12260288 1.28205264 1.30781507 0.21214847 1.096553445 + 1.32374549 0.1600935 1.20980477 1.33337379 0.12337313 1.30253112; + setAttr ".vt[1328:1493]" 1.28037727 0.221799 1.10756981 1.086762905 0.24051552 1.14533734 + 1.1427393 0.18194088 1.37082314 0.86412215 0.078583144 1.37246287 0.83218408 0.069803432 1.023941517 + 1.71268916 0.12912941 0.81160975 1.71248078 0.10844514 0.91785228 1.68421412 0.025372779 1.11097884 + 1.70267987 0.081324592 0.79669446 1.69176531 0.072152883 0.91827226 1.66350603 0.0015894331 1.097483635 + 1.59556377 0.04343595 0.95750284 1.59896791 0.023791866 1.10228825 1.31556368 0.042276271 1.085679889 + 1.34858775 0.080764949 1.21405983 1.34857023 0.056270674 1.28956449 1.43575644 0.032500222 1.050012231 + 1.45253038 0.071700707 1.18979526 1.46516263 0.049237795 1.2670027 1.46712565 0.034668282 1.020787239 + 1.64484286 0.012620586 1.15528965 1.26360989 0.041334942 1.099068284 1.065635324 0.04656855 1.13911092 + 1.12570369 0.016127139 1.34288788 1.10082889 0.12261061 1.14536548 1.16470599 0.087323293 1.34474993 + 1.12317359 0.23745428 1.13258338 1.12652791 0.12815543 1.15044904 1.30969501 0.095030144 1.11279178 + 1.59547818 0.12481735 0.95072865 1.59126925 0.075555414 1.12306082 1.128654 0.042948522 1.12695098 + 0.9861958 0.035094671 1.50419152 1.110829 0.043804742 1.48755252 0.91712326 0.010579755 1.35580289 + 1.44931078 0.10462482 1.057118177 1.29374075 0.094923548 1.11754382 0.77393579 0.16587041 1.047501802 + 0.89236575 0.17466214 1.39293182 0.9889636 0.1058335 1.52587748 1.10816431 0.11042321 1.50937498 + 1.60209334 0.098815233 1.13190877 1.603127 0.029321197 1.16785288 1.60484743 0.042674292 1.17541373 + 1.61467767 0.058253046 1.17648566 1.65364528 0.043619059 1.16659462 1.65268266 0.023209875 1.16272807 + 1.45826709 0.05973424 1.39452946 1.45167577 0.080319658 1.38625205 1.37663686 0.081607424 1.39735055 + 1.37307608 0.062974297 1.40137112 1.37543178 0.042958837 1.40199149 1.45567989 0.040143453 1.39121318 + 1.33129203 0.10731469 1.21494806 1.46559417 0.10704733 1.052136779 1.55325425 0.04543896 0.96988064 + 1.56903791 0.12218939 0.9627564 1.34067154 0.08532545 1.29644108 1.47433662 0.084431402 1.26734388 + 1.46719289 0.095094621 1.19180346 1.31461954 0.096263766 1.22481453 1.3288846 0.068814829 1.33059764 + 1.18312573 0.087716162 1.34940577 1.15637207 0.1263295 1.24891555 1.31851125 0.045268744 1.43724358 + 1.24134898 0.043777235 1.45007622 1.23766196 0.067736812 1.44984782 1.24255967 0.08784683 1.44723153 + 1.3152889 0.086719818 1.441517 1.32293785 0.06645678 1.44423747 1.32235694 0.020121977 1.32114851 + 1.3038708 0.077444091 1.23792112 1.18805099 0.043454003 1.33986735 1.16910493 0.077123433 1.25352585 + 1.18684137 0.13180125 1.35801923 1.15614426 0.15659125 1.25545788 1.31834805 0.1344997 1.3441155 + 1.31022978 0.17642361 1.24007189 1.58649695 0.13068368 1.12912273 1.58743083 0.1076216 1.20143628 + 1.47811854 0.12795512 1.14515364 1.47958279 0.10894805 1.21627891 1.47717631 0.073762164 1.12622118 + 1.47950256 0.020777896 1.19538569 1.57861841 0.078690596 1.11087453 1.58642602 0.034631316 1.17810965 + 1.57481694 0.043917358 1.28919435 1.57237554 0.062896065 1.28826332 1.51006222 0.063822776 1.30531633 + 1.50479031 0.042151619 1.30834031 1.50603592 0.026789499 1.29526246 1.57095289 0.02246885 1.27847481 + 1.46842468 0.091371439 1.13585758 1.46837687 0.072314501 1.20695055 1.59206021 0.076317072 1.18872428 + 1.59125805 0.094057016 1.11489964 0.643282 0.45195055 -0.67392325 0.62827277 0.29801646 -0.67430824 + 0.7199555 1.82286024 -0.47671312 1.044238329 1.82330728 -0.57945299 0.91293561 1.8295002 -0.6225704 + 0.90608692 0.48296532 -0.81482887 0.90994185 0.31782043 -0.84059501 0.93107498 0.058051884 -0.75377667 + 0.78807932 0.055733386 -0.69938838 0.94924015 -0.00091475592 -0.64058226 1.020888805 0.2187137 1.3897748 + 1.054890275 0.03019719 1.50298572 1.029056787 -0.010138905 1.34690678 1.053274035 0.11580727 1.52849019 + 1.18130481 0.34427217 1.026647091 1.34510171 0.31219137 0.98882794 1.37472832 0.2619864 1.074065089 + 1.39694309 0.19705543 1.20995092 1.40737998 0.16620912 1.29803014 1.40407932 0.054870285 1.19557631 + 1.40434301 0.013549879 1.26583278 1.19242775 0.31128016 1.098336697 1.41870689 0.087446235 1.40705073 + 1.41869295 0.059400693 1.40853477 1.41719747 0.026500653 1.40149796 1.27871132 0.033616059 1.45445824 + 1.27893722 0.068098724 1.46108103 1.27661097 0.0939762 1.4560647 1.25322342 0.0069201831 1.31920958 + 1.23416853 0.056334287 1.24475837 1.24842262 0.18251514 1.36652255 1.22411966 0.23374313 1.26117682 + 1.52396226 0.27399671 0.92233837 1.5322032 0.24485166 1.0049077272 1.5368675 0.17488135 1.15229976 + 1.53303933 0.13782573 1.21894145 1.53094912 0.042996664 1.11697769 1.5263797 -0.00091561553 1.18575799 + 1.53855479 0.064578421 1.30777073 1.53996813 0.039411023 1.31066513 1.53778672 0.012568147 1.29235661 + 1.63959491 0.24752951 0.85440952 1.65375495 0.21163096 0.9484545 1.65976357 0.15045586 1.080778122 + 1.65056014 0.052000739 0.92573953 1.62297773 -0.00091561553 1.094560266 1.62243748 0.014075131 1.15562654 + 1.62587821 0.031130781 1.1789645 1.6369257 0.053261865 1.18054819 1.64993978 0.09749566 1.13477612 + 1.047182322 0.47719193 -0.76755786 1.088149548 0.31679058 -0.79569525 1.098959208 0.15604191 -0.79194939 + 1.08036232 0.063125595 -0.75194085 0.95382261 0.3648825 1.064013124 0.6697619 0.26729047 -0.085845374 + 0.65039611 0.14935549 -0.63019252 0.75731677 0.14784765 -0.76075912 0.92243028 0.1493787 -0.81174099 + 0.70106184 0.053325478 -0.56464803 0.83741367 -0.00091475592 -0.58829397 0.76932579 -0.00091475592 -0.49589226 + 0.97941357 0.018388044 1.14287519 0.85224682 0.05586319 1.14334059 0.79378283 0.14634582 1.13943291 + 0.82283407 0.23736662 1.15543234 0.97040749 0.33188102 1.15713239 0.96607405 -0.00091561553 0.99428523 + 1.19192529 0.037484527 1.11526275 1.36754966 0.025358165 1.06985116; + setAttr ".vt[1494:1659]" 0.8096596 0.26132703 1.058126211 1.32873249 -0.00091561553 0.91267484 + 1.51393652 0.024640348 0.99502808 1.48855925 -0.00091561553 0.86470473 1.1510272 -0.00091561553 0.95456553 + 1.57546782 -0.00091561553 0.82848936 1.31109381 0.6199702 0.099262625 1.26327419 1.80771744 -0.30213135 + 1.00167799 0.27525437 1.31966269 1.13929391 0.21820134 1.28808749 1.15092671 0.11824182 1.2690922 + 1.1199069 0.059411865 1.25539577 1.0053079128 0.025778539 1.25888181 0.89559823 0.048072953 1.2757386 + 0.8344872 0.1077067 1.29268563 0.85698861 0.20105112 1.31422985 0.8273952 0.62691534 0.32697788 + 0.82605642 0.99872684 0.034048874 0.72298336 0.96087253 -0.21942112 0.78108037 0.99424458 -0.55001533 + 0.85806829 1.0061688423 -0.64021301 1.024424672 0.73633033 -0.70560789 0.91880131 0.74047387 -0.71576399 + 0.8115322 0.72857189 -0.69243038 0.70637727 0.70773715 -0.60644674 1.26016343 0.69512594 -0.37023962 + 1.23980105 0.76120031 -0.054602627 0.92342514 1.01049304 -0.64938474 1.023216009 1.010793805 -0.61377048 + 1.238289 0.98276383 -0.3503089 1.18376827 1.0094037056 -0.080029249 0.80954254 0.77601731 0.099962622 + 1.060262799 -0.00091475592 -0.63714522 1.25241673 -0.00091475592 -0.271929 1.14912057 -0.00091475592 -0.23021948 + 1.004171133 -0.00091475592 -0.18299051 0.87665486 -0.00091475592 -0.14393137 0.76663631 0.053096808 -0.12283687 + 1.64739311 0.018177427 0.80900663 1.70069766 0.067533933 1.038738728 1.68136978 0.043689549 1.025577903 + 1.64032781 0.026904693 1.025115013 1.60224092 0.040894795 1.033495784 1.59052241 0.10011332 1.066868186 + 1.59774625 0.13404839 1.079108596 1.064202547 0.6700815 0.30848473 1.0012345314 0.83166224 0.10193662 + 0.98340493 1.026443124 0.067257747 0.97315419 1.82839382 0.11916538 0.80170739 1.81822848 0.045235749 + 0.24195772 15.22966385 -0.30574942 0.64975953 15.3692503 0.17625031 0.77696526 15.78343296 0.30130538 + 0.59508812 15.26827431 0.32525456 0.48856822 15.068079948 0.15175632 0.55614036 15.33718109 0.1741066 + 0.63503408 16.20087624 0.56575841 0.24997868 16.69621468 0.70997655 0.44540641 15.14034176 -0.080664694 + 0.66595656 15.77148628 0.27958596 0.27387229 16.75072289 0.079248533 0.66033411 16.23870277 0.18488862 + 0.62862337 15.64702606 0.41107613 0.85487825 14.24641418 -0.55794013 0.9329775 14.15792656 -0.17190766 + 0.055401638 15.45932484 1.20453727 0.43311641 15.58750916 1.075014591 0.12171549 14.82025433 1.085306048 + 0.11401056 14.99105263 1.10948431 0.5627597 16.099069595 0.80639106 0.19982758 16.36986732 1.12949991 + 0.48185694 15.84601402 1.055336833 0.16320328 15.91368866 1.29799879 0.56629771 15.56540966 0.64835483 + 0.13184856 15.55892658 1.28508735 0.11116931 15.4428978 1.14520895 0.54449934 15.024586678 0.3210772 + 0.49527162 15.034637451 0.27410343 0.063832045 15.041158676 1.29462731 0.50720292 14.94906616 0.52390248 + 0.32431868 14.6332798 -0.43131524 0.51153195 14.44976521 -0.03834866 0.44502431 14.3584013 0.18513796 + 0.30324414 14.26520157 0.32797244 0.14734589 14.53156376 0.93686497 0.15017323 14.60122776 0.73042983 + 0.14177617 14.69508839 0.5482589 0.14195758 14.20965576 0.45513856 2.36031199 10.013544083 -0.36885402 + 2.28604579 11.41787624 -0.83215445 2.064279795 12.066934586 -0.83199525 2.13236761 11.22285175 -0.79354972 + 2.32981205 11.21992016 -0.8302778 2.26605392 10.033370018 -0.37771773 2.34427929 11.057483673 -0.77259135 + 2.15943766 11.058077812 -0.75009036 2.069601059 11.40353107 -0.80591774 2.17790985 12.058211327 -0.011919132 + 1.63991475 12.017400742 -0.42578274 2.4257021 12.11773205 -0.54649055 2.47812867 11.24799633 -0.74766505 + 2.56119084 11.37446404 -0.40087003 2.45154214 11.37515259 -0.21735168 2.57252765 10.122015 -0.013361268 + 2.48737812 10.034734726 -0.28929636 2.5466609 10.076881409 -0.14106983 2.51654553 10.18124294 0.13711098 + 2.27211428 12.08854866 -0.76657975 1.81652105 11.45838642 -0.54584026 1.85106182 11.43779755 -0.28525701 + 2.55451202 11.27661896 -0.62255758 2.58516097 11.31898499 -0.50867474 1.92065644 12.025392532 0.042997234 + 2.41609454 10.2291584 0.23837484 2.187814 10.23724365 0.25846905 2.051462173 10.21024799 0.17009164 + 1.99912393 10.10577106 -0.25406119 2.43170333 11.48265648 -0.75608349 1.85007179 11.25241089 -0.58628839 + 2.53804398 11.58791733 -0.55127585 2.4314754 11.55514908 -0.2612963 2.49365973 11.079717636 -0.67088526 + 2.57745957 11.11806774 -0.55020964 2.62535286 11.14412212 -0.41862869 2.56869125 11.17575359 -0.27339774 + 2.45427203 11.18317223 -0.10722602 2.031567335 11.096670151 -0.10621155 1.85659313 11.094105721 -0.59515989 + 1.96465135 10.1772604 0.023326775 1.88928533 11.072133064 -0.28107512 1.8898524 11.25790977 -0.29319414 + 2.024316549 11.37744808 -0.11967214 2.036547899 11.24494743 -0.13557371 2.20797801 11.44748306 -0.093522318 + 2.21540308 11.29978275 -0.10323452 2.21384668 11.13696194 -0.054367907 1.70841205 12.032687187 -0.13947149 + 1.81002748 12.021547318 -0.75517935 2.36888456 12.084700584 -0.24422695 2.11915469 8.83246422 0.69962293 + 2.52487421 8.58925056 0.20984069 2.43709326 8.5824728 0.12341703 2.45813966 8.26924229 0.88875353 + 2.56754041 8.15216064 0.52439898 2.55449986 7.88678217 0.56452203 2.53989434 8.17735767 0.69536483 + 2.52088451 7.93520832 0.76571703 2.45959353 7.83129263 0.40755579 2.46308351 7.8116641 0.46310487 + 2.4121449 7.7846899 0.43084827 2.40928555 7.79727554 0.42797387 2.40513754 7.91837072 0.89887094 + 2.46235871 7.80994463 0.65451932 2.50242972 7.82851553 0.32685578 2.4610846 7.81455517 0.22164823 + 2.39900374 7.81177855 0.19965687 2.42096758 7.8760891 0.18017879 2.5104723 8.16196156 0.20469899 + 2.44093704 8.15670872 0.13216163 2.40745735 7.90148926 0.86632383 2.31351757 8.043709755 1.080332041 + 2.53320146 7.8152709 0.57027495 2.49861169 7.85986519 0.78618032 2.43147731 8.035692215 0.99776995 + 2.33135748 8.30506039 0.99318099 1.99734545 8.77675438 0.81450266; + setAttr ".vt[1660:1825]" 2.24344563 8.036634445 1.07915926 1.91336346 8.67665577 0.95783055 + 2.45551467 7.81189585 0.67412823 2.36017632 7.62731647 0.66839725 2.33101702 7.63242722 0.66857255 + 2.41316462 7.60198832 0.5895564 2.37573433 7.59354639 0.4911668 2.32784104 7.59290123 0.47208643 + 2.3092792 7.5811758 0.68064028 2.31529427 7.55321407 0.47478479 2.33798742 7.57423592 0.67896777 + 2.39562273 7.54336786 0.59811938 2.30415654 7.52835321 0.67180026 2.27947092 7.55034351 0.6735549 + 2.3396194 7.49360609 0.59506583 2.31786013 7.50210094 0.49932337 2.28581142 7.5275445 0.48000619 + 2.20262313 7.4232235 0.66189826 2.17738366 7.44154072 0.66355109 2.23518276 7.39528751 0.59487092 + 2.21786761 7.39975405 0.51153219 2.19367266 7.41450644 0.49198869 2.14357829 7.40909719 0.66165572 + 2.16551566 7.38628006 0.49506944 2.16540217 7.38692284 0.66039431 2.20075893 7.34936476 0.60209769 + 2.18137932 7.36742163 0.51829213 1.96080673 7.2966342 0.51770568 1.95391273 7.29887056 0.51053184 + 1.92350614 7.29274702 0.56003708 1.93882632 7.28174734 0.5645594 1.93490469 7.3082428 0.61510706 + 1.94325185 7.30389786 0.60645306 2.079073429 7.31888247 0.5060491 2.061332226 7.34237385 0.64858752 + 2.093178034 7.3129344 0.58854753 2.12835884 7.37254047 0.65973699 2.11326385 7.39529753 0.66576934 + 2.14903355 7.33600807 0.59359461 2.14560223 7.34646845 0.51123023 2.13658333 7.36715984 0.4896405 + 2.03944397 7.35864067 0.65363002 2.062097549 7.33463049 0.48615167 2.35738158 7.54172421 0.49232507 + 2.16186619 7.7259922 1.13584089 2.12103558 7.74449587 1.12717378 2.23248768 7.6862998 1.081251502 + 2.22985625 7.66119957 0.98024911 2.19288135 7.667521 0.94003654 2.097034931 7.70157766 1.14291453 + 2.1777494 7.62833738 0.95509088 2.12904119 7.67398643 1.15097892 2.19294953 7.62400484 1.095996976 + 2.1970017 7.61426735 0.99875867 2.088177204 7.6426754 1.14412904 2.061268806 7.67145252 1.13497078 + 2.14563894 7.59443569 1.089550018 2.16107225 7.58612823 0.99908829 2.14636993 7.60828781 0.95922881 + 2.0010612011 7.57644558 1.13024032 1.9780407 7.59644508 1.11882699 2.056501865 7.53046417 1.080852389 + 2.069485426 7.52282858 0.99313748 2.052049637 7.53967667 0.96229362 1.93341684 7.56402683 1.11073363 + 2.010500669 7.51150417 0.96012682 1.95046186 7.54440308 1.11705542 2.0075078011 7.49045944 1.078668594 + 2.017516136 7.4970336 0.98619676 1.79201055 7.4385066 0.93411088 1.79106355 7.44578934 0.92282653 + 1.75728989 7.46468639 1.011202693 1.74812627 7.47514391 1.00537467 1.75019979 7.45244598 0.95851588 + 1.76055479 7.44395304 0.97365284 1.83692408 7.51097298 1.071065545 1.82808304 7.5288372 1.063702822 + 1.89249742 7.4712038 0.92190748 1.90021396 7.45710659 0.94239444 1.89867854 7.46687889 1.026582837 + 1.90297699 7.52705431 1.10255766 1.8857789 7.55192041 1.093786001 1.95288956 7.48129416 1.052892685 + 1.97198498 7.47972345 0.96746916 1.96542943 7.49738741 0.94353867 2.24723864 7.61684465 0.89968777 + 2.20536613 7.63371754 0.89842564 2.30904484 7.57924032 0.83211625 2.28773308 7.56945562 0.73706084 + 2.24835873 7.57816029 0.69737273 2.18506646 7.60258818 0.90553778 2.23689222 7.54577446 0.70170599 + 2.22163749 7.57913971 0.90526301 2.28295135 7.53504658 0.84084064 2.2647872 7.53120852 0.73571968 + 2.048218727 7.46485567 0.88438332 2.027499437 7.48657227 0.8818329 2.010012865 7.46827269 0.87739283 + 2.095659256 7.41849518 0.82865936 2.097610235 7.41688681 0.7313686 2.061560154 7.41963387 0.71023947 + 2.080015421 7.43444014 0.70830929 2.17687654 7.55955696 0.89524853 2.14990592 7.584167 0.89177537 + 2.22995758 7.51136589 0.83354461 2.22408271 7.5109334 0.73502588 2.20286655 7.52962351 0.70096338 + 2.025709867 7.44193888 0.88485473 2.065849304 7.39033556 0.82857448 2.074014425 7.3943367 0.73514223 + 1.78493428 7.38436413 0.79248196 1.77605093 7.38854027 0.7870611 1.774441 7.35924101 0.74021906 + 1.79296851 7.35051107 0.74885213 1.80688262 7.35489082 0.69271678 1.81764698 7.35346174 0.69725633 + 1.93819273 7.36795235 0.70116466 1.93818629 7.3657856 0.79483545 1.88793373 7.41492081 0.85217899 + 1.97870076 7.43886566 0.87521321 2.019462347 7.38108635 0.81716484 2.029609203 7.3913269 0.72004211 + 1.96794939 7.46362925 0.87055057 1.87481904 7.43577576 0.85116231 1.92955625 7.38393211 0.68169075 + 2.023268223 7.41064739 0.7003122 2.3637414 7.69829178 0.40749753 2.33154821 7.71215105 0.41474244 + 2.40092945 7.67374325 0.34449634 2.37244725 7.68710709 0.26121596 2.3320601 7.70215559 0.23829666 + 2.31127715 7.66904736 0.416015 2.31070089 7.65800238 0.24310957 2.33614802 7.65211582 0.41023108 + 2.36566687 7.62256527 0.34796011 2.34528303 7.63728094 0.2682994 2.30081797 7.61541367 0.40901458 + 2.27979636 7.63565826 0.41546026 2.32578206 7.58988094 0.34784222 2.30897307 7.60291004 0.27395621 + 2.28080416 7.62626457 0.24772537 2.23985052 7.57241344 0.40531415 2.26291275 7.54423666 0.34940147 + 2.25119591 7.55499363 0.27731445 2.22408175 7.57898903 0.25578693 2.21534324 7.59798861 0.40813464 + 2.18453169 7.57420158 0.40925756 2.19627261 7.54959345 0.26152721 2.011657715 7.467484 0.3094686 + 2.0013589859 7.47992563 0.3048718 1.9889847 7.48136711 0.34261596 2.0016698837 7.46644974 0.3475638 + 2.00046277046 7.49173403 0.38309777 2.0085644722 7.48086834 0.38331494 2.11419964 7.50642443 0.28181785 + 2.1586473 7.50876188 0.2825442 2.1014843 7.52434063 0.26589546 2.14386868 7.53632641 0.26299512 + 2.140661 7.56050587 0.40621704 2.096511126 7.53772259 0.40373442 2.11766934 7.5153966 0.39703143 + 2.15670753 7.52207994 0.40084988 2.13130474 7.48306942 0.35043305 2.16981936 7.49485159 0.35030237 + 1.72994435 8.38144493 1.098494887 1.9186548 8.24375916 1.17280257; + setAttr ".vt[1826:1991]" 1.92867208 8.20649815 1.13827419 1.83886194 8.34913158 1.22361016 + 1.7318207 8.013074875 1.17624044 1.73282933 8.0084276199 1.15954006 1.6060102 8.10223484 1.15672123 + 1.64706492 8.014917374 1.164837 1.65420389 8.029058456 1.19909978 1.76055479 8.21185017 1.21474171 + 1.73142874 8.16475487 1.21657228 1.79105175 8.26828957 1.21650696 1.69506609 8.3236084 1.10369813 + 1.66342771 8.25868893 1.10860252 1.84599292 8.12342834 1.16266561 1.88402903 8.18223953 1.16385579 + 1.85424018 8.10525417 1.13736427 1.89482927 8.15637493 1.12809241 1.8164326 8.065464973 1.14733136 + 1.80874491 8.078138351 1.16732788 2.093037128 8.77883053 0.58671457 2.16506648 8.66104507 0.42090216 + 2.32614994 8.59599686 0.11425356 2.2154038 8.60109901 0.19780466 2.17223024 7.97342539 0.8981055 + 2.22794867 7.87023926 0.85612732 2.16998529 7.90358639 0.93464214 2.20924497 7.94563103 0.78880286 + 2.23709035 7.90777349 0.67704672 2.23659706 7.82779598 0.71531552 2.24189115 7.83508873 0.80393702 + 2.29825115 7.79620028 0.65992361 2.3039546 7.78902292 0.61175096 2.30893517 7.81061172 0.39511555 + 2.32811546 7.78580904 0.45584008 2.27466369 7.86978149 0.50306869 2.29767036 7.78068924 0.53029829 + 2.28421545 7.83556747 0.30572852 2.29192352 7.90413761 0.28780389 2.33015776 7.88103867 0.1975342 + 2.31390214 7.81691742 0.21950699 2.22143674 8.10405636 0.61280668 2.17674351 8.097492218 0.73822367 + 2.25251436 8.1268177 0.22018559 2.33465433 8.14419365 0.12547527 2.19243503 8.014738083 1.048118711 + 1.98736024 8.61108875 0.64945567 1.89140868 8.50508022 0.86808228 1.97986555 8.71205616 0.71688068 + 1.89500999 8.5882988 0.89614481 2.23006201 7.6263113 0.54997033 2.27445984 7.63309288 0.65303069 + 2.29433179 7.60124588 0.47315866 2.27346945 7.59549427 0.66192997 2.27968311 7.57214212 0.47620678 + 2.21689939 7.58811426 0.5595578 2.24616456 7.57253599 0.65508395 2.2514441 7.55454016 0.48357227 + 2.12689114 7.47547531 0.5674848 2.14772654 7.46272612 0.64653891 2.15382171 7.44414091 0.48970592 + 2.12299466 7.43271494 0.64750326 2.14311457 7.41352034 0.49282718 2.23849654 7.59931517 0.55839843 + 2.10930395 7.40006113 0.48482648 2.0686059 7.45619678 0.55694634 2.085024834 7.4293313 0.64847261 + 1.98108232 7.41587925 0.54886782 2.006169796 7.39188385 0.63563627 2.030094862 7.36612654 0.47882825 + 2.11725616 7.44633961 0.57142854 2.078032494 7.72655869 0.98817235 2.084715128 7.75150919 1.096574545 + 2.15004992 7.67902279 0.9186635 2.080324411 7.71921539 1.11676013 2.14968371 7.65225887 0.93556392 + 2.053938866 7.6943574 0.99623382 2.041888237 7.69456196 1.10422683 2.11550999 7.6374464 0.93556672 + 1.97251534 7.61791182 0.9950189 1.96505713 7.61395931 1.093148589 2.024698496 7.56549311 0.9491291 + 1.93177569 7.58052492 1.092177868 2.00081133842 7.53375483 0.96200716 2.090817928 7.69733381 1.013480186 + 1.81642532 7.55216169 1.037855387 1.83893204 7.56239462 0.94998282 1.87772429 7.50441933 0.90894854 + 1.90848517 7.58738089 0.9780792 1.88126683 7.57484579 1.06897068 1.94984126 7.52960014 0.93109179 + 1.95898676 7.58366776 1.0066726208 2.14400697 7.63443661 0.75699729 2.15666056 7.64855814 0.86702108 + 2.20581985 7.59412432 0.68082708 2.1568284 7.62298536 0.88457739 2.20785666 7.5674901 0.6886881 + 2.0075335503 7.51144266 0.76129174 1.99265623 7.48566294 0.8596999 2.0055088997 7.50894928 0.85766917 + 2.054798126 7.46116638 0.69598877 2.036547899 7.44378328 0.69932443 2.11871576 7.60985041 0.76099223 + 2.12244511 7.60905743 0.86496353 2.17137027 7.55857992 0.68528241 1.86477482 7.45913744 0.82657981 + 1.95535469 7.490026 0.84636915 2.0040051937 7.44945145 0.68581253 1.91193235 7.41704941 0.67001259 + 1.96265066 7.50340509 0.74825442 1.86858165 7.47877979 0.72552127 1.99751878 7.48794317 0.76592195 + 2.24727201 7.73794508 0.31379598 2.2843051 7.72870445 0.39940986 2.29256153 7.71886635 0.24286962 + 2.27165985 7.69406462 0.4027614 2.28197527 7.67213535 0.25015813 2.22362351 7.68346643 0.31924069 + 2.24500275 7.66637707 0.40287587 2.25545096 7.64934492 0.25255239 2.16629457 7.63110876 0.3195565 + 2.19174004 7.61825991 0.39372134 2.20248938 7.60024977 0.26462901 2.17227077 7.59127188 0.39348552 + 2.17999911 7.56810808 0.26731625 2.24720669 7.69936275 0.32043886 2.13275313 7.56059933 0.26379263 + 2.091986895 7.54511929 0.26482469 2.064641237 7.58275509 0.32322332 2.11519742 7.60691786 0.32177711 + 2.082148314 7.56286812 0.39413843 2.12296796 7.58636951 0.3951965 2.15756035 7.60216141 0.32309765 + 1.74808288 8.3422451 1.036245823 1.7328459 8.36507416 1.063020468 1.90682995 8.20353413 1.095883012 + 1.65692103 8.24792957 1.062487364 1.69297135 8.32002544 1.052329063 1.71070135 8.29208279 1.018769383 + 1.67096317 8.22246265 1.028158307 1.88144076 8.15400314 1.07894063 1.84114861 8.10198593 1.093604088 + 1.64452755 8.17182064 1.049315929 1.63356686 8.1974411 1.080611229 1.79975915 8.057892799 1.10888767 + 1.61391163 8.072331429 1.11906755 1.60060453 8.095604897 1.12831604 1.72361767 8.0076789856 1.14359069 + 2.14890361 7.6140213 0.76949751 2.55777454 8.15997601 0.34039935 2.57764935 8.60929394 0.42991331 + 2.55234885 8.63929844 0.55447692 2.47662973 8.69547272 0.71657509 2.20734286 7.54348516 0.40427935 + 2.22464609 7.51418781 0.35217211 2.21552014 7.5258894 0.28176785 2.31975389 7.87249041 0.85443908 + 2.32432699 7.87757444 0.86407518 2.3789444 7.78632736 0.65964347 2.38900089 7.78199244 0.64981431 + 2.48480129 7.86937141 0.20924118 2.54242516 7.87422705 0.33361924 2.18286562 7.95761919 1.04397881 + 2.23096728 7.98170757 1.08290875 2.29595089 7.9834199 1.086011767 2.40541148 7.96159697 1.020627499 + 2.21140695 8.099415779 0.41627306 2.17810822 8.6387434 0.32211342; + setAttr ".vt[1992:2157]" 2.57666016 8.58649349 0.29752094 1.75245309 7.49715853 1.0060482025 + 1.75452757 7.48388624 0.94512916 1.79553628 7.45699692 0.91402596 2.083656788 8.64720631 1.066520929 + 2.082369566 8.29867458 1.026141167 2.13242221 8.33566952 1.037407756 2.17304564 8.40966606 1.061592102 + 2.19561505 8.7404747 0.93546724 1.77791703 7.41065454 0.78524858 1.772066 7.39781857 0.72266537 + 1.81182158 7.37596893 0.68050444 1.92484939 7.3254199 0.61141044 1.90833926 7.31968594 0.55026019 + 1.94177759 7.31375742 0.49955443 1.99958575 7.49672031 0.29829523 1.9860456 7.50691938 0.33516222 + 1.9977752 7.50703096 0.37927136 2.5769217 8.76407242 0.38975707 2.5514617 8.7337904 0.24250403 + 2.4288857 8.70300579 0.13526168 2.36298847 8.70323944 0.14458235 2.26191592 8.7238102 0.23657535 + 2.224576 8.758708 0.37523419 2.17415094 8.80803299 0.52455431 2.19424152 8.8573761 0.64134288 + 1.64126182 8.21205139 1.12345541 1.66086268 8.031516075 1.11469126 1.70635962 8.11158085 1.041209817 + 1.73655236 8.16307354 1.014558077 1.77645731 8.22317314 0.99640787 1.80956364 8.27306461 1.028599739 + 1.95927501 8.37060833 0.86683249 2.059145212 8.38459873 0.66124469 2.15188837 8.38930225 0.49884582 + 2.16031456 8.37851524 0.351127 2.19777513 8.37006283 0.18839711 2.31493735 8.38465977 0.10219509 + 2.43642497 8.39144802 0.11960617 2.51697516 8.38550186 0.20571737 2.57096934 8.38673878 0.33054262 + 2.58082461 8.39262009 0.47852021 2.55047131 8.42937851 0.62029856 2.47015071 8.49660015 0.79199183 + 2.32075071 8.61436558 0.91198099 2.41555166 8.73439789 0.77263576 2.46910429 8.83822823 0.66479486 + 1.88415253 8.40347576 1.18509924 1.76677918 8.41848469 1.077261329 1.76158464 8.38902569 1.036137462 + 1.76856327 8.35698128 1.006511569 1.82507157 8.28314018 1.0055801868 1.9257319 8.22069073 1.078356743 + 1.95460892 8.23625088 1.11740386 1.95171773 8.27950954 1.1488837 2.5444591 8.80494022 0.2040614 + 2.57628632 8.84575844 0.36334366 2.27145863 8.79918957 0.2113746 2.16548872 8.88121796 0.50412321 + 2.35779309 8.77138996 0.1249861 2.41333055 8.77560902 0.11473395 2.20144486 8.83965683 0.34609759 + 2.19430852 8.91290855 0.61448711 2.15009403 9.032530785 0.45393652 2.23680639 8.9448843 0.16138807 + 2.1732316 8.98478127 0.30600291 2.39531946 8.93527794 0.066684574 2.52847719 8.97435188 0.13245358 + 2.57180667 9.033509254 0.28488347 2.192662 9.078634262 0.56891388 2.33033466 8.93307114 0.084187433 + 2.46923041 9.10964775 0.55771852 2.46412897 8.91518307 0.63212866 2.29502153 8.80742073 0.80089259 + 2.33769512 8.86608219 0.70331657 2.36053133 8.93119812 0.6823554 2.36524725 9.11797523 0.62112367 + 0.77674991 13.75400734 0.45398888 1.071092963 13.72252178 0.33265331 0.38624901 13.74301815 0.60002935 + 0.30937406 13.83607578 0.43828803 0.66631025 13.83667183 0.29208735 0.96804661 13.81803703 0.13242421 + 0.80551654 14.025354385 -0.78324229 1.30624211 12.5441246 -0.60087663 1.40539217 12.50104618 -0.22133148 + 1.12455118 12.26206017 0.74944395 0.6844511 13.61013222 -0.98116452 1.40547049 12.53040314 0.24959615 + 1.98491693 13.66419315 -0.53947139 2.032367945 13.62514496 -0.16533019 1.51003861 12.84861374 -0.60289991 + 1.71079302 12.88578415 -0.77384156 1.48355114 12.79067135 -0.25395045 2.2892673 12.70070839 -0.56592524 + 1.88386214 12.79160404 0.21269965 1.42725265 12.82683945 0.45828784 2.058072805 12.84787273 -0.75449377 + 1.79088926 13.57951736 -0.71035331 1.41003847 13.065049171 -0.24947497 1.31556606 13.29976559 0.4433791 + 1.54730463 13.39888096 -0.74927473 1.42133343 13.088751793 -0.59855276 1.71069384 13.42432499 0.25216249 + 1.46718347 13.18249321 0.2493017 2.16145968 12.6807127 0.056893766 2.29952621 12.70200157 -0.20908445 + 1.43413365 13.11112976 0.073287733 1.58755243 12.83429241 0.05402863 1.94688582 13.54020882 0.10059192 + 0.97999811 10.71192169 0.63878596 1.066475272 10.75070572 0.1276101 0.85053098 10.77582264 -0.32022876 + 0.64293998 10.6592474 1.14812267 0.66504234 12.54983234 1.2036624 1.17069423 12.59638214 0.864793 + 0.49342054 12.69011116 -0.96158218 0.62558609 10.82671642 -0.48245335 0.66703361 12.22486782 1.13015342 + 2.11414456 8.12577343 0.89327228 2.16956854 8.15869713 1.027974844 2.21769428 8.20113468 1.040197253 + 1.36264348 4.77405119 0.27489069 0.31206375 14.75404739 0.46096042 0.32325059 14.69697094 0.57255757 + 0.31996453 14.64941406 0.76068747 0.41795364 14.86025238 0.84129953 0.46364823 15.47357845 0.93640858 + 0.88453066 0.5094893 0.62151951 1.18390107 0.51488197 0.59719098 1.43990171 0.45584226 0.39441675 + 1.54430342 0.32139659 0.21254538 1.5510534 0.23789874 0.16920488 1.53805041 0.12842192 0.16290662 + 1.51796293 0.052831173 0.18292925 1.4331001 -0.00091561553 0.21725024 1.3295716 -0.00091561553 0.24711138 + 1.17138135 -0.00091561553 0.2930305 1.0058252811 -0.00091561553 0.33922961 0.85591084 0.06889993 0.38314411 + 0.73064238 0.19383256 0.43544549 0.72893119 0.26518604 0.48009849 0.75315762 0.37578383 0.53454363 + 2.05269146 8.3516922 1.099716425 2.041057348 8.30483627 1.075307488 2.021178246 8.28352642 1.0080201626 + 1.90643716 8.35007477 0.92216772 1.84936559 8.4495945 0.91903639 1.83653212 8.49612427 0.9621287 + 1.83764136 8.54419231 1.026126385 1.9777447 8.52990532 1.14083338 0.25724614 15.6686697 -0.39350063 + 0.52440119 15.51026535 -0.12104277 0.56060791 15.25364685 0.28494483 0.56536531 7.51072979 1.037003517 + 0.97742754 7.5340848 1.12213933 1.44777143 7.55281305 0.82447916 1.51763916 8.51330376 0.29627627 + 1.43380439 8.4528389 0.79183424 0.55584639 8.057655334 1.043086529 0.9579888 8.23570156 1.10652745 + 2.53397512 9.069189072 0.40832716 2.53891897 8.87349033 0.48368144 2.54316998 8.79292965 0.50861174 + 0.97895712 0.068384998 1.51458645 1.052458048 0.068393596 1.51446223; + setAttr ".vt[2158:2225]" 1.11468387 0.075257979 1.49844623 0.57517529 13.14100742 -0.99861121 + 0.10402285 13.83220768 0.49529573 0.19688013 10.42873669 -0.48355907 0.33140272 10.89085388 -0.46522933 + 0.94250381 12.627491 -0.80679178 1.041543245 13.082061768 -0.88994098 1.16704488 13.49417591 -0.87474406 + 1.34872401 13.87493229 -0.73384964 1.4554714 14.046102524 -0.52919281 1.48007345 13.97735023 -0.15127115 + 1.41945505 13.80456448 0.058068465 1.34659576 13.62050533 0.22548962 0.4657903 14.54793549 -0.25559613 + 0.37272212 15.19937325 -0.25410026 0.42317244 15.62171936 -0.31548601 0.49596542 16.62443542 0.11330778 + 0.4706184 16.60032845 0.66704077 0.41734761 16.29612923 1.026978135 0.33969522 15.89920998 1.22281444 + 0.28531072 15.56566906 1.22065663 0.28802532 15.45867825 1.058277607 0.2877281 14.84006977 0.95352054 + 0.29813117 14.69559956 0.8800863 0.13298893 14.58813381 1.012080908 0.277978 16.27834129 -0.3512961 + 0.48110789 16.14053535 -0.24254926 0.6080488 15.91001701 -0.078181177 0.6352191 15.59236526 0.15670988 + 0.72224534 15.58388329 0.15616067 0.61977643 15.51837158 0.38238794 0.56295407 15.44569874 0.6157341 + 0.47094828 15.33652687 0.95962447 0.2869494 15.31706238 1.068576813 0.13124974 15.31656837 1.134758 + 0.057584103 15.32353306 1.23200631 1.081925511 13.22620201 0.72307736 0.58581507 13.19764423 0.9090156 + 0.63081473 11.43884754 1.12309802 1.068632722 11.50035191 0.70917284 1.23555243 11.60597801 0.18991897 + 1.22095633 11.65394783 -0.25390083 1.015830755 11.70467091 -0.4960441 0.65814 11.78033638 -0.65890759 + 0.27378789 11.86323357 -0.7705403 1.68814898 13.74210835 0.090414733 1.56221545 13.5593462 0.24625073 + 1.46722066 13.38139629 0.34132594 1.42310202 12.95831966 0.36827761 1.38071537 12.72755527 0.17464396 + 1.38477838 12.73019505 -0.21307436 1.33220363 12.7700634 -0.58143711 1.24390209 13.10765934 -0.77052492 + 1.38637805 13.47476959 -0.8116039 1.60280752 13.76541233 -0.71784103 1.75288999 13.88460732 -0.53190112 + 1.75988698 13.86080265 -0.14744635 2.12081337 13.16247082 0.088218488 1.85964203 13.13962746 0.23887132 + 1.64585412 13.097286224 0.23086295 1.53739405 13.061156273 0.075328499 1.49190664 13.0062255859 -0.24406725 + 1.4279381 13.095623016 -0.5679059 1.63955212 13.20402145 -0.75047755 1.9554981 13.20776081 -0.7330448 + 2.20664024 13.20668316 -0.54713988 2.23509717 13.21768951 -0.17654385 1.2077837 12.9069252 -0.72248197; + setAttr -s 4488 ".ed"; + setAttr ".ed[0:165]" 0 1 0 1 9 1 9 8 1 8 0 1 1 2 0 2 10 1 10 9 1 2 3 0 3 11 1 + 11 10 1 3 4 0 4 12 1 12 11 1 4 5 0 5 13 1 13 12 1 5 6 0 6 14 1 14 13 1 6 7 0 7 15 1 + 15 14 1 7 0 0 8 15 1 9 16 1 16 8 1 10 16 1 11 16 1 12 16 1 13 16 1 14 16 1 15 16 1 + 36 18 0 18 26 1 26 35 0 35 36 1 18 33 0 33 34 1 34 26 0 19 20 0 20 28 1 28 27 0 27 19 1 + 20 21 0 21 29 1 29 28 0 21 37 0 37 38 1 38 29 0 22 39 0 39 40 1 40 30 0 30 22 1 23 24 0 + 24 32 1 32 31 0 31 23 1 24 17 0 17 25 1 25 32 0 33 19 0 27 34 0 17 36 0 35 25 0 37 22 0 + 30 38 0 39 23 0 31 40 0 41 42 0 42 50 1 50 49 1 49 41 1 42 43 0 43 51 1 51 50 1 43 44 0 + 44 52 1 52 51 1 44 45 0 45 53 1 53 52 1 45 46 0 46 54 1 54 53 1 46 47 0 47 55 1 55 54 1 + 47 48 0 48 56 1 56 55 1 48 41 0 49 56 1 50 57 1 57 49 1 51 57 1 52 57 1 53 57 1 54 57 1 + 55 57 1 56 57 1 58 59 0 59 67 1 67 66 1 66 58 1 59 60 0 60 68 1 68 67 1 60 61 0 61 69 1 + 69 68 1 61 62 0 62 70 1 70 69 1 62 63 0 63 71 1 71 70 1 63 64 0 64 72 1 72 71 1 64 65 0 + 65 73 1 73 72 1 65 58 0 66 73 1 67 74 1 74 66 1 68 74 1 69 74 1 70 74 1 71 74 1 72 74 1 + 73 74 1 75 76 0 76 84 1 84 83 1 83 75 1 76 77 0 77 85 1 85 84 1 77 78 0 78 86 1 86 85 1 + 78 79 0 79 87 1 87 86 1 79 80 0 80 88 1 88 87 1 80 81 0 81 89 1 89 88 1 81 82 0 82 90 1 + 90 89 1 82 75 0 83 90 1 84 91 1 91 83 1 85 91 1 86 91 1 87 91 1 88 91 1 89 91 1 90 91 1 + 135 1103 1 1103 1104 1; + setAttr ".ed[166:331]" 1104 134 1 134 135 1 138 137 1 137 141 1 141 140 1 140 138 1 + 96 248 1 248 139 1 139 95 1 95 96 1 135 138 1 138 165 1 165 1103 1 140 168 1 168 165 1 + 125 1115 1 1115 94 1 94 125 1 249 250 1 250 140 1 141 249 1 250 237 1 237 168 1 135 136 1 + 136 137 1 127 142 1 142 92 1 92 127 1 240 93 1 93 92 1 92 239 1 239 240 1 240 238 1 + 238 97 1 97 93 1 225 251 1 251 252 1 252 235 1 235 225 1 251 254 1 254 255 1 255 252 1 + 218 228 1 228 227 1 227 217 1 217 218 1 179 256 1 256 255 1 255 227 1 227 179 1 228 188 1 + 188 179 1 256 253 1 253 252 1 253 187 1 187 235 1 254 217 1 184 183 1 183 180 1 180 181 1 + 181 184 1 223 233 1 233 232 1 232 222 1 222 223 1 181 232 1 233 184 1 233 234 1 234 186 1 + 186 184 1 186 187 1 187 183 1 228 229 1 229 189 1 189 188 1 234 235 1 189 210 1 210 211 1 + 211 188 1 220 230 1 230 229 1 229 219 1 219 220 1 218 219 1 193 202 1 202 206 1 206 192 1 + 192 193 1 230 210 1 182 196 1 196 195 1 195 182 1 207 190 1 190 196 1 182 207 1 202 190 1 + 207 206 1 180 209 1 209 208 1 208 181 1 208 231 1 231 232 1 231 221 1 221 222 1 231 230 1 + 220 221 1 208 210 1 209 211 1 238 197 1 197 168 1 237 238 1 237 98 1 98 97 1 197 166 1 + 166 165 1 177 1103 1 166 177 1 250 125 1 125 98 1 215 199 1 199 178 1 178 214 1 214 215 1 + 213 154 1 154 212 1 212 185 1 185 213 1 213 152 1 152 157 1 157 154 1 154 163 1 163 155 1 + 155 212 1 161 247 1 247 151 1 151 160 1 160 161 1 178 175 1 175 145 1 145 214 1 175 153 1 + 153 148 1 148 145 1 1102 1104 1 177 1102 1 164 158 1 158 173 1 173 226 1 226 164 1 + 171 193 1 193 173 1 173 1068 1 1068 171 1 158 162 1 162 1068 1 215 176 1 176 200 1 + 200 199 1 151 153 1 175 160 1 1105 239 1 239 143 1 143 1105 1 172 1068 1 162 174 1 + 174 172 1; + setAttr ".ed[332:497]" 236 134 1 1104 1106 1 1106 236 1 156 144 1 144 174 1 + 162 156 1 158 159 1 159 156 1 164 163 1 163 159 1 157 159 1 157 161 1 161 156 1 160 144 1 + 164 169 1 169 155 1 178 144 1 199 174 1 244 153 1 151 245 1 245 244 1 166 149 1 149 176 1 + 176 177 1 244 241 1 241 148 1 201 200 1 149 201 1 247 246 1 246 245 1 194 213 1 185 194 1 + 196 152 1 194 196 1 205 201 1 149 198 1 198 205 1 146 147 1 147 205 1 198 146 1 197 198 1 + 197 167 1 167 146 1 171 203 1 203 202 1 203 191 1 191 190 1 204 170 1 170 201 1 205 204 1 + 171 170 1 204 203 1 150 191 1 204 150 1 147 150 1 234 224 1 224 225 1 223 224 1 194 195 1 + 170 172 1 172 200 1 192 226 1 241 243 1 243 242 1 242 148 1 254 155 1 169 217 1 218 216 1 + 216 192 1 192 219 1 206 220 1 207 221 1 182 222 1 195 223 1 194 224 1 185 225 1 212 251 1 + 248 134 1 236 139 1 236 143 1 143 142 1 142 139 1 1106 1105 1 241 146 1 167 243 1 + 244 147 1 245 150 1 246 191 1 246 196 1 247 152 1 493 464 1 464 479 1 479 494 1 494 493 1 + 477 476 1 476 469 1 469 473 1 473 477 1 465 479 1 479 263 1 263 466 1 466 465 1 496 264 1 + 264 478 1 478 495 1 495 496 1 478 477 1 473 474 1 474 478 1 497 465 1 466 265 1 265 497 1 + 495 465 1 497 496 1 262 454 1 454 474 1 473 262 1 469 428 1 428 262 1 477 455 1 455 381 1 + 381 476 1 467 466 1 263 472 1 472 467 1 471 468 1 468 467 1 472 471 1 380 467 1 468 266 1 + 266 380 1 468 475 1 475 382 1 382 266 1 475 476 1 381 382 1 470 475 1 471 470 1 470 469 1 + 1085 1084 1 1084 484 1 484 485 1 485 1085 1 1088 261 1 261 464 1 464 1074 1 1074 1088 1 + 493 1075 1 1075 1074 1 493 454 1 454 1076 1 1076 1075 1 258 1079 1 1079 1078 1 1078 257 1 + 257 258 1 485 260 1 260 1086 1 1086 1085 1 260 433 1 433 1087 1 1087 1086 1 1084 1083 1 + 1083 483 1 483 484 1 1083 1082 1; + setAttr ".ed[498:663]" 1082 482 1 482 483 1 445 304 1 304 313 1 313 452 1 452 445 1 + 428 429 1 429 257 1 257 262 1 429 430 1 430 258 1 260 434 1 434 379 1 379 433 1 378 472 1 + 263 261 1 261 378 1 481 259 1 259 431 1 431 480 1 480 481 1 267 471 1 378 267 1 378 379 1 + 379 268 1 268 267 1 383 470 1 267 383 1 268 384 1 384 383 1 259 258 1 430 431 1 485 437 1 + 437 434 1 437 386 1 386 435 1 435 434 1 386 385 1 385 436 1 436 435 1 483 438 1 438 439 1 + 439 484 1 438 386 1 437 439 1 482 387 1 387 438 1 387 385 1 480 387 1 482 481 1 430 436 1 + 385 431 1 384 429 1 428 383 1 320 388 1 388 391 1 391 321 1 321 320 1 284 322 1 322 391 1 + 388 284 1 369 416 1 416 413 1 413 361 1 361 369 1 416 370 1 370 363 1 363 413 1 426 326 1 + 326 323 1 323 427 1 427 426 1 327 426 1 427 274 1 274 327 1 283 444 1 444 432 1 432 283 1 + 462 461 1 461 441 1 441 442 1 442 462 1 304 459 1 459 458 1 458 306 1 306 304 1 392 308 1 + 308 283 1 432 392 1 306 309 1 309 313 1 441 440 1 440 445 1 445 286 1 286 441 1 461 460 1 + 460 440 1 308 309 1 306 283 1 286 319 1 319 442 1 458 457 1 457 283 1 444 456 1 456 463 1 + 463 443 1 443 444 1 463 462 1 442 443 1 448 432 1 443 448 1 319 448 1 457 456 1 460 459 1 + 304 440 1 316 461 1 462 285 1 285 316 1 285 1110 1 1110 314 1 314 316 1 315 1112 1 + 1112 307 1 307 305 1 305 315 1 307 458 1 459 305 1 284 457 1 307 284 1 456 388 1 + 320 463 1 320 285 1 321 1110 1 1112 322 1 344 348 1 348 347 1 347 354 1 354 344 1 + 390 460 1 316 390 1 390 305 1 389 390 1 314 389 1 389 315 1 391 1111 1 1111 1110 1 + 1112 1111 1 282 392 1 392 393 1 393 279 1 279 282 1 392 399 1 399 308 1 282 399 1 + 279 310 1 310 318 1 318 282 1 295 303 1 303 318 1 310 295 1 449 452 1 452 303 1 295 449 1 + 446 407 1 407 353 1 353 303 1; + setAttr ".ed[664:829]" 303 446 1 353 342 1 342 318 1 313 355 1 355 407 1 446 313 1 + 310 335 1 335 296 1 296 295 1 359 282 1 342 359 1 342 343 1 343 358 1 358 359 1 353 352 1 + 352 343 1 309 345 1 345 355 1 308 357 1 357 345 1 407 406 1 406 352 1 355 354 1 354 406 1 + 399 409 1 409 357 1 359 409 1 356 349 1 349 348 1 344 356 1 343 351 1 351 350 1 350 358 1 + 352 346 1 346 351 1 345 344 1 357 356 1 406 403 1 403 346 1 347 403 1 409 408 1 408 356 1 + 358 408 1 403 404 1 404 351 1 348 404 1 349 405 1 405 404 1 405 350 1 408 405 1 276 394 1 + 394 393 1 393 276 1 394 279 1 410 275 1 275 276 1 393 410 1 275 336 1 336 317 1 317 276 1 + 298 317 1 336 301 1 301 298 1 336 374 1 374 364 1 364 301 1 296 397 1 397 447 1 447 295 1 + 397 299 1 299 298 1 298 447 1 279 280 1 280 335 1 299 341 1 341 317 1 395 394 1 276 277 1 + 277 395 1 278 396 1 396 395 1 277 278 1 395 280 1 396 281 1 281 280 1 297 398 1 398 397 1 + 296 297 1 398 300 1 300 299 1 281 339 1 339 335 1 339 297 1 300 340 1 340 341 1 277 341 1 + 340 278 1 375 374 1 374 362 1 362 363 1 363 375 1 365 364 1 375 365 1 330 400 1 400 396 1 + 278 330 1 297 333 1 333 402 1 402 398 1 402 334 1 334 300 1 329 340 1 334 329 1 329 330 1 + 331 332 1 332 339 1 281 331 1 332 333 1 400 331 1 400 401 1 401 332 1 329 401 1 402 401 1 + 419 270 1 270 269 1 269 410 1 410 419 1 338 311 1 311 293 1 293 337 1 337 338 1 453 451 1 + 451 337 1 293 453 1 1081 481 1 1082 1081 1 269 411 1 411 410 1 411 275 1 270 311 1 + 338 269 1 412 411 1 269 360 1 360 412 1 412 362 1 362 275 1 338 377 1 377 360 1 366 377 1 + 337 366 1 364 414 1 414 450 1 450 301 1 337 450 1 414 366 1 413 412 1 360 361 1 365 415 1 + 415 414 1 415 367 1 367 366 1 368 376 1 376 367 1 367 373 1 373 368 1 361 376 1; + setAttr ".ed[830:995]" 368 369 1 372 365 1 375 371 1 371 372 1 370 371 1 418 415 1 + 372 418 1 418 373 1 376 377 1 416 417 1 417 371 1 368 417 1 418 417 1 290 291 1 291 288 1 + 288 287 1 287 290 1 293 422 1 422 486 1 486 453 1 272 420 1 420 419 1 419 271 1 271 272 1 + 288 272 1 271 287 1 420 421 1 421 492 1 492 270 1 270 420 1 273 421 1 272 273 1 288 487 1 + 487 273 1 291 488 1 488 487 1 289 487 1 488 292 1 292 289 1 293 490 1 490 489 1 489 422 1 + 423 489 1 490 294 1 294 423 1 492 491 1 491 311 1 491 490 1 491 312 1 312 294 1 489 488 1 + 291 422 1 423 292 1 423 424 1 424 302 1 302 292 1 492 323 1 323 312 1 421 427 1 312 325 1 + 325 324 1 324 294 1 326 325 1 324 424 1 302 328 1 328 289 1 328 327 1 274 289 1 273 274 1 + 424 425 1 425 328 1 325 425 1 426 425 1 496 256 1 179 264 1 253 497 1 265 187 1 265 380 1 + 380 183 1 188 455 1 455 264 1 266 180 1 211 381 1 382 209 1 261 433 1 435 268 1 436 384 1 + 451 449 1 449 298 1 301 451 1 1088 1087 1 494 474 1 494 495 1 1081 1080 1 1080 259 1 + 290 486 1 129 1137 1 1137 508 1 508 101 1 101 129 1 1128 1138 1 1138 1139 1 1139 509 1 + 509 1128 1 1138 1127 1 1127 1098 1 1098 1139 1 129 124 1 124 1097 1 1097 1137 1 1140 503 1 + 503 499 1 499 1141 1 1141 1140 1 500 1141 1 1141 1142 1 1142 510 1 510 500 1 503 1099 1 + 1099 501 1 501 499 1 124 99 1 99 498 1 498 1097 1 1098 503 1 1140 1139 1 502 525 1 + 525 1099 1 503 502 1 507 510 1 510 504 1 504 509 1 509 507 1 1129 1128 1 504 1129 1 + 508 505 1 505 100 1 100 101 1 528 112 1 112 102 1 102 511 1 511 528 1 117 1029 1 + 1029 511 1 102 117 1 104 111 1 111 526 1 526 516 1 516 104 1 522 523 1 523 513 1 + 513 522 1 1072 527 1 527 1071 1 1071 1135 1 1135 1072 1 1071 532 1 532 1136 1 1136 1135 1 + 520 522 1 522 114 1 114 105 1 105 520 1 514 1132 1 1132 1131 1 1131 519 1; + setAttr ".ed[996:1161]" 519 514 1 1147 526 1 111 130 1 130 1147 1 1131 1130 1 + 1130 517 1 517 519 1 105 106 1 106 518 1 518 520 1 1130 1129 1 504 517 1 519 521 1 + 521 1073 1 1073 514 1 1069 534 1 534 533 1 533 1070 1 1070 1069 1 110 533 1 534 108 1 + 108 110 1 516 515 1 515 109 1 109 104 1 528 498 1 99 112 1 534 535 1 535 113 1 113 108 1 + 1073 1133 1 1133 1132 1 533 532 1 1071 1070 1 513 103 1 103 114 1 505 518 1 106 100 1 + 532 107 1 107 128 1 128 1136 1 110 107 1 564 1010 1 1010 1016 1 1016 541 1 541 564 1 + 537 544 1 544 539 1 539 540 1 540 537 1 538 585 1 585 544 1 537 538 1 539 543 1 543 542 1 + 542 540 1 543 541 1 541 536 1 536 542 1 544 556 1 556 566 1 566 539 1 575 564 1 543 575 1 + 566 575 1 572 571 1 571 551 1 551 554 1 554 572 1 579 560 1 560 545 1 545 581 1 581 579 1 + 579 557 1 557 584 1 584 560 1 580 578 1 578 557 1 579 580 1 583 562 1 562 563 1 563 574 1 + 574 583 1 573 561 1 561 562 1 583 573 1 540 548 1 548 565 1 565 537 1 545 586 1 586 568 1 + 568 581 1 586 547 1 547 567 1 567 568 1 567 558 1 558 559 1 559 567 1 567 549 1 549 550 1 + 550 568 1 536 552 1 552 569 1 569 542 1 573 572 1 554 561 1 552 553 1 553 570 1 570 569 1 + 567 565 1 548 558 1 555 565 1 547 555 1 555 538 1 571 570 1 553 551 1 557 556 1 556 546 1 + 546 584 1 581 582 1 582 580 1 575 577 1 577 576 1 576 564 1 563 576 1 577 574 1 578 566 1 + 569 548 1 570 558 1 571 559 1 549 559 1 572 549 1 573 550 1 585 546 1 550 582 1 574 580 1 + 582 583 1 578 577 1 1001 965 1 965 964 1 964 1002 1 1002 1001 1 1108 1002 1 964 1109 1 + 1109 1108 1 987 986 1 986 927 1 927 591 1 591 987 1 989 988 1 988 593 1 593 590 1 + 590 989 1 612 953 1 953 990 1 990 612 1 988 987 1 591 593 1 595 939 1 939 601 1 601 595 1 + 1067 952 1 952 953 1 612 1067 1 937 936 1 936 616 1; + setAttr ".ed[1162:1327]" 616 600 1 600 937 1 609 619 1 619 617 1 617 600 1 600 609 1 + 597 621 1 621 620 1 620 596 1 596 597 1 601 742 1 742 740 1 740 595 1 939 938 1 938 602 1 + 602 601 1 938 604 1 604 603 1 603 602 1 939 927 1 927 605 1 605 938 1 605 606 1 606 604 1 + 589 984 1 984 985 1 985 588 1 588 589 1 985 986 1 986 946 1 946 588 1 985 605 1 984 606 1 + 587 1019 1 1019 954 1 954 613 1 613 587 1 616 594 1 594 592 1 592 600 1 620 619 1 + 609 596 1 954 990 1 953 950 1 950 954 1 1020 992 1 992 991 1 991 1019 1 1019 1020 1 + 950 1096 1 1096 1095 1 1095 615 1 615 950 1 952 1090 1 1090 1089 1 1089 953 1 1067 1066 1 + 1066 951 1 951 952 1 951 1091 1 1091 1090 1 618 937 1 617 618 1 617 624 1 624 622 1 + 622 618 1 619 625 1 625 624 1 620 657 1 657 625 1 623 657 1 621 623 1 624 626 1 626 627 1 + 627 622 1 657 629 1 629 628 1 628 625 1 623 630 1 630 629 1 626 631 1 631 632 1 632 627 1 + 626 628 1 628 633 1 633 631 1 629 634 1 634 633 1 630 635 1 635 634 1 631 638 1 638 636 1 + 636 632 1 633 639 1 639 638 1 634 640 1 640 639 1 637 640 1 635 637 1 641 647 1 647 656 1 + 656 642 1 642 641 1 642 643 1 643 644 1 644 641 1 643 645 1 645 646 1 646 644 1 645 655 1 + 655 648 1 648 646 1 638 650 1 650 651 1 651 636 1 650 652 1 652 649 1 649 648 1 648 650 1 + 653 640 1 637 654 1 654 653 1 653 652 1 652 639 1 644 649 1 649 647 1 653 647 1 655 651 1 + 654 656 1 599 607 1 607 934 1 934 935 1 935 599 1 942 941 1 941 614 1 614 608 1 608 942 1 + 943 942 1 608 611 1 611 943 1 599 661 1 661 660 1 660 943 1 943 599 1 659 941 1 942 658 1 + 658 659 1 660 658 1 935 662 1 662 661 1 658 665 1 665 663 1 663 659 1 666 665 1 660 666 1 + 661 667 1 667 666 1 664 667 1 662 664 1 665 668 1 668 669 1 669 663 1 670 668 1 666 670 1 + 667 671 1 671 670 1; + setAttr ".ed[1328:1493]" 664 672 1 672 671 1 668 673 1 673 674 1 674 669 1 675 673 1 + 670 675 1 671 676 1 676 675 1 672 677 1 677 676 1 673 680 1 680 678 1 678 674 1 681 680 1 + 675 681 1 676 682 1 682 681 1 679 682 1 677 679 1 683 692 1 692 691 1 691 684 1 684 683 1 + 686 690 1 690 689 1 689 685 1 685 686 1 687 686 1 685 688 1 688 687 1 688 683 1 684 687 1 + 688 693 1 693 692 1 680 694 1 694 695 1 695 678 1 696 694 1 681 696 1 682 697 1 697 696 1 + 679 698 1 698 697 1 690 695 1 694 689 1 693 689 1 696 693 1 697 692 1 698 691 1 616 702 1 + 702 701 1 701 610 1 610 616 1 701 699 1 699 607 1 607 610 1 699 700 1 700 934 1 936 703 1 + 703 702 1 699 706 1 706 704 1 704 700 1 701 707 1 707 706 1 702 708 1 708 707 1 705 708 1 + 703 705 1 709 721 1 721 711 1 711 710 1 710 709 1 712 722 1 722 721 1 709 712 1 713 723 1 + 723 722 1 712 713 1 714 723 1 713 715 1 715 714 1 706 716 1 716 717 1 717 704 1 707 718 1 + 718 716 1 708 719 1 719 718 1 705 720 1 720 719 1 716 709 1 710 717 1 718 712 1 719 713 1 + 720 715 1 725 737 1 737 732 1 732 724 1 724 725 1 724 727 1 727 726 1 726 725 1 727 729 1 + 729 728 1 728 726 1 729 730 1 730 738 1 738 728 1 733 734 1 734 731 1 731 732 1 732 733 1 + 734 735 1 735 730 1 730 731 1 736 733 1 737 736 1 735 739 1 739 738 1 721 733 1 736 711 1 + 722 734 1 723 735 1 714 739 1 731 727 1 741 598 1 598 595 1 740 741 1 602 743 1 743 742 1 + 744 743 1 603 744 1 740 747 1 747 745 1 745 741 1 742 748 1 748 747 1 743 749 1 749 748 1 + 746 749 1 744 746 1 747 750 1 750 751 1 751 745 1 748 752 1 752 750 1 749 753 1 753 752 1 + 746 754 1 754 753 1 750 755 1 755 759 1 759 751 1 752 756 1 756 755 1 753 757 1 757 756 1 + 754 758 1 758 757 1 755 931 1 931 760 1 760 759 1 932 931 1 756 932 1; + setAttr ".ed[1494:1659]" 757 933 1 933 932 1 761 933 1 758 761 1 762 768 1 768 770 1 + 770 763 1 763 762 1 763 764 1 764 765 1 765 762 1 764 766 1 766 767 1 767 765 1 766 773 1 + 773 774 1 774 767 1 768 776 1 776 777 1 777 769 1 769 768 1 769 771 1 771 770 1 772 775 1 + 775 774 1 773 772 1 775 777 1 776 774 1 931 775 1 772 760 1 932 777 1 933 769 1 761 771 1 + 765 776 1 781 778 1 778 994 1 994 993 1 993 781 1 993 1000 1 1000 779 1 779 781 1 + 780 779 1 1000 999 1 999 780 1 782 797 1 797 796 1 796 783 1 783 782 1 786 782 1 + 783 785 1 785 786 1 786 784 1 784 972 1 972 788 1 788 786 1 787 792 1 792 797 1 797 788 1 + 788 787 1 791 790 1 790 789 1 789 787 1 787 791 1 789 793 1 793 792 1 793 795 1 795 794 1 + 794 792 1 794 796 1 972 791 1 972 921 1 921 914 1 914 791 1 784 924 1 924 921 1 781 789 1 + 790 778 1 779 793 1 780 795 1 785 924 1 930 929 1 929 988 1 989 930 1 999 998 1 998 913 1 + 913 780 1 1003 1007 1 1007 969 1 969 968 1 968 1003 1 798 799 1 799 969 1 969 970 1 + 970 798 1 1004 1008 1 1008 971 1 971 970 1 970 1004 1 1006 1005 1 1005 967 1 967 966 1 + 966 1006 1 800 967 1 967 968 1 968 801 1 801 800 1 800 589 1 589 966 1 826 824 1 + 824 799 1 798 826 1 806 819 1 819 820 1 820 805 1 805 806 1 806 813 1 813 944 1 944 819 1 + 803 808 1 808 805 1 805 803 1 808 807 1 807 806 1 806 808 1 937 810 1 810 809 1 809 936 1 + 813 812 1 812 811 1 811 816 1 816 813 1 806 809 1 810 813 1 934 808 1 803 935 1 802 823 1 + 823 940 1 940 804 1 804 802 1 810 814 1 814 813 1 815 816 1 811 815 1 817 816 1 815 818 1 + 818 817 1 817 822 1 822 821 1 821 816 1 800 983 1 983 984 1 982 981 1 981 944 1 944 821 1 + 821 982 1 983 822 1 822 606 1 983 982 1 597 812 1 812 830 1 830 621 1 618 829 1 829 810 1 + 604 817 1 818 603 1 811 891 1; + setAttr ".ed[1660:1825]" 891 890 1 890 815 1 890 892 1 892 818 1 978 1065 1 1065 820 1 + 820 979 1 979 978 1 827 825 1 825 824 1 826 827 1 978 951 1 1066 1065 1 613 826 1 + 798 587 1 613 615 1 615 827 1 1094 1093 1 1093 825 1 827 1094 1 1095 1094 1 598 811 1 + 597 598 1 841 828 1 828 829 1 829 831 1 831 841 1 841 832 1 832 830 1 830 828 1 833 841 1 + 831 834 1 834 833 1 833 835 1 835 832 1 834 837 1 837 836 1 836 833 1 836 838 1 838 835 1 + 848 836 1 837 839 1 839 848 1 848 840 1 840 838 1 848 843 1 843 842 1 842 840 1 844 843 1 + 839 844 1 846 958 1 958 959 1 959 845 1 845 846 1 959 960 1 960 847 1 847 845 1 622 831 1 + 832 623 1 627 834 1 835 630 1 632 837 1 838 635 1 636 839 1 840 637 1 642 960 1 959 643 1 + 958 645 1 654 842 1 842 847 1 847 656 1 651 844 1 846 655 1 843 845 1 844 846 1 803 851 1 + 851 662 1 941 940 1 823 614 1 940 850 1 850 849 1 849 804 1 850 852 1 852 862 1 862 849 1 + 862 853 1 853 851 1 851 849 1 852 855 1 855 854 1 854 862 1 854 856 1 856 853 1 855 858 1 + 858 857 1 857 854 1 857 859 1 859 856 1 858 860 1 860 869 1 869 857 1 869 861 1 861 859 1 + 864 863 1 863 947 1 947 948 1 948 864 1 948 949 1 949 865 1 865 864 1 860 867 1 867 866 1 + 866 869 1 866 868 1 868 861 1 867 863 1 864 866 1 865 868 1 659 850 1 663 852 1 853 664 1 + 669 855 1 856 672 1 674 858 1 859 677 1 678 860 1 861 679 1 947 686 1 687 948 1 684 949 1 + 863 690 1 695 867 1 868 698 1 865 691 1 700 871 1 871 808 1 809 872 1 872 703 1 926 870 1 + 870 871 1 871 873 1 873 926 1 926 874 1 874 872 1 872 870 1 889 875 1 875 877 1 877 876 1 + 876 889 1 889 879 1 879 878 1 878 875 1 880 926 1 873 881 1 881 880 1 880 882 1 882 874 1 + 881 877 1 875 880 1 878 882 1 883 888 1 888 887 1 887 884 1 884 883 1 885 887 1 888 886 1; + setAttr ".ed[1826:1991]" 886 885 1 887 889 1 876 884 1 885 879 1 883 955 1 955 956 1 + 956 888 1 956 957 1 957 886 1 704 873 1 874 705 1 711 876 1 877 710 1 715 878 1 879 714 1 + 717 881 1 882 720 1 726 956 1 955 725 1 728 957 1 737 883 1 884 736 1 885 739 1 738 886 1 + 903 890 1 891 893 1 893 903 1 903 894 1 894 892 1 895 903 1 893 896 1 896 895 1 895 897 1 + 897 894 1 896 899 1 899 898 1 898 895 1 898 900 1 900 897 1 910 898 1 899 901 1 901 910 1 + 910 902 1 902 900 1 904 907 1 907 906 1 906 905 1 905 904 1 907 909 1 909 908 1 908 906 1 + 908 963 1 963 962 1 962 906 1 962 961 1 961 905 1 907 910 1 901 909 1 904 902 1 892 744 1 + 745 893 1 891 741 1 894 746 1 751 896 1 897 754 1 759 899 1 900 758 1 760 901 1 902 761 1 + 771 904 1 905 770 1 773 908 1 909 772 1 766 963 1 961 763 1 977 997 1 997 996 1 996 911 1 + 911 977 1 977 913 1 998 997 1 912 911 1 996 995 1 995 912 1 911 916 1 916 976 1 976 977 1 + 976 918 1 918 913 1 914 917 1 917 916 1 916 915 1 915 914 1 917 975 1 975 976 1 975 919 1 + 919 918 1 917 920 1 920 974 1 974 975 1 921 920 1 974 922 1 922 919 1 920 923 1 923 973 1 + 973 974 1 924 923 1 973 925 1 925 922 1 918 795 1 796 922 1 925 783 1 973 785 1 915 790 1 + 919 794 1 915 912 1 912 778 1 995 994 1 969 945 1 945 801 1 592 591 1 939 592 1 930 991 1 + 992 930 1 801 982 1 608 612 1 612 590 1 590 611 1 611 599 1 593 594 1 594 611 1 945 981 1 + 596 595 1 981 980 1 980 819 1 945 799 1 799 980 1 1001 1006 1 966 965 1 1007 1004 1 + 1005 1003 1 978 825 1 1093 1092 1 1092 978 1 979 824 1 1089 1096 1 962 764 1 1008 1021 1 + 1021 1020 1 1020 971 1 587 971 1 979 980 1 987 928 1 928 946 1 929 928 1 989 990 1 + 990 991 1 1108 1107 1 1107 1014 1 1014 1002 1 1007 1011 1 1011 1009 1 1009 1004 1 + 1015 1022 1 1022 1021 1 1008 1015 1; + setAttr ".ed[1992:2157]" 1012 1006 1 1001 1013 1 1013 1012 1 1014 1013 1 1011 576 1 + 563 1009 1 1013 552 1 536 1012 1 1016 1012 1 1016 1005 1 1010 1003 1 1009 1015 1 + 1011 1010 1 1015 562 1 561 1022 1 553 1014 1 1107 551 1 554 1017 1 1017 1022 1 1017 1018 1 + 1018 1021 1 1018 992 1 1026 1114 1 1114 535 1 535 531 1 531 1026 1 115 1114 1 1026 1025 1 + 1025 115 1 1061 1060 1 1060 1149 1 1149 1148 1 1148 1061 1 1158 1049 1 1049 1159 1 + 1159 1158 1 1150 132 1 132 121 1 121 1064 1 1064 1150 1 1153 1152 1 1152 1034 1 1034 1031 1 + 1031 1153 1 1148 1046 1 1046 1042 1 1042 1061 1 1049 1050 1 1050 1160 1 1160 1159 1 + 1030 1154 1 1154 1153 1 1031 1030 1 1162 1045 1 1045 1048 1 1048 1163 1 1163 1162 1 + 1061 1032 1 1032 1064 1 1064 1060 1 118 1033 1 1033 1029 1 117 118 1 131 1149 1 1060 119 1 + 119 131 1 1113 1033 1 118 126 1 126 1113 1 1053 1045 1 1162 1161 1 1161 1053 1 1152 1151 1 + 1151 1032 1 1032 1034 1 1151 1150 1 1167 1166 1 1166 1044 1 1044 1035 1 1035 1167 1 + 1041 1171 1 1171 1170 1 1170 1041 1 1054 1039 1 1039 1173 1 1173 1172 1 1172 1054 1 + 584 1054 1 1054 1041 1 1041 560 1 1172 1171 1 1051 545 1 1041 1051 1 1178 1052 1 + 1052 1051 1 1051 1169 1 1169 1178 1 1040 1177 1 1177 1176 1 1176 1043 1 1043 1040 1 + 1038 1037 1 1037 585 1 538 1038 1 555 1043 1 1043 1038 1 547 1040 1 546 1039 1 1178 1177 1 + 1040 1052 1 1039 1037 1 1037 1174 1 1174 1173 1 1175 1174 1 1038 1175 1 1166 1165 1 + 1165 1047 1 1047 1044 1 121 119 1 1176 1175 1 1170 1169 1 133 1156 1 1156 1062 1 + 1062 122 1 122 133 1 1050 1053 1 1161 1160 1 248 1059 1 1059 1056 1 1056 136 1 136 248 1 + 96 120 1 120 1059 1 1056 1057 1 1057 137 1 1057 1058 1 1058 141 1 1063 1116 1 1116 1115 1 + 1115 249 1 249 1063 1 1042 1034 1 1155 1154 1 1030 1117 1 1117 1155 1 1164 1048 1 + 1048 1047 1 1165 1164 1 1058 1063 1 586 1052 1 812 814 1 814 828 1 809 807 1 807 870 1 + 803 804 1 1065 802 1 802 805 1 1066 823 1 1067 614 1 1092 1091 1 588 965 1 1147 1146 1 + 1146 516 1 1144 1072 1 1072 1134 1 1134 1145 1; + setAttr ".ed[2158:2323]" 1145 1144 1 1078 1077 1 1077 262 1 1080 1079 1 1077 1076 1 + 169 216 1 1070 524 1 524 525 1 525 1069 1 527 524 1 1069 531 1 226 216 1 240 243 1 + 167 238 1 392 1074 1 1075 392 1 410 1075 1 1076 410 1 1077 271 1 419 1076 1 1078 287 1 + 1079 290 1 1080 486 1 1081 453 1 1082 451 1 1083 449 1 1084 452 1 1085 445 1 1086 286 1 + 1087 319 1 1088 448 1 1074 432 1 1090 999 1 1000 1089 1 1091 998 1 1092 997 1 1093 996 1 + 1094 995 1 1095 994 1 1096 993 1 507 500 1 524 501 1 1075 393 1 451 450 1 449 447 1 + 452 446 1 242 1100 1 1100 145 1 1101 214 1 1100 1101 1 1101 1102 1 1102 215 1 239 242 1 + 1105 1100 1 1106 1101 1 1107 1017 1 1108 1018 1 1109 992 1 929 1109 1 964 928 1 965 946 1 + 594 607 1 594 610 1 592 609 1 592 596 1 1111 389 1 1142 1143 1 1143 521 1 521 510 1 + 1164 1179 1 1179 1163 1 1062 1113 1 126 122 1 1114 116 1 116 113 1 127 95 1 1116 123 1 + 123 94 1 1156 1155 1 1117 1062 1 1118 1113 1 1117 1118 1 1118 1119 1 1119 1033 1 + 1119 1120 1 1120 1029 1 1120 1121 1 1121 511 1 1024 1124 1 1124 1046 1 1046 1024 1 + 1097 1127 1 1138 1137 1 1128 508 1 1129 505 1 1130 518 1 1131 520 1 1132 522 1 1133 523 1 + 1146 1145 1 1134 516 1 1135 1134 1 515 1136 1 128 109 1 1144 1143 1 1143 527 1 501 1142 1 + 1140 507 1 1145 1133 1 1073 1144 1 1146 523 1 1147 513 1 130 103 1 510 517 1 525 531 1 + 1149 1025 1 1025 1023 1 1023 1148 1 131 115 1 1023 1024 1 120 132 1 1150 1059 1 1151 1056 1 + 1152 1057 1 1153 1058 1 1154 1063 1 1155 1116 1 1156 123 1 133 123 1 1126 506 1 506 1098 1 + 1127 1126 1 506 502 1 1028 1027 1 1027 530 1 530 529 1 529 1028 1 1125 528 1 511 512 1 + 512 1125 1 530 502 1 506 529 1 1125 529 1 1126 1125 1 530 531 1 1055 1157 1 1157 1168 1 + 1168 1036 1 1036 1055 1 1027 1026 1 1028 1024 1 1023 1027 1 1168 1167 1 1035 1036 1 + 1055 1049 1 1158 1157 1 1121 1122 1 1122 512 1 1028 512 1 1122 1123 1 1123 1028 1 + 1123 1124 1 1126 498 1 115 116 1 527 501 1 515 1134 1; + setAttr ".ed[2324:2489]" 1123 1157 1 1158 1124 1 1159 1046 1 1160 1042 1 1161 1034 1 + 1162 1031 1 1163 1030 1 1164 1118 1 1117 1179 1 1165 1119 1 1166 1120 1 1167 1121 1 + 1168 1122 1 1055 1169 1 1170 1049 1 1171 1050 1 1172 1053 1 1173 1045 1 1174 1048 1 + 1175 1047 1 1176 1044 1 1177 1035 1 1178 1036 1 1181 1180 1 1180 2150 1 2150 2149 1 + 2149 1181 1 1184 1186 1 1186 1187 1 1187 1183 1 1183 1184 1 95 1185 1 1185 1294 1 + 1294 96 1 2149 1211 1 1211 1184 1 1184 1181 1 1211 1214 1 1214 1186 1 94 2161 1 2161 125 1 + 1295 1187 1 1186 1296 1 1296 1295 1 1214 1283 1 1283 1296 1 1183 1182 1 1182 1181 1 + 92 1188 1 1188 127 1 1286 1285 1 1285 92 1 93 1286 1 97 1284 1 1284 1286 1 1271 1281 1 + 1281 1298 1 1298 1297 1 1297 1271 1 1298 1301 1 1301 1300 1 1300 1297 1 1264 1263 1 + 1263 1273 1 1273 1274 1 1274 1264 1 1225 1273 1 1273 1301 1 1301 1302 1 1302 1225 1 + 1225 1234 1 1234 1274 1 1298 1299 1 1299 1302 1 1281 1233 1 1233 1299 1 1263 1300 1 + 1230 1227 1 1227 1226 1 1226 1229 1 1229 1230 1 1269 1268 1 1268 1278 1 1278 1279 1 + 1279 1269 1 1230 1279 1 1278 1227 1 1230 1232 1 1232 1280 1 1280 1279 1 1229 1233 1 + 1233 1232 1 1234 1235 1 1235 1275 1 1275 1274 1 1281 1280 1 1234 1257 1 1257 1256 1 + 1256 1235 1 1266 1265 1 1265 1275 1 1275 1276 1 1276 1266 1 1265 1264 1 1239 1238 1 + 1238 1252 1 1252 1248 1 1248 1239 1 1256 1276 1 1228 1241 1 1241 1242 1 1242 1228 1 + 1253 1228 1 1242 1236 1 1236 1253 1 1252 1253 1 1236 1248 1 1227 1254 1 1254 1255 1 + 1255 1226 1 1278 1277 1 1277 1254 1 1268 1267 1 1267 1277 1 1267 1266 1 1276 1277 1 + 1256 1254 1 1257 1255 1 1284 1283 1 1214 1243 1 1243 1284 1 98 1283 1 1211 1212 1 + 1212 1243 1 1223 1212 1 2149 1223 1 125 1296 1 1261 1260 1 1260 1224 1 1224 1245 1 + 1245 1261 1 1259 1231 1 1231 1258 1 1258 1200 1 1200 1259 1 1200 1203 1 1203 1198 1 + 1198 1259 1 1258 1201 1 1201 1209 1 1209 1200 1 1207 1206 1 1206 1197 1 1197 1293 1 + 1293 1207 1 1260 1191 1 1191 1221 1 1221 1224 1 1191 1194 1 1194 1199 1 1199 1221 1 + 2148 1223 1 2150 2148 1 1210 1272 1 1272 1219 1 1219 1204 1; + setAttr ".ed[2490:2655]" 1204 1210 1 1217 2114 1 2114 1219 1 1219 1239 1 1239 1217 1 + 2114 1208 1 1208 1204 1 1245 1246 1 1246 1222 1 1222 1261 1 1206 1221 1 1199 1197 1 + 2151 1189 1 1189 1285 1 1285 2151 1 1218 1220 1 1220 1208 1 2114 1218 1 1282 2152 1 + 2152 2150 1 1180 1282 1 1202 1208 1 1220 1190 1 1190 1202 1 1202 1205 1 1205 1204 1 + 1205 1209 1 1209 1210 1 1205 1203 1 1202 1207 1 1207 1203 1 1190 1206 1 1201 1215 1 + 1215 1210 1 1190 1224 1 1220 1245 1 1290 1291 1 1291 1197 1 1199 1290 1 1223 1222 1 + 1222 1195 1 1195 1212 1 1194 1287 1 1287 1290 1 1247 1195 1 1246 1247 1 1291 1292 1 + 1292 1293 1 1240 1231 1 1259 1240 1 1242 1240 1 1198 1242 1 1251 1244 1 1244 1195 1 + 1247 1251 1 1192 1244 1 1251 1193 1 1193 1192 1 1244 1243 1 1192 1213 1 1213 1243 1 + 1248 1249 1 1249 1217 1 1236 1237 1 1237 1249 1 1250 1251 1 1247 1216 1 1216 1250 1 + 1249 1250 1 1216 1217 1 1196 1250 1 1237 1196 1 1196 1193 1 1271 1270 1 1270 1280 1 + 1270 1269 1 1241 1240 1 1246 1218 1 1218 1216 1 1272 1238 1 1194 1288 1 1288 1289 1 + 1289 1287 1 1263 1215 1 1201 1300 1 1265 1238 1 1238 1262 1 1262 1264 1 1266 1252 1 + 1267 1253 1 1268 1228 1 1269 1241 1 1270 1240 1 1271 1231 1 1297 1258 1 1185 1282 1 + 1180 1294 1 1185 1188 1 1188 1189 1 1189 1282 1 2151 2152 1 1289 1213 1 1192 1287 1 + 1193 1290 1 1196 1291 1 1237 1292 1 1242 1292 1 1198 1293 1 1539 1540 1 1540 1525 1 + 1525 1510 1 1510 1539 1 1523 1519 1 1519 1515 1 1515 1522 1 1522 1523 1 1511 1512 1 + 1512 1309 1 1309 1525 1 1525 1511 1 1542 1541 1 1541 1524 1 1524 1310 1 1310 1542 1 + 1524 1520 1 1520 1519 1 1523 1524 1 1543 1311 1 1311 1512 1 1511 1543 1 1542 1543 1 + 1511 1541 1 1308 1519 1 1520 1500 1 1500 1308 1 1308 1474 1 1474 1515 1 1522 1427 1 + 1427 1501 1 1501 1523 1 1513 1518 1 1518 1309 1 1512 1513 1 1517 1518 1 1513 1514 1 + 1514 1517 1 1426 1312 1 1312 1514 1 1513 1426 1 1312 1428 1 1428 1521 1 1521 1514 1 + 1428 1427 1 1522 1521 1 1516 1517 1 1521 1516 1 1515 1516 1 2131 1531 1 1531 1530 1 + 1530 2130 1 2130 2131 1 2134 2120 1 2120 1510 1 1510 1307 1 1307 2134 1 2120 2121 1; + setAttr ".ed[2656:2821]" 2121 1539 1 2121 2122 1 2122 1500 1 1500 1539 1 1304 1303 1 + 1303 2124 1 2124 2125 1 2125 1304 1 2131 2132 1 2132 1306 1 1306 1531 1 2132 2133 1 + 2133 1479 1 1479 1306 1 1530 1529 1 1529 2129 1 2129 2130 1 1529 1528 1 1528 2128 1 + 2128 2129 1 1491 1498 1 1498 1359 1 1359 1350 1 1350 1491 1 1308 1303 1 1303 1475 1 + 1475 1474 1 1304 1476 1 1476 1475 1 1479 1425 1 1425 1480 1 1480 1306 1 1424 1307 1 + 1307 1309 1 1518 1424 1 1527 1526 1 1526 1477 1 1477 1305 1 1305 1527 1 1313 1424 1 + 1517 1313 1 1313 1314 1 1314 1425 1 1425 1424 1 1429 1313 1 1516 1429 1 1429 1430 1 + 1430 1314 1 1477 1476 1 1304 1305 1 1480 1483 1 1483 1531 1 1480 1481 1 1481 1432 1 + 1432 1483 1 1481 1482 1 1482 1431 1 1431 1432 1 1530 1485 1 1485 1484 1 1484 1529 1 + 1485 1483 1 1432 1484 1 1484 1433 1 1433 1528 1 1431 1433 1 1527 1528 1 1433 1526 1 + 1477 1431 1 1482 1476 1 1429 1474 1 1475 1430 1 1366 1367 1 1367 1437 1 1437 1434 1 + 1434 1366 1 1330 1434 1 1437 1368 1 1368 1330 1 1415 1407 1 1407 1459 1 1459 1462 1 + 1462 1415 1 1459 1409 1 1409 1416 1 1416 1462 1 1472 1473 1 1473 1369 1 1369 1372 1 + 1372 1472 1 1373 1320 1 1320 1473 1 1472 1373 1 1329 1478 1 1478 1490 1 1490 1329 1 + 1508 1488 1 1488 1487 1 1487 1507 1 1507 1508 1 1350 1352 1 1352 1504 1 1504 1505 1 + 1505 1350 1 1438 1478 1 1329 1354 1 1354 1438 1 1359 1355 1 1355 1352 1 1487 1332 1 + 1332 1491 1 1491 1486 1 1486 1487 1 1486 1506 1 1506 1507 1 1329 1352 1 1355 1354 1 + 1488 1365 1 1365 1332 1 1329 1503 1 1503 1504 1 1490 1489 1 1489 1509 1 1509 1502 1 + 1502 1490 1 1489 1488 1 1508 1509 1 1494 1489 1 1478 1494 1 1494 1365 1 1502 1503 1 + 1486 1350 1 1505 1506 1 1362 1331 1 1331 1508 1 1507 1362 1 1362 1360 1 1360 2156 1 + 2156 1331 1 1361 1351 1 1351 1353 1 1353 2158 1 2158 1361 1 1351 1505 1 1504 1353 1 + 1330 1353 1 1503 1330 1 1509 1366 1 1434 1502 1 1331 1366 1 2156 1367 1 1368 2158 1 + 1390 1400 1 1400 1393 1 1393 1394 1 1394 1390 1 1436 1362 1 1506 1436 1 1351 1436 1 + 1435 1360 1 1436 1435 1 1361 1435 1 2156 2157 1 2157 1437 1 2157 2158 1 1328 1325 1; + setAttr ".ed[2822:2987]" 1325 1439 1 1439 1438 1 1438 1328 1 1354 1445 1 1445 1438 1 + 1445 1328 1 1328 1364 1 1364 1356 1 1356 1325 1 1341 1356 1 1364 1349 1 1349 1341 1 + 1495 1341 1 1349 1498 1 1498 1495 1 1492 1349 1 1349 1399 1 1399 1453 1 1453 1492 1 + 1364 1388 1 1388 1399 1 1359 1492 1 1453 1401 1 1401 1359 1 1341 1342 1 1342 1381 1 + 1381 1356 1 1405 1388 1 1328 1405 1 1405 1404 1 1404 1389 1 1389 1388 1 1389 1398 1 + 1398 1399 1 1401 1391 1 1391 1355 1 1391 1403 1 1403 1354 1 1398 1452 1 1452 1453 1 + 1452 1400 1 1400 1401 1 1403 1455 1 1455 1445 1 1455 1405 1 1402 1390 1 1394 1395 1 + 1395 1402 1 1404 1396 1 1396 1397 1 1397 1389 1 1397 1392 1 1392 1398 1 1390 1391 1 + 1402 1403 1 1392 1449 1 1449 1452 1 1449 1393 1 1402 1454 1 1454 1455 1 1454 1404 1 + 1397 1450 1 1450 1449 1 1450 1394 1 1450 1451 1 1451 1395 1 1396 1451 1 1451 1454 1 + 1322 1439 1 1439 1440 1 1440 1322 1 1325 1440 1 1456 1439 1 1322 1321 1 1321 1456 1 + 1322 1363 1 1363 1382 1 1382 1321 1 1344 1347 1 1347 1382 1 1363 1344 1 1347 1410 1 + 1410 1420 1 1420 1382 1 1341 1493 1 1493 1443 1 1443 1342 1 1493 1344 1 1344 1345 1 + 1345 1443 1 1381 1326 1 1326 1325 1 1363 1387 1 1387 1345 1 1441 1323 1 1323 1322 1 + 1440 1441 1 1324 1323 1 1441 1442 1 1442 1324 1 1326 1441 1 1326 1327 1 1327 1442 1 + 1343 1342 1 1443 1444 1 1444 1343 1 1345 1346 1 1346 1444 1 1381 1385 1 1385 1327 1 + 1343 1385 1 1387 1386 1 1386 1346 1 1324 1386 1 1387 1323 1 1421 1409 1 1409 1408 1 + 1408 1420 1 1420 1421 1 1411 1421 1 1410 1411 1 1376 1324 1 1442 1446 1 1446 1376 1 + 1444 1448 1 1448 1379 1 1379 1343 1 1346 1380 1 1380 1448 1 1375 1380 1 1386 1375 1 + 1376 1375 1 1377 1327 1 1385 1378 1 1378 1377 1 1379 1378 1 1377 1446 1 1378 1447 1 + 1447 1446 1 1447 1375 1 1447 1448 1 1465 1456 1 1456 1315 1 1315 1316 1 1316 1465 1 + 1384 1383 1 1383 1339 1 1339 1357 1 1357 1384 1 1499 1339 1 1383 1497 1 1497 1499 1 + 2127 2128 1 1527 2127 1 1456 1457 1 1457 1315 1 1321 1457 1 1315 1384 1 1357 1316 1 + 1458 1406 1 1406 1315 1 1457 1458 1 1321 1408 1 1408 1458 1 1406 1423 1 1423 1384 1; + setAttr ".ed[2988:3153]" 1412 1383 1 1423 1412 1 1347 1496 1 1496 1460 1 1460 1410 1 + 1412 1460 1 1496 1383 1 1407 1406 1 1458 1459 1 1460 1461 1 1461 1411 1 1412 1413 1 + 1413 1461 1 1414 1419 1 1419 1413 1 1413 1422 1 1422 1414 1 1415 1414 1 1422 1407 1 + 1418 1417 1 1417 1421 1 1411 1418 1 1417 1416 1 1464 1418 1 1461 1464 1 1419 1464 1 + 1423 1422 1 1417 1463 1 1463 1462 1 1463 1414 1 1463 1464 1 1336 1333 1 1333 1334 1 + 1334 1337 1 1337 1336 1 1499 1532 1 1532 1468 1 1468 1339 1 1318 1317 1 1317 1465 1 + 1465 1466 1 1466 1318 1 1333 1317 1 1318 1334 1 1466 1316 1 1316 1538 1 1538 1467 1 + 1467 1466 1 1319 1318 1 1467 1319 1 1319 1533 1 1533 1334 1 1533 1534 1 1534 1337 1 + 1335 1338 1 1338 1534 1 1533 1335 1 1468 1535 1 1535 1536 1 1536 1339 1 1469 1340 1 + 1340 1536 1 1535 1469 1 1357 1537 1 1537 1538 1 1536 1537 1 1340 1358 1 1358 1537 1 + 1468 1337 1 1534 1535 1 1338 1469 1 1338 1348 1 1348 1470 1 1470 1469 1 1358 1369 1 + 1369 1538 1 1473 1467 1 1340 1370 1 1370 1371 1 1371 1358 1 1371 1372 1 1470 1370 1 + 1335 1374 1 1374 1348 1 1335 1320 1 1373 1374 1 1320 1319 1 1374 1471 1 1471 1470 1 + 1471 1371 1 1471 1472 1 1310 1225 1 1302 1542 1 1233 1311 1 1543 1299 1 1229 1426 1 + 1426 1311 1 1310 1501 1 1501 1234 1 1226 1312 1 1427 1257 1 1255 1428 1 1479 1307 1 + 1314 1481 1 1430 1482 1 1497 1347 1 1344 1495 1 1495 1497 1 2133 2134 1 1520 1540 1 + 1541 1540 1 1305 2126 1 2126 2127 1 1532 1336 1 101 1554 1 1554 2183 1 2183 129 1 + 2174 1555 1 1555 2185 1 2185 2184 1 2184 2174 1 2185 2144 1 2144 2173 1 2173 2184 1 + 2183 2143 1 2143 124 1 2186 2187 1 2187 1545 1 1545 1549 1 1549 2186 1 1546 1556 1 + 1556 2188 1 2188 2187 1 2187 1546 1 1545 1547 1 1547 2145 1 2145 1549 1 2143 1544 1 + 1544 99 1 2185 2186 1 1549 2144 1 1548 1549 1 2145 1571 1 1571 1548 1 1553 1555 1 + 1555 1550 1 1550 1556 1 1556 1553 1 2175 1550 1 2174 2175 1 100 1551 1 1551 1554 1 + 1574 1557 1 1557 102 1 112 1574 1 1557 2075 1 2075 117 1 104 1562 1 1562 1572 1 1572 111 1 + 1568 1559 1 1559 1569 1 1569 1568 1 2118 2181 1 2181 2117 1 2117 1573 1; + setAttr ".ed[3154:3319]" 1573 2118 1 2181 2182 1 2182 1578 1 1578 2117 1 1566 105 1 + 114 1568 1 1568 1566 1 1560 1565 1 1565 2177 1 2177 2178 1 2178 1560 1 2193 130 1 + 1572 2193 1 1565 1563 1 1563 2176 1 2176 2177 1 1566 1564 1 1564 106 1 1563 1550 1 + 2175 2176 1 1560 2119 1 2119 1567 1 1567 1565 1 2115 2116 1 2116 1579 1 1579 1580 1 + 1580 2115 1 108 1580 1 1579 110 1 109 1561 1 1561 1562 1 1544 1574 1 113 1581 1 1581 1580 1 + 2178 2179 1 2179 2119 1 2116 2117 1 1578 1579 1 103 1559 1 1564 1551 1 2182 128 1 + 107 1578 1 1610 1587 1 1587 2062 1 2062 2056 1 2056 1610 1 1583 1586 1 1586 1585 1 + 1585 1590 1 1590 1583 1 1584 1583 1 1590 1631 1 1631 1584 1 1586 1588 1 1588 1589 1 + 1589 1585 1 1588 1582 1 1582 1587 1 1587 1589 1 1585 1612 1 1612 1602 1 1602 1590 1 + 1621 1589 1 1610 1621 1 1621 1612 1 1618 1600 1 1600 1597 1 1597 1617 1 1617 1618 1 + 1625 1627 1 1627 1591 1 1591 1606 1 1606 1625 1 1606 1630 1 1630 1603 1 1603 1625 1 + 1626 1625 1 1603 1624 1 1624 1626 1 1629 1620 1 1620 1609 1 1609 1608 1 1608 1629 1 + 1619 1629 1 1608 1607 1 1607 1619 1 1583 1611 1 1611 1594 1 1594 1586 1 1627 1614 1 + 1614 1632 1 1632 1591 1 1614 1613 1 1613 1593 1 1593 1632 1 1613 1605 1 1605 1604 1 + 1604 1613 1 1614 1596 1 1596 1595 1 1595 1613 1 1588 1615 1 1615 1598 1 1598 1582 1 + 1607 1600 1 1618 1619 1 1615 1616 1 1616 1599 1 1599 1598 1 1604 1594 1 1611 1613 1 + 1601 1593 1 1611 1601 1 1584 1601 1 1597 1599 1 1616 1617 1 1630 1592 1 1592 1602 1 + 1602 1603 1 1626 1628 1 1628 1627 1 1610 1622 1 1622 1623 1 1623 1621 1 1620 1623 1 + 1622 1609 1 1612 1624 1 1594 1615 1 1604 1616 1 1605 1617 1 1595 1618 1 1605 1595 1 + 1596 1619 1 1592 1631 1 1628 1596 1 1629 1628 1 1626 1620 1 1623 1624 1 2047 2048 1 + 2048 2010 1 2010 2011 1 2011 2047 1 2154 2155 1 2155 2010 1 2048 2154 1 2033 1637 1 + 1637 1973 1 1973 2032 1 2032 2033 1 2035 1636 1 1636 1639 1 1639 2034 1 2034 2035 1 + 1658 2036 1 2036 1999 1 1999 1658 1 1639 1637 1 2033 2034 1 1641 1647 1 1647 1985 1 + 1985 1641 1 2113 1658 1 1999 1998 1 1998 2113 1 1983 1646 1 1646 1662 1; + setAttr ".ed[3320:3485]" 1662 1982 1 1982 1983 1 1655 1646 1 1646 1663 1 1663 1665 1 + 1665 1655 1 1643 1642 1 1642 1666 1 1666 1667 1 1667 1643 1 1641 1786 1 1786 1788 1 + 1788 1647 1 1647 1648 1 1648 1984 1 1984 1985 1 1648 1649 1 1649 1650 1 1650 1984 1 + 1984 1651 1 1651 1973 1 1973 1985 1 1650 1652 1 1652 1651 1 1635 1634 1 1634 2031 1 + 2031 2030 1 2030 1635 1 1634 1992 1 1992 2032 1 2032 2031 1 1651 2031 1 1652 2030 1 + 1633 1659 1 1659 2000 1 2000 2065 1 2065 1633 1 1646 1638 1 1638 1640 1 1640 1662 1 + 1642 1655 1 1665 1666 1 2000 1996 1 1996 1999 1 2036 2000 1 2066 2065 1 2065 2037 1 + 2037 2038 1 2038 2066 1 1996 1661 1 1661 2141 1 2141 2142 1 2142 1996 1 1999 2135 1 + 2135 2136 1 2136 1998 1 1998 1997 1 1997 2112 1 2112 2113 1 2136 2137 1 2137 1997 1 + 1664 1663 1 1983 1664 1 1664 1668 1 1668 1670 1 1670 1663 1 1670 1671 1 1671 1665 1 + 1671 1703 1 1703 1666 1 1669 1667 1 1703 1669 1 1668 1673 1 1673 1672 1 1672 1670 1 + 1671 1674 1 1674 1675 1 1675 1703 1 1675 1676 1 1676 1669 1 1673 1678 1 1678 1677 1 + 1677 1672 1 1677 1679 1 1679 1674 1 1674 1672 1 1679 1680 1 1680 1675 1 1680 1681 1 + 1681 1676 1 1678 1682 1 1682 1684 1 1684 1677 1 1684 1685 1 1685 1679 1 1685 1686 1 + 1686 1680 1 1683 1681 1 1686 1683 1 1687 1688 1 1688 1702 1 1702 1693 1 1693 1687 1 + 1687 1690 1 1690 1689 1 1689 1688 1 1690 1692 1 1692 1691 1 1691 1689 1 1692 1694 1 + 1694 1701 1 1701 1691 1 1682 1697 1 1697 1696 1 1696 1684 1 1696 1694 1 1694 1695 1 + 1695 1698 1 1698 1696 1 1699 1700 1 1700 1683 1 1686 1699 1 1685 1698 1 1698 1699 1 + 1693 1695 1 1695 1690 1 1693 1699 1 1697 1701 1 1702 1700 1 1645 1981 1 1981 1980 1 + 1980 1653 1 1653 1645 1 1988 1654 1 1654 1660 1 1660 1987 1 1987 1988 1 1989 1657 1 + 1657 1654 1 1988 1989 1 1645 1989 1 1989 1706 1 1706 1707 1 1707 1645 1 1705 1704 1 + 1704 1988 1 1987 1705 1 1704 1706 1 1707 1708 1 1708 1981 1 1705 1709 1 1709 1711 1 + 1711 1704 1 1712 1706 1 1711 1712 1 1712 1713 1 1713 1707 1 1710 1708 1 1713 1710 1 + 1709 1715 1 1715 1714 1 1714 1711 1 1716 1712 1 1714 1716 1 1716 1717 1 1717 1713 1; + setAttr ".ed[3486:3651]" 1717 1718 1 1718 1710 1 1715 1720 1 1720 1719 1 1719 1714 1 + 1721 1716 1 1719 1721 1 1721 1722 1 1722 1717 1 1722 1723 1 1723 1718 1 1720 1724 1 + 1724 1726 1 1726 1719 1 1727 1721 1 1726 1727 1 1727 1728 1 1728 1722 1 1725 1723 1 + 1728 1725 1 1729 1730 1 1730 1737 1 1737 1738 1 1738 1729 1 1732 1731 1 1731 1735 1 + 1735 1736 1 1736 1732 1 1733 1734 1 1734 1731 1 1732 1733 1 1733 1730 1 1729 1734 1 + 1738 1739 1 1739 1734 1 1724 1741 1 1741 1740 1 1740 1726 1 1742 1727 1 1740 1742 1 + 1742 1743 1 1743 1728 1 1743 1744 1 1744 1725 1 1735 1740 1 1741 1736 1 1739 1742 1 + 1735 1739 1 1738 1743 1 1737 1744 1 1662 1656 1 1656 1747 1 1747 1748 1 1748 1662 1 + 1656 1653 1 1653 1745 1 1745 1747 1 1980 1746 1 1746 1745 1 1748 1749 1 1749 1982 1 + 1746 1750 1 1750 1752 1 1752 1745 1 1752 1753 1 1753 1747 1 1753 1754 1 1754 1748 1 + 1751 1749 1 1754 1751 1 1755 1756 1 1756 1757 1 1757 1767 1 1767 1755 1 1758 1755 1 + 1767 1768 1 1768 1758 1 1759 1758 1 1768 1769 1 1769 1759 1 1760 1761 1 1761 1759 1 + 1769 1760 1 1750 1763 1 1763 1762 1 1762 1752 1 1762 1764 1 1764 1753 1 1764 1765 1 + 1765 1754 1 1765 1766 1 1766 1751 1 1763 1756 1 1755 1762 1 1758 1764 1 1759 1765 1 + 1761 1766 1 1771 1770 1 1770 1778 1 1778 1783 1 1783 1771 1 1771 1772 1 1772 1773 1 + 1773 1770 1 1772 1774 1 1774 1775 1 1775 1773 1 1774 1784 1 1784 1776 1 1776 1775 1 + 1779 1778 1 1778 1777 1 1777 1780 1 1780 1779 1 1777 1776 1 1776 1781 1 1781 1780 1 + 1782 1783 1 1779 1782 1 1784 1785 1 1785 1781 1 1757 1782 1 1779 1767 1 1780 1768 1 + 1781 1769 1 1785 1760 1 1773 1777 1 1787 1786 1 1641 1644 1 1644 1787 1 1788 1789 1 + 1789 1648 1 1790 1649 1 1789 1790 1 1787 1791 1 1791 1793 1 1793 1786 1 1793 1794 1 + 1794 1788 1 1794 1795 1 1795 1789 1 1792 1790 1 1795 1792 1 1791 1797 1 1797 1796 1 + 1796 1793 1 1796 1798 1 1798 1794 1 1798 1799 1 1799 1795 1 1799 1800 1 1800 1792 1 + 1797 1805 1 1805 1801 1 1801 1796 1 1801 1802 1 1802 1798 1 1802 1803 1 1803 1799 1 + 1803 1804 1 1804 1800 1 1805 1806 1 1806 1977 1 1977 1801 1 1978 1802 1 1977 1978 1; + setAttr ".ed[3652:3817]" 1978 1979 1 1979 1803 1 1807 1804 1 1979 1807 1 1808 1809 1 + 1809 1816 1 1816 1814 1 1814 1808 1 1808 1811 1 1811 1810 1 1810 1809 1 1811 1813 1 + 1813 1812 1 1812 1810 1 1813 1820 1 1820 1819 1 1819 1812 1 1814 1815 1 1815 1823 1 + 1823 1822 1 1822 1814 1 1816 1817 1 1817 1815 1 1818 1819 1 1820 1821 1 1821 1818 1 + 1820 1822 1 1823 1821 1 1806 1818 1 1821 1977 1 1823 1978 1 1815 1979 1 1817 1807 1 + 1822 1811 1 1827 2039 1 2039 2040 1 2040 1824 1 1824 1827 1 1827 1825 1 1825 2046 1 + 2046 2039 1 1826 2045 1 2045 2046 1 1825 1826 1 1828 1829 1 1829 1842 1 1842 1843 1 + 1843 1828 1 1832 1831 1 1831 1829 1 1828 1832 1 1832 1834 1 1834 2018 1 2018 1830 1 + 1830 1832 1 1833 1834 1 1834 1843 1 1843 1838 1 1838 1833 1 1837 1833 1 1833 1835 1 + 1835 1836 1 1836 1837 1 1838 1839 1 1839 1835 1 1838 1840 1 1840 1841 1 1841 1839 1 + 1842 1840 1 1837 2018 1 1837 1960 1 1960 1967 1 1967 2018 1 1967 1970 1 1970 1830 1 + 1824 1836 1 1835 1827 1 1839 1825 1 1841 1826 1 1970 1831 1 1976 2035 1 2034 1975 1 + 1975 1976 1 1826 1959 1 1959 2044 1 2044 2045 1 2049 2014 1 2014 2015 1 2015 2053 1 + 2053 2049 1 1844 2016 1 2016 2015 1 2015 1845 1 1845 1844 1 2050 2016 1 2016 2017 1 + 2017 2054 1 2054 2050 1 2052 2012 1 2012 2013 1 2013 2051 1 2051 2052 1 1846 1847 1 + 1847 2014 1 2014 2013 1 2013 1846 1 2012 1635 1 1635 1846 1 1872 1844 1 1845 1870 1 + 1870 1872 1 1852 1851 1 1851 1866 1 1866 1865 1 1865 1852 1 1865 1990 1 1990 1859 1 + 1859 1852 1 1849 1851 1 1851 1854 1 1854 1849 1 1854 1852 1 1852 1853 1 1853 1854 1 + 1982 1855 1 1855 1856 1 1856 1983 1 1859 1862 1 1862 1857 1 1857 1858 1 1858 1859 1 + 1859 1856 1 1855 1852 1 1981 1849 1 1854 1980 1 1848 1850 1 1850 1986 1 1986 1869 1 + 1869 1848 1 1859 1860 1 1860 1856 1 1861 1857 1 1862 1861 1 1863 1864 1 1864 1861 1 + 1862 1863 1 1862 1867 1 1867 1868 1 1868 1863 1 2030 2029 1 2029 1846 1 2028 1867 1 + 1867 1990 1 1990 2027 1 2027 2028 1 1652 1868 1 1868 2029 1 2028 2029 1 1667 1876 1 + 1876 1858 1 1858 1643 1 1856 1875 1 1875 1664 1 1649 1864 1 1863 1650 1 1861 1936 1; + setAttr ".ed[3818:3983]" 1936 1937 1 1937 1857 1 1864 1938 1 1938 1936 1 2024 2025 1 + 2025 1866 1 1866 2111 1 2111 2024 1 1873 1872 1 1870 1871 1 1871 1873 1 2111 2112 1 + 1997 2024 1 1633 1844 1 1872 1659 1 1873 1661 1 1661 1659 1 2140 1873 1 1871 2139 1 + 2139 2140 1 2140 2141 1 1644 1643 1 1857 1644 1 1887 1877 1 1877 1875 1 1875 1874 1 + 1874 1887 1 1874 1876 1 1876 1878 1 1878 1887 1 1879 1880 1 1880 1877 1 1887 1879 1 + 1878 1881 1 1881 1879 1 1879 1882 1 1882 1883 1 1883 1880 1 1881 1884 1 1884 1882 1 + 1894 1885 1 1885 1883 1 1882 1894 1 1884 1886 1 1886 1894 1 1886 1888 1 1888 1889 1 + 1889 1894 1 1890 1885 1 1889 1890 1 1892 1891 1 1891 2005 1 2005 2004 1 2004 1892 1 + 1891 1893 1 1893 2006 1 2006 2005 1 1877 1668 1 1669 1878 1 1880 1673 1 1676 1881 1 + 1883 1678 1 1681 1884 1 1885 1682 1 1683 1886 1 1689 2005 1 2006 1688 1 1691 2004 1 + 1702 1893 1 1893 1888 1 1888 1700 1 1890 1697 1 1701 1892 1 1891 1889 1 1892 1890 1 + 1708 1897 1 1897 1849 1 1660 1869 1 1986 1987 1 1850 1895 1 1895 1896 1 1896 1986 1 + 1895 1908 1 1908 1898 1 1898 1896 1 1895 1897 1 1897 1899 1 1899 1908 1 1908 1900 1 + 1900 1901 1 1901 1898 1 1899 1902 1 1902 1900 1 1900 1903 1 1903 1904 1 1904 1901 1 + 1902 1905 1 1905 1903 1 1903 1915 1 1915 1906 1 1906 1904 1 1905 1907 1 1907 1915 1 + 1910 1994 1 1994 1993 1 1993 1909 1 1909 1910 1 1910 1911 1 1911 1995 1 1995 1994 1 + 1915 1912 1 1912 1913 1 1913 1906 1 1907 1914 1 1914 1912 1 1912 1910 1 1909 1913 1 + 1914 1911 1 1896 1705 1 1898 1709 1 1710 1899 1 1901 1715 1 1718 1902 1 1904 1720 1 + 1723 1905 1 1906 1724 1 1725 1907 1 1994 1733 1 1732 1993 1 1995 1730 1 1736 1909 1 + 1913 1741 1 1744 1914 1 1737 1911 1 1854 1917 1 1917 1746 1 1749 1918 1 1918 1855 1 + 1972 1919 1 1919 1917 1 1917 1916 1 1916 1972 1 1916 1918 1 1918 1920 1 1920 1972 1 + 1935 1922 1 1922 1923 1 1923 1921 1 1921 1935 1 1921 1924 1 1924 1925 1 1925 1935 1 + 1926 1927 1 1927 1919 1 1972 1926 1 1920 1928 1 1928 1926 1 1926 1921 1 1923 1927 1 + 1928 1924 1 1929 1930 1 1930 1933 1 1933 1934 1 1934 1929 1 1931 1932 1 1932 1934 1; + setAttr ".ed[3984:4149]" 1933 1931 1 1930 1922 1 1935 1933 1 1925 1931 1 1934 2002 1 + 2002 2001 1 2001 1929 1 1932 2003 1 2003 2002 1 1919 1750 1 1751 1920 1 1756 1923 1 + 1922 1757 1 1760 1925 1 1924 1761 1 1927 1763 1 1766 1928 1 1771 2001 1 2002 1772 1 + 2003 1774 1 1782 1930 1 1929 1783 1 1785 1931 1 1932 1784 1 1949 1939 1 1939 1937 1 + 1936 1949 1 1938 1940 1 1940 1949 1 1941 1942 1 1942 1939 1 1949 1941 1 1940 1943 1 + 1943 1941 1 1941 1944 1 1944 1945 1 1945 1942 1 1943 1946 1 1946 1944 1 1956 1947 1 + 1947 1945 1 1944 1956 1 1946 1948 1 1948 1956 1 1950 1951 1 1951 1952 1 1952 1953 1 + 1953 1950 1 1952 1954 1 1954 1955 1 1955 1953 1 1952 2008 1 2008 2009 1 2009 1954 1 + 1951 2007 1 2007 2008 1 1955 1947 1 1956 1953 1 1948 1950 1 1790 1938 1 1787 1937 1 + 1939 1791 1 1792 1940 1 1942 1797 1 1800 1943 1 1945 1805 1 1804 1946 1 1947 1806 1 + 1807 1948 1 1816 1951 1 1950 1817 1 1818 1955 1 1954 1819 1 2009 1812 1 1809 2007 1 + 2023 1957 1 1957 2042 1 2042 2043 1 2043 2023 1 2043 2044 1 1959 2023 1 1958 2041 1 + 2041 2042 1 1957 1958 1 2023 2022 1 2022 1962 1 1962 1957 1 1959 1964 1 1964 2022 1 + 1960 1961 1 1961 1962 1 1962 1963 1 1963 1960 1 2022 2021 1 2021 1963 1 1964 1965 1 + 1965 2021 1 2021 2020 1 2020 1966 1 1966 1963 1 1966 1967 1 1965 1968 1 1968 2020 1 + 2020 2019 1 2019 1969 1 1969 1966 1 1969 1970 1 1968 1971 1 1971 2019 1 1841 1964 1 + 1829 1971 1 1968 1842 1 1831 2019 1 1836 1961 1 1840 1965 1 1824 1958 1 1958 1961 1 + 2040 2041 1 1847 1991 1 1991 2015 1 1638 1985 1 1637 1638 1 1976 2038 1 2037 1976 1 + 2028 1847 1 1657 1636 1 1636 1658 1 1658 1654 1 1645 1657 1 1657 1640 1 1640 1639 1 + 2027 1991 1 1641 1642 1 1865 2026 1 2026 2027 1 2026 1845 1 1845 1991 1 2011 2012 1 + 2052 2047 1 2050 2053 1 2049 2051 1 2024 2138 1 2138 2139 1 1871 2024 1 1870 2025 1 + 2142 2135 1 1810 2008 1 2017 2066 1 2066 2067 1 2067 2054 1 2017 1633 1 2026 2025 1 + 1992 1974 1 1974 2033 1 1974 1975 1 2037 2036 1 2036 2035 1 2048 2060 1 2060 2153 1 + 2153 2154 1 2050 2055 1 2055 2057 1 2057 2053 1 2061 2054 1 2067 2068 1 2068 2061 1; + setAttr ".ed[4150:4315]" 2058 2059 1 2059 2047 1 2052 2058 1 2059 2060 1 2055 1609 1 + 1622 2057 1 2058 1582 1 1598 2059 1 2058 2062 1 2051 2062 1 2049 2056 1 2061 2055 1 + 2056 2057 1 2068 1607 1 1608 2061 1 1597 2153 1 2060 1599 1 2068 2063 1 2063 1600 1 + 2067 2064 1 2064 2063 1 2038 2064 1 2072 1577 1 1577 1581 1 1581 2160 1 2160 2072 1 + 115 2071 1 2071 2072 1 2160 115 1 2107 2194 1 2194 2195 1 2195 2106 1 2106 2107 1 + 2204 2205 1 2205 2095 1 2095 2204 1 2196 2110 1 2110 121 1 132 2196 1 2199 2077 1 + 2077 2080 1 2080 2198 1 2198 2199 1 2107 2088 1 2088 2092 1 2092 2194 1 2205 2206 1 + 2206 2096 1 2096 2095 1 2076 2077 1 2199 2200 1 2200 2076 1 2208 2209 1 2209 2094 1 + 2094 2091 1 2091 2208 1 2106 2110 1 2110 2078 1 2078 2107 1 2075 2079 1 2079 118 1 + 119 2106 1 2195 131 1 2159 126 1 2079 2159 1 2099 2207 1 2207 2208 1 2091 2099 1 + 2080 2078 1 2078 2197 1 2197 2198 1 2196 2197 1 2213 2081 1 2081 2090 1 2090 2212 1 + 2212 2213 1 2087 2216 1 2216 2217 1 2217 2087 1 2100 2218 1 2218 2219 1 2219 2085 1 + 2085 2100 1 1606 2087 1 2087 2100 1 2100 1630 1 2217 2218 1 2097 2087 1 1591 2097 1 + 2224 2215 1 2215 2097 1 2097 2098 1 2098 2224 1 2086 2089 1 2089 2222 1 2222 2223 1 + 2223 2086 1 2084 1584 1 1631 2083 1 2083 2084 1 2084 2089 1 2089 1601 1 2086 1593 1 + 2085 1592 1 2098 2086 1 2223 2224 1 2219 2220 1 2220 2083 1 2083 2085 1 2221 2084 1 + 2220 2221 1 2090 2093 1 2093 2211 1 2211 2212 1 2221 2222 1 2215 2216 1 122 2108 1 + 2108 2202 1 2202 133 1 2206 2207 1 2099 2096 1 1294 1182 1 1182 2102 1 2102 2105 1 + 2105 1294 1 2105 120 1 1183 2103 1 2103 2102 1 1187 2104 1 2104 2103 1 2109 1295 1 + 1295 2161 1 2161 2162 1 2162 2109 1 2080 2088 1 2201 2163 1 2163 2076 1 2200 2201 1 + 2210 2211 1 2093 2094 1 2094 2210 1 2109 2104 1 2098 1632 1 1874 1860 1 1860 1858 1 + 1916 1853 1 1853 1855 1 1850 1849 1 1851 1848 1 1848 2111 1 1869 2112 1 1660 2113 1 + 2137 2138 1 2011 1634 1 1562 2192 1 2192 2193 1 2190 2191 1 2191 2180 1 2180 2118 1 + 2118 2190 1 1308 2123 1 2123 2124 1 2125 2126 1 2122 2123 1 1262 1215 1 2115 1571 1; + setAttr ".ed[4316:4481]" 1571 1570 1 1570 2116 1 1570 1573 1 1577 2115 1 1262 1272 1 + 1284 1213 1 1289 1286 1 1438 2121 1 2120 1438 1 1456 2122 1 2121 1456 1 2122 1465 1 + 1317 2123 1 1333 2124 1 1336 2125 1 1532 2126 1 1499 2127 1 1497 2128 1 1495 2129 1 + 1498 2130 1 1491 2131 1 1332 2132 1 1365 2133 1 1494 2134 1 1478 2120 1 2135 2046 1 + 2045 2136 1 2044 2137 1 2043 2138 1 2042 2139 1 2041 2140 1 2040 2141 1 2039 2142 1 + 1546 1553 1 1547 1570 1 1439 2121 1 1496 1497 1 1493 1495 1 1492 1498 1 1191 2146 1 + 2146 1288 1 2147 2146 1 1260 2147 1 1261 2148 1 2148 2147 1 1288 1285 1 2146 2151 1 + 2147 2152 1 2063 2153 1 2064 2154 1 2038 2155 1 1974 2010 1 2155 1975 1 1992 2011 1 + 1653 1640 1 1656 1640 1 1655 1638 1 1642 1638 1 1435 2157 1 1556 1567 1 1567 2189 1 + 2189 2188 1 2209 2225 1 2225 2210 1 2159 2108 1 116 2160 1 123 2162 1 2108 2163 1 + 2201 2202 1 2164 2163 1 2159 2164 1 2079 2165 1 2165 2164 1 2075 2166 1 2166 2165 1 + 1557 2167 1 2167 2166 1 2070 2092 1 2092 2170 1 2170 2070 1 2183 2184 1 2173 2143 1 + 1554 2174 1 1551 2175 1 1564 2176 1 1566 2177 1 1568 2178 1 1569 2179 1 1562 2180 1 + 2191 2192 1 2180 2181 1 2182 1561 1 1573 2189 1 2189 2190 1 2188 1547 1 1553 2186 1 + 2190 2119 1 2179 2191 1 1569 2192 1 1559 2193 1 1563 1556 1 1577 1571 1 2194 2069 1 + 2069 2071 1 2071 2195 1 2070 2069 1 2105 2196 1 2102 2197 1 2103 2198 1 2104 2199 1 + 2109 2200 1 2162 2201 1 123 2202 1 2172 2173 1 2144 1552 1 1552 2172 1 1548 1552 1 + 2074 1575 1 1575 1576 1 1576 2073 1 2073 2074 1 2171 1558 1 1558 1557 1 1574 2171 1 + 1575 1552 1 1548 1576 1 2171 2172 1 1575 2171 1 1577 1576 1 2101 2082 1 2082 2214 1 + 2214 2203 1 2203 2101 1 2072 2073 1 2073 2069 1 2070 2074 1 2082 2081 1 2213 2214 1 + 2203 2204 1 2095 2101 1 1558 2168 1 2168 2167 1 2074 2169 1 2169 2168 1 1558 2074 1 + 2170 2169 1 1544 2172 1 1547 1573 1 2180 1561 1 2170 2204 1 2203 2169 1 2092 2205 1 + 2088 2206 1 2080 2207 1 2077 2208 1 2076 2209 1 2225 2163 1 2164 2210 1 2165 2211 1 + 2166 2212 1 2167 2213 1 2168 2214 1 2095 2216 1 2215 2101 1 2096 2217 1 2099 2218 1; + setAttr ".ed[4482:4487]" 2091 2219 1 2094 2220 1 2093 2221 1 2090 2222 1 2081 2223 1 + 2082 2224 1; + setAttr -s 2226 ".n"; + setAttr ".n[0:165]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[166:331]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[332:497]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[498:663]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[664:829]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[830:995]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[996:1161]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[1162:1327]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[1328:1493]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[1494:1659]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[1660:1825]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[1826:1991]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[1992:2157]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr ".n[2158:2225]" -type "float3" 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020 + 1e+020 1e+020 1e+020 1e+020 1e+020 1e+020; + setAttr -s 2268 -ch 8920 ".fc"; + setAttr ".fc[0:499]" -type "polyFaces" + f 4 0 1 2 3 + mu 0 4 0 1 2 3 + f 4 4 5 6 -2 + mu 0 4 1 4 5 2 + f 4 7 8 9 -6 + mu 0 4 4 6 7 5 + f 4 10 11 12 -9 + mu 0 4 6 8 9 7 + f 4 13 14 15 -12 + mu 0 4 8 10 11 9 + f 4 16 17 18 -15 + mu 0 4 10 12 13 11 + f 4 19 20 21 -18 + mu 0 4 12 14 15 13 + f 4 22 -4 23 -21 + mu 0 4 14 0 3 15 + f 3 -3 24 25 + mu 0 3 3 2 16 + f 3 -7 26 -25 + mu 0 3 2 5 16 + f 3 -10 27 -27 + mu 0 3 5 7 16 + f 3 -13 28 -28 + mu 0 3 7 9 16 + f 3 -16 29 -29 + mu 0 3 9 11 16 + f 3 -19 30 -30 + mu 0 3 11 13 16 + f 3 -22 31 -31 + mu 0 3 13 15 16 + f 3 -24 -26 -32 + mu 0 3 15 3 16 + f 4 32 33 34 35 + mu 0 4 17 18 19 20 + f 4 36 37 38 -34 + mu 0 4 21 22 23 24 + f 4 39 40 41 42 + mu 0 4 25 26 27 28 + f 4 43 44 45 -41 + mu 0 4 26 29 30 27 + f 4 46 47 48 -45 + mu 0 4 29 31 32 30 + f 4 49 50 51 52 + mu 0 4 33 34 35 36 + f 4 53 54 55 56 + mu 0 4 37 38 39 40 + f 4 57 58 59 -55 + mu 0 4 38 41 42 39 + f 4 60 -43 61 -38 + mu 0 4 22 25 28 23 + f 4 62 -36 63 -59 + mu 0 4 41 17 20 42 + f 4 64 -53 65 -48 + mu 0 4 31 33 36 32 + f 4 66 -57 67 -51 + mu 0 4 34 37 40 35 + f 4 68 69 70 71 + mu 0 4 43 44 45 46 + f 4 72 73 74 -70 + mu 0 4 44 47 48 45 + f 4 75 76 77 -74 + mu 0 4 47 49 50 48 + f 4 78 79 80 -77 + mu 0 4 49 51 52 50 + f 4 81 82 83 -80 + mu 0 4 51 53 54 52 + f 4 84 85 86 -83 + mu 0 4 53 55 56 54 + f 4 87 88 89 -86 + mu 0 4 55 57 58 56 + f 4 90 -72 91 -89 + mu 0 4 57 43 46 58 + f 3 -71 92 93 + mu 0 3 46 45 59 + f 3 -75 94 -93 + mu 0 3 45 48 59 + f 3 -78 95 -95 + mu 0 3 48 50 59 + f 3 -81 96 -96 + mu 0 3 50 52 59 + f 3 -84 97 -97 + mu 0 3 52 54 59 + f 3 -87 98 -98 + mu 0 3 54 56 59 + f 3 -90 99 -99 + mu 0 3 56 58 59 + f 3 -92 -94 -100 + mu 0 3 58 46 59 + f 4 100 101 102 103 + mu 0 4 60 61 62 63 + f 4 104 105 106 -102 + mu 0 4 61 64 65 62 + f 4 107 108 109 -106 + mu 0 4 64 66 67 65 + f 4 110 111 112 -109 + mu 0 4 66 68 69 67 + f 4 113 114 115 -112 + mu 0 4 68 70 71 69 + f 4 116 117 118 -115 + mu 0 4 70 72 73 71 + f 4 119 120 121 -118 + mu 0 4 72 74 75 73 + f 4 122 -104 123 -121 + mu 0 4 74 60 63 75 + f 3 -103 124 125 + mu 0 3 63 62 76 + f 3 -107 126 -125 + mu 0 3 62 65 76 + f 3 -110 127 -127 + mu 0 3 65 67 76 + f 3 -113 128 -128 + mu 0 3 67 69 76 + f 3 -116 129 -129 + mu 0 3 69 71 76 + f 3 -119 130 -130 + mu 0 3 71 73 76 + f 3 -122 131 -131 + mu 0 3 73 75 76 + f 3 -124 -126 -132 + mu 0 3 75 63 76 + f 4 132 133 134 135 + mu 0 4 77 78 79 80 + f 4 136 137 138 -134 + mu 0 4 78 81 82 79 + f 4 139 140 141 -138 + mu 0 4 81 83 84 82 + f 4 142 143 144 -141 + mu 0 4 83 85 86 84 + f 4 145 146 147 -144 + mu 0 4 85 87 88 86 + f 4 148 149 150 -147 + mu 0 4 87 89 90 88 + f 4 151 152 153 -150 + mu 0 4 89 91 92 90 + f 4 154 -136 155 -153 + mu 0 4 91 77 80 92 + f 3 -135 156 157 + mu 0 3 80 79 93 + f 3 -139 158 -157 + mu 0 3 79 82 93 + f 3 -142 159 -159 + mu 0 3 82 84 93 + f 3 -145 160 -160 + mu 0 3 84 86 93 + f 3 -148 161 -161 + mu 0 3 86 88 93 + f 3 -151 162 -162 + mu 0 3 88 90 93 + f 3 -154 163 -163 + mu 0 3 90 92 93 + f 3 -156 -158 -164 + mu 0 3 92 80 93 + f 4 164 165 166 167 + mu 0 4 94 95 96 97 + f 4 168 169 170 171 + mu 0 4 98 99 100 101 + f 4 172 173 174 175 + mu 0 4 102 103 104 105 + f 4 176 177 178 -165 + mu 0 4 94 106 107 95 + f 4 -172 179 180 -178 + mu 0 4 106 108 109 107 + f 3 181 182 183 + mu 0 3 110 111 112 + f 4 184 185 -171 186 + mu 0 4 113 114 115 116 + f 4 187 188 -180 -186 + mu 0 4 117 118 109 108 + f 4 189 190 -169 -177 + mu 0 4 119 120 121 122 + f 3 191 192 193 + mu 0 3 123 124 125 + f 4 194 195 196 197 + mu 0 4 126 127 128 129 + f 4 198 199 200 -195 + mu 0 4 126 130 131 127 + f 4 201 202 203 204 + mu 0 4 132 133 134 135 + f 4 205 206 207 -203 + mu 0 4 133 136 137 134 + f 4 208 209 210 211 + mu 0 4 138 139 140 141 + f 4 212 213 214 215 + mu 0 4 142 143 137 140 + f 4 -210 216 217 -216 + mu 0 4 140 139 144 142 + f 4 -208 -214 218 219 + mu 0 4 134 137 143 145 + f 4 -204 -220 220 221 + mu 0 4 135 134 145 146 + f 4 -211 -215 -207 222 + mu 0 4 141 140 137 136 + f 4 223 224 225 226 + mu 0 4 147 148 149 150 + f 4 227 228 229 230 + mu 0 4 151 152 153 154 + f 4 231 -229 232 -227 + mu 0 4 150 153 152 147 + f 4 233 234 235 -233 + mu 0 4 152 155 156 147 + f 4 -236 236 237 -224 + mu 0 4 147 156 157 148 + f 4 -217 238 239 240 + mu 0 4 144 139 158 159 + f 4 -237 -235 241 -222 + mu 0 4 157 156 155 160 + f 4 242 243 244 -241 + mu 0 4 159 161 162 144 + f 4 245 246 247 248 + mu 0 4 163 164 158 165 + f 4 -248 -239 -209 249 + mu 0 4 165 158 139 138 + f 4 250 251 252 253 + mu 0 4 166 167 168 169 + f 4 -247 254 -243 -240 + mu 0 4 158 164 161 159 + f 3 255 256 257 + mu 0 3 170 171 172 + f 4 258 259 -256 260 + mu 0 4 173 174 171 170 + f 4 -252 261 -259 262 + mu 0 4 168 167 174 173 + f 4 263 264 265 -226 + mu 0 4 149 175 176 150 + f 4 266 267 -232 -266 + mu 0 4 176 177 153 150 + f 4 -230 -268 268 269 + mu 0 4 154 153 177 178 + f 4 -269 270 -246 271 + mu 0 4 178 177 164 163 + f 4 272 -255 -271 -267 + mu 0 4 176 161 164 177 + f 4 -265 273 -244 -273 + mu 0 4 176 175 162 161 + f 4 274 275 -189 276 + mu 0 4 130 179 109 118 + f 4 -200 -277 277 278 + mu 0 4 131 130 118 180 + f 4 -181 -276 279 280 + mu 0 4 107 109 179 181 + f 4 281 -179 -281 282 + mu 0 4 182 95 107 181 + f 4 -188 283 284 -278 + mu 0 4 118 117 183 180 + f 4 285 286 287 288 + mu 0 4 184 185 186 187 + f 4 289 290 291 292 + mu 0 4 188 189 190 191 + f 4 293 294 295 -290 + mu 0 4 188 192 193 189 + f 4 296 297 298 -291 + mu 0 4 189 194 195 190 + f 4 299 300 301 302 + mu 0 4 196 197 198 199 + f 4 303 304 305 -288 + mu 0 4 186 200 201 187 + f 4 306 307 308 -305 + mu 0 4 200 202 203 201 + f 4 309 -166 -282 310 + mu 0 4 204 96 95 182 + f 4 311 312 313 314 + mu 0 4 205 206 207 208 + f 4 315 316 317 318 + mu 0 4 209 166 207 210 + f 4 319 320 -318 -313 + mu 0 4 206 211 210 207 + f 4 321 322 323 -286 + mu 0 4 184 212 213 185 + f 4 324 -307 325 -302 + mu 0 4 198 202 200 199 + f 3 326 327 328 + mu 0 3 214 215 216 + f 4 329 -321 330 331 + mu 0 4 217 210 211 218 + f 4 332 -167 333 334 + mu 0 4 219 97 96 220 + f 4 335 336 -331 337 + mu 0 4 221 222 218 211 + f 4 -338 -320 338 339 + mu 0 4 221 211 206 223 + f 4 -312 340 341 -339 + mu 0 4 206 205 194 223 + f 4 -296 342 -342 -297 + mu 0 4 189 193 223 194 + f 4 343 344 -340 -343 + mu 0 4 193 196 221 223 + f 4 345 -336 -345 -303 + mu 0 4 199 222 221 196 + f 4 346 347 -298 -341 + mu 0 4 205 224 195 194 + f 4 -304 348 -346 -326 + mu 0 4 200 186 222 199 + f 4 -287 349 -337 -349 + mu 0 4 186 185 218 222 + f 4 350 -325 351 352 + mu 0 4 225 226 227 228 + f 4 353 354 355 -283 + mu 0 4 181 229 212 182 + f 4 -308 -351 356 357 + mu 0 4 230 226 225 231 + f 4 358 -323 -355 359 + mu 0 4 232 213 212 229 + f 4 -352 -301 360 361 + mu 0 4 228 227 233 234 + f 3 362 -293 363 + mu 0 3 235 236 237 + f 4 364 -294 -363 365 + mu 0 4 171 238 236 235 + f 4 366 -360 367 368 + mu 0 4 239 232 229 240 + f 4 369 370 -369 371 + mu 0 4 241 242 239 240 + f 4 -354 -280 372 -368 + mu 0 4 229 181 179 240 + f 4 -373 373 374 -372 + mu 0 4 240 179 243 241 + f 4 -251 -316 375 376 + mu 0 4 167 166 209 244 + f 4 -262 -377 377 378 + mu 0 4 174 167 244 245 + f 4 379 380 -367 381 + mu 0 4 246 247 232 239 + f 4 -376 382 -380 383 + mu 0 4 244 209 247 246 + f 4 384 -378 -384 385 + mu 0 4 248 245 244 246 + f 4 386 -386 -382 -371 + mu 0 4 242 248 246 239 + f 4 -205 -242 387 388 + mu 0 4 249 160 155 250 + f 4 -388 -234 -228 389 + mu 0 4 250 155 152 151 + f 3 390 -257 -366 + mu 0 3 235 172 171 + f 4 391 392 -359 -381 + mu 0 4 247 217 213 232 + f 4 -319 -330 -392 -383 + mu 0 4 209 210 217 247 + f 4 -254 393 -314 -317 + mu 0 4 166 169 208 207 + f 4 -358 394 395 396 + mu 0 4 230 231 251 252 + f 4 -223 397 -348 398 + mu 0 4 141 136 195 224 + f 4 399 400 401 -250 + mu 0 4 138 253 169 165 + f 4 402 -249 -402 -253 + mu 0 4 168 163 165 169 + f 4 -263 403 -272 -403 + mu 0 4 168 173 178 163 + f 4 404 -270 -404 -261 + mu 0 4 170 154 178 173 + f 4 405 -231 -405 -258 + mu 0 4 172 151 154 170 + f 4 406 -390 -406 -391 + mu 0 4 235 250 151 172 + f 4 -389 -407 -364 407 + mu 0 4 249 250 235 237 + f 4 408 -202 -408 -292 + mu 0 4 190 133 132 191 + f 4 -398 -206 -409 -299 + mu 0 4 195 136 133 190 + f 4 -174 409 -333 410 + mu 0 4 104 103 254 255 + f 4 411 412 413 -411 + mu 0 4 256 257 258 259 + f 4 -335 414 -329 -412 + mu 0 4 219 220 214 216 + f 4 415 -375 416 -395 + mu 0 4 231 241 243 251 + f 4 417 -370 -416 -357 + mu 0 4 225 242 241 231 + f 4 418 -387 -418 -353 + mu 0 4 228 248 242 225 + f 4 419 -385 -419 -362 + mu 0 4 234 245 248 228 + f 4 -260 -379 -420 420 + mu 0 4 171 174 245 234 + f 4 421 -365 -421 -361 + mu 0 4 233 238 171 234 + f 4 -344 -295 -422 -300 + mu 0 4 196 193 192 197 + f 4 422 423 424 425 + mu 0 4 260 261 262 263 + f 4 426 427 428 429 + mu 0 4 264 265 266 267 + f 4 430 431 432 433 + mu 0 4 268 262 269 270 + f 4 434 435 436 437 + mu 0 4 271 272 273 274 + f 4 438 -430 439 440 + mu 0 4 273 264 267 275 + f 4 441 -434 442 443 + mu 0 4 276 268 270 277 + f 4 444 -442 445 -438 + mu 0 4 274 268 276 271 + f 4 446 447 -440 448 + mu 0 4 278 279 275 267 + f 4 449 450 -449 -429 + mu 0 4 266 280 278 267 + f 4 451 452 453 -427 + mu 0 4 264 281 282 265 + f 4 454 -433 455 456 + mu 0 4 283 284 285 286 + f 4 457 458 -457 459 + mu 0 4 287 288 283 286 + f 4 460 -459 461 462 + mu 0 4 289 283 288 290 + f 4 -462 463 464 465 + mu 0 4 290 288 291 292 + f 4 -465 466 -454 467 + mu 0 4 292 291 265 282 + f 4 468 -464 -458 469 + mu 0 4 293 291 288 287 + f 4 -467 -469 470 -428 + mu 0 4 265 291 293 266 + f 4 471 472 473 474 + mu 0 4 294 295 296 297 + f 4 475 476 477 478 + mu 0 4 298 299 261 300 + f 4 -478 -423 479 480 + mu 0 4 300 261 260 301 + f 4 -480 481 482 483 + mu 0 4 301 260 279 302 + f 4 484 485 486 487 + mu 0 4 303 304 305 306 + f 4 -475 488 489 490 + mu 0 4 294 297 307 308 + f 4 -490 491 492 493 + mu 0 4 308 307 309 310 + f 4 494 495 496 -473 + mu 0 4 295 311 312 296 + f 4 497 498 499 -496 + mu 0 4 311 313 314 312 + f 4 500 501 502 503 + mu 0 4 315 316 317 318 + f 4 504 505 506 -451 + mu 0 4 280 319 306 278 + f 4 507 508 -488 -506 + mu 0 4 319 320 303 306 + f 4 509 510 511 -492 + mu 0 4 307 321 322 309 + f 4 512 -456 513 514 + mu 0 4 323 286 285 324 + f 4 515 516 517 518 + mu 0 4 325 326 327 328 + f 4 519 -460 -513 520 + mu 0 4 329 287 286 323 + f 4 521 522 523 -521 + mu 0 4 323 322 330 329 + f 4 524 -470 -520 525 + mu 0 4 331 293 287 329 + f 4 -524 526 527 -526 + mu 0 4 329 330 332 331 + f 4 -517 528 -509 529 + mu 0 4 327 326 303 320 + f 4 -489 530 531 -510 + mu 0 4 307 297 333 321 + f 4 532 533 534 -532 + mu 0 4 333 334 335 321 + f 4 535 536 537 -534 + mu 0 4 334 336 337 335 + f 4 538 539 540 -497 + mu 0 4 312 338 339 296 + f 4 541 -533 542 -540 + mu 0 4 338 334 333 339 + f 4 543 544 -539 -500 + mu 0 4 314 340 338 312 + f 4 -536 -542 -545 545 + mu 0 4 336 334 338 340 + f 4 546 -544 547 -519 + mu 0 4 328 340 314 325 + f 4 548 -537 549 -530 + mu 0 4 320 337 336 327 + f 4 -528 550 -505 551 + mu 0 4 331 332 319 280 + f 4 -471 -525 -552 -450 + mu 0 4 266 293 331 280 + f 4 552 553 554 555 + mu 0 4 341 342 343 344 + f 4 556 557 -554 558 + mu 0 4 345 346 343 342 + f 4 559 560 561 562 + mu 0 4 347 348 349 350 + f 4 -561 563 564 565 + mu 0 4 349 348 351 352 + f 4 566 567 568 569 + mu 0 4 353 354 355 356 + f 4 570 -570 571 572 + mu 0 4 357 353 356 358 + f 3 573 574 575 + mu 0 3 359 360 361 + f 4 576 577 578 579 + mu 0 4 362 363 364 365 + f 4 580 581 582 583 + mu 0 4 316 366 367 368 + f 4 584 585 -576 586 + mu 0 4 369 370 359 361 + f 4 -584 587 588 -502 + mu 0 4 316 368 371 317 + f 4 589 590 591 592 + mu 0 4 364 372 315 373 + f 4 593 594 -590 -578 + mu 0 4 363 374 372 364 + f 4 595 -588 596 -586 + mu 0 4 370 375 376 359 + f 4 -579 -593 597 598 + mu 0 4 365 364 373 377 + f 4 -583 599 600 -597 + mu 0 4 376 378 379 359 + f 4 601 602 603 604 + mu 0 4 360 380 381 382 + f 4 605 -580 606 -604 + mu 0 4 381 383 384 382 + f 4 607 -575 -605 608 + mu 0 4 385 361 360 382 + f 4 -607 -599 609 -609 + mu 0 4 382 384 386 385 + f 4 -601 610 -602 -574 + mu 0 4 359 379 380 360 + f 4 611 -581 612 -595 + mu 0 4 374 366 316 372 + f 4 613 -577 614 615 + mu 0 4 387 363 362 388 + f 4 616 617 618 -616 + mu 0 4 389 390 391 392 + f 4 619 620 621 622 + mu 0 4 393 394 395 396 + f 4 623 -582 624 -622 + mu 0 4 397 367 366 398 + f 4 625 -600 -624 626 + mu 0 4 345 379 378 399 + f 4 627 -553 628 -603 + mu 0 4 380 342 341 381 + f 4 -615 -606 -629 629 + mu 0 4 389 383 381 341 + f 4 -556 630 -617 -630 + mu 0 4 341 344 390 389 + f 4 -557 -627 -621 631 + mu 0 4 346 345 399 394 + f 4 632 633 634 635 + mu 0 4 400 401 402 403 + f 4 -626 -559 -628 -611 + mu 0 4 379 345 342 380 + f 4 636 -594 -614 637 + mu 0 4 404 374 363 387 + f 4 -625 -612 -637 638 + mu 0 4 398 366 374 404 + f 4 639 -638 -619 640 + mu 0 4 405 404 387 406 + f 4 -623 -639 -640 641 + mu 0 4 407 398 404 405 + f 4 -631 -555 642 643 + mu 0 4 390 344 343 408 + f 4 -643 -558 -632 644 + mu 0 4 408 343 346 394 + f 4 645 646 647 648 + mu 0 4 409 369 410 411 + f 3 649 650 -585 + mu 0 3 369 412 370 + f 3 651 -650 -646 + mu 0 3 409 412 369 + f 4 652 653 654 -649 + mu 0 4 411 413 414 409 + f 4 655 656 -654 657 + mu 0 4 415 416 417 418 + f 4 658 659 -656 660 + mu 0 4 419 318 416 415 + f 4 661 662 663 664 + mu 0 4 420 421 422 416 + f 4 -664 665 666 -657 + mu 0 4 416 422 423 417 + f 4 667 668 -662 669 + mu 0 4 317 424 421 420 + f 4 670 671 672 -658 + mu 0 4 418 425 426 415 + f 4 673 -655 -667 674 + mu 0 4 427 409 414 428 + f 4 675 676 677 -675 + mu 0 4 428 429 430 427 + f 4 678 679 -676 -666 + mu 0 4 422 431 432 423 + f 4 -589 680 681 -668 + mu 0 4 317 371 433 424 + f 4 -681 -596 682 683 + mu 0 4 434 375 370 435 + f 4 684 685 -679 -663 + mu 0 4 421 436 431 422 + f 4 686 687 -685 -669 + mu 0 4 424 403 436 421 + f 4 688 689 -683 -651 + mu 0 4 412 437 435 370 + f 4 690 -689 -652 -674 + mu 0 4 427 437 412 409 + f 4 691 692 -633 693 + mu 0 4 438 439 440 441 + f 4 694 695 696 -677 + mu 0 4 429 442 443 430 + f 4 697 698 -695 -680 + mu 0 4 431 444 445 432 + f 4 -682 699 -636 -687 + mu 0 4 424 433 400 403 + f 4 -700 -684 700 -694 + mu 0 4 441 434 435 438 + f 4 -686 701 702 -698 + mu 0 4 431 436 446 444 + f 4 -702 -688 -635 703 + mu 0 4 446 436 403 402 + f 4 704 705 -701 -690 + mu 0 4 437 447 438 435 + f 4 706 -705 -691 -678 + mu 0 4 430 447 437 427 + f 4 707 708 -699 -703 + mu 0 4 446 448 445 444 + f 4 -634 709 -708 -704 + mu 0 4 402 401 448 446 + f 4 -693 710 711 -710 + mu 0 4 440 439 449 450 + f 4 -712 712 -696 -709 + mu 0 4 450 449 443 442 + f 4 -692 -706 713 -711 + mu 0 4 439 438 447 449 + f 4 -714 -707 -697 -713 + mu 0 4 449 447 430 443 + f 3 714 715 716 + mu 0 3 451 452 410 + f 3 -716 717 -648 + mu 0 3 410 452 411 + f 4 718 719 -717 720 + mu 0 4 453 454 451 410 + f 4 721 722 723 -720 + mu 0 4 454 455 456 451 + f 4 724 -723 725 726 + mu 0 4 457 458 459 460 + f 4 727 728 729 -726 + mu 0 4 459 461 462 460 + f 4 -673 730 731 732 + mu 0 4 415 426 463 464 + f 4 -732 733 734 735 + mu 0 4 464 463 465 457 + f 4 736 737 -671 -653 + mu 0 4 411 466 467 413 + f 4 -735 738 739 -725 + mu 0 4 457 465 468 458 + f 4 740 -715 741 742 + mu 0 4 469 452 451 470 + f 4 743 744 -743 745 + mu 0 4 471 472 469 470 + f 4 -741 746 -737 -718 + mu 0 4 452 469 466 411 + f 4 -747 -745 747 748 + mu 0 4 466 469 472 473 + f 4 749 750 -731 751 + mu 0 4 474 475 463 426 + f 4 -734 -751 752 753 + mu 0 4 465 463 475 476 + f 4 -749 754 755 -738 + mu 0 4 466 473 477 467 + f 4 -672 -756 756 -752 + mu 0 4 426 425 478 474 + f 4 -754 757 758 -739 + mu 0 4 465 476 479 468 + f 4 759 -759 760 -746 + mu 0 4 470 480 481 471 + f 4 -742 -724 -740 -760 + mu 0 4 470 451 456 480 + f 4 761 762 763 764 + mu 0 4 482 483 484 352 + f 4 765 -729 -762 766 + mu 0 4 485 462 461 486 + f 4 767 768 -744 769 + mu 0 4 487 488 472 471 + f 4 770 771 772 -750 + mu 0 4 474 489 490 475 + f 4 -773 773 774 -753 + mu 0 4 475 490 491 476 + f 4 775 -758 -775 776 + mu 0 4 492 479 476 491 + f 4 -761 -776 777 -770 + mu 0 4 471 481 493 487 + f 4 778 779 -755 780 + mu 0 4 494 495 477 473 + f 4 -780 781 -771 -757 + mu 0 4 478 496 489 474 + f 4 -769 782 -781 -748 + mu 0 4 472 488 494 473 + f 4 -779 -783 783 784 + mu 0 4 495 494 488 497 + f 4 -784 -768 -778 785 + mu 0 4 497 488 487 493 + f 4 -774 786 -786 -777 + mu 0 4 491 490 498 492 + f 4 -787 -772 -782 -785 + mu 0 4 498 490 489 496 + f 4 787 788 789 790 + mu 0 4 499 500 501 453 + f 4 791 792 793 794 + mu 0 4 502 503 504 505 + f 4 795 796 -794 797 + mu 0 4 506 507 505 504 + f 4 798 -548 -499 799 + mu 0 4 508 325 314 313 + f 3 800 801 -790 + mu 0 3 501 509 453 + f 3 -802 802 -719 + mu 0 3 453 509 454 + f 4 -789 803 -792 804 + mu 0 4 501 500 510 511 + f 4 805 -801 806 807 + mu 0 4 512 509 501 513 + f 4 -806 808 809 -803 + mu 0 4 509 512 484 454 + f 4 810 811 -807 -805 + mu 0 4 511 514 513 501 + f 4 812 -811 -795 813 + mu 0 4 515 516 502 505 + f 4 -810 -763 -728 -722 + mu 0 4 454 484 483 455 + f 4 -730 814 815 816 + mu 0 4 460 462 517 518 + f 4 -814 817 -816 818 + mu 0 4 515 505 518 517 + f 4 -562 819 -808 820 + mu 0 4 350 349 512 513 + f 4 -809 -820 -566 -764 + mu 0 4 484 512 349 352 + f 4 821 822 -815 -766 + mu 0 4 485 519 517 462 + f 4 823 824 -819 -823 + mu 0 4 519 520 515 517 + f 4 825 826 827 828 + mu 0 4 521 522 520 523 + f 4 -563 829 -826 830 + mu 0 4 347 350 524 525 + f 4 831 -767 832 833 + mu 0 4 526 485 486 527 + f 4 -833 -765 -565 834 + mu 0 4 528 482 352 351 + f 4 835 -822 -832 836 + mu 0 4 529 519 485 526 + f 4 -824 -836 837 -828 + mu 0 4 520 519 529 523 + f 4 838 -813 -825 -827 + mu 0 4 522 516 515 520 + f 4 -812 -839 -830 -821 + mu 0 4 513 514 524 350 + f 4 -835 -564 839 840 + mu 0 4 528 351 348 530 + f 4 -840 -560 -831 841 + mu 0 4 530 348 347 525 + f 4 -838 842 -842 -829 + mu 0 4 523 529 531 521 + f 4 -843 -837 -834 -841 + mu 0 4 531 529 526 527 + f 4 843 844 845 846 + mu 0 4 532 533 534 535 + f 4 -798 847 848 849 + mu 0 4 506 504 536 537 + f 4 850 851 852 853 + mu 0 4 538 539 499 540 + f 4 -846 854 -854 855 + mu 0 4 535 534 538 540 + f 4 856 857 858 859 + mu 0 4 539 541 542 500 + f 4 860 -857 -851 861 + mu 0 4 543 541 539 538 + f 4 862 863 -862 -855 + mu 0 4 534 544 543 538 + f 4 864 865 -863 -845 + mu 0 4 533 545 544 534 + f 4 866 -866 867 868 + mu 0 4 546 544 545 547 + f 4 869 870 871 -848 + mu 0 4 504 548 549 536 + f 4 872 -871 873 874 + mu 0 4 550 549 548 551 + f 4 875 876 -804 -859 + mu 0 4 542 552 510 500 + f 4 -877 877 -870 -793 + mu 0 4 503 553 548 504 + f 4 -874 -878 878 879 + mu 0 4 551 548 553 554 + f 4 880 -865 881 -872 + mu 0 4 549 545 533 536 + f 4 -868 -881 -873 882 + mu 0 4 547 545 549 550 + f 4 883 884 885 -883 + mu 0 4 550 555 556 547 + f 4 -879 -876 886 887 + mu 0 4 557 552 542 355 + f 4 -858 888 -569 -887 + mu 0 4 542 541 356 355 + f 4 889 890 891 -880 + mu 0 4 554 558 559 551 + f 4 -568 892 -890 -888 + mu 0 4 355 354 560 557 + f 4 -892 893 -884 -875 + mu 0 4 551 559 555 550 + f 4 894 895 -869 -886 + mu 0 4 556 561 546 547 + f 4 -896 896 -573 897 + mu 0 4 546 562 357 358 + f 4 898 -572 -889 -861 + mu 0 4 543 358 356 541 + f 4 899 900 -895 -885 + mu 0 4 555 563 561 556 + f 4 -891 901 -900 -894 + mu 0 4 559 558 563 555 + f 4 -893 -567 902 -902 + mu 0 4 560 354 353 564 + f 4 -903 -571 -897 -901 + mu 0 4 564 353 357 562 + f 4 903 -213 904 -435 + mu 0 4 271 143 142 272 + f 4 905 -444 906 -221 + mu 0 4 145 276 277 146 + f 4 -904 -446 -906 -219 + mu 0 4 143 271 276 145 + f 4 907 908 -238 -907 + mu 0 4 565 289 148 157 + f 4 909 910 -905 -218 + mu 0 4 144 281 272 142 + f 4 -909 -463 911 -225 + mu 0 4 148 289 290 149 + f 4 912 -453 -910 -245 + mu 0 4 162 282 281 144 + f 4 -466 913 -264 -912 + mu 0 4 290 292 175 149 + f 4 -913 -274 -914 -468 + mu 0 4 282 162 175 292 + f 4 -522 -515 914 -512 + mu 0 4 322 323 324 309 + f 4 -523 -511 -535 915 + mu 0 4 330 322 321 335 + f 4 -916 -538 916 -527 + mu 0 4 330 335 337 332 + f 4 -917 -549 -508 -551 + mu 0 4 332 337 320 319 + f 4 -543 -531 -474 -541 + mu 0 4 339 333 297 296 + f 4 -436 -911 -452 -439 + mu 0 4 273 272 281 264 + f 4 -461 -908 -443 -455 + mu 0 4 283 289 565 284 + f 4 917 918 -727 919 + mu 0 4 507 419 457 460 + f 4 -864 -867 -898 -899 + mu 0 4 543 544 546 358 + f 4 920 -493 -915 -476 + mu 0 4 298 566 567 299 + f 4 -426 921 -448 -482 + mu 0 4 260 263 275 279 + f 4 -441 -922 922 -437 + mu 0 4 273 275 263 274 + f 4 -431 -445 -923 -425 + mu 0 4 262 268 274 263 + f 4 -546 -547 -518 -550 + mu 0 4 336 340 328 327 + f 4 -799 923 924 -516 + mu 0 4 325 508 568 326 + f 4 -477 -514 -432 -424 + mu 0 4 261 299 269 262 + f 4 -882 -844 925 -849 + mu 0 4 536 533 532 537 + f 4 926 927 928 929 + mu 0 4 569 570 571 572 + f 4 930 931 932 933 + mu 0 4 573 574 575 576 + f 4 934 935 936 -932 + mu 0 4 574 577 578 575 + f 4 937 938 939 -927 + mu 0 4 569 579 580 570 + f 4 940 941 942 943 + mu 0 4 581 582 583 584 + f 4 944 945 946 947 + mu 0 4 585 584 586 587 + f 4 948 949 950 -942 + mu 0 4 582 588 589 583 + f 4 951 952 953 -939 + mu 0 4 579 590 591 580 + f 4 -937 954 -941 955 + mu 0 4 575 578 582 581 + f 4 956 957 -949 958 + mu 0 4 592 593 588 582 + f 4 959 960 961 962 + mu 0 4 594 587 595 576 + f 4 963 -934 -962 964 + mu 0 4 596 573 576 595 + f 4 -929 965 966 967 + mu 0 4 572 571 597 598 + f 4 968 969 970 971 + mu 0 4 599 600 601 602 + f 4 972 973 -971 974 + mu 0 4 603 604 602 601 + f 4 975 976 977 978 + mu 0 4 605 606 607 608 + f 3 979 980 981 + mu 0 3 609 610 611 + f 4 982 983 984 985 + mu 0 4 612 613 614 615 + f 4 -985 986 987 988 + mu 0 4 615 614 616 617 + f 4 989 990 991 992 + mu 0 4 618 609 619 620 + f 4 993 994 995 996 + mu 0 4 621 622 623 624 + f 4 997 -977 998 999 + mu 0 4 625 607 606 626 + f 4 -996 1000 1001 1002 + mu 0 4 624 623 627 628 + f 4 -993 1003 1004 1005 + mu 0 4 618 620 629 630 + f 4 1006 -965 1007 -1002 + mu 0 4 627 596 595 628 + f 4 1008 1009 1010 -997 + mu 0 4 624 631 632 621 + f 4 1011 1012 1013 1014 + mu 0 4 633 634 635 636 + f 4 1015 -1013 1016 1017 + mu 0 4 637 635 634 638 + f 4 1018 1019 1020 -979 + mu 0 4 608 639 640 605 + f 4 -969 1021 -953 1022 + mu 0 4 600 599 591 590 + f 4 1023 1024 1025 -1017 + mu 0 4 634 641 642 638 + f 4 1026 1027 -994 -1011 + mu 0 4 632 643 622 621 + f 4 1028 -987 1029 -1014 + mu 0 4 635 616 614 636 + f 4 1030 1031 -991 -982 + mu 0 4 611 644 619 609 + f 4 1032 -1005 1033 -967 + mu 0 4 597 630 629 598 + f 4 1034 1035 1036 -988 + mu 0 4 616 645 646 617 + f 4 1037 -1035 -1029 -1016 + mu 0 4 637 645 616 635 + f 4 1038 1039 1040 1041 + mu 0 4 647 648 649 650 + f 4 1042 1043 1044 1045 + mu 0 4 651 652 653 654 + f 4 1046 1047 -1043 1048 + mu 0 4 655 656 652 651 + f 4 -1045 1049 1050 1051 + mu 0 4 654 653 657 658 + f 4 -1051 1052 1053 1054 + mu 0 4 658 657 650 659 + f 4 1055 1056 1057 -1044 + mu 0 4 652 660 661 653 + f 4 1058 -1042 -1053 1059 + mu 0 4 662 647 650 657 + f 4 -1058 1060 -1060 -1050 + mu 0 4 653 661 662 657 + f 4 1061 1062 1063 1064 + mu 0 4 663 664 665 666 + f 4 1065 1066 1067 1068 + mu 0 4 667 668 669 670 + f 4 1069 1070 1071 -1066 + mu 0 4 667 671 672 668 + f 4 1072 1073 -1070 1074 + mu 0 4 673 674 671 667 + f 4 1075 1076 1077 1078 + mu 0 4 675 676 677 678 + f 4 1079 1080 -1076 1081 + mu 0 4 679 680 676 675 + f 4 1082 1083 1084 -1046 + mu 0 4 681 682 683 684 + f 4 -1068 1085 1086 1087 + mu 0 4 670 669 685 686 + f 4 1088 1089 1090 -1087 + mu 0 4 685 687 688 686 + f 3 1091 1092 1093 + mu 0 3 688 689 690 + f 4 -1091 1094 1095 1096 + mu 0 4 686 688 691 692 + f 4 1097 1098 1099 -1055 + mu 0 4 693 694 695 696 + f 4 1100 -1065 1101 -1080 + mu 0 4 679 663 666 680 + f 4 1102 1103 1104 -1099 + mu 0 4 694 697 698 695 + f 4 1105 -1084 1106 -1092 + mu 0 4 688 683 682 689 + f 4 1107 -1106 -1090 1108 + mu 0 4 699 683 688 687 + f 4 -1049 -1085 -1108 1109 + mu 0 4 700 684 683 699 + f 4 1110 -1104 1111 -1063 + mu 0 4 664 698 697 665 + f 4 1112 1113 1114 -1071 + mu 0 4 671 660 701 672 + f 4 -1069 1115 1116 -1075 + mu 0 4 667 670 702 673 + f 4 1117 1118 1119 -1059 + mu 0 4 662 703 704 647 + f 4 1120 -1119 1121 -1078 + mu 0 4 677 704 703 678 + f 4 -1113 -1074 1122 -1057 + mu 0 4 660 671 674 661; + setAttr ".fc[500:999]" + f 4 -1100 1123 -1083 -1052 + mu 0 4 696 695 682 681 + f 4 -1105 1124 -1107 -1124 + mu 0 4 695 698 689 682 + f 4 1125 -1093 -1125 -1111 + mu 0 4 664 690 689 698 + f 4 1126 -1126 -1062 1127 + mu 0 4 691 690 664 663 + f 4 -1096 -1128 -1101 1128 + mu 0 4 692 691 663 679 + f 4 1129 -1114 -1056 -1048 + mu 0 4 656 701 660 652 + f 4 -1116 -1088 -1097 1130 + mu 0 4 702 670 686 692 + f 4 1131 -1117 1132 -1079 + mu 0 4 678 673 702 675 + f 4 -1123 1133 -1118 -1061 + mu 0 4 661 674 703 662 + f 4 -1122 -1134 -1073 -1132 + mu 0 4 678 703 674 673 + f 4 1134 1135 1136 1137 + mu 0 4 705 706 707 708 + f 4 1138 -1137 1139 1140 + mu 0 4 709 708 707 710 + f 4 1141 1142 1143 1144 + mu 0 4 711 712 713 714 + f 4 1145 1146 1147 1148 + mu 0 4 715 716 717 718 + f 3 1149 1150 1151 + mu 0 3 719 720 721 + f 4 1152 -1145 1153 -1147 + mu 0 4 716 711 714 717 + f 3 1154 1155 1156 + mu 0 3 722 723 724 + f 4 1157 1158 -1150 1159 + mu 0 4 725 726 720 719 + f 4 1160 1161 1162 1163 + mu 0 4 727 728 729 730 + f 4 1164 1165 1166 1167 + mu 0 4 731 732 733 730 + f 4 1168 1169 1170 1171 + mu 0 4 734 735 736 737 + f 4 -1157 1172 1173 1174 + mu 0 4 722 724 738 739 + f 4 1175 1176 1177 -1156 + mu 0 4 723 740 741 724 + f 4 -1177 1178 1179 1180 + mu 0 4 741 740 742 743 + f 4 1181 1182 1183 -1176 + mu 0 4 723 713 744 740 + f 4 -1184 1184 1185 -1179 + mu 0 4 740 744 745 742 + f 4 1186 1187 1188 1189 + mu 0 4 746 747 748 749 + f 4 1190 1191 1192 -1189 + mu 0 4 748 712 750 749 + f 4 -1183 -1143 -1191 1193 + mu 0 4 744 713 712 748 + f 4 1194 -1185 -1194 -1188 + mu 0 4 747 745 744 748 + f 4 1195 1196 1197 1198 + mu 0 4 751 752 753 754 + f 4 -1163 1199 1200 1201 + mu 0 4 730 729 755 756 + f 4 -1171 1202 -1165 1203 + mu 0 4 737 736 732 731 + f 4 1204 -1151 1205 1206 + mu 0 4 753 721 720 757 + f 4 1207 1208 1209 1210 + mu 0 4 758 759 760 752 + f 4 1211 1212 1213 1214 + mu 0 4 757 761 762 763 + f 4 1215 1216 1217 -1159 + mu 0 4 726 764 765 720 + f 4 1218 1219 1220 -1158 + mu 0 4 766 767 768 769 + f 4 -1221 1221 1222 -1216 + mu 0 4 769 768 770 771 + f 4 1223 -1164 -1167 1224 + mu 0 4 772 727 730 733 + f 4 1225 1226 1227 -1225 + mu 0 4 733 773 774 772 + f 4 1228 1229 -1226 -1166 + mu 0 4 732 775 773 733 + f 4 1230 1231 -1229 -1203 + mu 0 4 736 776 775 732 + f 4 1232 -1231 -1170 1233 + mu 0 4 777 776 736 735 + f 4 -1227 1234 1235 1236 + mu 0 4 774 773 778 779 + f 4 1237 1238 1239 -1232 + mu 0 4 776 780 781 775 + f 4 -1238 -1233 1240 1241 + mu 0 4 780 776 777 782 + f 4 1242 1243 1244 -1236 + mu 0 4 778 783 784 779 + f 4 1245 1246 1247 -1243 + mu 0 4 778 781 785 783 + f 4 -1239 1248 1249 -1247 + mu 0 4 781 780 786 785 + f 4 1250 1251 -1249 -1242 + mu 0 4 782 787 786 780 + f 4 1252 1253 1254 -1244 + mu 0 4 783 788 789 784 + f 4 1255 1256 -1253 -1248 + mu 0 4 785 790 788 783 + f 4 1257 1258 -1256 -1250 + mu 0 4 786 791 790 785 + f 4 1259 -1258 -1252 1260 + mu 0 4 792 791 786 787 + f 4 -1240 -1246 -1235 -1230 + mu 0 4 775 781 778 773 + f 4 1261 1262 1263 1264 + mu 0 4 793 794 795 796 + f 4 1265 1266 1267 -1265 + mu 0 4 796 797 798 793 + f 4 1268 1269 1270 -1267 + mu 0 4 797 799 800 798 + f 4 1271 1272 1273 -1270 + mu 0 4 799 801 802 800 + f 4 -1254 1274 1275 1276 + mu 0 4 789 788 803 804 + f 4 1277 1278 1279 1280 + mu 0 4 803 805 806 802 + f 4 1281 -1260 1282 1283 + mu 0 4 807 791 792 808 + f 4 1284 1285 -1259 -1282 + mu 0 4 807 805 790 791 + f 4 -1286 -1278 -1275 -1257 + mu 0 4 790 805 803 788 + f 4 1286 1287 -1262 -1268 + mu 0 4 798 806 794 793 + f 4 -1280 -1287 -1271 -1274 + mu 0 4 802 806 798 800 + f 4 -1279 -1285 1288 -1288 + mu 0 4 806 805 807 794 + f 4 1289 -1276 -1281 -1273 + mu 0 4 801 804 803 802 + f 4 -1284 1290 -1263 -1289 + mu 0 4 807 808 795 794 + f 4 1291 1292 1293 1294 + mu 0 4 809 810 811 812 + f 4 1295 1296 1297 1298 + mu 0 4 813 814 815 816 + f 4 1299 -1299 1300 1301 + mu 0 4 817 813 816 818 + f 4 1302 1303 1304 1305 + mu 0 4 809 819 820 817 + f 4 1306 -1296 1307 1308 + mu 0 4 821 814 813 822 + f 4 1309 -1308 -1300 -1305 + mu 0 4 820 822 813 817 + f 4 -1303 -1295 1310 1311 + mu 0 4 819 809 812 823 + f 4 1312 1313 1314 -1309 + mu 0 4 822 824 825 821 + f 4 1315 -1313 -1310 1316 + mu 0 4 826 824 822 820 + f 4 -1304 1317 1318 -1317 + mu 0 4 820 819 827 826 + f 4 1319 -1318 -1312 1320 + mu 0 4 828 827 819 823 + f 4 -1314 1321 1322 1323 + mu 0 4 825 824 829 830 + f 4 1324 -1322 -1316 1325 + mu 0 4 831 829 824 826 + f 4 1326 1327 -1326 -1319 + mu 0 4 827 832 831 826 + f 4 -1327 -1320 1328 1329 + mu 0 4 832 827 828 833 + f 4 1330 1331 1332 -1323 + mu 0 4 829 834 835 830 + f 4 1333 -1331 -1325 1334 + mu 0 4 836 834 829 831 + f 4 -1328 1335 1336 -1335 + mu 0 4 831 832 837 836 + f 4 1337 1338 -1336 -1330 + mu 0 4 833 838 837 832 + f 4 1339 1340 1341 -1332 + mu 0 4 834 839 840 835 + f 4 1342 -1340 -1334 1343 + mu 0 4 841 839 834 836 + f 4 1344 1345 -1344 -1337 + mu 0 4 837 842 841 836 + f 4 1346 -1345 -1339 1347 + mu 0 4 843 842 837 838 + f 4 1348 1349 1350 1351 + mu 0 4 844 845 846 847 + f 4 1352 1353 1354 1355 + mu 0 4 848 849 850 851 + f 4 1356 -1356 1357 1358 + mu 0 4 852 848 851 853 + f 4 1359 -1352 1360 -1359 + mu 0 4 853 844 847 852 + f 4 -1360 1361 1362 -1349 + mu 0 4 844 853 854 845 + f 4 -1341 1363 1364 1365 + mu 0 4 840 839 855 856 + f 4 1366 -1364 -1343 1367 + mu 0 4 857 855 839 841 + f 4 1368 1369 -1368 -1346 + mu 0 4 842 858 857 841 + f 4 -1369 -1347 1370 1371 + mu 0 4 858 842 843 859 + f 4 -1354 1372 -1365 1373 + mu 0 4 850 849 856 855 + f 4 1374 -1374 -1367 1375 + mu 0 4 854 850 855 857 + f 4 -1370 1376 -1363 -1376 + mu 0 4 857 858 845 854 + f 4 -1350 -1377 -1372 1377 + mu 0 4 846 845 858 859 + f 4 -1358 -1355 -1375 -1362 + mu 0 4 853 851 850 854 + f 4 1378 1379 1380 1381 + mu 0 4 729 860 861 862 + f 4 -1381 1382 1383 1384 + mu 0 4 862 861 863 810 + f 4 -1384 1385 1386 -1293 + mu 0 4 810 863 864 811 + f 4 -1162 1387 1388 -1379 + mu 0 4 729 728 865 860 + f 4 1389 1390 1391 -1386 + mu 0 4 863 866 867 864 + f 4 1392 1393 -1390 -1383 + mu 0 4 861 868 866 863 + f 4 1394 1395 -1393 -1380 + mu 0 4 860 869 868 861 + f 4 1396 -1395 -1389 1397 + mu 0 4 870 869 860 865 + f 4 1398 1399 1400 1401 + mu 0 4 871 872 873 874 + f 4 1402 1403 -1399 1404 + mu 0 4 875 876 872 871 + f 4 1405 1406 -1403 1407 + mu 0 4 877 878 876 875 + f 4 1408 -1406 1409 1410 + mu 0 4 879 878 877 880 + f 4 -1391 1411 1412 1413 + mu 0 4 867 866 881 882 + f 4 1414 1415 -1412 -1394 + mu 0 4 868 883 881 866 + f 4 1416 1417 -1415 -1396 + mu 0 4 869 884 883 868 + f 4 -1417 -1397 1418 1419 + mu 0 4 884 869 870 885 + f 4 1420 -1402 1421 -1413 + mu 0 4 881 871 874 882 + f 4 -1416 1422 -1405 -1421 + mu 0 4 881 883 875 871 + f 4 -1418 1423 -1408 -1423 + mu 0 4 883 884 877 875 + f 4 1424 -1410 -1424 -1420 + mu 0 4 885 880 877 884 + f 4 1425 1426 1427 1428 + mu 0 4 886 887 888 889 + f 4 1429 1430 1431 -1429 + mu 0 4 889 890 891 886 + f 4 1432 1433 1434 -1431 + mu 0 4 890 892 893 891 + f 4 1435 1436 1437 -1434 + mu 0 4 892 894 895 893 + f 4 1438 1439 1440 1441 + mu 0 4 896 897 898 888 + f 4 1442 1443 1444 -1440 + mu 0 4 897 899 894 898 + f 4 1445 -1442 -1427 1446 + mu 0 4 900 896 888 887 + f 4 -1437 -1444 1447 1448 + mu 0 4 895 894 899 901 + f 4 -1400 1449 -1446 1450 + mu 0 4 873 872 896 900 + f 4 1451 -1439 -1450 -1404 + mu 0 4 876 897 896 872 + f 4 1452 -1443 -1452 -1407 + mu 0 4 878 899 897 876 + f 4 -1453 -1409 1453 -1448 + mu 0 4 899 878 879 901 + f 4 -1441 1454 -1430 -1428 + mu 0 4 888 898 890 889 + f 4 -1455 -1445 -1436 -1433 + mu 0 4 890 898 894 892 + f 4 1455 1456 -1175 1457 + mu 0 4 902 903 722 739 + f 4 1458 1459 -1173 -1178 + mu 0 4 741 904 738 724 + f 4 1460 -1459 -1181 1461 + mu 0 4 905 904 741 743 + f 4 1462 1463 1464 -1458 + mu 0 4 739 906 907 902 + f 4 1465 1466 -1463 -1174 + mu 0 4 738 908 906 739 + f 4 1467 1468 -1466 -1460 + mu 0 4 904 909 908 738 + f 4 1469 -1468 -1461 1470 + mu 0 4 910 909 904 905 + f 4 -1464 1471 1472 1473 + mu 0 4 907 906 911 912 + f 4 1474 1475 -1472 -1467 + mu 0 4 908 913 911 906 + f 4 1476 1477 -1475 -1469 + mu 0 4 909 914 913 908 + f 4 -1477 -1470 1478 1479 + mu 0 4 914 909 910 915 + f 4 1480 1481 1482 -1473 + mu 0 4 911 916 917 912 + f 4 -1476 1483 1484 -1481 + mu 0 4 911 913 918 916 + f 4 -1478 1485 1486 -1484 + mu 0 4 913 914 919 918 + f 4 1487 1488 -1486 -1480 + mu 0 4 915 920 919 914 + f 4 1489 1490 1491 -1482 + mu 0 4 916 921 922 917 + f 4 1492 -1490 -1485 1493 + mu 0 4 923 921 916 918 + f 4 1494 1495 -1494 -1487 + mu 0 4 919 924 923 918 + f 4 1496 -1495 -1489 1497 + mu 0 4 925 924 919 920 + f 4 1498 1499 1500 1501 + mu 0 4 926 927 928 929 + f 4 1502 1503 1504 -1502 + mu 0 4 929 930 931 926 + f 4 1505 1506 1507 -1504 + mu 0 4 930 932 933 931 + f 4 1508 1509 1510 -1507 + mu 0 4 932 934 935 933 + f 4 1511 1512 1513 1514 + mu 0 4 927 936 937 938 + f 4 1515 1516 -1500 -1515 + mu 0 4 938 939 928 927 + f 4 1517 1518 -1510 1519 + mu 0 4 940 941 935 934 + f 4 1520 -1513 1521 -1519 + mu 0 4 941 937 936 935 + f 4 -1491 1522 -1518 1523 + mu 0 4 922 921 941 940 + f 4 1524 -1521 -1523 -1493 + mu 0 4 923 937 941 921 + f 4 1525 -1514 -1525 -1496 + mu 0 4 924 938 937 923 + f 4 -1526 -1497 1526 -1516 + mu 0 4 938 924 925 939 + f 4 1527 -1512 -1499 -1505 + mu 0 4 931 936 927 926 + f 4 -1522 -1528 -1508 -1511 + mu 0 4 935 936 931 933 + f 4 1528 1529 1530 1531 + mu 0 4 942 943 944 945 + f 4 1532 1533 1534 -1532 + mu 0 4 945 946 947 942 + f 4 1535 -1534 1536 1537 + mu 0 4 948 947 946 949 + f 4 1538 1539 1540 1541 + mu 0 4 950 951 952 953 + f 4 1542 -1542 1543 1544 + mu 0 4 954 950 953 955 + f 4 1545 1546 1547 1548 + mu 0 4 954 956 957 958 + f 4 1549 1550 1551 1552 + mu 0 4 959 960 951 958 + f 4 1553 1554 1555 1556 + mu 0 4 961 962 963 959 + f 4 1557 1558 -1550 -1556 + mu 0 4 963 964 960 959 + f 4 1559 1560 1561 -1559 + mu 0 4 964 965 966 960 + f 4 -1540 -1551 -1562 1562 + mu 0 4 952 951 960 966 + f 4 -1557 -1553 -1548 1563 + mu 0 4 961 959 958 957 + f 4 1564 1565 1566 -1564 + mu 0 4 957 967 968 969 + f 4 -1547 1567 1568 -1565 + mu 0 4 957 956 970 967 + f 4 1569 -1555 1570 -1529 + mu 0 4 942 963 962 943 + f 4 -1535 1571 -1558 -1570 + mu 0 4 942 947 964 963 + f 4 -1560 -1572 -1536 1572 + mu 0 4 965 964 947 948 + f 4 -1546 -1545 1573 -1568 + mu 0 4 956 954 955 970 + f 4 -1552 -1539 -1543 -1549 + mu 0 4 958 951 950 954 + f 4 1574 1575 -1146 1576 + mu 0 4 971 972 716 715 + f 4 1577 1578 1579 -1538 + mu 0 4 973 974 975 976 + f 4 1580 1581 1582 1583 + mu 0 4 977 978 979 980 + f 4 1584 1585 1586 1587 + mu 0 4 981 982 979 983 + f 4 1588 1589 1590 1591 + mu 0 4 984 985 986 983 + f 4 1592 1593 1594 1595 + mu 0 4 987 988 989 990 + f 4 1596 1597 1598 1599 + mu 0 4 991 989 980 992 + f 4 -1595 -1597 1600 1601 + mu 0 4 990 989 991 993 + f 4 1602 1603 -1585 1604 + mu 0 4 994 995 982 981 + f 4 1605 1606 1607 1608 + mu 0 4 996 997 998 999 + f 4 1609 1610 1611 -1606 + mu 0 4 996 1000 1001 997 + f 3 1612 1613 1614 + mu 0 3 1002 1003 999 + f 3 1615 1616 1617 + mu 0 3 1003 1004 996 + f 4 1618 1619 1620 -1161 + mu 0 4 1005 1006 1007 1008 + f 4 1621 1622 1623 1624 + mu 0 4 1000 1009 1010 1011 + f 4 1625 -1620 1626 -1610 + mu 0 4 996 1007 1006 1000 + f 4 1627 -1613 1628 -1294 + mu 0 4 1012 1003 1002 1013 + f 4 1629 1630 1631 1632 + mu 0 4 1014 1015 1016 1017 + f 3 1633 1634 -1627 + mu 0 3 1006 1018 1000 + f 3 1635 -1624 1636 + mu 0 3 1019 1011 1010 + f 4 1637 -1636 1638 1639 + mu 0 4 1020 1011 1019 1021 + f 4 1640 1641 1642 -1638 + mu 0 4 1020 1022 1023 1011 + f 4 -1601 1643 1644 -1187 + mu 0 4 993 991 1024 1025 + f 4 1645 1646 1647 1648 + mu 0 4 1026 1027 1001 1023 + f 4 -1645 1649 1650 -1195 + mu 0 4 1025 1024 1022 1028 + f 4 1651 -1649 -1642 -1650 + mu 0 4 1024 1026 1023 1022 + f 4 1652 1653 1654 -1169 + mu 0 4 1029 1009 1030 1031 + f 4 1655 1656 -1619 -1224 + mu 0 4 1032 1033 1006 1005 + f 4 1657 -1640 1658 -1180 + mu 0 4 1034 1020 1021 1035 + f 4 1659 1660 1661 -1637 + mu 0 4 1010 1036 1037 1019 + f 4 -1662 1662 1663 -1639 + mu 0 4 1019 1037 1038 1021 + f 4 -1651 -1641 -1658 -1186 + mu 0 4 1028 1022 1020 1034 + f 4 -1648 -1611 -1625 -1643 + mu 0 4 1023 1001 1000 1011 + f 4 1664 1665 1666 1667 + mu 0 4 1039 1040 998 1041 + f 4 1668 1669 -1603 1670 + mu 0 4 1042 1043 995 994 + f 4 1671 -1220 1672 -1665 + mu 0 4 1039 768 767 1040 + f 4 1673 -1605 1674 -1199 + mu 0 4 1044 994 981 751 + f 4 1675 1676 -1671 -1674 + mu 0 4 1044 1045 1042 994 + f 4 1677 1678 -1669 1679 + mu 0 4 1046 1047 1043 1042 + f 4 -1214 1680 -1680 -1677 + mu 0 4 1045 1048 1046 1042 + f 4 1681 -1623 -1653 1682 + mu 0 4 1049 1010 1009 1029 + f 4 1683 1684 1685 1686 + mu 0 4 1050 1051 1033 1052 + f 4 -1684 1687 1688 1689 + mu 0 4 1051 1050 1053 1030 + f 4 1690 -1687 1691 1692 + mu 0 4 1054 1050 1052 1055 + f 4 -1691 1693 1694 -1688 + mu 0 4 1050 1054 1056 1053 + f 4 -1693 1695 1696 1697 + mu 0 4 1054 1055 1057 1058 + f 4 -1694 -1698 1698 1699 + mu 0 4 1056 1054 1058 1059 + f 4 1700 -1697 1701 1702 + mu 0 4 1060 1058 1057 1061 + f 4 -1701 1703 1704 -1699 + mu 0 4 1058 1060 1062 1059 + f 4 1705 1706 1707 -1704 + mu 0 4 1060 1063 1064 1062 + f 4 1708 -1706 -1703 1709 + mu 0 4 1065 1063 1060 1061 + f 4 1710 1711 1712 1713 + mu 0 4 1066 1067 1068 1069 + f 4 -1713 1714 1715 1716 + mu 0 4 1069 1068 1070 1071 + f 4 1717 -1686 -1656 -1228 + mu 0 4 1072 1052 1033 1032 + f 4 -1655 -1689 1718 -1234 + mu 0 4 1031 1030 1053 1073 + f 4 1719 -1692 -1718 -1237 + mu 0 4 1074 1055 1052 1072 + f 4 -1719 -1695 1720 -1241 + mu 0 4 1073 1053 1056 1075 + f 4 1721 -1696 -1720 -1245 + mu 0 4 1076 1057 1055 1074 + f 4 -1721 -1700 1722 -1251 + mu 0 4 1075 1056 1059 1077 + f 4 1723 -1702 -1722 -1255 + mu 0 4 1078 1061 1057 1076 + f 4 -1723 -1705 1724 -1261 + mu 0 4 1077 1059 1062 1079 + f 4 1725 -1715 1726 -1266 + mu 0 4 1080 1070 1068 1081 + f 4 -1727 -1712 1727 -1269 + mu 0 4 1081 1068 1067 1082 + f 4 1728 1729 1730 -1291 + mu 0 4 1083 1064 1071 1084 + f 4 1731 -1710 -1724 -1277 + mu 0 4 1085 1065 1061 1078 + f 4 -1728 -1711 1732 -1272 + mu 0 4 1082 1067 1066 1086 + f 4 -1731 -1716 -1726 -1264 + mu 0 4 1084 1071 1070 1080 + f 4 1733 -1717 -1730 -1707 + mu 0 4 1063 1069 1071 1064 + f 4 -1725 -1708 -1729 -1283 + mu 0 4 1079 1062 1064 1083 + f 4 1734 -1714 -1734 -1709 + mu 0 4 1065 1066 1069 1063 + f 4 -1733 -1735 -1732 -1290 + mu 0 4 1086 1066 1065 1085 + f 4 -1629 1735 1736 -1311 + mu 0 4 1013 1002 1087 1088 + f 4 1737 -1631 1738 -1297 + mu 0 4 1089 1016 1015 1090 + f 4 -1632 1739 1740 1741 + mu 0 4 1017 1016 1091 1092 + f 4 -1741 1742 1743 1744 + mu 0 4 1092 1091 1093 1094 + f 4 -1745 1745 1746 1747 + mu 0 4 1092 1094 1095 1087 + f 4 -1744 1748 1749 1750 + mu 0 4 1094 1093 1096 1097 + f 4 -1751 1751 1752 -1746 + mu 0 4 1094 1097 1098 1095 + f 4 -1750 1753 1754 1755 + mu 0 4 1097 1096 1099 1100 + f 4 -1752 -1756 1756 1757 + mu 0 4 1098 1097 1100 1101 + f 4 -1755 1758 1759 1760 + mu 0 4 1100 1099 1102 1103 + f 4 -1761 1761 1762 -1757 + mu 0 4 1100 1103 1104 1101 + f 4 1763 1764 1765 1766 + mu 0 4 1105 1106 1107 1108 + f 4 -1767 1767 1768 1769 + mu 0 4 1105 1108 1109 1110 + f 4 -1760 1770 1771 1772 + mu 0 4 1103 1102 1111 1112 + f 4 -1773 1773 1774 -1762 + mu 0 4 1103 1112 1113 1104 + f 4 -1772 1775 -1764 1776 + mu 0 4 1112 1111 1106 1105 + f 4 -1774 -1777 -1770 1777 + mu 0 4 1113 1112 1105 1110 + f 4 1778 -1740 -1738 -1307 + mu 0 4 1114 1091 1016 1089 + f 4 1779 -1743 -1779 -1315 + mu 0 4 1115 1093 1091 1114 + f 4 -1737 -1747 1780 -1321 + mu 0 4 1088 1087 1095 1116 + f 4 1781 -1749 -1780 -1324 + mu 0 4 1117 1096 1093 1115 + f 4 -1781 -1753 1782 -1329 + mu 0 4 1116 1095 1098 1118 + f 4 1783 -1754 -1782 -1333 + mu 0 4 1119 1099 1096 1117 + f 4 -1783 -1758 1784 -1338 + mu 0 4 1118 1098 1101 1120 + f 4 1785 -1759 -1784 -1342 + mu 0 4 1121 1102 1099 1119 + f 4 -1785 -1763 1786 -1348 + mu 0 4 1120 1101 1104 1122 + f 4 -1766 1787 -1357 1788 + mu 0 4 1108 1107 1123 1124 + f 4 1789 -1768 -1789 -1361 + mu 0 4 1125 1109 1108 1124 + f 4 -1788 -1765 1790 -1353 + mu 0 4 1123 1107 1106 1126 + f 4 1791 -1771 -1786 -1366 + mu 0 4 1127 1111 1102 1121 + f 4 -1787 -1775 1792 -1371 + mu 0 4 1122 1104 1113 1128 + f 4 -1791 -1776 -1792 -1373 + mu 0 4 1126 1106 1111 1127 + f 4 -1793 -1778 1793 -1378 + mu 0 4 1128 1113 1110 1129 + f 4 -1794 -1769 -1790 -1351 + mu 0 4 1129 1110 1109 1125 + f 4 1794 1795 -1628 -1387 + mu 0 4 1130 1131 1003 1012 + f 4 -1621 1796 1797 -1388 + mu 0 4 1008 1007 1132 1133 + f 4 1798 1799 1800 1801 + mu 0 4 1134 1135 1131 1136 + f 4 -1799 1802 1803 1804 + mu 0 4 1135 1134 1137 1132 + f 4 1805 1806 1807 1808 + mu 0 4 1138 1139 1140 1141 + f 4 -1806 1809 1810 1811 + mu 0 4 1139 1138 1142 1143 + f 4 1812 -1802 1813 1814 + mu 0 4 1144 1134 1136 1145 + f 4 -1813 1815 1816 -1803 + mu 0 4 1134 1144 1146 1137 + f 4 -1815 1817 -1807 1818 + mu 0 4 1144 1145 1140 1139 + f 4 -1816 -1819 -1812 1819 + mu 0 4 1146 1144 1139 1143 + f 4 1820 1821 1822 1823 + mu 0 4 1147 1148 1149 1150 + f 4 1824 -1822 1825 1826 + mu 0 4 1151 1149 1148 1152 + f 4 1827 -1809 1828 -1823 + mu 0 4 1149 1138 1141 1150 + f 4 -1828 -1825 1829 -1810 + mu 0 4 1138 1149 1151 1142 + f 4 1830 1831 1832 -1821 + mu 0 4 1147 1153 1154 1148 + f 4 -1833 1833 1834 -1826 + mu 0 4 1148 1154 1155 1152 + f 4 1835 -1801 -1795 -1392 + mu 0 4 1156 1136 1131 1130 + f 4 -1798 -1804 1836 -1398 + mu 0 4 1133 1132 1137 1157 + f 4 1837 -1808 1838 -1401 + mu 0 4 1158 1141 1140 1159 + f 4 1839 -1811 1840 -1411 + mu 0 4 1160 1143 1142 1161 + f 4 1841 -1814 -1836 -1414 + mu 0 4 1162 1145 1136 1156 + f 4 -1837 -1817 1842 -1419 + mu 0 4 1157 1137 1146 1163 + f 4 -1839 -1818 -1842 -1422 + mu 0 4 1159 1140 1145 1162 + f 4 -1843 -1820 -1840 -1425 + mu 0 4 1163 1146 1143 1160 + f 4 1843 -1832 1844 -1432 + mu 0 4 1164 1154 1153 1165 + f 4 1845 -1834 -1844 -1435 + mu 0 4 1166 1155 1154 1164 + f 4 1846 -1824 1847 -1447 + mu 0 4 1167 1147 1150 1168 + f 4 -1848 -1829 -1838 -1451 + mu 0 4 1168 1150 1141 1158 + f 4 -1841 -1830 1848 -1454 + mu 0 4 1161 1142 1151 1169 + f 4 -1845 -1831 -1847 -1426 + mu 0 4 1165 1153 1147 1167 + f 4 1849 -1835 -1846 -1438 + mu 0 4 1170 1152 1155 1166 + f 4 -1849 -1827 -1850 -1449 + mu 0 4 1169 1151 1152 1170 + f 4 1850 -1661 1851 1852 + mu 0 4 1171 1037 1036 1172 + f 4 -1851 1853 1854 -1663 + mu 0 4 1037 1171 1173 1038 + f 4 1855 -1853 1856 1857 + mu 0 4 1174 1171 1172 1175 + f 4 -1856 1858 1859 -1854 + mu 0 4 1171 1174 1176 1173 + f 4 -1858 1860 1861 1862 + mu 0 4 1174 1175 1177 1178 + f 4 -1859 -1863 1863 1864 + mu 0 4 1176 1174 1178 1179 + f 4 1865 -1862 1866 1867 + mu 0 4 1180 1178 1177 1181 + f 4 -1866 1868 1869 -1864 + mu 0 4 1178 1180 1182 1179 + f 4 1870 1871 1872 1873 + mu 0 4 1183 1184 1185 1186 + f 4 1874 1875 1876 -1872 + mu 0 4 1184 1187 1188 1185 + f 4 1877 1878 1879 -1877 + mu 0 4 1188 1189 1190 1185 + f 4 -1880 1880 1881 -1873 + mu 0 4 1185 1190 1191 1186 + f 4 1882 -1868 1883 -1875 + mu 0 4 1184 1180 1181 1187 + f 4 -1883 -1871 1884 -1869 + mu 0 4 1180 1184 1183 1182 + f 4 -1659 -1664 1885 -1462 + mu 0 4 1035 1021 1038 1192 + f 4 1886 -1852 1887 -1465 + mu 0 4 1193 1172 1036 1194 + f 4 -1886 -1855 1888 -1471 + mu 0 4 1192 1038 1173 1195 + f 4 1889 -1857 -1887 -1474 + mu 0 4 1196 1175 1172 1193 + f 4 -1889 -1860 1890 -1479 + mu 0 4 1195 1173 1176 1197 + f 4 1891 -1861 -1890 -1483 + mu 0 4 1198 1177 1175 1196 + f 4 -1891 -1865 1892 -1488 + mu 0 4 1197 1176 1179 1199 + f 4 1893 -1867 -1892 -1492 + mu 0 4 1200 1181 1177 1198 + f 4 -1893 -1870 1894 -1498 + mu 0 4 1199 1179 1182 1201 + f 4 1895 -1874 1896 -1517 + mu 0 4 1202 1183 1186 1203 + f 4 1897 -1876 1898 -1520 + mu 0 4 1204 1188 1187 1205 + f 4 1899 -1878 -1898 -1509 + mu 0 4 1206 1189 1188 1204 + f 4 -1897 -1882 1900 -1501 + mu 0 4 1203 1186 1191 1207 + f 4 -1899 -1884 -1894 -1524 + mu 0 4 1205 1187 1181 1200 + f 4 -1895 -1885 -1896 -1527 + mu 0 4 1201 1182 1183 1202 + f 4 1901 1902 1903 1904 + mu 0 4 1208 1209 1210 1211 + f 4 1905 -1579 1906 -1902 + mu 0 4 1208 975 974 1209 + f 4 1907 -1904 1908 1909 + mu 0 4 1212 1211 1210 1213 + f 4 -1905 1910 1911 1912 + mu 0 4 1208 1211 1214 1215 + f 4 1913 1914 -1906 -1913 + mu 0 4 1215 1216 975 1208 + f 4 1915 1916 1917 1918 + mu 0 4 968 1217 1214 1218 + f 4 -1912 -1917 1919 1920 + mu 0 4 1215 1214 1217 1219 + f 4 1921 1922 -1914 -1921 + mu 0 4 1219 1220 1216 1215 + f 4 -1920 1923 1924 1925 + mu 0 4 1219 1217 1221 1222 + f 4 1926 -1924 -1916 -1566 + mu 0 4 967 1221 1217 968 + f 4 1927 1928 -1922 -1926 + mu 0 4 1222 1223 1220 1219 + f 4 -1925 1929 1930 1931 + mu 0 4 1222 1221 1224 1225 + f 4 1932 -1930 -1927 -1569 + mu 0 4 970 1224 1221 967 + f 4 1933 1934 -1928 -1932 + mu 0 4 1225 1226 1223 1222 + f 4 -1580 -1915 1935 -1573 + mu 0 4 976 975 1216 1227 + f 4 1936 -1935 1937 -1541 + mu 0 4 1228 1223 1226 1229 + f 4 -1544 -1938 -1934 1938 + mu 0 4 1230 1229 1226 1225 + f 4 -1567 -1919 1939 -1554 + mu 0 4 969 968 1218 1231 + f 4 -1936 -1923 1940 -1561 + mu 0 4 1227 1216 1220 1232 + f 4 -1941 -1929 -1937 -1563 + mu 0 4 1232 1220 1223 1228 + f 4 -1940 1941 1942 -1571 + mu 0 4 1231 1218 1212 1233 + f 4 -1943 -1910 1943 -1530 + mu 0 4 1233 1212 1213 1234 + f 4 -1583 1944 1945 -1599 + mu 0 4 980 979 1235 992 + f 4 1946 -1144 -1182 1947 + mu 0 4 756 714 713 723 + f 3 1948 -1209 1949 + mu 0 3 971 760 759 + f 4 -1644 -1600 1950 -1652 + mu 0 4 1024 991 992 1026 + f 4 -1301 1951 1952 1953 + mu 0 4 818 816 719 718 + f 3 1954 -1306 -1302 + mu 0 3 818 809 817 + f 4 -1954 -1148 1955 1956 + mu 0 4 818 718 717 755 + f 4 -1951 -1946 1957 -1646 + mu 0 4 1026 992 1235 1027 + f 4 -1956 -1154 -1947 -1201 + mu 0 4 755 717 714 756 + f 4 -1457 -1683 -1172 1958 + mu 0 4 722 903 734 737 + f 4 1959 1960 -1612 -1647 + mu 0 4 1027 1236 997 1001 + f 4 -1958 1961 1962 -1960 + mu 0 4 1027 1235 982 1236 + f 4 -1939 -1931 -1933 -1574 + mu 0 4 1230 1225 1224 970 + f 4 1963 -1596 1964 -1135 + mu 0 4 705 1237 1238 706 + f 4 -1587 -1582 1965 -1592 + mu 0 4 983 979 978 984 + f 3 -1586 -1962 -1945 + mu 0 3 979 982 1235 + f 4 1966 -1584 -1598 -1594 + mu 0 4 988 977 980 989 + f 4 1967 -1679 1968 1969 + mu 0 4 1039 1043 1047 1239 + f 4 1970 -1670 -1968 -1668 + mu 0 4 1041 995 1043 1039 + f 4 -1198 -1207 -1215 -1676 + mu 0 4 754 753 757 763 + f 4 -1206 -1218 1971 -1212 + mu 0 4 757 720 765 761 + f 4 -1901 -1881 1972 -1503 + mu 0 4 1207 1191 1190 1240 + f 4 -1973 -1879 -1900 -1506 + mu 0 4 1240 1190 1189 1206 + f 4 1973 1974 1975 -1590 + mu 0 4 985 1241 758 986 + f 4 -1196 1976 -1976 -1211 + mu 0 4 752 751 986 758 + f 4 -1963 -1604 -1971 1977 + mu 0 4 1236 982 995 1041 + f 4 1978 1979 -1192 -1142 + mu 0 4 711 1242 750 712 + f 4 -1576 1980 -1979 -1153 + mu 0 4 716 972 1242 711 + f 4 1981 1982 -1949 -1577 + mu 0 4 715 721 760 971 + f 4 -1210 -1983 -1205 -1197 + mu 0 4 752 760 721 753 + f 4 1983 1984 1985 -1139 + mu 0 4 1243 1244 1245 1246 + f 4 -1966 1986 1987 1988 + mu 0 4 1247 1248 1249 1250 + f 4 1989 1990 -1974 1991 + mu 0 4 1251 1252 1253 1254 + f 4 1992 -1964 1993 1994 + mu 0 4 1255 1256 1257 1258 + f 4 -1138 -1986 1995 -1994 + mu 0 4 1257 1246 1245 1258 + f 4 -1988 1996 -1121 1997 + mu 0 4 1250 1249 704 677 + f 4 1998 -1098 1999 -1995 + mu 0 4 1258 694 693 1255 + f 4 -1054 -1041 2000 -2000 + mu 0 4 659 650 649 1259 + f 4 -2001 2001 -1593 -1993 + mu 0 4 1259 649 1260 1261 + f 4 2002 -1967 -2002 -1040 + mu 0 4 648 1262 1260 649 + f 4 2003 -1992 -1589 -1989 + mu 0 4 1250 1251 1254 1247 + f 4 -1120 -1997 2004 -1039 + mu 0 4 647 704 1249 648 + f 4 -2005 -1987 -1581 -2003 + mu 0 4 648 1249 1248 1262 + f 4 -1990 2005 -1081 2006 + mu 0 4 1252 1251 676 680 + f 4 -2006 -2004 -1998 -1077 + mu 0 4 676 1251 1250 677 + f 4 2007 -1985 2008 -1112 + mu 0 4 697 1245 1244 665 + f 4 -1996 -2008 -1103 -1999 + mu 0 4 1258 1245 697 694 + f 4 -1102 2009 2010 -2007 + mu 0 4 680 666 1263 1252 + f 4 -2011 2011 2012 -1991 + mu 0 4 1252 1263 1264 1253 + f 4 -2013 2013 -1208 -1975 + mu 0 4 1241 1265 759 758 + f 4 2014 2015 2016 2017 + mu 0 4 1266 1267 641 1268 + f 4 2018 -2015 2019 2020 + mu 0 4 1269 1267 1266 1270 + f 4 2021 2022 2023 2024 + mu 0 4 1271 1272 1273 1274 + f 3 2025 2026 2027 + mu 0 3 1275 1276 1277 + f 4 2028 2029 2030 2031 + mu 0 4 1278 1279 1280 1281 + f 4 2032 2033 2034 2035 + mu 0 4 1282 1283 1284 1285 + f 4 -2025 2036 2037 2038 + mu 0 4 1271 1274 1286 1287 + f 4 -2027 2039 2040 2041 + mu 0 4 1288 1289 1290 1291 + f 4 2042 2043 -2036 2044 + mu 0 4 1292 1293 1282 1285 + f 4 2045 2046 2047 2048 + mu 0 4 1294 1295 1296 1297 + f 4 2049 2050 2051 -2022 + mu 0 4 1271 1298 1281 1272 + f 4 2052 2053 -973 2054 + mu 0 4 1299 1300 1301 1302 + f 4 2055 -2023 2056 2057 + mu 0 4 1303 1273 1272 1304 + f 4 2058 -2053 2059 2060 + mu 0 4 1305 1300 1299 1306 + f 4 2061 -2046 2062 2063 + mu 0 4 1307 1308 1309 1310 + f 4 -2034 2064 2065 2066 + mu 0 4 1284 1283 1311 1298 + f 4 -2066 2067 -2032 -2051 + mu 0 4 1298 1311 1278 1281 + f 4 2068 2069 2070 2071 + mu 0 4 1312 1313 1314 1315 + f 3 2072 2073 2074 + mu 0 3 1316 1317 1318 + f 4 2075 2076 2077 2078 + mu 0 4 1319 1320 1321 1322 + f 4 -1072 2079 2080 2081 + mu 0 4 668 672 1319 1316 + f 4 -2081 -2079 2082 -2073 + mu 0 4 1316 1319 1322 1317 + f 4 2083 -1067 -2082 2084 + mu 0 4 1323 669 668 1316 + f 4 2085 2086 2087 2088 + mu 0 4 1324 1325 1323 1326 + f 4 2089 2090 2091 2092 + mu 0 4 1327 1328 1329 1330 + f 4 2093 2094 -1047 2095 + mu 0 4 1331 1332 656 655 + f 4 -1110 2096 2097 -2096 + mu 0 4 700 699 1330 1333 + f 4 -1109 2098 -2093 -2097 + mu 0 4 699 687 1327 1330 + f 4 -1115 2099 -2076 -2080 + mu 0 4 672 701 1320 1319 + f 4 2100 -2090 2101 -2086 + mu 0 4 1324 1328 1327 1325 + f 4 -2077 2102 2103 2104 + mu 0 4 1321 1320 1332 1334 + f 4 2105 -2104 -2094 2106 + mu 0 4 1335 1334 1332 1331 + f 4 2107 2108 2109 -2070 + mu 0 4 1336 1337 1338 1339 + f 4 -2057 -2052 -2031 2110 + mu 0 4 1304 1272 1281 1280 + f 4 -2092 2111 -2107 -2098 + mu 0 4 1330 1329 1340 1333 + f 4 2112 -2088 -2085 -2075 + mu 0 4 1318 1326 1323 1316 + f 4 2113 2114 2115 2116 + mu 0 4 1341 1342 1343 1344 + f 4 2117 -2064 2118 -2041 + mu 0 4 1345 1346 1347 1348 + f 4 2119 2120 2121 2122 + mu 0 4 103 1349 1350 1351 + f 4 2123 2124 -2120 -173 + mu 0 4 102 1352 1349 103 + f 4 2125 2126 -191 -2122 + mu 0 4 1350 1353 1354 1351 + f 4 -2127 2127 2128 -170 + mu 0 4 1354 1353 1355 1356 + f 4 2129 2130 2131 2132 + mu 0 4 1357 1358 1359 1360 + f 4 2133 -2067 -2050 -2039 + mu 0 4 1287 1284 1298 1271 + f 4 2134 -2043 2135 2136 + mu 0 4 1361 1293 1292 1362 + f 4 2137 2138 -2109 2139 + mu 0 4 1363 1364 1338 1337 + f 4 -187 -2129 2140 -2133 + mu 0 4 1360 1356 1355 1357 + f 4 -2102 -2099 -1089 2141 + mu 0 4 1325 1327 687 685 + f 4 -2103 -2100 -1130 -2095 + mu 0 4 1332 1320 701 656 + f 4 -1918 -1911 -1908 -1942 + mu 0 4 1218 1214 1211 1212 + f 4 -1888 -1660 -1682 -1456 + mu 0 4 1194 1036 1010 1049 + f 4 2142 2143 -1690 -1654 + mu 0 4 1009 1018 1051 1030 + f 4 2144 2145 -1805 -1797 + mu 0 4 1007 1004 1135 1132 + f 4 -1657 -1685 -2144 -1634 + mu 0 4 1006 1033 1051 1018 + f 4 2146 -1742 -1748 -1736 + mu 0 4 1002 1017 1092 1087 + f 4 -1796 -1800 -2146 -1616 + mu 0 4 1003 1131 1135 1004 + f 4 -1666 2147 2148 -1608 + mu 0 4 998 1040 1014 999 + f 4 -1673 2149 -1630 -2148 + mu 0 4 1040 767 1015 1014 + f 4 -1739 -2150 -1219 2150 + mu 0 4 1090 1015 767 766 + f 4 -2151 -1160 -1952 -1298 + mu 0 4 815 725 719 816 + f 4 2151 -1222 -1672 -1970 + mu 0 4 1239 770 768 1039 + f 4 -1978 -1667 -1607 -1961 + mu 0 4 1236 1041 998 997 + f 4 -1633 -2147 -1615 -2149 + mu 0 4 1014 1017 1002 999 + f 3 -1617 -2145 -1626 + mu 0 3 996 1004 1007 + f 3 -1635 -2143 -1622 + mu 0 3 1000 1018 1009 + f 4 -1965 -1602 -1190 2152 + mu 0 4 706 1238 746 749 + f 4 -978 -998 2153 2154 + mu 0 4 608 607 625 1365 + f 4 2155 2156 2157 2158 + mu 0 4 1366 612 1367 1368 + f 4 -487 2159 2160 -507 + mu 0 4 306 305 1369 278; + setAttr ".fc[1000:1499]" + f 4 -925 2161 -485 -529 + mu 0 4 326 568 304 303 + f 4 -447 -2161 2162 -483 + mu 0 4 279 278 1369 302 + f 4 -350 -324 -393 -332 + mu 0 4 218 185 213 217 + f 4 -400 -212 -399 2163 + mu 0 4 253 138 141 224 + f 4 -1086 -2084 -2087 -2142 + mu 0 4 685 669 1323 1325 + f 4 2164 2165 2166 -1015 + mu 0 4 636 1370 593 633 + f 4 2167 -2165 -1030 -984 + mu 0 4 613 1370 636 614 + f 4 -2017 -1024 -1012 2168 + mu 0 4 1268 641 634 633 + f 4 2169 -2164 -347 -315 + mu 0 4 208 253 224 205 + f 4 -199 2170 -417 2171 + mu 0 4 130 126 251 243 + f 3 2172 -481 2173 + mu 0 3 369 300 301 + f 3 2174 -484 2175 + mu 0 3 453 301 302 + f 4 2176 -853 2177 -2163 + mu 0 4 1369 540 499 302 + f 4 2178 -856 -2177 -2160 + mu 0 4 305 535 540 1369 + f 4 2179 -847 -2179 -486 + mu 0 4 304 532 535 305 + f 4 2180 -926 -2180 -2162 + mu 0 4 568 537 532 304 + f 4 2181 -850 -2181 -924 + mu 0 4 508 506 537 568 + f 4 -2182 -800 2182 -796 + mu 0 4 506 508 313 507 + f 4 -918 -2183 -498 2183 + mu 0 4 419 507 313 311 + f 4 -659 -2184 -495 2184 + mu 0 4 318 419 311 295 + f 4 -504 -2185 -472 2185 + mu 0 4 315 318 295 294 + f 4 -2186 -491 2186 -592 + mu 0 4 315 294 308 373 + f 4 -2187 -494 2187 -598 + mu 0 4 373 308 310 377 + f 4 -610 -2188 -921 2188 + mu 0 4 385 386 566 298 + f 4 -2189 -479 2189 -608 + mu 0 4 385 298 300 361 + f 4 2190 -1537 2191 -1217 + mu 0 4 764 949 946 765 + f 4 -1223 2192 -1578 -2191 + mu 0 4 771 770 974 973 + f 4 -1907 -2193 -2152 2193 + mu 0 4 1209 974 770 1239 + f 4 2194 -1903 -2194 -1969 + mu 0 4 1047 1210 1209 1239 + f 4 -1909 -2195 -1678 2195 + mu 0 4 1213 1210 1047 1046 + f 4 2196 -1944 -2196 -1681 + mu 0 4 1048 1234 1213 1046 + f 4 2197 -1531 -2197 -1213 + mu 0 4 761 945 944 762 + f 4 -1972 -2192 -1533 -2198 + mu 0 4 761 765 946 945 + f 3 -960 2198 -948 + mu 0 3 587 594 585 + f 4 -958 -2166 2199 -950 + mu 0 4 588 593 1370 589 + f 3 -587 -2190 -2173 + mu 0 3 369 361 300 + f 3 -2174 2200 -647 + mu 0 3 369 301 410 + f 3 -721 -2201 -2175 + mu 0 3 453 410 301 + f 3 -2176 -2178 -791 + mu 0 3 453 302 499 + f 3 -852 -860 -788 + mu 0 3 499 539 500 + f 3 2201 -818 -797 + mu 0 3 507 518 505 + f 3 -2202 -920 -817 + mu 0 3 518 507 460 + f 3 2202 -736 -919 + mu 0 3 419 464 457 + f 3 -2203 -661 -733 + mu 0 3 464 419 415 + f 3 2203 -665 -660 + mu 0 3 318 420 416 + f 3 -670 -2204 -503 + mu 0 3 317 420 318 + f 3 -591 -613 -501 + mu 0 3 315 372 316 + f 3 -401 -2170 -394 + mu 0 3 169 253 208 + f 4 -309 -397 2204 2205 + mu 0 4 201 203 1371 1372 + f 4 2206 -306 -2206 2207 + mu 0 4 1373 187 201 1372 + f 4 -289 -2207 2208 2209 + mu 0 4 184 187 1373 204 + f 4 -2210 -311 -356 -322 + mu 0 4 184 204 182 212 + f 4 -2171 -198 2210 -396 + mu 0 4 251 126 129 252 + f 4 -2205 -2211 -327 2211 + mu 0 4 1372 1371 215 214 + f 4 -2212 -415 2212 -2208 + mu 0 4 1372 214 220 1373 + f 4 -310 -2209 -2213 -334 + mu 0 4 96 204 1373 220 + f 3 -2172 -374 -275 + mu 0 3 130 243 179 + f 4 -410 -2123 -190 -168 + mu 0 4 1374 1375 1376 1377 + f 4 -1129 -1082 -1133 -1131 + mu 0 4 692 679 675 702 + f 4 -2010 -1064 -2009 2213 + mu 0 4 1263 666 665 1244 + f 4 -2012 -2214 -1984 2214 + mu 0 4 1264 1263 1244 1243 + f 4 2215 -2014 -2215 -1141 + mu 0 4 710 759 1265 709 + f 4 -1981 2216 -1140 2217 + mu 0 4 1242 972 710 707 + f 4 -1591 -1977 -1675 -1588 + mu 0 4 983 986 751 981 + f 3 -1614 -1618 -1609 + mu 0 3 999 1003 996 + f 4 -1953 -1152 -1982 -1149 + mu 0 4 718 719 721 715 + f 4 -1575 -1950 -2216 -2217 + mu 0 4 972 971 759 710 + f 4 2218 -1980 -2218 -1136 + mu 0 4 706 750 1242 707 + f 3 -2153 -1193 -2219 + mu 0 3 706 749 750 + f 4 -1957 2219 -1292 -1955 + mu 0 4 818 755 810 809 + f 3 2220 -1385 -2220 + mu 0 3 755 862 810 + f 3 -1382 -2221 -1200 + mu 0 3 729 862 755 + f 3 -1202 2221 -1168 + mu 0 3 730 756 731 + f 3 -1204 -2222 2222 + mu 0 3 737 731 756 + f 4 -1959 -2223 -1948 -1155 + mu 0 4 722 737 756 723 + f 3 -1095 -1094 -1127 + mu 0 3 691 688 690 + f 4 -618 -644 2223 -641 + mu 0 4 1378 390 408 1379 + f 4 -2224 -645 -620 -642 + mu 0 4 1379 408 394 393 + f 4 -947 2224 2225 2226 + mu 0 4 587 586 1380 631 + f 4 -2048 -2138 2227 2228 + mu 0 4 1381 1382 1383 1384 + f 4 2229 -2061 2230 -2116 + mu 0 4 1343 1305 1306 1344 + f 4 2231 2232 -1025 -2016 + mu 0 4 1267 1385 642 641 + f 4 2233 -175 -414 -192 + mu 0 4 123 105 104 1386 + f 4 -328 -197 -193 -413 + mu 0 4 1387 215 1388 1389 + f 4 2234 2235 -183 -2131 + mu 0 4 1358 1390 1391 1359 + f 4 2236 -2137 2237 -2115 + mu 0 4 1342 1361 1362 1343 + f 4 2238 -2230 -2238 2239 + mu 0 4 1392 1393 1394 1395 + f 4 -2239 2240 2241 -2059 + mu 0 4 1396 1397 1398 1399 + f 4 -2054 -2242 2242 2243 + mu 0 4 1400 1399 1398 1401 + f 4 -974 -2244 2244 2245 + mu 0 4 1402 1403 1404 1405 + f 3 2246 2247 2248 + mu 0 3 1406 1407 1286 + f 4 -284 -185 -2132 -182 + mu 0 4 110 1408 1409 111 + f 4 -940 2249 -935 2250 + mu 0 4 570 580 577 574 + f 4 -928 -2251 -931 2251 + mu 0 4 571 570 574 573 + f 4 -966 -2252 -964 2252 + mu 0 4 597 571 573 596 + f 4 -1033 -2253 -1007 2253 + mu 0 4 630 597 596 627 + f 4 2254 -1006 -2254 -1001 + mu 0 4 623 618 630 627 + f 4 2255 -990 -2255 -995 + mu 0 4 622 609 618 623 + f 4 -1028 2256 -980 -2256 + mu 0 4 622 643 610 609 + f 4 -2155 2257 -2158 2258 + mu 0 4 608 1365 1368 1367 + f 3 2259 -2157 -986 + mu 0 3 615 1367 612 + f 4 -1020 2260 -1037 2261 + mu 0 4 640 639 617 646 + f 4 -983 -2156 2262 2263 + mu 0 4 613 612 1366 1380 + f 4 -951 2264 -946 -943 + mu 0 4 583 589 586 584 + f 4 -963 -933 -956 2265 + mu 0 4 594 576 575 581 + f 4 -2199 -2266 -944 -945 + mu 0 4 585 594 581 584 + f 4 2266 -1027 2267 -2159 + mu 0 4 1368 643 632 1366 + f 4 -2267 -2258 2268 -2257 + mu 0 4 643 1368 1365 610 + f 4 -2269 -2154 2269 -981 + mu 0 4 610 1365 625 611 + f 4 2270 -1031 -2270 -1000 + mu 0 4 626 644 611 625 + f 4 -1010 -2226 -2263 -2268 + mu 0 4 632 631 1380 1366 + f 3 -1008 -961 2271 + mu 0 3 628 595 587 + f 3 -2167 2272 -2169 + mu 0 3 633 593 1268 + f 4 -2024 2273 2274 2275 + mu 0 4 1274 1273 1270 1410 + f 4 -2021 -2274 -2056 2276 + mu 0 4 1269 1270 1273 1303 + f 4 -2276 2277 -2249 -2037 + mu 0 4 1274 1410 1406 1286 + f 4 -2125 2278 -2029 2279 + mu 0 4 1349 1352 1279 1278 + f 4 2280 -2121 -2280 -2068 + mu 0 4 1311 1350 1349 1278 + f 4 2281 -2126 -2281 -2065 + mu 0 4 1283 1353 1350 1311 + f 4 -2128 -2282 -2033 2282 + mu 0 4 1355 1353 1283 1282 + f 4 2283 -2141 -2283 -2044 + mu 0 4 1293 1357 1355 1282 + f 4 -2130 -2284 -2135 2284 + mu 0 4 1358 1357 1293 1361 + f 4 -2235 -2285 -2237 2285 + mu 0 4 1390 1358 1361 1342 + f 3 -2286 -2114 2286 + mu 0 3 1390 1342 1341 + f 4 2287 2288 -936 2289 + mu 0 4 1411 1412 578 577 + f 4 2290 -959 -955 -2289 + mu 0 4 1412 592 582 578 + f 4 2291 2292 2293 2294 + mu 0 4 1413 1414 1415 1416 + f 4 2295 -972 2296 2297 + mu 0 4 1417 599 602 1418 + f 4 -2294 2298 -2291 2299 + mu 0 4 1416 1415 592 1412 + f 4 2300 -2300 -2288 2301 + mu 0 4 1417 1416 1412 1411 + f 4 -957 -2299 2302 -2273 + mu 0 4 593 592 1415 1268 + f 4 2303 2304 2305 2306 + mu 0 4 1419 1420 1421 1422 + f 4 2307 -2018 -2303 -2293 + mu 0 4 1414 1266 1268 1415 + f 4 2308 -2278 2309 -2292 + mu 0 4 1413 1406 1410 1414 + f 4 -2310 -2275 -2020 -2308 + mu 0 4 1414 1410 1270 1266 + f 4 2310 -2072 2311 -2306 + mu 0 4 1423 1312 1315 1424 + f 4 -2304 2312 -2026 2313 + mu 0 4 1425 1426 1427 1428 + f 4 -2297 -2246 2314 2315 + mu 0 4 1429 1402 1405 1430 + f 4 2316 -2316 2317 2318 + mu 0 4 1431 1432 1433 1434 + f 4 -2309 -2319 2319 -2247 + mu 0 4 1435 1436 1437 1438 + f 4 -2296 -2302 2320 -1022 + mu 0 4 599 1417 1411 591 + f 4 -2321 -2290 -2250 -954 + mu 0 4 591 1411 577 580 + f 4 -2301 -2298 -2317 -2295 + mu 0 4 1416 1417 1418 1413 + f 3 2321 -2232 -2019 + mu 0 3 1269 1385 1267 + f 3 2322 -2200 -2168 + mu 0 3 613 589 1370 + f 4 -989 -2261 2323 -2260 + mu 0 4 615 617 639 1367 + f 4 -2272 -2227 -1009 -1003 + mu 0 4 628 587 631 624 + f 4 -2264 -2225 -2265 -2323 + mu 0 4 613 1380 586 589 + f 3 -1019 -2259 -2324 + mu 0 3 639 608 1367 + f 4 2324 -2314 2325 -2320 + mu 0 4 1437 1425 1428 1438 + f 4 -2326 -2028 2326 -2248 + mu 0 4 1407 1275 1277 1286 + f 4 -2327 -2042 2327 -2038 + mu 0 4 1439 1288 1291 1440 + f 4 2328 -2134 -2328 -2119 + mu 0 4 1347 1441 1442 1348 + f 4 2329 -2035 -2329 -2063 + mu 0 4 1309 1443 1444 1310 + f 4 -2330 -2049 2330 -2045 + mu 0 4 1445 1294 1297 1446 + f 4 -2228 2331 -2240 2332 + mu 0 4 1384 1383 1392 1395 + f 4 -2332 -2140 2333 -2241 + mu 0 4 1397 1363 1337 1398 + f 4 -2243 -2334 -2108 2334 + mu 0 4 1401 1398 1337 1336 + f 4 -2245 -2335 -2069 2335 + mu 0 4 1405 1404 1313 1312 + f 4 -2315 -2336 -2311 2336 + mu 0 4 1430 1405 1312 1423 + f 4 -2325 -2318 -2337 -2305 + mu 0 4 1420 1434 1433 1421 + f 4 -2313 2337 -2113 2338 + mu 0 4 1447 1448 1326 1318 + f 4 2339 -2040 -2339 -2074 + mu 0 4 1317 1449 1447 1318 + f 4 2340 -2118 -2340 -2083 + mu 0 4 1322 1450 1449 1317 + f 4 2341 -2062 -2341 -2078 + mu 0 4 1321 1295 1450 1322 + f 4 -2342 -2105 2342 -2047 + mu 0 4 1295 1321 1334 1296 + f 4 -2139 -2343 -2106 2343 + mu 0 4 1451 1296 1334 1335 + f 4 2344 -2110 -2344 -2112 + mu 0 4 1329 1452 1453 1340 + f 4 2345 -2071 -2345 -2091 + mu 0 4 1328 1454 1452 1329 + f 4 -2312 -2346 -2101 2346 + mu 0 4 1455 1454 1328 1324 + f 4 -2307 -2347 -2089 -2338 + mu 0 4 1448 1455 1324 1326 + f 4 -2331 -2229 -2333 -2136 + mu 0 4 1456 1381 1384 1395 + f 4 2347 2348 2349 2350 + mu 0 4 1457 1458 1459 1460 + f 4 2351 2352 2353 2354 + mu 0 4 1461 1462 1463 1464 + f 4 -176 2355 2356 2357 + mu 0 4 102 105 1465 1466 + f 4 -2351 2358 2359 2360 + mu 0 4 1457 1460 1467 1468 + f 4 -2360 2361 2362 -2352 + mu 0 4 1468 1467 1469 1470 + f 3 -184 2363 2364 + mu 0 3 1471 1472 1473 + f 4 2365 -2353 2366 2367 + mu 0 4 1474 1475 1476 1477 + f 4 -2367 -2363 2368 2369 + mu 0 4 1478 1470 1469 1479 + f 4 -2361 -2355 2370 2371 + mu 0 4 1480 1481 1482 1483 + f 3 -194 2372 2373 + mu 0 3 123 125 1484 + f 4 2374 2375 -196 2376 + mu 0 4 1485 1486 1487 1488 + f 4 -2377 -201 2377 2378 + mu 0 4 1485 1488 1489 1490 + f 4 2379 2380 2381 2382 + mu 0 4 1491 1492 1493 1494 + f 4 -2382 2383 2384 2385 + mu 0 4 1494 1493 1495 1496 + f 4 2386 2387 2388 2389 + mu 0 4 1497 1498 1499 1500 + f 4 2390 2391 2392 2393 + mu 0 4 1501 1499 1495 1502 + f 4 -2391 2394 2395 -2389 + mu 0 4 1499 1501 1503 1500 + f 4 2396 2397 -2393 -2384 + mu 0 4 1493 1504 1502 1495 + f 4 2398 2399 -2397 -2381 + mu 0 4 1492 1505 1504 1493 + f 4 2400 -2385 -2392 -2388 + mu 0 4 1498 1496 1495 1499 + f 4 2401 2402 2403 2404 + mu 0 4 1506 1507 1508 1509 + f 4 2405 2406 2407 2408 + mu 0 4 1510 1511 1512 1513 + f 4 -2402 2409 -2408 2410 + mu 0 4 1507 1506 1513 1512 + f 4 -2410 2411 2412 2413 + mu 0 4 1513 1506 1514 1515 + f 4 -2405 2414 2415 -2412 + mu 0 4 1506 1509 1516 1514 + f 4 2416 2417 2418 -2396 + mu 0 4 1503 1517 1518 1500 + f 4 -2399 2419 -2413 -2416 + mu 0 4 1516 1519 1515 1514 + f 4 -2417 2420 2421 2422 + mu 0 4 1517 1503 1520 1521 + f 4 2423 2424 2425 2426 + mu 0 4 1522 1523 1518 1524 + f 4 2427 -2390 -2419 -2425 + mu 0 4 1523 1497 1500 1518 + f 4 2428 2429 2430 2431 + mu 0 4 1525 1526 1527 1528 + f 4 -2418 -2423 2432 -2426 + mu 0 4 1518 1517 1521 1524 + f 3 2433 2434 2435 + mu 0 3 1529 1530 1531 + f 4 2436 -2436 2437 2438 + mu 0 4 1532 1529 1531 1533 + f 4 2439 -2439 2440 -2431 + mu 0 4 1527 1532 1533 1528 + f 4 -2403 2441 2442 2443 + mu 0 4 1508 1507 1534 1535 + f 4 -2442 -2411 2444 2445 + mu 0 4 1534 1507 1512 1536 + f 4 2446 2447 -2445 -2407 + mu 0 4 1511 1537 1536 1512 + f 4 2448 -2427 2449 -2448 + mu 0 4 1537 1522 1524 1536 + f 4 -2446 -2450 -2433 2450 + mu 0 4 1534 1536 1524 1521 + f 4 -2451 -2422 2451 -2443 + mu 0 4 1534 1521 1520 1535 + f 4 2452 -2369 2453 2454 + mu 0 4 1490 1479 1469 1538 + f 4 -279 2455 -2453 -2378 + mu 0 4 1489 1539 1479 1490 + f 4 2456 2457 -2454 -2362 + mu 0 4 1467 1540 1538 1469 + f 4 2458 -2457 -2359 2459 + mu 0 4 1541 1540 1467 1460 + f 4 -2456 -285 2460 -2370 + mu 0 4 1479 1539 1542 1478 + f 4 2461 2462 2463 2464 + mu 0 4 1543 1544 1545 1546 + f 4 2465 2466 2467 2468 + mu 0 4 1547 1548 1549 1550 + f 4 -2469 2469 2470 2471 + mu 0 4 1547 1550 1551 1552 + f 4 -2468 2472 2473 2474 + mu 0 4 1550 1549 1553 1554 + f 4 2475 2476 2477 2478 + mu 0 4 1555 1556 1557 1558 + f 4 -2463 2479 2480 2481 + mu 0 4 1545 1544 1559 1560 + f 4 -2481 2482 2483 2484 + mu 0 4 1560 1559 1561 1562 + f 4 2485 -2460 -2350 2486 + mu 0 4 1563 1541 1460 1459 + f 4 2487 2488 2489 2490 + mu 0 4 1564 1565 1566 1567 + f 4 2491 2492 2493 2494 + mu 0 4 1568 1569 1566 1525 + f 4 -2490 -2493 2495 2496 + mu 0 4 1567 1566 1569 1570 + f 4 -2465 2497 2498 2499 + mu 0 4 1543 1546 1571 1572 + f 4 -2477 2500 -2485 2501 + mu 0 4 1557 1556 1560 1562 + f 3 2502 2503 2504 + mu 0 3 1573 1574 1575 + f 4 2505 2506 -2496 2507 + mu 0 4 1576 1577 1570 1569 + f 4 2508 2509 -2349 2510 + mu 0 4 1578 1579 1459 1458 + f 4 2511 -2507 2512 2513 + mu 0 4 1580 1570 1577 1581 + f 4 2514 2515 -2497 -2512 + mu 0 4 1580 1582 1567 1570 + f 4 -2516 2516 2517 -2491 + mu 0 4 1567 1582 1554 1564 + f 4 -2475 -2517 2518 -2470 + mu 0 4 1550 1554 1582 1551 + f 4 -2519 -2515 2519 2520 + mu 0 4 1551 1582 1580 1555 + f 4 -2476 -2520 -2514 2521 + mu 0 4 1556 1555 1580 1581 + f 4 -2518 -2474 2522 2523 + mu 0 4 1564 1554 1553 1583 + f 4 -2501 -2522 2524 -2482 + mu 0 4 1560 1556 1581 1545 + f 4 -2525 -2513 2525 -2464 + mu 0 4 1545 1581 1577 1546 + f 4 2526 2527 -2502 2528 + mu 0 4 1584 1585 1586 1587 + f 4 -2459 2529 2530 2531 + mu 0 4 1540 1541 1572 1588 + f 4 2532 2533 -2529 -2484 + mu 0 4 1589 1590 1584 1587 + f 4 2534 -2531 -2499 2535 + mu 0 4 1591 1588 1572 1571 + f 4 2536 2537 -2478 -2528 + mu 0 4 1585 1592 1593 1586 + f 3 2538 -2466 2539 + mu 0 3 1594 1595 1596 + f 4 2540 -2540 -2472 2541 + mu 0 4 1531 1594 1596 1597 + f 4 2542 2543 -2535 2544 + mu 0 4 1598 1599 1588 1591 + f 4 2545 -2543 2546 2547 + mu 0 4 1600 1599 1598 1601 + f 4 -2544 2548 -2458 -2532 + mu 0 4 1588 1599 1538 1540 + f 4 -2546 2549 2550 -2549 + mu 0 4 1599 1600 1602 1538 + f 4 2551 2552 -2495 -2432 + mu 0 4 1528 1603 1568 1525 + f 4 2553 2554 -2552 -2441 + mu 0 4 1533 1604 1603 1528 + f 4 2555 -2545 2556 2557 + mu 0 4 1605 1598 1591 1606 + f 4 2558 -2558 2559 -2553 + mu 0 4 1603 1605 1606 1568 + f 4 2560 -2559 -2555 2561 + mu 0 4 1607 1605 1603 1604 + f 4 -2547 -2556 -2561 2562 + mu 0 4 1601 1598 1605 1607 + f 4 2563 2564 -2420 -2380 + mu 0 4 1608 1609 1515 1519 + f 4 2565 -2409 -2414 -2565 + mu 0 4 1609 1510 1513 1515 + f 3 -2541 -2435 2566 + mu 0 3 1594 1531 1530 + f 4 -2557 -2536 2567 2568 + mu 0 4 1606 1591 1571 1576 + f 4 -2560 -2569 -2508 -2492 + mu 0 4 1568 1606 1576 1569 + f 4 -2494 -2489 2569 -2429 + mu 0 4 1525 1566 1565 1526 + f 4 2570 2571 2572 -2533 + mu 0 4 1589 1610 1611 1590 + f 4 2573 -2523 2574 -2401 + mu 0 4 1498 1583 1553 1496 + f 4 -2428 2575 2576 2577 + mu 0 4 1497 1523 1526 1612 + f 4 -2430 -2576 -2424 2578 + mu 0 4 1527 1526 1523 1522 + f 4 -2579 -2449 2579 -2440 + mu 0 4 1527 1522 1537 1532 + f 4 -2437 -2580 -2447 2580 + mu 0 4 1529 1532 1537 1511 + f 4 -2434 -2581 -2406 2581 + mu 0 4 1530 1529 1511 1510 + f 4 -2567 -2582 -2566 2582 + mu 0 4 1594 1530 1510 1609 + f 4 2583 -2539 -2583 -2564 + mu 0 4 1608 1595 1594 1609 + f 4 -2467 -2584 -2383 2584 + mu 0 4 1549 1548 1491 1494 + f 4 -2473 -2585 -2386 -2575 + mu 0 4 1553 1549 1494 1496 + f 4 2585 -2511 2586 -2357 + mu 0 4 1465 1613 1614 1466 + f 4 -2586 2587 2588 2589 + mu 0 4 1615 1616 1617 1618 + f 4 -2590 -2503 2590 -2509 + mu 0 4 1578 1574 1573 1579 + f 4 -2573 2591 -2550 2592 + mu 0 4 1590 1611 1602 1600 + f 4 -2534 -2593 -2548 2593 + mu 0 4 1584 1590 1600 1601 + f 4 -2527 -2594 -2563 2594 + mu 0 4 1585 1584 1601 1607 + f 4 -2537 -2595 -2562 2595 + mu 0 4 1592 1585 1607 1604 + f 4 2596 -2596 -2554 -2438 + mu 0 4 1531 1592 1604 1533 + f 4 -2538 -2597 -2542 2597 + mu 0 4 1593 1592 1531 1597 + f 4 -2479 -2598 -2471 -2521 + mu 0 4 1555 1558 1552 1551 + f 4 2598 2599 2600 2601 + mu 0 4 1619 1620 1621 1622 + f 4 2602 2603 2604 2605 + mu 0 4 1623 1624 1625 1626 + f 4 2606 2607 2608 2609 + mu 0 4 1627 1628 1629 1621 + f 4 2610 2611 2612 2613 + mu 0 4 1630 1631 1632 1633 + f 4 2614 2615 -2603 2616 + mu 0 4 1632 1634 1624 1623 + f 4 2617 2618 -2607 2619 + mu 0 4 1635 1636 1628 1627 + f 4 -2611 2620 -2620 2621 + mu 0 4 1631 1630 1635 1627 + f 4 2622 -2616 2623 2624 + mu 0 4 1637 1624 1634 1638 + f 4 -2604 -2623 2625 2626 + mu 0 4 1625 1624 1637 1639 + f 4 -2606 2627 2628 2629 + mu 0 4 1623 1626 1640 1641 + f 4 2630 2631 -2608 2632 + mu 0 4 1642 1643 1644 1645 + f 4 2633 -2631 2634 2635 + mu 0 4 1646 1643 1642 1647 + f 4 2636 2637 -2635 2638 + mu 0 4 1648 1649 1647 1642 + f 4 2639 2640 2641 -2638 + mu 0 4 1649 1650 1651 1647 + f 4 2642 -2628 2643 -2641 + mu 0 4 1650 1640 1626 1651 + f 4 2644 -2636 -2642 2645 + mu 0 4 1652 1646 1647 1651 + f 4 -2605 2646 -2646 -2644 + mu 0 4 1626 1625 1652 1651 + f 4 2647 2648 2649 2650 + mu 0 4 1653 1654 1655 1656 + f 4 2651 2652 2653 2654 + mu 0 4 1657 1658 1622 1659 + f 4 2655 2656 -2602 -2653 + mu 0 4 1658 1660 1619 1622 + f 4 2657 2658 2659 -2657 + mu 0 4 1660 1661 1638 1619 + f 4 2660 2661 2662 2663 + mu 0 4 1662 1663 1664 1665 + f 4 2664 2665 2666 -2648 + mu 0 4 1653 1666 1667 1654 + f 4 2667 2668 2669 -2666 + mu 0 4 1666 1668 1669 1667 + f 4 -2650 2670 2671 2672 + mu 0 4 1656 1655 1670 1671 + f 4 -2672 2673 2674 2675 + mu 0 4 1671 1670 1672 1673 + f 4 2676 2677 2678 2679 + mu 0 4 1674 1675 1676 1677 + f 4 -2626 2680 2681 2682 + mu 0 4 1639 1637 1663 1678 + f 4 -2682 -2661 2683 2684 + mu 0 4 1678 1663 1662 1679 + f 4 -2670 2685 2686 2687 + mu 0 4 1667 1669 1680 1681 + f 4 2688 2689 -2632 2690 + mu 0 4 1682 1683 1644 1643 + f 4 2691 2692 2693 2694 + mu 0 4 1684 1685 1686 1687 + f 4 2695 -2691 -2634 2696 + mu 0 4 1688 1682 1643 1646 + f 4 -2696 2697 2698 2699 + mu 0 4 1682 1688 1689 1680 + f 4 2700 -2697 -2645 2701 + mu 0 4 1690 1688 1646 1652 + f 4 -2701 2702 2703 -2698 + mu 0 4 1688 1690 1691 1689 + f 4 2704 -2684 2705 -2694 + mu 0 4 1686 1679 1662 1687 + f 4 -2688 2706 2707 -2667 + mu 0 4 1667 1681 1692 1654 + f 4 -2707 2708 2709 2710 + mu 0 4 1692 1681 1693 1694 + f 4 -2710 2711 2712 2713 + mu 0 4 1694 1693 1695 1696 + f 4 -2671 2714 2715 2716 + mu 0 4 1670 1655 1697 1698 + f 4 -2716 2717 -2711 2718 + mu 0 4 1698 1697 1692 1694 + f 4 -2674 -2717 2719 2720 + mu 0 4 1672 1670 1698 1699 + f 4 2721 -2720 -2719 -2714 + mu 0 4 1696 1699 1698 1694 + f 4 -2692 2722 -2721 2723 + mu 0 4 1685 1684 1672 1699 + f 4 -2705 2724 -2713 2725 + mu 0 4 1679 1686 1696 1695 + f 4 2726 -2683 2727 -2703 + mu 0 4 1690 1639 1678 1691 + f 4 -2627 -2727 -2702 -2647 + mu 0 4 1625 1639 1690 1652 + f 4 2728 2729 2730 2731 + mu 0 4 1700 1701 1702 1703 + f 4 2732 -2731 2733 2734 + mu 0 4 1704 1703 1702 1705 + f 4 2735 2736 2737 2738 + mu 0 4 1706 1707 1708 1709 + f 4 2739 2740 2741 -2738 + mu 0 4 1708 1710 1711 1709 + f 4 2742 2743 2744 2745 + mu 0 4 1712 1713 1714 1715 + f 4 2746 2747 -2743 2748 + mu 0 4 1716 1717 1713 1712 + f 3 2749 2750 2751 + mu 0 3 1718 1719 1720 + f 4 2752 2753 2754 2755 + mu 0 4 1721 1722 1723 1724 + f 4 2756 2757 2758 2759 + mu 0 4 1677 1725 1726 1727 + f 4 2760 -2750 2761 2762 + mu 0 4 1728 1719 1718 1729 + f 4 -2679 2763 2764 -2757 + mu 0 4 1677 1676 1730 1725 + f 4 2765 2766 2767 2768 + mu 0 4 1723 1731 1674 1732 + f 4 -2755 -2769 2769 2770 + mu 0 4 1724 1723 1732 1733 + f 4 -2762 2771 -2765 2772 + mu 0 4 1729 1718 1734 1735 + f 4 2773 2774 -2766 -2754 + mu 0 4 1722 1736 1731 1723 + f 4 -2772 2775 2776 -2758 + mu 0 4 1734 1718 1737 1738 + f 4 2777 2778 2779 2780 + mu 0 4 1720 1739 1740 1741 + f 4 -2779 2781 -2753 2782 + mu 0 4 1740 1739 1742 1743 + f 4 2783 -2778 -2751 2784 + mu 0 4 1744 1739 1720 1719 + f 4 -2784 2785 -2774 -2782 + mu 0 4 1739 1744 1745 1742 + f 4 -2752 -2781 2786 -2776 + mu 0 4 1718 1720 1741 1737 + f 4 -2770 2787 -2760 2788 + mu 0 4 1733 1732 1677 1727 + f 4 2789 2790 -2756 2791 + mu 0 4 1746 1747 1721 1724 + f 4 -2790 2792 2793 2794 + mu 0 4 1748 1749 1750 1751 + f 4 2795 2796 2797 2798 + mu 0 4 1752 1753 1754 1755 + f 4 -2797 2799 -2759 2800 + mu 0 4 1756 1757 1727 1726 + f 4 2801 -2801 -2777 2802 + mu 0 4 1704 1758 1738 1737 + f 4 -2780 2803 -2732 2804 + mu 0 4 1741 1740 1700 1703 + f 4 2805 -2804 -2783 -2791 + mu 0 4 1748 1700 1740 1743 + f 4 -2806 -2795 2806 -2729 + mu 0 4 1700 1748 1751 1701 + f 4 2807 -2798 -2802 -2735 + mu 0 4 1705 1755 1758 1704 + f 4 2808 2809 2810 2811 + mu 0 4 1759 1760 1761 1762 + f 4 -2787 -2805 -2733 -2803 + mu 0 4 1737 1741 1703 1704 + f 4 2812 -2792 -2771 2813 + mu 0 4 1763 1746 1724 1733 + f 4 2814 -2814 -2789 -2800 + mu 0 4 1757 1763 1733 1727 + f 4 2815 -2793 -2813 2816 + mu 0 4 1764 1765 1746 1763 + f 4 2817 -2817 -2815 -2796 + mu 0 4 1766 1764 1763 1757 + f 4 2818 2819 -2730 -2807 + mu 0 4 1751 1767 1702 1701 + f 4 2820 -2808 -2734 -2820 + mu 0 4 1767 1755 1705 1702 + f 4 2821 2822 2823 2824 + mu 0 4 1768 1769 1770 1728 + f 3 -2763 2825 2826 + mu 0 3 1728 1729 1771 + f 3 -2825 -2827 2827 + mu 0 3 1768 1728 1771 + f 4 -2822 2828 2829 2830 + mu 0 4 1769 1768 1772 1773 + f 4 2831 -2830 2832 2833 + mu 0 4 1774 1775 1776 1777 + f 4 2834 -2834 2835 2836 + mu 0 4 1778 1774 1777 1675 + f 4 2837 2838 2839 2840 + mu 0 4 1779 1777 1780 1781 + f 4 -2833 2841 2842 -2839 + mu 0 4 1777 1776 1782 1780 + f 4 2843 -2841 2844 2845 + mu 0 4 1676 1779 1781 1783 + f 4 -2832 2846 2847 2848 + mu 0 4 1775 1774 1784 1785 + f 4 2849 -2842 -2829 2850 + mu 0 4 1786 1787 1772 1768 + f 4 -2850 2851 2852 2853 + mu 0 4 1787 1786 1788 1789 + f 4 -2843 -2854 2854 2855 + mu 0 4 1780 1782 1790 1791 + f 4 -2846 2856 2857 -2764 + mu 0 4 1676 1783 1792 1730 + f 4 2858 2859 -2773 -2858 + mu 0 4 1793 1794 1729 1735 + f 4 -2840 -2856 2860 2861 + mu 0 4 1781 1780 1791 1795 + f 4 -2845 -2862 2862 2863 + mu 0 4 1783 1781 1795 1760 + f 4 -2826 -2860 2864 2865 + mu 0 4 1771 1729 1794 1796 + f 4 -2851 -2828 -2866 2866 + mu 0 4 1786 1768 1771 1796 + f 4 2867 -2812 2868 2869 + mu 0 4 1797 1798 1799 1800 + f 4 -2853 2870 2871 2872 + mu 0 4 1789 1788 1801 1802 + f 4 -2855 -2873 2873 2874 + mu 0 4 1791 1790 1803 1804 + f 4 -2864 -2809 2875 -2857 + mu 0 4 1783 1760 1759 1792 + f 4 -2868 2876 -2859 -2876 + mu 0 4 1798 1797 1794 1793 + f 4 -2875 2877 2878 -2861 + mu 0 4 1791 1804 1805 1795 + f 4 2879 -2810 -2863 -2879 + mu 0 4 1805 1761 1760 1795 + f 4 -2865 -2877 2880 2881 + mu 0 4 1796 1794 1797 1806 + f 4 -2852 -2867 -2882 2882 + mu 0 4 1788 1786 1796 1806 + f 4 -2878 -2874 2883 2884 + mu 0 4 1805 1804 1803 1807 + f 4 -2880 -2885 2885 -2811 + mu 0 4 1761 1805 1807 1762 + f 4 -2886 2886 2887 -2869 + mu 0 4 1799 1808 1809 1800 + f 4 -2884 -2872 2888 -2887 + mu 0 4 1808 1802 1801 1809 + f 4 -2888 2889 -2881 -2870 + mu 0 4 1800 1809 1806 1797 + f 4 -2889 -2871 -2883 -2890 + mu 0 4 1809 1801 1788 1806 + f 3 2890 2891 2892 + mu 0 3 1810 1770 1811 + f 3 -2823 2893 -2892 + mu 0 3 1770 1769 1811 + f 4 2894 -2891 2895 2896 + mu 0 4 1812 1770 1810 1813 + f 4 -2896 2897 2898 2899 + mu 0 4 1813 1810 1814 1815 + f 4 2900 2901 -2899 2902 + mu 0 4 1816 1817 1818 1819 + f 4 -2902 2903 2904 2905 + mu 0 4 1818 1817 1820 1821 + f 4 2906 2907 2908 -2847 + mu 0 4 1774 1822 1823 1784 + f 4 2909 2910 2911 -2908 + mu 0 4 1822 1816 1824 1823 + f 4 -2831 -2849 2912 2913 + mu 0 4 1769 1773 1825 1826 + f 4 -2903 2914 2915 -2911 + mu 0 4 1816 1819 1827 1824 + f 4 2916 2917 -2893 2918 + mu 0 4 1828 1829 1810 1811 + f 4 2919 -2917 2920 2921 + mu 0 4 1830 1829 1828 1831 + f 4 -2894 -2914 2922 -2919 + mu 0 4 1811 1769 1826 1828 + f 4 2923 2924 -2921 -2923 + mu 0 4 1826 1832 1831 1828 + f 4 2925 -2909 2926 2927 + mu 0 4 1833 1784 1823 1834 + f 4 2928 2929 -2927 -2912 + mu 0 4 1824 1835 1834 1823 + f 4 -2913 2930 2931 -2924 + mu 0 4 1826 1825 1836 1832 + f 4 -2926 2932 -2931 -2848 + mu 0 4 1784 1833 1837 1785 + f 4 -2916 2933 2934 -2929 + mu 0 4 1824 1827 1838 1835 + f 4 -2920 2935 -2934 2936 + mu 0 4 1829 1830 1839 1840 + f 4 -2937 -2915 -2898 -2918 + mu 0 4 1829 1840 1814 1810 + f 4 2937 2938 2939 2940 + mu 0 4 1841 1710 1842 1843 + f 4 2941 -2941 -2905 2942 + mu 0 4 1844 1845 1821 1820 + f 4 2943 -2922 2944 2945 + mu 0 4 1846 1830 1831 1847 + f 4 -2928 2946 2947 2948 + mu 0 4 1833 1834 1848 1849 + f 4 -2930 2949 2950 -2947 + mu 0 4 1834 1835 1850 1848 + f 4 2951 -2950 -2935 2952 + mu 0 4 1851 1850 1835 1838 + f 4 -2944 2953 -2953 -2936 + mu 0 4 1830 1846 1852 1839 + f 4 2954 -2932 2955 2956 + mu 0 4 1853 1832 1836 1854 + f 4 -2933 -2949 2957 -2956 + mu 0 4 1837 1833 1849 1855 + f 4 -2925 -2955 2958 -2945 + mu 0 4 1831 1832 1853 1847 + f 4 2959 2960 -2959 -2957 + mu 0 4 1854 1856 1847 1853 + f 4 2961 -2954 -2946 -2961 + mu 0 4 1856 1852 1846 1847 + f 4 -2952 -2962 2962 -2951 + mu 0 4 1850 1851 1857 1848 + f 4 -2960 -2958 -2948 -2963 + mu 0 4 1857 1855 1849 1848 + f 4 2963 2964 2965 2966 + mu 0 4 1858 1812 1859 1860 + f 4 2967 2968 2969 2970 + mu 0 4 1861 1862 1863 1864 + f 4 2971 -2969 2972 2973 + mu 0 4 1865 1863 1862 1866 + f 4 2974 -2675 -2723 2975 + mu 0 4 1867 1673 1672 1684 + f 3 -2965 2976 2977 + mu 0 3 1859 1812 1868 + f 3 -2897 2978 -2977 + mu 0 3 1812 1813 1868 + f 4 2979 -2971 2980 -2966 + mu 0 4 1859 1869 1870 1860 + f 4 2981 2982 -2978 2983 + mu 0 4 1871 1872 1859 1868 + f 4 -2979 2984 2985 -2984 + mu 0 4 1868 1813 1842 1871 + f 4 -2980 -2983 2986 2987 + mu 0 4 1869 1859 1872 1873 + f 4 2988 -2968 -2988 2989 + mu 0 4 1874 1862 1861 1875 + f 4 -2900 -2906 -2940 -2985 + mu 0 4 1813 1815 1843 1842 + f 4 2990 2991 2992 -2904 + mu 0 4 1817 1876 1877 1820 + f 4 2993 -2992 2994 -2989 + mu 0 4 1874 1877 1876 1862 + f 4 2995 -2982 2996 -2737 + mu 0 4 1707 1872 1871 1708 + f 4 -2939 -2740 -2997 -2986 + mu 0 4 1842 1710 1708 1871 + f 4 -2943 -2993 2997 2998 + mu 0 4 1844 1820 1877 1878 + f 4 -2998 -2994 2999 3000 + mu 0 4 1878 1877 1874 1879 + f 4 3001 3002 3003 3004 + mu 0 4 1880 1881 1879 1882 + f 4 3005 -3005 3006 -2736 + mu 0 4 1706 1883 1884 1707 + f 4 3007 3008 -2942 3009 + mu 0 4 1885 1886 1845 1844 + f 4 3010 -2741 -2938 -3009 + mu 0 4 1887 1711 1710 1841 + f 4 3011 -3010 -2999 3012 + mu 0 4 1888 1885 1844 1878 + f 4 -3003 3013 -3013 -3001 + mu 0 4 1879 1881 1888 1878 + f 4 -3004 -3000 -2990 3014 + mu 0 4 1882 1879 1874 1875 + f 4 -2996 -3007 -3015 -2987 + mu 0 4 1872 1707 1884 1873 + f 4 3015 3016 -2742 -3011 + mu 0 4 1887 1889 1709 1711 + f 4 3017 -3006 -2739 -3017 + mu 0 4 1889 1883 1706 1709 + f 4 -3002 -3018 3018 -3014 + mu 0 4 1881 1880 1890 1888 + f 4 -3016 -3008 -3012 -3019 + mu 0 4 1890 1886 1885 1888 + f 4 3019 3020 3021 3022 + mu 0 4 1891 1892 1893 1894 + f 4 3023 3024 3025 -2972 + mu 0 4 1865 1895 1896 1863 + f 4 3026 3027 3028 3029 + mu 0 4 1897 1898 1858 1899 + f 4 3030 -3027 3031 -3021 + mu 0 4 1892 1898 1897 1893 + f 4 3032 3033 3034 3035 + mu 0 4 1899 1860 1900 1901 + f 4 3036 -3030 -3036 3037 + mu 0 4 1902 1897 1899 1901 + f 4 -3032 -3037 3038 3039 + mu 0 4 1893 1897 1902 1903 + f 4 -3022 -3040 3040 3041 + mu 0 4 1894 1893 1903 1904 + f 4 3042 3043 -3041 3044 + mu 0 4 1905 1906 1904 1903 + f 4 -3026 3045 3046 3047 + mu 0 4 1863 1896 1907 1908 + f 4 3048 3049 -3047 3050 + mu 0 4 1909 1910 1908 1907 + f 4 -3034 -2981 3051 3052 + mu 0 4 1900 1860 1870 1911 + f 4 -2970 -3048 3053 -3052 + mu 0 4 1864 1863 1908 1912 + f 4 3054 3055 -3054 -3050 + mu 0 4 1910 1913 1912 1908 + f 4 -3046 3056 -3042 3057 + mu 0 4 1907 1896 1894 1904 + f 4 3058 -3051 -3058 -3044 + mu 0 4 1906 1909 1907 1904 + f 4 -3059 3059 3060 3061 + mu 0 4 1909 1906 1914 1915 + f 4 3062 3063 -3053 -3056 + mu 0 4 1916 1714 1900 1911 + f 4 -3064 -2744 3064 -3035 + mu 0 4 1900 1714 1713 1901 + f 4 -3055 3065 3066 3067 + mu 0 4 1913 1910 1917 1918 + f 4 -3063 -3068 3068 -2745 + mu 0 4 1714 1916 1919 1715 + f 4 -3049 -3062 3069 -3066 + mu 0 4 1910 1909 1915 1917 + f 4 -3060 -3043 3070 3071 + mu 0 4 1914 1906 1905 1920 + f 4 3072 -2747 3073 -3071 + mu 0 4 1905 1717 1716 1921 + f 4 -3038 -3065 -2748 3074 + mu 0 4 1902 1901 1713 1717 + f 4 -3061 -3072 3075 3076 + mu 0 4 1915 1914 1920 1922 + f 4 -3070 -3077 3077 -3067 + mu 0 4 1917 1915 1922 1918; + setAttr ".fc[1500:1999]" + f 4 -3078 3078 -2746 -3069 + mu 0 4 1919 1923 1712 1715 + f 4 -3076 -3074 -2749 -3079 + mu 0 4 1923 1921 1716 1712 + f 4 -2614 3079 -2394 3080 + mu 0 4 1630 1633 1501 1502 + f 4 -2400 3081 -2618 3082 + mu 0 4 1504 1505 1636 1635 + f 4 -2398 -3083 -2621 -3081 + mu 0 4 1502 1504 1635 1630 + f 4 -3082 -2415 3083 3084 + mu 0 4 1924 1516 1509 1648 + f 4 -2395 -3080 3085 3086 + mu 0 4 1503 1501 1633 1641 + f 4 -2404 3087 -2637 -3084 + mu 0 4 1509 1508 1649 1648 + f 4 -2421 -3087 -2629 3088 + mu 0 4 1520 1503 1641 1640 + f 4 -3088 -2444 3089 -2640 + mu 0 4 1649 1508 1535 1650 + f 4 -2643 -3090 -2452 -3089 + mu 0 4 1640 1650 1535 1520 + f 4 -2686 3090 -2689 -2700 + mu 0 4 1680 1669 1683 1682 + f 4 3091 -2709 -2687 -2699 + mu 0 4 1689 1693 1681 1680 + f 4 -2704 3092 -2712 -3092 + mu 0 4 1689 1691 1695 1693 + f 4 -2728 -2685 -2726 -3093 + mu 0 4 1691 1678 1679 1695 + f 4 -2715 -2649 -2708 -2718 + mu 0 4 1697 1655 1654 1692 + f 4 -2617 -2630 -3086 -2613 + mu 0 4 1632 1623 1641 1633 + f 4 -2633 -2619 -3085 -2639 + mu 0 4 1642 1645 1924 1648 + f 4 3093 -2901 3094 3095 + mu 0 4 1866 1817 1816 1778 + f 4 -3075 -3073 -3045 -3039 + mu 0 4 1902 1717 1905 1903 + f 4 -2655 -3091 -2669 3096 + mu 0 4 1657 1659 1925 1926 + f 4 -2660 -2624 3097 -2599 + mu 0 4 1619 1638 1634 1620 + f 4 -2612 3098 -3098 -2615 + mu 0 4 1632 1631 1620 1634 + f 4 -2600 -3099 -2622 -2610 + mu 0 4 1621 1620 1631 1627 + f 4 -2725 -2693 -2724 -2722 + mu 0 4 1696 1686 1685 1699 + f 4 -2695 3099 3100 -2976 + mu 0 4 1684 1687 1927 1867 + f 4 -2601 -2609 -2690 -2654 + mu 0 4 1622 1621 1629 1659 + f 4 -3025 3101 -3023 -3057 + mu 0 4 1896 1895 1891 1894 + f 4 -930 3102 3103 3104 + mu 0 4 1928 1929 1930 1931 + f 4 3105 3106 3107 3108 + mu 0 4 1932 1933 1934 1935 + f 4 -3108 3109 3110 3111 + mu 0 4 1935 1934 1936 1937 + f 4 -3105 3112 3113 -938 + mu 0 4 1928 1931 1938 1939 + f 4 3114 3115 3116 3117 + mu 0 4 1940 1941 1942 1943 + f 4 3118 3119 3120 3121 + mu 0 4 1944 1945 1946 1941 + f 4 -3117 3122 3123 3124 + mu 0 4 1943 1942 1947 1948 + f 4 -3114 3125 3126 -952 + mu 0 4 1939 1938 1949 1950 + f 4 3127 -3118 3128 -3110 + mu 0 4 1934 1940 1943 1936 + f 4 3129 -3125 3130 3131 + mu 0 4 1951 1943 1948 1952 + f 4 3132 3133 3134 3135 + mu 0 4 1953 1933 1954 1945 + f 4 3136 -3134 -3106 3137 + mu 0 4 1955 1954 1933 1932 + f 4 -968 3138 3139 -3103 + mu 0 4 1929 1956 1957 1930 + f 4 3140 3141 -970 3142 + mu 0 4 1958 1959 1960 1961 + f 4 -975 -3142 3143 3144 + mu 0 4 1962 1960 1959 1963 + f 4 3145 3146 3147 -976 + mu 0 4 605 1964 1965 606 + f 3 3148 3149 3150 + mu 0 3 1966 1967 1968 + f 4 3151 3152 3153 3154 + mu 0 4 1969 1970 1971 1972 + f 4 3155 3156 3157 -3153 + mu 0 4 1970 1973 1974 1971 + f 4 3158 -992 3159 3160 + mu 0 4 1975 620 619 1966 + f 4 3161 3162 3163 3164 + mu 0 4 1976 1977 1978 1979 + f 4 3165 -999 -3148 3166 + mu 0 4 1980 626 606 1965 + f 4 3167 3168 3169 -3163 + mu 0 4 1977 1981 1982 1978 + f 4 3170 3171 -1004 -3159 + mu 0 4 1975 1983 629 620 + f 4 -3169 3172 -3137 3173 + mu 0 4 1982 1981 1954 1955 + f 4 -3162 3174 3175 3176 + mu 0 4 1977 1976 1984 1985 + f 4 3177 3178 3179 3180 + mu 0 4 1986 1987 1988 1989 + f 4 -1018 3181 -3180 3182 + mu 0 4 637 638 1989 1988 + f 4 -3146 -1021 3183 3184 + mu 0 4 1964 605 640 1990 + f 4 -1023 -3127 3185 -3143 + mu 0 4 1961 1950 1949 1958 + f 4 -3182 -1026 3186 3187 + mu 0 4 1989 638 642 1991 + f 4 -3175 -3165 3188 3189 + mu 0 4 1984 1976 1979 1992 + f 4 -3179 3190 -3158 3191 + mu 0 4 1988 1987 1971 1974 + f 4 -3149 -3160 -1032 3192 + mu 0 4 1967 1966 619 644 + f 4 -3139 -1034 -3172 3193 + mu 0 4 1957 1956 629 1983 + f 4 -3157 3194 -1036 3195 + mu 0 4 1974 1973 646 645 + f 4 -3183 -3192 -3196 -1038 + mu 0 4 637 1988 1974 645 + f 4 3196 3197 3198 3199 + mu 0 4 1993 1994 1995 1996 + f 4 3200 3201 3202 3203 + mu 0 4 1997 1998 1999 2000 + f 4 3204 -3204 3205 3206 + mu 0 4 2001 1997 2000 2002 + f 4 3207 3208 3209 -3202 + mu 0 4 1998 2003 2004 1999 + f 4 3210 3211 3212 -3209 + mu 0 4 2003 2005 1994 2004 + f 4 -3203 3213 3214 3215 + mu 0 4 2000 1999 2006 2007 + f 4 3216 -3213 -3197 3217 + mu 0 4 2008 2004 1994 1993 + f 4 -3210 -3217 3218 -3214 + mu 0 4 1999 2004 2008 2006 + f 4 3219 3220 3221 3222 + mu 0 4 2009 2010 2011 2012 + f 4 3223 3224 3225 3226 + mu 0 4 2013 2014 2015 2016 + f 4 -3227 3227 3228 3229 + mu 0 4 2013 2016 2017 2018 + f 4 3230 -3230 3231 3232 + mu 0 4 2019 2013 2018 2020 + f 4 3233 3234 3235 3236 + mu 0 4 2021 2022 2023 2024 + f 4 3237 -3237 3238 3239 + mu 0 4 2025 2021 2024 2026 + f 4 -3201 3240 3241 3242 + mu 0 4 2027 2028 2029 2030 + f 4 3243 3244 3245 -3225 + mu 0 4 2014 2031 2032 2015 + f 4 -3245 3246 3247 3248 + mu 0 4 2032 2031 2033 2034 + f 3 3249 3250 3251 + mu 0 3 2033 2035 2036 + f 4 3252 3253 3254 -3247 + mu 0 4 2031 2037 2038 2033 + f 4 -3211 3255 3256 3257 + mu 0 4 2039 2040 2041 2042 + f 4 -3240 3258 -3220 3259 + mu 0 4 2025 2026 2010 2009 + f 4 -3257 3260 3261 3262 + mu 0 4 2042 2041 2043 2044 + f 4 -3252 3263 -3242 3264 + mu 0 4 2033 2036 2030 2029 + f 4 3265 -3248 -3265 3266 + mu 0 4 2045 2034 2033 2029 + f 4 3267 -3267 -3241 -3205 + mu 0 4 2046 2045 2029 2028 + f 4 -3222 3268 -3262 3269 + mu 0 4 2012 2011 2044 2043 + f 4 -3229 3270 3271 3272 + mu 0 4 2018 2017 2047 2007 + f 4 -3231 3273 3274 -3224 + mu 0 4 2013 2019 2048 2014 + f 4 -3218 3275 3276 3277 + mu 0 4 2008 1993 2049 2050 + f 4 -3235 3278 -3277 3279 + mu 0 4 2023 2022 2050 2049 + f 4 -3215 3280 -3232 -3273 + mu 0 4 2007 2006 2020 2018 + f 4 -3208 -3243 3281 -3256 + mu 0 4 2040 2027 2030 2041 + f 4 -3282 -3264 3282 -3261 + mu 0 4 2041 2030 2036 2043 + f 4 -3270 -3283 -3251 3283 + mu 0 4 2012 2043 2036 2035 + f 4 3284 -3223 -3284 3285 + mu 0 4 2038 2009 2012 2035 + f 4 3286 -3260 -3285 -3254 + mu 0 4 2037 2025 2009 2038 + f 4 -3206 -3216 -3272 3287 + mu 0 4 2002 2000 2007 2047 + f 4 3288 -3253 -3244 -3275 + mu 0 4 2048 2037 2031 2014 + f 4 -3234 3289 -3274 3290 + mu 0 4 2022 2021 2048 2019 + f 4 -3219 -3278 3291 -3281 + mu 0 4 2006 2008 2050 2020 + f 4 -3291 -3233 -3292 -3279 + mu 0 4 2022 2019 2020 2050 + f 4 3292 3293 3294 3295 + mu 0 4 2051 2052 2053 2054 + f 4 3296 3297 -3294 3298 + mu 0 4 2055 2056 2053 2052 + f 4 3299 3300 3301 3302 + mu 0 4 2057 2058 2059 2060 + f 4 3303 3304 3305 3306 + mu 0 4 2061 2062 2063 2064 + f 3 3307 3308 3309 + mu 0 3 2065 2066 2067 + f 4 -3306 3310 -3300 3311 + mu 0 4 2064 2063 2058 2057 + f 3 3312 3313 3314 + mu 0 3 2068 2069 2070 + f 4 3315 -3310 3316 3317 + mu 0 4 2071 2065 2067 2072 + f 4 3318 3319 3320 3321 + mu 0 4 2073 2074 2075 2076 + f 4 3322 3323 3324 3325 + mu 0 4 2077 2074 2078 2079 + f 4 3326 3327 3328 3329 + mu 0 4 2080 2081 2082 2083 + f 4 3330 3331 3332 -3313 + mu 0 4 2068 2084 2085 2069 + f 4 -3314 3333 3334 3335 + mu 0 4 2070 2069 2086 2087 + f 4 3336 3337 3338 -3335 + mu 0 4 2086 2088 2089 2087 + f 4 -3336 3339 3340 3341 + mu 0 4 2070 2087 2090 2059 + f 4 -3339 3342 3343 -3340 + mu 0 4 2087 2089 2091 2090 + f 4 3344 3345 3346 3347 + mu 0 4 2092 2093 2094 2095 + f 4 -3346 3348 3349 3350 + mu 0 4 2094 2093 2096 2060 + f 4 3351 -3351 -3302 -3341 + mu 0 4 2090 2094 2060 2059 + f 4 -3347 -3352 -3344 3352 + mu 0 4 2095 2094 2090 2091 + f 4 3353 3354 3355 3356 + mu 0 4 2097 2098 2099 2100 + f 4 3357 3358 3359 -3320 + mu 0 4 2074 2101 2102 2075 + f 4 3360 -3326 3361 -3328 + mu 0 4 2081 2077 2079 2082 + f 4 3362 3363 -3309 3364 + mu 0 4 2099 2103 2067 2066 + f 4 3365 3366 3367 3368 + mu 0 4 2104 2100 2105 2106 + f 4 3369 3370 3371 3372 + mu 0 4 2103 2107 2108 2109 + f 4 -3317 3373 3374 3375 + mu 0 4 2072 2067 2110 2111 + f 4 -3318 3376 3377 3378 + mu 0 4 2112 2113 2114 2115 + f 4 -3376 3379 3380 -3377 + mu 0 4 2113 2116 2117 2114 + f 4 3381 -3324 -3319 3382 + mu 0 4 2118 2078 2074 2073 + f 4 -3382 3383 3384 3385 + mu 0 4 2078 2118 2119 2120 + f 4 -3325 -3386 3386 3387 + mu 0 4 2079 2078 2120 2121 + f 4 -3362 -3388 3388 3389 + mu 0 4 2082 2079 2121 2122 + f 4 3390 -3329 -3390 3391 + mu 0 4 2123 2083 2082 2122 + f 4 3392 3393 3394 -3385 + mu 0 4 2119 2124 2125 2120 + f 4 -3389 3395 3396 3397 + mu 0 4 2122 2121 2126 2127 + f 4 3398 3399 -3392 -3398 + mu 0 4 2127 2128 2123 2122 + f 4 -3394 3400 3401 3402 + mu 0 4 2125 2124 2129 2130 + f 4 -3403 3403 3404 3405 + mu 0 4 2125 2130 2131 2126 + f 4 -3405 3406 3407 -3397 + mu 0 4 2126 2131 2132 2127 + f 4 -3399 -3408 3408 3409 + mu 0 4 2128 2127 2132 2133 + f 4 -3402 3410 3411 3412 + mu 0 4 2130 2129 2134 2135 + f 4 -3404 -3413 3413 3414 + mu 0 4 2131 2130 2135 2136 + f 4 -3407 -3415 3415 3416 + mu 0 4 2132 2131 2136 2137 + f 4 3417 -3409 -3417 3418 + mu 0 4 2138 2133 2132 2137 + f 4 -3387 -3395 -3406 -3396 + mu 0 4 2121 2120 2125 2126 + f 4 3419 3420 3421 3422 + mu 0 4 2139 2140 2141 2142 + f 4 -3420 3423 3424 3425 + mu 0 4 2140 2139 2143 2144 + f 4 -3425 3426 3427 3428 + mu 0 4 2144 2143 2145 2146 + f 4 -3428 3429 3430 3431 + mu 0 4 2146 2145 2147 2148 + f 4 3432 3433 3434 -3412 + mu 0 4 2134 2149 2150 2135 + f 4 3435 3436 3437 3438 + mu 0 4 2150 2147 2151 2152 + f 4 3439 3440 -3419 3441 + mu 0 4 2153 2154 2138 2137 + f 4 -3442 -3416 3442 3443 + mu 0 4 2153 2137 2136 2152 + f 4 -3414 -3435 -3439 -3443 + mu 0 4 2136 2135 2150 2152 + f 4 -3424 -3423 3444 3445 + mu 0 4 2143 2139 2142 2151 + f 4 -3430 -3427 -3446 -3437 + mu 0 4 2147 2145 2143 2151 + f 4 -3445 3446 -3444 -3438 + mu 0 4 2151 2142 2153 2152 + f 4 -3431 -3436 -3434 3447 + mu 0 4 2148 2147 2150 2149 + f 4 -3447 -3422 3448 -3440 + mu 0 4 2153 2142 2141 2154 + f 4 3449 3450 3451 3452 + mu 0 4 2155 2156 2157 2158 + f 4 3453 3454 3455 3456 + mu 0 4 2159 2160 2161 2162 + f 4 3457 3458 -3454 3459 + mu 0 4 2163 2164 2160 2159 + f 4 3460 3461 3462 3463 + mu 0 4 2155 2163 2165 2166 + f 4 3464 3465 -3457 3466 + mu 0 4 2167 2168 2159 2162 + f 4 -3462 -3460 -3466 3467 + mu 0 4 2165 2163 2159 2168 + f 4 3468 3469 -3450 -3464 + mu 0 4 2166 2169 2156 2155 + f 4 -3465 3470 3471 3472 + mu 0 4 2168 2167 2170 2171 + f 4 3473 -3468 -3473 3474 + mu 0 4 2172 2165 2168 2171 + f 4 -3474 3475 3476 -3463 + mu 0 4 2165 2172 2173 2166 + f 4 3477 -3469 -3477 3478 + mu 0 4 2174 2169 2166 2173 + f 4 3479 3480 3481 -3472 + mu 0 4 2170 2175 2176 2171 + f 4 3482 -3475 -3482 3483 + mu 0 4 2177 2172 2171 2176 + f 4 -3476 -3483 3484 3485 + mu 0 4 2173 2172 2177 2178 + f 4 3486 3487 -3479 -3486 + mu 0 4 2178 2179 2174 2173 + f 4 -3481 3488 3489 3490 + mu 0 4 2176 2175 2180 2181 + f 4 3491 -3484 -3491 3492 + mu 0 4 2182 2177 2176 2181 + f 4 -3492 3493 3494 -3485 + mu 0 4 2177 2182 2183 2178 + f 4 -3487 -3495 3495 3496 + mu 0 4 2179 2178 2183 2184 + f 4 -3490 3497 3498 3499 + mu 0 4 2181 2180 2185 2186 + f 4 3500 -3493 -3500 3501 + mu 0 4 2187 2182 2181 2186 + f 4 -3494 -3501 3502 3503 + mu 0 4 2183 2182 2187 2188 + f 4 3504 -3496 -3504 3505 + mu 0 4 2189 2184 2183 2188 + f 4 3506 3507 3508 3509 + mu 0 4 2190 2191 2192 2193 + f 4 3510 3511 3512 3513 + mu 0 4 2194 2195 2196 2197 + f 4 3514 3515 -3511 3516 + mu 0 4 2198 2199 2195 2194 + f 4 -3515 3517 -3507 3518 + mu 0 4 2199 2198 2191 2190 + f 4 -3510 3519 3520 -3519 + mu 0 4 2190 2193 2200 2199 + f 4 3521 3522 3523 -3499 + mu 0 4 2185 2201 2202 2186 + f 4 3524 -3502 -3524 3525 + mu 0 4 2203 2187 2186 2202 + f 4 -3503 -3525 3526 3527 + mu 0 4 2188 2187 2203 2204 + f 4 3528 3529 -3506 -3528 + mu 0 4 2204 2205 2189 2188 + f 4 3530 -3523 3531 -3513 + mu 0 4 2196 2202 2201 2197 + f 4 3532 -3526 -3531 3533 + mu 0 4 2200 2203 2202 2196 + f 4 -3533 -3520 3534 -3527 + mu 0 4 2203 2200 2193 2204 + f 4 3535 -3529 -3535 -3509 + mu 0 4 2192 2205 2204 2193 + f 4 -3521 -3534 -3512 -3516 + mu 0 4 2199 2200 2196 2195 + f 4 3536 3537 3538 3539 + mu 0 4 2075 2206 2207 2208 + f 4 3540 3541 3542 -3538 + mu 0 4 2206 2158 2209 2207 + f 4 -3452 3543 3544 -3542 + mu 0 4 2158 2157 2210 2209 + f 4 -3540 3545 3546 -3321 + mu 0 4 2075 2208 2211 2076 + f 4 -3545 3547 3548 3549 + mu 0 4 2209 2210 2212 2213 + f 4 -3543 -3550 3550 3551 + mu 0 4 2207 2209 2213 2214 + f 4 -3539 -3552 3552 3553 + mu 0 4 2208 2207 2214 2215 + f 4 3554 -3546 -3554 3555 + mu 0 4 2216 2211 2208 2215 + f 4 3556 3557 3558 3559 + mu 0 4 2217 2218 2219 2220 + f 4 3560 -3560 3561 3562 + mu 0 4 2221 2217 2220 2222 + f 4 3563 -3563 3564 3565 + mu 0 4 2223 2221 2222 2224 + f 4 3566 3567 -3566 3568 + mu 0 4 2225 2226 2223 2224 + f 4 3569 3570 3571 -3549 + mu 0 4 2212 2227 2228 2213 + f 4 -3551 -3572 3572 3573 + mu 0 4 2214 2213 2228 2229 + f 4 -3553 -3574 3574 3575 + mu 0 4 2215 2214 2229 2230 + f 4 3576 3577 -3556 -3576 + mu 0 4 2230 2231 2216 2215 + f 4 -3571 3578 -3557 3579 + mu 0 4 2228 2227 2218 2217 + f 4 -3580 -3561 3580 -3573 + mu 0 4 2228 2217 2221 2229 + f 4 -3581 -3564 3581 -3575 + mu 0 4 2229 2221 2223 2230 + f 4 -3577 -3582 -3568 3582 + mu 0 4 2231 2230 2223 2226 + f 4 3583 3584 3585 3586 + mu 0 4 2232 2233 2234 2235 + f 4 -3584 3587 3588 3589 + mu 0 4 2233 2232 2236 2237 + f 4 -3589 3590 3591 3592 + mu 0 4 2237 2236 2238 2239 + f 4 -3592 3593 3594 3595 + mu 0 4 2239 2238 2240 2241 + f 4 3596 3597 3598 3599 + mu 0 4 2242 2234 2243 2244 + f 4 -3599 3600 3601 3602 + mu 0 4 2244 2243 2241 2245 + f 4 3603 -3586 -3597 3604 + mu 0 4 2246 2235 2234 2242 + f 4 3605 3606 -3602 -3595 + mu 0 4 2240 2247 2245 2241 + f 4 3607 -3605 3608 -3559 + mu 0 4 2219 2246 2242 2220 + f 4 -3562 -3609 -3600 3609 + mu 0 4 2222 2220 2242 2244 + f 4 -3565 -3610 -3603 3610 + mu 0 4 2224 2222 2244 2245 + f 4 -3607 3611 -3569 -3611 + mu 0 4 2245 2247 2225 2224 + f 4 -3585 -3590 3612 -3598 + mu 0 4 2234 2233 2237 2243 + f 4 -3593 -3596 -3601 -3613 + mu 0 4 2237 2239 2241 2243 + f 4 3613 -3331 3614 3615 + mu 0 4 2248 2084 2068 2249 + f 4 -3334 -3333 3616 3617 + mu 0 4 2086 2069 2085 2250 + f 4 3618 -3337 -3618 3619 + mu 0 4 2251 2088 2086 2250 + f 4 -3614 3620 3621 3622 + mu 0 4 2084 2248 2252 2253 + f 4 -3332 -3623 3623 3624 + mu 0 4 2085 2084 2253 2254 + f 4 -3617 -3625 3625 3626 + mu 0 4 2250 2085 2254 2255 + f 4 3627 -3620 -3627 3628 + mu 0 4 2256 2251 2250 2255 + f 4 3629 3630 3631 -3622 + mu 0 4 2252 2257 2258 2253 + f 4 -3624 -3632 3632 3633 + mu 0 4 2254 2253 2258 2259 + f 4 -3626 -3634 3634 3635 + mu 0 4 2255 2254 2259 2260 + f 4 3636 3637 -3629 -3636 + mu 0 4 2260 2261 2256 2255 + f 4 -3631 3638 3639 3640 + mu 0 4 2258 2257 2262 2263 + f 4 -3641 3641 3642 -3633 + mu 0 4 2258 2263 2264 2259 + f 4 -3643 3643 3644 -3635 + mu 0 4 2259 2264 2265 2260 + f 4 -3637 -3645 3645 3646 + mu 0 4 2261 2260 2265 2266 + f 4 -3640 3647 3648 3649 + mu 0 4 2263 2262 2267 2268 + f 4 3650 -3642 -3650 3651 + mu 0 4 2269 2264 2263 2268 + f 4 -3644 -3651 3652 3653 + mu 0 4 2265 2264 2269 2270 + f 4 3654 -3646 -3654 3655 + mu 0 4 2271 2266 2265 2270 + f 4 3656 3657 3658 3659 + mu 0 4 2272 2273 2274 2275 + f 4 -3657 3660 3661 3662 + mu 0 4 2273 2272 2276 2277 + f 4 -3662 3663 3664 3665 + mu 0 4 2277 2276 2278 2279 + f 4 -3665 3666 3667 3668 + mu 0 4 2279 2278 2280 2281 + f 4 3669 3670 3671 3672 + mu 0 4 2275 2282 2283 2284 + f 4 -3670 -3659 3673 3674 + mu 0 4 2282 2275 2274 2285 + f 4 3675 -3668 3676 3677 + mu 0 4 2286 2281 2280 2287 + f 4 -3677 3678 -3672 3679 + mu 0 4 2287 2280 2284 2283 + f 4 3680 -3678 3681 -3649 + mu 0 4 2267 2286 2287 2268 + f 4 -3652 -3682 -3680 3682 + mu 0 4 2269 2268 2287 2283 + f 4 -3653 -3683 -3671 3683 + mu 0 4 2270 2269 2283 2282 + f 4 -3675 3684 -3656 -3684 + mu 0 4 2282 2285 2271 2270 + f 4 -3661 -3660 -3673 3685 + mu 0 4 2276 2272 2275 2284 + f 4 -3667 -3664 -3686 -3679 + mu 0 4 2280 2278 2276 2284 + f 4 3686 3687 3688 3689 + mu 0 4 2288 2289 2290 2291 + f 4 -3687 3690 3691 3692 + mu 0 4 2289 2288 2292 2293 + f 4 3693 3694 -3692 3695 + mu 0 4 2294 2295 2293 2292 + f 4 3696 3697 3698 3699 + mu 0 4 2296 2297 2298 2299 + f 4 3700 3701 -3697 3702 + mu 0 4 2300 2301 2297 2296 + f 4 3703 3704 3705 3706 + mu 0 4 2300 2302 2303 2304 + f 4 3707 3708 3709 3710 + mu 0 4 2305 2302 2299 2306 + f 4 3711 3712 3713 3714 + mu 0 4 2307 2305 2308 2309 + f 4 -3713 -3711 3715 3716 + mu 0 4 2308 2305 2306 2310 + f 4 -3716 3717 3718 3719 + mu 0 4 2310 2306 2311 2312 + f 4 3720 -3718 -3710 -3699 + mu 0 4 2298 2311 2306 2299 + f 4 3721 -3705 -3708 -3712 + mu 0 4 2307 2303 2302 2305 + f 4 -3722 3722 3723 3724 + mu 0 4 2303 2313 2314 2315 + f 4 -3725 3725 3726 -3706 + mu 0 4 2303 2315 2316 2304 + f 4 -3690 3727 -3714 3728 + mu 0 4 2288 2291 2309 2308 + f 4 -3729 -3717 3729 -3691 + mu 0 4 2288 2308 2310 2292 + f 4 3730 -3696 -3730 -3720 + mu 0 4 2312 2294 2292 2310 + f 4 -3727 3731 -3701 -3707 + mu 0 4 2304 2316 2301 2300 + f 4 -3704 -3703 -3700 -3709 + mu 0 4 2302 2300 2296 2299 + f 4 3732 -3307 3733 3734 + mu 0 4 2317 2061 2064 2318 + f 4 -3694 3735 3736 3737 + mu 0 4 2319 2320 2321 2322 + f 4 3738 3739 3740 3741 + mu 0 4 2323 2324 2325 2326 + f 4 3742 3743 3744 3745 + mu 0 4 2327 2328 2325 2329 + f 4 3746 3747 3748 3749 + mu 0 4 2330 2328 2331 2332 + f 4 3750 3751 3752 3753 + mu 0 4 2333 2334 2335 2336 + f 4 3754 3755 3756 3757 + mu 0 4 2337 2338 2324 2335 + f 4 3758 3759 -3758 -3752 + mu 0 4 2334 2339 2337 2335 + f 4 3760 -3746 3761 3762 + mu 0 4 2340 2327 2329 2341 + f 4 3763 3764 3765 3766 + mu 0 4 2342 2343 2344 2345 + f 4 -3767 3767 3768 3769 + mu 0 4 2342 2345 2346 2347 + f 3 3770 3771 3772 + mu 0 3 2348 2343 2349 + f 3 3773 3774 3775 + mu 0 3 2349 2342 2350 + f 4 -3322 3776 3777 3778 + mu 0 4 2351 2352 2353 2354 + f 4 3779 3780 3781 3782 + mu 0 4 2347 2355 2356 2357 + f 4 -3770 3783 -3778 3784 + mu 0 4 2342 2347 2354 2353 + f 4 -3451 3785 -3773 3786 + mu 0 4 2358 2359 2348 2349 + f 4 3787 3788 3789 3790 + mu 0 4 2360 2361 2362 2363 + f 3 -3784 3791 3792 + mu 0 3 2354 2347 2364 + f 3 3793 -3781 3794 + mu 0 3 2365 2356 2355 + f 4 3795 3796 -3795 3797 + mu 0 4 2366 2367 2365 2355 + f 4 -3798 3798 3799 3800 + mu 0 4 2366 2355 2368 2369 + f 4 -3348 3801 3802 -3760 + mu 0 4 2339 2370 2371 2337 + f 4 3803 3804 3805 3806 + mu 0 4 2372 2368 2346 2373 + f 4 -3353 3807 3808 -3802 + mu 0 4 2370 2374 2369 2371 + f 4 -3809 -3800 -3804 3809 + mu 0 4 2371 2369 2368 2372 + f 4 -3330 3810 3811 3812 + mu 0 4 2375 2376 2377 2357 + f 4 -3383 -3779 3813 3814 + mu 0 4 2378 2351 2354 2379 + f 4 -3338 3815 -3796 3816 + mu 0 4 2380 2381 2367 2366 + f 4 -3794 3817 3818 3819 + mu 0 4 2356 2365 2382 2383 + f 4 -3797 3820 3821 -3818 + mu 0 4 2365 2367 2384 2382 + f 4 -3343 -3817 -3801 -3808 + mu 0 4 2374 2380 2366 2369 + f 4 -3799 -3780 -3769 -3805 + mu 0 4 2368 2355 2347 2346 + f 4 3822 3823 3824 3825 + mu 0 4 2385 2386 2344 2387 + f 4 3826 -3763 3827 3828 + mu 0 4 2388 2340 2341 2389 + f 4 -3826 3829 -3378 3830 + mu 0 4 2385 2387 2115 2114 + f 4 -3354 3831 -3761 3832 + mu 0 4 2390 2097 2327 2340 + f 4 -3833 -3827 3833 3834 + mu 0 4 2390 2340 2388 2391 + f 4 3835 -3829 3836 3837 + mu 0 4 2392 2388 2389 2393 + f 4 -3834 -3836 3838 -3371 + mu 0 4 2391 2388 2392 2394 + f 4 3839 -3813 -3782 3840 + mu 0 4 2395 2375 2357 2356 + f 4 3841 3842 3843 3844 + mu 0 4 2396 2397 2379 2398 + f 4 3845 3846 3847 -3845 + mu 0 4 2398 2377 2399 2396 + f 4 3848 3849 -3842 3850 + mu 0 4 2400 2401 2397 2396 + f 4 -3848 3851 3852 -3851 + mu 0 4 2396 2399 2402 2400 + f 4 3853 3854 3855 -3849 + mu 0 4 2400 2403 2404 2401 + f 4 3856 3857 -3854 -3853 + mu 0 4 2402 2405 2403 2400 + f 4 3858 3859 -3855 3860 + mu 0 4 2406 2407 2404 2403 + f 4 -3858 3861 3862 -3861 + mu 0 4 2403 2405 2408 2406 + f 4 -3863 3863 3864 3865 + mu 0 4 2406 2408 2409 2410 + f 4 3866 -3859 -3866 3867 + mu 0 4 2411 2407 2406 2410 + f 4 3868 3869 3870 3871 + mu 0 4 2412 2413 2414 2415 + f 4 3872 3873 3874 -3870 + mu 0 4 2413 2416 2417 2414 + f 4 -3384 -3815 -3843 3875 + mu 0 4 2418 2378 2379 2397 + f 4 -3391 3876 -3847 -3811 + mu 0 4 2376 2419 2399 2377 + f 4 -3393 -3876 -3850 3877 + mu 0 4 2420 2418 2397 2401 + f 4 -3400 3878 -3852 -3877 + mu 0 4 2419 2421 2402 2399 + f 4 -3401 -3878 -3856 3879 + mu 0 4 2422 2420 2401 2404 + f 4 -3410 3880 -3857 -3879 + mu 0 4 2421 2423 2405 2402 + f 4 -3411 -3880 -3860 3881 + mu 0 4 2424 2422 2404 2407 + f 4 -3418 3882 -3862 -3881 + mu 0 4 2423 2425 2408 2405 + f 4 -3426 3883 -3875 3884 + mu 0 4 2426 2427 2414 2417 + f 4 -3429 3885 -3871 -3884 + mu 0 4 2427 2428 2415 2414 + f 4 -3449 3886 3887 3888 + mu 0 4 2429 2430 2416 2409 + f 4 -3433 -3882 -3867 3889 + mu 0 4 2431 2424 2407 2411 + f 4 -3432 3890 -3872 -3886 + mu 0 4 2428 2432 2412 2415 + f 4 -3421 -3885 -3874 -3887 + mu 0 4 2430 2426 2417 2416 + f 4 -3865 -3888 -3873 3891 + mu 0 4 2410 2409 2416 2413 + f 4 -3441 -3889 -3864 -3883 + mu 0 4 2425 2429 2409 2408 + f 4 -3868 -3892 -3869 3892 + mu 0 4 2411 2410 2413 2412 + f 4 -3448 -3890 -3893 -3891 + mu 0 4 2432 2431 2411 2412 + f 4 -3470 3893 3894 -3786 + mu 0 4 2359 2433 2434 2348 + f 4 -3456 3895 -3790 3896 + mu 0 4 2435 2436 2363 2362 + f 4 3897 3898 3899 -3789 + mu 0 4 2361 2437 2438 2362 + f 4 3900 3901 3902 -3899 + mu 0 4 2437 2439 2440 2438 + f 4 3903 3904 3905 -3901 + mu 0 4 2437 2434 2441 2439 + f 4 3906 3907 3908 -3902 + mu 0 4 2439 2442 2443 2440 + f 4 -3906 3909 3910 -3907 + mu 0 4 2439 2441 2444 2442 + f 4 3911 3912 3913 -3908 + mu 0 4 2442 2445 2446 2443 + f 4 3914 3915 -3912 -3911 + mu 0 4 2444 2447 2445 2442 + f 4 3916 3917 3918 -3913 + mu 0 4 2445 2448 2449 2446 + f 4 -3916 3919 3920 -3917 + mu 0 4 2445 2447 2450 2448 + f 4 3921 3922 3923 3924 + mu 0 4 2451 2452 2453 2454 + f 4 3925 3926 3927 -3922 + mu 0 4 2451 2455 2456 2452 + f 4 3928 3929 3930 -3918 + mu 0 4 2448 2457 2458 2449 + f 4 -3921 3931 3932 -3929 + mu 0 4 2448 2450 2459 2457 + f 4 3933 -3925 3934 -3930 + mu 0 4 2457 2451 2454 2458 + f 4 3935 -3926 -3934 -3933 + mu 0 4 2459 2455 2451 2457 + f 4 -3467 -3897 -3900 3936 + mu 0 4 2460 2435 2362 2438 + f 4 -3471 -3937 -3903 3937 + mu 0 4 2461 2460 2438 2440 + f 4 -3478 3938 -3905 -3894 + mu 0 4 2433 2462 2441 2434 + f 4 -3480 -3938 -3909 3939 + mu 0 4 2463 2461 2440 2443 + f 4 -3488 3940 -3910 -3939 + mu 0 4 2462 2464 2444 2441 + f 4 -3489 -3940 -3914 3941 + mu 0 4 2465 2463 2443 2446 + f 4 -3497 3942 -3915 -3941 + mu 0 4 2464 2466 2447 2444 + f 4 -3498 -3942 -3919 3943 + mu 0 4 2467 2465 2446 2449 + f 4 -3505 3944 -3920 -3943 + mu 0 4 2466 2468 2450 2447 + f 4 3945 -3517 3946 -3923 + mu 0 4 2452 2469 2470 2453 + f 4 -3518 -3946 -3928 3947 + mu 0 4 2471 2469 2452 2456 + f 4 -3514 3948 -3924 -3947 + mu 0 4 2470 2472 2454 2453 + f 4 -3522 -3944 -3931 3949 + mu 0 4 2473 2467 2449 2458 + f 4 -3530 3950 -3932 -3945 + mu 0 4 2468 2474 2459 2450 + f 4 -3532 -3950 -3935 -3949 + mu 0 4 2472 2473 2458 2454 + f 4 -3536 3951 -3936 -3951 + mu 0 4 2474 2475 2455 2459 + f 4 -3508 -3948 -3927 -3952 + mu 0 4 2475 2471 2456 2455 + f 4 -3544 -3787 3952 3953 + mu 0 4 2476 2358 2349 2477 + f 4 -3547 3954 3955 -3777 + mu 0 4 2352 2478 2479 2353 + f 4 3956 3957 3958 3959 + mu 0 4 2480 2481 2477 2482 + f 4 3960 3961 3962 -3960 + mu 0 4 2482 2479 2483 2480 + f 4 3963 3964 3965 3966 + mu 0 4 2484 2485 2486 2487 + f 4 3967 3968 3969 -3967 + mu 0 4 2487 2488 2489 2484 + f 4 3970 3971 -3957 3972 + mu 0 4 2490 2491 2481 2480 + f 4 -3963 3973 3974 -3973 + mu 0 4 2480 2483 2492 2490 + f 4 3975 -3966 3976 -3971 + mu 0 4 2490 2487 2486 2491 + f 4 3977 -3968 -3976 -3975 + mu 0 4 2492 2488 2487 2490 + f 4 3978 3979 3980 3981 + mu 0 4 2493 2494 2495 2496 + f 4 3982 3983 -3981 3984 + mu 0 4 2497 2498 2496 2495 + f 4 -3980 3985 -3964 3986 + mu 0 4 2495 2494 2485 2484 + f 4 -3970 3987 -3985 -3987 + mu 0 4 2484 2489 2497 2495 + f 4 -3982 3988 3989 3990 + mu 0 4 2493 2496 2499 2500 + f 4 -3984 3991 3992 -3989 + mu 0 4 2496 2498 2501 2499 + f 4 -3548 -3954 -3958 3993 + mu 0 4 2502 2476 2477 2481 + f 4 -3555 3994 -3962 -3955 + mu 0 4 2478 2503 2483 2479 + f 4 -3558 3995 -3965 3996 + mu 0 4 2504 2505 2486 2485 + f 4 -3567 3997 -3969 3998 + mu 0 4 2506 2507 2489 2488 + f 4 -3570 -3994 -3972 3999 + mu 0 4 2508 2502 2481 2491 + f 4 -3578 4000 -3974 -3995 + mu 0 4 2503 2509 2492 2483 + f 4 -3579 -4000 -3977 -3996 + mu 0 4 2505 2508 2491 2486 + f 4 -3583 -3999 -3978 -4001 + mu 0 4 2509 2506 2488 2492 + f 4 -3588 4001 -3990 4002 + mu 0 4 2510 2511 2500 2499 + f 4 -3591 -4003 -3993 4003 + mu 0 4 2512 2510 2499 2501 + f 4 -3604 4004 -3979 4005 + mu 0 4 2513 2514 2494 2493 + f 4 -3608 -3997 -3986 -4005 + mu 0 4 2514 2504 2485 2494 + f 4 -3612 4006 -3988 -3998 + mu 0 4 2507 2515 2497 2489 + f 4 -3587 -4006 -3991 -4002 + mu 0 4 2511 2513 2493 2500 + f 4 -3594 -4004 -3992 4007 + mu 0 4 2516 2512 2501 2498 + f 4 -3606 -4008 -3983 -4007 + mu 0 4 2515 2516 2498 2497 + f 4 4008 4009 -3819 4010 + mu 0 4 2517 2518 2383 2382 + f 4 -3822 4011 4012 -4011 + mu 0 4 2382 2384 2519 2517 + f 4 4013 4014 -4009 4015 + mu 0 4 2520 2521 2518 2517 + f 4 -4013 4016 4017 -4016 + mu 0 4 2517 2519 2522 2520 + f 4 4018 4019 4020 -4014 + mu 0 4 2520 2523 2524 2521 + f 4 4021 4022 -4019 -4018 + mu 0 4 2522 2525 2523 2520 + f 4 4023 4024 -4020 4025 + mu 0 4 2526 2527 2524 2523 + f 4 -4023 4026 4027 -4026 + mu 0 4 2523 2525 2528 2526 + f 4 4028 4029 4030 4031 + mu 0 4 2529 2530 2531 2532 + f 4 -4031 4032 4033 4034 + mu 0 4 2532 2531 2533 2534 + f 4 -4033 4035 4036 4037 + mu 0 4 2533 2531 2535 2536 + f 4 -4030 4038 4039 -4036 + mu 0 4 2531 2530 2537 2535 + f 4 -4035 4040 -4024 4041 + mu 0 4 2532 2534 2527 2526 + f 4 -4028 4042 -4032 -4042 + mu 0 4 2526 2528 2529 2532 + f 4 -3619 4043 -3821 -3816 + mu 0 4 2381 2538 2384 2367 + f 4 -3621 4044 -4010 4045 + mu 0 4 2539 2540 2383 2518 + f 4 -3628 4046 -4012 -4044 + mu 0 4 2538 2541 2519 2384 + f 4 -3630 -4046 -4015 4047 + mu 0 4 2542 2539 2518 2521 + f 4 -3638 4048 -4017 -4047 + mu 0 4 2541 2543 2522 2519 + f 4 -3639 -4048 -4021 4049 + mu 0 4 2544 2542 2521 2524 + f 4 -3647 4050 -4022 -4049 + mu 0 4 2543 2545 2525 2522 + f 4 -3648 -4050 -4025 4051 + mu 0 4 2546 2544 2524 2527 + f 4 -3655 4052 -4027 -4051 + mu 0 4 2545 2547 2528 2525 + f 4 -3674 4053 -4029 4054 + mu 0 4 2548 2549 2530 2529 + f 4 -3676 4055 -4034 4056 + mu 0 4 2550 2551 2534 2533 + f 4 -3669 -4057 -4038 4057 + mu 0 4 2552 2550 2533 2536 + f 4 -3658 4058 -4039 -4054 + mu 0 4 2549 2553 2537 2530 + f 4 -3681 -4052 -4041 -4056 + mu 0 4 2551 2546 2527 2534 + f 4 -3685 -4055 -4043 -4053 + mu 0 4 2547 2548 2529 2528 + f 4 4059 4060 4061 4062 + mu 0 4 2554 2555 2556 2557 + f 4 -4063 4063 -3737 4064 + mu 0 4 2554 2557 2322 2321 + f 4 4065 4066 -4061 4067 + mu 0 4 2558 2559 2556 2555 + f 4 4068 4069 4070 -4060 + mu 0 4 2554 2560 2561 2555 + f 4 -4069 -4065 4071 4072 + mu 0 4 2560 2554 2321 2562 + f 4 4073 4074 4075 4076 + mu 0 4 2314 2563 2561 2564 + f 4 4077 4078 -4076 -4070 + mu 0 4 2560 2565 2564 2561 + f 4 -4078 -4073 4079 4080 + mu 0 4 2565 2560 2562 2566 + f 4 4081 4082 4083 -4079 + mu 0 4 2565 2567 2568 2564 + f 4 -3724 -4077 -4084 4084 + mu 0 4 2315 2314 2564 2568 + f 4 -4082 -4081 4085 4086 + mu 0 4 2567 2565 2566 2569 + f 4 4087 4088 4089 -4083 + mu 0 4 2567 2570 2571 2568 + f 4 -3726 -4085 -4090 4090 + mu 0 4 2316 2315 2568 2571 + f 4 -4088 -4087 4091 4092 + mu 0 4 2570 2567 2569 2572 + f 4 -3731 4093 -4072 -3736 + mu 0 4 2320 2573 2562 2321 + f 4 -3698 4094 -4092 4095 + mu 0 4 2574 2575 2572 2569 + f 4 4096 -4093 -4095 -3702 + mu 0 4 2576 2570 2572 2575 + f 4 -3715 4097 -4074 -3723 + mu 0 4 2313 2577 2563 2314 + f 4 -3719 4098 -4080 -4094 + mu 0 4 2573 2578 2566 2562 + f 4 -3721 -4096 -4086 -4099 + mu 0 4 2578 2574 2569 2566 + f 4 -3728 4099 4100 -4098 + mu 0 4 2577 2579 2558 2563 + f 4 -3689 4101 -4066 -4100 + mu 0 4 2579 2580 2559 2558 + f 4 -3756 4102 4103 -3740 + mu 0 4 2324 2338 2581 2325 + f 4 4104 -3342 -3301 4105 + mu 0 4 2101 2070 2059 2058 + f 3 4106 -3368 4107 + mu 0 3 2317 2106 2105 + f 4 -3810 4108 -3755 -3803 + mu 0 4 2371 2372 2338 2337 + f 4 4109 4110 4111 -3459 + mu 0 4 2164 2062 2065 2160 + f 3 -3458 -3461 4112 + mu 0 3 2164 2163 2155 + f 4 4113 4114 -3305 -4110 + mu 0 4 2164 2102 2063 2062 + f 4 -3807 4115 -4103 -4109 + mu 0 4 2372 2373 2581 2338 + f 4 -3359 -4106 -3311 -4115 + mu 0 4 2102 2101 2058 2063 + f 4 4116 -3327 -3840 -3615 + mu 0 4 2068 2081 2080 2249 + f 4 -3806 -3768 4117 4118 + mu 0 4 2373 2346 2345 2582 + f 4 -4119 4119 4120 -4116 + mu 0 4 2373 2582 2329 2581 + f 4 -3732 -4091 -4089 -4097 + mu 0 4 2576 2316 2571 2570 + f 4 -3296 4121 -3751 4122 + mu 0 4 2051 2054 2583 2584 + f 4 -3747 4123 -3741 -3744 + mu 0 4 2328 2330 2326 2325 + f 3 -4104 -4121 -3745 + mu 0 3 2325 2581 2329 + f 4 -3753 -3757 -3739 4124 + mu 0 4 2336 2335 2324 2323 + f 4 4125 4126 -3837 4127 + mu 0 4 2385 2585 2393 2389 + f 4 -3823 -4128 -3828 4128 + mu 0 4 2386 2385 2389 2341 + f 4 -3835 -3370 -3363 -3355 + mu 0 4 2098 2107 2103 2099 + f 4 -3373 4129 -3374 -3364 + mu 0 4 2103 2109 2110 2067 + f 4 -3663 4130 -4040 -4059 + mu 0 4 2553 2586 2535 2537 + f 4 -3666 -4058 -4037 -4131 + mu 0 4 2586 2552 2536 2535; + setAttr ".fc[2000:2267]" + f 4 -3749 4131 4132 4133 + mu 0 4 2332 2331 2104 2587 + f 4 -3366 -4132 4134 -3357 + mu 0 4 2100 2104 2331 2097 + f 4 4135 -4129 -3762 -4120 + mu 0 4 2582 2386 2341 2329 + f 4 -3303 -3350 4136 4137 + mu 0 4 2057 2060 2096 2588 + f 4 -3312 -4138 4138 -3734 + mu 0 4 2064 2057 2588 2318 + f 4 -3733 -4108 4139 4140 + mu 0 4 2061 2317 2105 2066 + f 4 -3356 -3365 -4140 -3367 + mu 0 4 2100 2099 2066 2105 + f 4 -3299 4141 4142 4143 + mu 0 4 2589 2590 2591 2592 + f 4 4144 4145 4146 -4124 + mu 0 4 2593 2594 2595 2596 + f 4 4147 -4134 4148 4149 + mu 0 4 2597 2598 2599 2600 + f 4 4150 4151 -4123 4152 + mu 0 4 2601 2602 2603 2604 + f 4 -4152 4153 -4142 -3293 + mu 0 4 2603 2602 2591 2590 + f 4 4154 -3280 4155 -4146 + mu 0 4 2594 2023 2049 2595 + f 4 -4151 4156 -3258 4157 + mu 0 4 2602 2601 2039 2042 + f 4 -4157 4158 -3198 -3212 + mu 0 4 2005 2605 1995 1994 + f 4 -4153 -3754 4159 -4159 + mu 0 4 2605 2606 2607 1995 + f 4 -3199 -4160 -4125 4160 + mu 0 4 1996 1995 2607 2608 + f 4 -4145 -3750 -4148 4161 + mu 0 4 2594 2593 2598 2597 + f 4 -3200 4162 -4156 -3276 + mu 0 4 1993 1996 2595 2049 + f 4 -4161 -3742 -4147 -4163 + mu 0 4 1996 2608 2596 2595 + f 4 4163 -3239 4164 -4150 + mu 0 4 2600 2026 2024 2597 + f 4 -3236 -4155 -4162 -4165 + mu 0 4 2024 2023 2594 2597 + f 4 -3269 4165 -4143 4166 + mu 0 4 2044 2011 2592 2591 + f 4 -4158 -3263 -4167 -4154 + mu 0 4 2602 2042 2044 2591 + f 4 -4164 4167 4168 -3259 + mu 0 4 2026 2600 2609 2010 + f 4 -4149 4169 4170 -4168 + mu 0 4 2600 2599 2610 2609 + f 4 -4133 -3369 4171 -4170 + mu 0 4 2587 2104 2106 2611 + f 4 4172 4173 4174 4175 + mu 0 4 2612 2613 1991 2614 + f 4 4176 4177 -4176 4178 + mu 0 4 1269 2615 2612 2614 + f 4 4179 4180 4181 4182 + mu 0 4 2616 2617 2618 2619 + f 3 4183 4184 4185 + mu 0 3 2620 2621 2622 + f 4 4186 4187 -2030 4188 + mu 0 4 2623 2624 1280 1279 + f 4 4189 4190 4191 4192 + mu 0 4 2625 2626 2627 2628 + f 4 4193 4194 4195 -4180 + mu 0 4 2616 2629 2630 2617 + f 4 4196 4197 4198 -4185 + mu 0 4 2631 2632 2633 2634 + f 4 4199 -4190 4200 4201 + mu 0 4 2635 2626 2625 2636 + f 4 4202 4203 4204 4205 + mu 0 4 2637 2638 2639 2640 + f 4 -4183 4206 4207 4208 + mu 0 4 2616 2619 2624 2641 + f 4 -2055 -3145 4209 4210 + mu 0 4 2642 2643 2644 2645 + f 4 -2058 4211 -4182 4212 + mu 0 4 1303 1304 2619 2618 + f 4 4213 -2060 -4211 4214 + mu 0 4 2646 2647 2642 2645 + f 4 4215 4216 -4206 4217 + mu 0 4 2648 2649 2650 2651 + f 4 4218 4219 4220 -4192 + mu 0 4 2627 2641 2652 2628 + f 4 -4208 -4187 4221 -4220 + mu 0 4 2641 2624 2623 2652 + f 4 4222 4223 4224 4225 + mu 0 4 2653 2654 2655 2656 + f 3 4226 4227 4228 + mu 0 3 2657 2658 2659 + f 4 4229 4230 4231 4232 + mu 0 4 2660 2661 2662 2663 + f 4 4233 4234 4235 -3228 + mu 0 4 2016 2657 2660 2017 + f 4 -4229 4236 -4230 -4235 + mu 0 4 2657 2659 2661 2660 + f 4 4237 -4234 -3226 4238 + mu 0 4 2664 2657 2016 2015 + f 4 4239 4240 4241 4242 + mu 0 4 2665 2666 2664 2667 + f 4 4243 4244 4245 4246 + mu 0 4 2668 2669 2670 2671 + f 4 4247 -3207 4248 4249 + mu 0 4 2672 2001 2002 2673 + f 4 -4248 4250 4251 -3268 + mu 0 4 2046 2674 2669 2045 + f 4 -4252 -4244 4252 -3266 + mu 0 4 2045 2669 2668 2034 + f 4 -4236 -4233 4253 -3271 + mu 0 4 2017 2660 2663 2047 + f 4 -4243 4254 -4247 4255 + mu 0 4 2665 2667 2668 2671 + f 4 4256 4257 4258 -4232 + mu 0 4 2662 2675 2673 2663 + f 4 4259 -4250 -4258 4260 + mu 0 4 2676 2672 2673 2675 + f 4 -4225 4261 4262 4263 + mu 0 4 2677 2678 2679 2680 + f 4 -2111 -4188 -4207 -4212 + mu 0 4 1304 1280 2624 2619 + f 4 -4251 -4260 4264 -4245 + mu 0 4 2669 2674 2681 2670 + f 4 -4227 -4238 -4241 4265 + mu 0 4 2658 2657 2664 2666 + f 4 -2117 4266 4267 4268 + mu 0 4 2682 2683 2684 2685 + f 4 -4198 4269 -4216 4270 + mu 0 4 2686 2687 2688 2689 + f 4 4271 4272 4273 4274 + mu 0 4 1466 2690 2691 2692 + f 4 -2358 -4275 4275 -2124 + mu 0 4 102 1466 2692 1352 + f 4 -4273 -2371 4276 4277 + mu 0 4 2691 2690 2693 2694 + f 4 -2354 4278 4279 -4277 + mu 0 4 2693 2695 2696 2694 + f 4 4280 4281 4282 4283 + mu 0 4 2697 2698 2699 2700 + f 4 -4194 -4209 -4219 4284 + mu 0 4 2629 2616 2641 2627 + f 4 4285 4286 -4202 4287 + mu 0 4 2701 2702 2635 2636 + f 4 4288 -4263 4289 4290 + mu 0 4 2703 2680 2679 2704 + f 4 -4281 4291 -4279 -2366 + mu 0 4 2698 2697 2696 2695 + f 4 4292 -3249 -4253 -4255 + mu 0 4 2667 2032 2034 2668 + f 4 -4249 -3288 -4254 -4259 + mu 0 4 2673 2002 2047 2663 + f 4 -4101 -4068 -4071 -4075 + mu 0 4 2563 2558 2555 2561 + f 4 -3616 -3841 -3820 -4045 + mu 0 4 2540 2395 2356 2383 + f 4 -3812 -3846 4293 4294 + mu 0 4 2357 2377 2398 2364 + f 4 -3956 -3961 4295 4296 + mu 0 4 2353 2479 2482 2350 + f 4 -3793 -4294 -3844 -3814 + mu 0 4 2354 2364 2398 2379 + f 4 -3895 -3904 -3898 4297 + mu 0 4 2348 2434 2437 2361 + f 4 -3776 -4296 -3959 -3953 + mu 0 4 2349 2350 2482 2477 + f 4 -3765 4298 4299 -3825 + mu 0 4 2344 2343 2360 2387 + f 4 -4300 -3791 4300 -3830 + mu 0 4 2387 2360 2363 2115 + f 4 4301 -3379 -4301 -3896 + mu 0 4 2436 2112 2115 2363 + f 4 -3455 -4112 -3316 -4302 + mu 0 4 2161 2160 2065 2071 + f 4 -4126 -3831 -3381 4302 + mu 0 4 2585 2385 2114 2117 + f 4 -4118 -3766 -3824 -4136 + mu 0 4 2582 2345 2344 2386 + f 4 -4299 -3771 -4298 -3788 + mu 0 4 2360 2343 2348 2361 + f 3 -3785 -4297 -3775 + mu 0 3 2342 2353 2350 + f 3 -3783 -4295 -3792 + mu 0 3 2347 2357 2364 + f 4 4303 -3345 -3759 -4122 + mu 0 4 2054 2093 2092 2583 + f 4 4304 4305 -3167 -3147 + mu 0 4 1964 2705 1980 1965 + f 4 4306 4307 4308 4309 + mu 0 4 2706 2707 2708 1969 + f 4 -2681 4310 4311 -2662 + mu 0 4 1663 1637 2709 1664 + f 4 -2706 -2664 4312 -3100 + mu 0 4 1687 1662 1665 1927 + f 4 -2659 4313 -4311 -2625 + mu 0 4 1638 1661 2709 1637 + f 4 -2506 -2568 -2498 -2526 + mu 0 4 1577 1576 1571 1546 + f 4 4314 -2574 -2387 -2578 + mu 0 4 1612 1583 1498 1497 + f 4 -4293 -4242 -4239 -3246 + mu 0 4 2032 2667 2664 2015 + f 4 -3178 4315 4316 4317 + mu 0 4 1987 1986 1952 2710 + f 4 -3154 -3191 -4318 4318 + mu 0 4 1972 1971 1987 2710 + f 4 4319 -3181 -3188 -4174 + mu 0 4 2613 1986 1989 1991 + f 4 -2488 -2524 -4315 4320 + mu 0 4 1565 1564 1583 1612 + f 4 4321 -2592 4322 -2379 + mu 0 4 1490 1602 1611 1485 + f 3 4323 -2656 4324 + mu 0 3 1728 1660 1658 + f 3 4325 -2658 4326 + mu 0 3 1812 1661 1660 + f 4 -4314 4327 -3028 4328 + mu 0 4 2709 1661 1858 1898 + f 4 -4312 -4329 -3031 4329 + mu 0 4 1664 2709 1898 1892 + f 4 -2663 -4330 -3020 4330 + mu 0 4 1665 1664 1892 1891 + f 4 -4313 -4331 -3102 4331 + mu 0 4 1927 1665 1891 1895 + f 4 -3101 -4332 -3024 4332 + mu 0 4 1867 1927 1895 1865 + f 4 -2974 4333 -2975 -4333 + mu 0 4 1865 1866 1673 1867 + f 4 4334 -2676 -4334 -3096 + mu 0 4 1778 1671 1673 1866 + f 4 4335 -2673 -4335 -2837 + mu 0 4 1675 1656 1671 1778 + f 4 4336 -2651 -4336 -2677 + mu 0 4 1674 1653 1656 1675 + f 4 -2767 4337 -2665 -4337 + mu 0 4 1674 1731 1666 1653 + f 4 -2775 4338 -2668 -4338 + mu 0 4 1731 1736 1668 1666 + f 4 4339 -3097 -4339 -2786 + mu 0 4 1744 1657 1926 1745 + f 4 -2785 4340 -2652 -4340 + mu 0 4 1744 1719 1658 1657 + f 4 -3375 4341 -3695 4342 + mu 0 4 2111 2110 2293 2295 + f 4 -4343 -3738 4343 -3380 + mu 0 4 2116 2319 2322 2117 + f 4 4344 -4303 -4344 -4064 + mu 0 4 2557 2585 2117 2322 + f 4 -4127 -4345 -4062 4345 + mu 0 4 2393 2585 2557 2556 + f 4 4346 -3838 -4346 -4067 + mu 0 4 2559 2392 2393 2556 + f 4 -3839 -4347 -4102 4347 + mu 0 4 2394 2392 2559 2580 + f 4 -3372 -4348 -3688 4348 + mu 0 4 2109 2108 2290 2289 + f 4 -4349 -3693 -4342 -4130 + mu 0 4 2109 2289 2293 2110 + f 3 -3119 4349 -3136 + mu 0 3 1945 1944 1953 + f 4 -3124 4350 -4317 -3131 + mu 0 4 1948 1947 2710 1952 + f 3 -4325 -4341 -2761 + mu 0 3 1728 1658 1719 + f 3 -2824 4351 -4324 + mu 0 3 1728 1770 1660 + f 3 -4327 -4352 -2895 + mu 0 3 1812 1660 1770 + f 3 -2964 -4328 -4326 + mu 0 3 1812 1858 1661 + f 3 -2967 -3033 -3029 + mu 0 3 1858 1860 1899 + f 3 -2973 -2995 4352 + mu 0 3 1866 1862 1876 + f 3 -2991 -3094 -4353 + mu 0 3 1876 1817 1866 + f 3 -3095 -2910 4353 + mu 0 3 1778 1816 1822 + f 3 -2907 -2835 -4354 + mu 0 3 1822 1774 1778 + f 3 -2836 -2838 4354 + mu 0 3 1675 1777 1779 + f 3 -2678 -4355 -2844 + mu 0 3 1676 1675 1779 + f 3 -2680 -2788 -2768 + mu 0 3 1674 1677 1732 + f 3 -2570 -4321 -2577 + mu 0 3 1526 1565 1612 + f 4 4355 4356 -2571 -2483 + mu 0 4 1559 2711 2712 1561 + f 4 4357 -4356 -2480 4358 + mu 0 4 2713 2711 1559 1544 + f 4 4359 4360 -4359 -2462 + mu 0 4 1543 1563 2713 1544 + f 4 -2500 -2530 -2486 -4360 + mu 0 4 1543 1572 1541 1563 + f 4 -2572 4361 -2375 -4323 + mu 0 4 1611 1610 1486 1485 + f 4 4362 -2505 -4362 -4357 + mu 0 4 2711 1573 1575 2712 + f 4 -4358 4363 -2591 -4363 + mu 0 4 2711 2713 1579 1573 + f 4 -2510 -4364 -4361 -2487 + mu 0 4 1459 1579 2713 1563 + f 3 -2455 -2551 -4322 + mu 0 3 1490 1538 1602 + f 4 -2348 -2372 -4272 -2587 + mu 0 4 2714 2715 2716 2717 + f 4 -3289 -3290 -3238 -3287 + mu 0 4 2037 2048 2021 2025 + f 4 4364 -4166 -3221 -4169 + mu 0 4 2609 2592 2011 2010 + f 4 4365 -4144 -4365 -4171 + mu 0 4 2610 2589 2592 2609 + f 4 -3297 -4366 -4172 4366 + mu 0 4 2056 2055 2611 2106 + f 4 4367 -3298 4368 -4139 + mu 0 4 2588 2053 2056 2318 + f 4 -3743 -3832 -4135 -3748 + mu 0 4 2328 2327 2097 2331 + f 3 -3764 -3774 -3772 + mu 0 3 2343 2342 2349 + f 4 -3304 -4141 -3308 -4111 + mu 0 4 2062 2061 2066 2065 + f 4 -4369 -4367 -4107 -3735 + mu 0 4 2318 2056 2106 2317 + f 4 -3295 -4368 -4137 4369 + mu 0 4 2054 2053 2588 2096 + f 3 -4370 -3349 -4304 + mu 0 3 2054 2096 2093 + f 4 -4113 -3453 4370 -4114 + mu 0 4 2164 2155 2158 2102 + f 3 -4371 -3541 4371 + mu 0 3 2102 2158 2206 + f 3 -3360 -4372 -3537 + mu 0 3 2075 2102 2206 + f 3 -3323 4372 -3358 + mu 0 3 2074 2077 2101 + f 3 4373 -4373 -3361 + mu 0 3 2081 2101 2077 + f 4 -3315 -4105 -4374 -4117 + mu 0 4 2068 2070 2101 2081 + f 3 -3286 -3250 -3255 + mu 0 3 2038 2035 2033 + f 4 -2816 4374 -2819 -2794 + mu 0 4 2718 2719 1767 1751 + f 4 -2818 -2799 -2821 -4375 + mu 0 4 2719 1752 1755 1767 + f 4 4375 4376 4377 -3120 + mu 0 4 1945 1985 2720 1946 + f 4 4378 4379 -4291 -4204 + mu 0 4 2721 2722 2723 2724 + f 4 -4267 -2231 -4214 4380 + mu 0 4 2684 2683 2647 2646 + f 4 -4175 -3187 -2233 4381 + mu 0 4 2614 1991 642 1385 + f 4 -2374 -2588 -2356 -2234 + mu 0 4 123 2725 1465 105 + f 4 -2589 -2373 -2376 -2504 + mu 0 4 2726 2727 2728 1575 + f 4 -4283 -2364 -2236 4382 + mu 0 4 2700 2699 2729 2730 + f 4 -4268 4383 -4286 4384 + mu 0 4 2685 2684 2702 2701 + f 4 4385 -4384 -4381 4386 + mu 0 4 2731 2732 2733 2734 + f 4 -4215 4387 4388 -4387 + mu 0 4 2735 2736 2737 2738 + f 4 4389 4390 -4388 -4210 + mu 0 4 2739 2740 2737 2736 + f 4 4391 4392 -4390 -3144 + mu 0 4 2741 2742 2743 2744 + f 3 4393 4394 4395 + mu 0 3 2745 2630 2746 + f 4 -2365 -4282 -2368 -2461 + mu 0 4 1471 1473 2747 2748 + f 4 4396 -3112 4397 -3113 + mu 0 4 1931 1935 1937 1938 + f 4 4398 -3109 -4397 -3104 + mu 0 4 1930 1932 1935 1931 + f 4 4399 -3138 -4399 -3140 + mu 0 4 1957 1955 1932 1930 + f 4 4400 -3174 -4400 -3194 + mu 0 4 1983 1982 1955 1957 + f 4 -3170 -4401 -3171 4401 + mu 0 4 1978 1982 1983 1975 + f 4 -3164 -4402 -3161 4402 + mu 0 4 1979 1978 1975 1966 + f 4 -4403 -3151 4403 -3189 + mu 0 4 1979 1966 1968 1992 + f 4 4404 -4308 4405 -4305 + mu 0 4 1964 2708 2707 2705 + f 3 -3152 -4309 4406 + mu 0 3 1970 1969 2708 + f 4 -2262 -3195 4407 -3184 + mu 0 4 640 646 1973 1990 + f 4 4408 4409 -4310 -3155 + mu 0 4 1972 2720 2706 1969 + f 4 -3116 -3121 4410 -3123 + mu 0 4 1942 1941 1946 1947 + f 4 4411 -3128 -3107 -3133 + mu 0 4 1953 1940 1934 1933 + f 4 -3122 -3115 -4412 -4350 + mu 0 4 1944 1941 1940 1953 + f 4 -4307 4412 -3190 4413 + mu 0 4 2707 2706 1984 1992 + f 4 -4404 4414 -4406 -4414 + mu 0 4 1992 1968 2705 2707 + f 4 -3150 4415 -4306 -4415 + mu 0 4 1968 1967 1980 2705 + f 4 -3166 -4416 -3193 -2271 + mu 0 4 626 1980 1967 644 + f 4 -4413 -4410 -4377 -3176 + mu 0 4 1984 2706 2720 1985 + f 3 4416 -3135 -3173 + mu 0 3 1981 1945 1954 + f 3 -4320 4417 -4316 + mu 0 3 1986 2613 1952 + f 4 4418 4419 4420 -4181 + mu 0 4 2617 2749 2615 2618 + f 4 -2277 -4213 -4421 -4177 + mu 0 4 1269 1303 2618 2615 + f 4 -4196 -4394 4421 -4419 + mu 0 4 2617 2630 2745 2749 + f 4 4422 -4189 -2279 -4276 + mu 0 4 2692 2623 1279 1352 + f 4 -4222 -4423 -4274 4423 + mu 0 4 2652 2623 2692 2691 + f 4 -4221 -4424 -4278 4424 + mu 0 4 2628 2652 2691 2694 + f 4 4425 -4193 -4425 -4280 + mu 0 4 2696 2625 2628 2694 + f 4 -4201 -4426 -4292 4426 + mu 0 4 2636 2625 2696 2697 + f 4 4427 -4288 -4427 -4284 + mu 0 4 2700 2701 2636 2697 + f 4 4428 -4385 -4428 -4383 + mu 0 4 2730 2685 2701 2700 + f 3 -2287 -4269 -4429 + mu 0 3 2730 2682 2685 + f 4 4429 -3111 4430 4431 + mu 0 4 2750 1937 1936 2751 + f 4 -4431 -3129 -3130 4432 + mu 0 4 2751 1936 1943 1951 + f 4 4433 4434 4435 4436 + mu 0 4 2752 2753 2754 2755 + f 4 4437 4438 -3141 4439 + mu 0 4 2756 2757 1959 1958 + f 4 4440 -4433 4441 -4435 + mu 0 4 2753 2751 1951 2754 + f 4 4442 -4432 -4441 4443 + mu 0 4 2756 2750 2751 2753 + f 4 -4418 4444 -4442 -3132 + mu 0 4 1952 2613 2754 1951 + f 4 4445 4446 4447 4448 + mu 0 4 2758 2759 2760 2761 + f 4 -4436 -4445 -4173 4449 + mu 0 4 2755 2754 2613 2612 + f 4 -4437 4450 -4422 4451 + mu 0 4 2752 2755 2749 2745 + f 4 -4450 -4178 -4420 -4451 + mu 0 4 2755 2612 2615 2749 + f 4 -4447 4452 -4223 4453 + mu 0 4 2762 2763 2654 2653 + f 4 4454 -4186 4455 -4449 + mu 0 4 2764 2765 2766 2767 + f 4 4456 4457 -4392 -4439 + mu 0 4 2768 2769 2742 2741 + f 4 4458 4459 -4457 4460 + mu 0 4 2770 2771 2772 2773 + f 4 -4396 4461 -4459 -4452 + mu 0 4 2774 2775 2776 2777 + f 4 -3186 4462 -4443 -4440 + mu 0 4 1958 1949 2750 2756 + f 4 -3126 -4398 -4430 -4463 + mu 0 4 1949 1938 1937 2750 + f 4 -4434 -4461 -4438 -4444 + mu 0 4 2753 2752 2757 2756 + f 3 -4179 -4382 -2322 + mu 0 3 1269 2614 1385 + f 3 -4319 -4351 4463 + mu 0 3 1972 2710 1947 + f 4 -4407 4464 -4408 -3156 + mu 0 4 1970 2708 1990 1973 + f 4 -3168 -3177 -4376 -4417 + mu 0 4 1981 1977 1985 1945 + f 4 -4464 -4411 -4378 -4409 + mu 0 4 1972 1947 1946 2720 + f 3 -4465 -4405 -3185 + mu 0 3 1990 2708 1964 + f 4 -4462 4465 -4455 4466 + mu 0 4 2776 2775 2765 2764 + f 4 -4395 4467 -4184 -4466 + mu 0 4 2746 2630 2621 2620 + f 4 -4195 4468 -4197 -4468 + mu 0 4 2778 2779 2632 2631 + f 4 -4270 -4469 -4285 4469 + mu 0 4 2688 2687 2780 2781 + f 4 -4217 -4470 -4191 4470 + mu 0 4 2650 2649 2782 2783 + f 4 -4200 4471 -4203 -4471 + mu 0 4 2784 2785 2638 2637 + f 4 4472 -4386 4473 -4380 + mu 0 4 2722 2732 2731 2723 + f 4 -4389 4474 -4289 -4474 + mu 0 4 2738 2737 2680 2703 + f 4 4475 -4264 -4475 -4391 + mu 0 4 2740 2677 2680 2737 + f 4 4476 -4226 -4476 -4393 + mu 0 4 2742 2653 2656 2743 + f 4 4477 -4454 -4477 -4458 + mu 0 4 2769 2762 2653 2742 + f 4 -4448 -4478 -4460 -4467 + mu 0 4 2761 2760 2772 2771 + f 4 4478 -4266 4479 -4456 + mu 0 4 2786 2658 2666 2787 + f 4 -4228 -4479 -4199 4480 + mu 0 4 2659 2658 2786 2788 + f 4 -4237 -4481 -4271 4481 + mu 0 4 2661 2659 2788 2789 + f 4 -4231 -4482 -4218 4482 + mu 0 4 2662 2661 2789 2640 + f 4 -4205 4483 -4257 -4483 + mu 0 4 2640 2639 2675 2662 + f 4 4484 -4261 -4484 -4290 + mu 0 4 2790 2676 2675 2639 + f 4 -4265 -4485 -4262 4485 + mu 0 4 2670 2681 2791 2792 + f 4 -4246 -4486 -4224 4486 + mu 0 4 2671 2670 2792 2793 + f 4 4487 -4256 -4487 -4453 + mu 0 4 2794 2665 2671 2793 + f 4 -4480 -4240 -4488 -4446 + mu 0 4 2787 2666 2665 2794 + f 4 -4287 -4473 -4379 -4472 + mu 0 4 2795 2732 2722 2721; + setAttr ".cd" -type "dataPolyComponent" Index_Data Edge 0 ; + setAttr ".cvd" -type "dataPolyComponent" Index_Data Vertex 0 ; + setAttr ".hfd" -type "dataPolyComponent" Index_Data Face 0 ; + setAttr ".dr" 3; + setAttr ".dsm" 2; + setAttr ".vraySeparator_vray_objectID" -type "string" ""; + setAttr ".vrayObjectID" 1; +createNode transform -n "allCamera:SMO001"; + addAttr -ci true -sn "resWidth" -ln "resWidth" -at "long"; + addAttr -ci true -sn "resHeight" -ln "resHeight" -at "long"; + setAttr ".resWidth" 1024; + setAttr ".resHeight" 1024; +createNode transform -n "allCamera:frame_1_128" -p "allCamera:SMO001"; +createNode transform -n "allCamera:cam" -p "allCamera:SMO001"; +createNode camera -n "allCamera:camShape" -p "allCamera:cam"; + setAttr -k off ".v"; + setAttr ".cap" -type "double2" 1.4173 0.9449 ; + setAttr ".ff" 0; + setAttr ".ovr" 1.3; + setAttr ".coi" 9.1119298380547384; + setAttr ".imn" -type "string" "cam1"; + setAttr ".den" -type "string" "cam1_depth"; + setAttr ".man" -type "string" "cam1_mask"; + setAttr ".dr" yes; +createNode mentalrayItemsList -s -n "mentalrayItemsList"; +createNode mentalrayGlobals -s -n "mentalrayGlobals"; + setAttr ".rvb" 3; + setAttr ".ivb" no; +createNode mentalrayOptions -s -n "miDefaultOptions"; + addAttr -ci true -m -sn "stringOptions" -ln "stringOptions" -at "compound" -nc + 3; + addAttr -ci true -sn "name" -ln "name" -dt "string" -p "stringOptions"; + addAttr -ci true -sn "value" -ln "value" -dt "string" -p "stringOptions"; + addAttr -ci true -sn "type" -ln "type" -dt "string" -p "stringOptions"; + setAttr ".splck" yes; + setAttr ".fil" 0; + setAttr ".rflr" 1; + setAttr ".rfrr" 1; + setAttr ".maxr" 2; + setAttr ".shrd" 2; + setAttr -s 48 ".stringOptions"; + setAttr ".stringOptions[0].name" -type "string" "rast motion factor"; + setAttr ".stringOptions[0].value" -type "string" "1.0"; + setAttr ".stringOptions[0].type" -type "string" "scalar"; + setAttr ".stringOptions[1].name" -type "string" "rast transparency depth"; + setAttr ".stringOptions[1].value" -type "string" "8"; + setAttr ".stringOptions[1].type" -type "string" "integer"; + setAttr ".stringOptions[2].name" -type "string" "rast useopacity"; + setAttr ".stringOptions[2].value" -type "string" "true"; + setAttr ".stringOptions[2].type" -type "string" "boolean"; + setAttr ".stringOptions[3].name" -type "string" "importon"; + setAttr ".stringOptions[3].value" -type "string" "false"; + setAttr ".stringOptions[3].type" -type "string" "boolean"; + setAttr ".stringOptions[4].name" -type "string" "importon density"; + setAttr ".stringOptions[4].value" -type "string" "1.0"; + setAttr ".stringOptions[4].type" -type "string" "scalar"; + setAttr ".stringOptions[5].name" -type "string" "importon merge"; + setAttr ".stringOptions[5].value" -type "string" "0.0"; + setAttr ".stringOptions[5].type" -type "string" "scalar"; + setAttr ".stringOptions[6].name" -type "string" "importon trace depth"; + setAttr ".stringOptions[6].value" -type "string" "0"; + setAttr ".stringOptions[6].type" -type "string" "integer"; + setAttr ".stringOptions[7].name" -type "string" "importon traverse"; + setAttr ".stringOptions[7].value" -type "string" "true"; + setAttr ".stringOptions[7].type" -type "string" "boolean"; + setAttr ".stringOptions[8].name" -type "string" "shadowmap pixel samples"; + setAttr ".stringOptions[8].value" -type "string" "3"; + setAttr ".stringOptions[8].type" -type "string" "integer"; + setAttr ".stringOptions[9].name" -type "string" "ambient occlusion"; + setAttr ".stringOptions[9].value" -type "string" "false"; + setAttr ".stringOptions[9].type" -type "string" "boolean"; + setAttr ".stringOptions[10].name" -type "string" "ambient occlusion rays"; + setAttr ".stringOptions[10].value" -type "string" "256"; + setAttr ".stringOptions[10].type" -type "string" "integer"; + setAttr ".stringOptions[11].name" -type "string" "ambient occlusion cache"; + setAttr ".stringOptions[11].value" -type "string" "false"; + setAttr ".stringOptions[11].type" -type "string" "boolean"; + setAttr ".stringOptions[12].name" -type "string" "ambient occlusion cache density"; + setAttr ".stringOptions[12].value" -type "string" "1.0"; + setAttr ".stringOptions[12].type" -type "string" "scalar"; + setAttr ".stringOptions[13].name" -type "string" "ambient occlusion cache points"; + setAttr ".stringOptions[13].value" -type "string" "64"; + setAttr ".stringOptions[13].type" -type "string" "integer"; + setAttr ".stringOptions[14].name" -type "string" "irradiance particles"; + setAttr ".stringOptions[14].value" -type "string" "false"; + setAttr ".stringOptions[14].type" -type "string" "boolean"; + setAttr ".stringOptions[15].name" -type "string" "irradiance particles rays"; + setAttr ".stringOptions[15].value" -type "string" "256"; + setAttr ".stringOptions[15].type" -type "string" "integer"; + setAttr ".stringOptions[16].name" -type "string" "irradiance particles interpolate"; + setAttr ".stringOptions[16].value" -type "string" "1"; + setAttr ".stringOptions[16].type" -type "string" "integer"; + setAttr ".stringOptions[17].name" -type "string" "irradiance particles interppoints"; + setAttr ".stringOptions[17].value" -type "string" "64"; + setAttr ".stringOptions[17].type" -type "string" "integer"; + setAttr ".stringOptions[18].name" -type "string" "irradiance particles indirect passes"; + setAttr ".stringOptions[18].value" -type "string" "0"; + setAttr ".stringOptions[18].type" -type "string" "integer"; + setAttr ".stringOptions[19].name" -type "string" "irradiance particles scale"; + setAttr ".stringOptions[19].value" -type "string" "1.0"; + setAttr ".stringOptions[19].type" -type "string" "scalar"; + setAttr ".stringOptions[20].name" -type "string" "irradiance particles env"; + setAttr ".stringOptions[20].value" -type "string" "true"; + setAttr ".stringOptions[20].type" -type "string" "boolean"; + setAttr ".stringOptions[21].name" -type "string" "irradiance particles env rays"; + setAttr ".stringOptions[21].value" -type "string" "256"; + setAttr ".stringOptions[21].type" -type "string" "integer"; + setAttr ".stringOptions[22].name" -type "string" "irradiance particles env scale"; + setAttr ".stringOptions[22].value" -type "string" "1"; + setAttr ".stringOptions[22].type" -type "string" "integer"; + setAttr ".stringOptions[23].name" -type "string" "irradiance particles rebuild"; + setAttr ".stringOptions[23].value" -type "string" "true"; + setAttr ".stringOptions[23].type" -type "string" "boolean"; + setAttr ".stringOptions[24].name" -type "string" "irradiance particles file"; + setAttr ".stringOptions[24].value" -type "string" ""; + setAttr ".stringOptions[24].type" -type "string" "string"; + setAttr ".stringOptions[25].name" -type "string" "geom displace motion factor"; + setAttr ".stringOptions[25].value" -type "string" "1.0"; + setAttr ".stringOptions[25].type" -type "string" "scalar"; + setAttr ".stringOptions[26].name" -type "string" "contrast all buffers"; + setAttr ".stringOptions[26].value" -type "string" "true"; + setAttr ".stringOptions[26].type" -type "string" "boolean"; + setAttr ".stringOptions[27].name" -type "string" "finalgather normal tolerance"; + setAttr ".stringOptions[27].value" -type "string" "25.842"; + setAttr ".stringOptions[27].type" -type "string" "scalar"; + setAttr ".stringOptions[28].name" -type "string" "trace camera clip"; + setAttr ".stringOptions[28].value" -type "string" "false"; + setAttr ".stringOptions[28].type" -type "string" "boolean"; + setAttr ".stringOptions[29].name" -type "string" "unified sampling"; + setAttr ".stringOptions[29].value" -type "string" "true"; + setAttr ".stringOptions[29].type" -type "string" "boolean"; + setAttr ".stringOptions[30].name" -type "string" "samples quality"; + setAttr ".stringOptions[30].value" -type "string" "0.25 0.25 0.25 0.25"; + setAttr ".stringOptions[30].type" -type "string" "color"; + setAttr ".stringOptions[31].name" -type "string" "samples min"; + setAttr ".stringOptions[31].value" -type "string" "1.0"; + setAttr ".stringOptions[31].type" -type "string" "scalar"; + setAttr ".stringOptions[32].name" -type "string" "samples max"; + setAttr ".stringOptions[32].value" -type "string" "100.0"; + setAttr ".stringOptions[32].type" -type "string" "scalar"; + setAttr ".stringOptions[33].name" -type "string" "samples error cutoff"; + setAttr ".stringOptions[33].value" -type "string" "0.0 0.0 0.0 0.0"; + setAttr ".stringOptions[33].type" -type "string" "color"; + setAttr ".stringOptions[34].name" -type "string" "samples per object"; + setAttr ".stringOptions[34].value" -type "string" "false"; + setAttr ".stringOptions[34].type" -type "string" "boolean"; + setAttr ".stringOptions[35].name" -type "string" "progressive"; + setAttr ".stringOptions[35].value" -type "string" "false"; + setAttr ".stringOptions[35].type" -type "string" "boolean"; + setAttr ".stringOptions[36].name" -type "string" "progressive max time"; + setAttr ".stringOptions[36].value" -type "string" "0"; + setAttr ".stringOptions[36].type" -type "string" "integer"; + setAttr ".stringOptions[37].name" -type "string" "progressive subsampling size"; + setAttr ".stringOptions[37].value" -type "string" "4"; + setAttr ".stringOptions[37].type" -type "string" "integer"; + setAttr ".stringOptions[38].name" -type "string" "iray"; + setAttr ".stringOptions[38].value" -type "string" "false"; + setAttr ".stringOptions[38].type" -type "string" "boolean"; + setAttr ".stringOptions[39].name" -type "string" "light relative scale"; + setAttr ".stringOptions[39].value" -type "string" "0.31831"; + setAttr ".stringOptions[39].type" -type "string" "scalar"; + setAttr ".stringOptions[40].name" -type "string" "trace camera motion vectors"; + setAttr ".stringOptions[40].value" -type "string" "false"; + setAttr ".stringOptions[40].type" -type "string" "boolean"; + setAttr ".stringOptions[41].name" -type "string" "ray differentials"; + setAttr ".stringOptions[41].value" -type "string" "true"; + setAttr ".stringOptions[41].type" -type "string" "boolean"; + setAttr ".stringOptions[42].name" -type "string" "environment lighting mode"; + setAttr ".stringOptions[42].value" -type "string" "off"; + setAttr ".stringOptions[42].type" -type "string" "string"; + setAttr ".stringOptions[43].name" -type "string" "environment lighting quality"; + setAttr ".stringOptions[43].value" -type "string" "0.2"; + setAttr ".stringOptions[43].type" -type "string" "scalar"; + setAttr ".stringOptions[44].name" -type "string" "environment lighting shadow"; + setAttr ".stringOptions[44].value" -type "string" "transparent"; + setAttr ".stringOptions[44].type" -type "string" "string"; + setAttr ".stringOptions[45].name" -type "string" "environment lighting resolution"; + setAttr ".stringOptions[45].value" -type "string" "512"; + setAttr ".stringOptions[45].type" -type "string" "integer"; + setAttr ".stringOptions[46].name" -type "string" "environment lighting shader samples"; + setAttr ".stringOptions[46].value" -type "string" "2"; + setAttr ".stringOptions[46].type" -type "string" "integer"; + setAttr ".stringOptions[47].name" -type "string" "environment lighting scale"; + setAttr ".stringOptions[47].value" -type "string" "1.0 1.0 1.0"; + setAttr ".stringOptions[47].type" -type "string" "color"; +createNode mentalrayFramebuffer -s -n "miDefaultFramebuffer"; + setAttr ".dat" 2; +createNode lightLinker -s -n "lightLinker1"; + setAttr -s 5 ".lnk"; + setAttr -s 5 ".slnk"; +createNode displayLayerManager -n "layerManager"; + setAttr -s 2 ".dli[1]" 1; + setAttr -s 2 ".dli"; +createNode displayLayer -n "defaultLayer"; +createNode renderLayerManager -n "renderLayerManager"; + setAttr -s 4 ".rlmi[1:3]" 1 2 3; + setAttr -s 4 ".rlmi"; +createNode renderLayer -n "defaultRenderLayer"; + setAttr ".g" yes; + setAttr ".rndr" no; + setAttr -s 8 ".adjs"; + setAttr ".adjs[0].val" 0; + setAttr ".adjs[1].val" 0.15000000596046448; + setAttr ".adjs[2].val" -type "float3" 0.5 0.5 0.5 ; + setAttr ".adjs[3].val" 5; + setAttr ".adjs[5].val" 1; + setAttr ".adjs[6].val" 1; + setAttr ".adjs[8].val" 0; + setAttr ".adjs[9].val" 1; +createNode partition -n "ffxPrefsPartition"; + addAttr -ci true -sn "ffxLocPrefClearRAMas" -ln "ffxLocPrefClearRAMas" -dv 1 -min + 0 -max 1 -at "bool"; + addAttr -ci true -sn "ffxLocPrefSnapshotOpt" -ln "ffxLocPrefSnapshotOpt" -min 0 + -max 2 -at "long"; + addAttr -ci true -sn "ffxLocPrefNthFrame" -ln "ffxLocPrefNthFrame" -dv 1 -min 1 + -at "long"; + addAttr -ci true -sn "ffxLocPrefFrameList" -ln "ffxLocPrefFrameList" -dt "string"; + addAttr -ci true -sn "ffxLocPrefDelSnaOnScEx" -ln "ffxLocPrefDelSnaOnScEx" -min + 0 -max 1 -at "bool"; + addAttr -ci true -sn "ffxLocPrefAbToStpCon" -ln "ffxLocPrefAbToStpCon" -dv 1 -min + 0 -max 1 -at "bool"; +lockNode -l 1 ; +createNode ffxTurbulenceShader -n "ffxTurbulenceShader1"; + setAttr ".vpar" -type "stringArray" 0 ; + setAttr ".upar" -type "stringArray" 0 ; + setAttr ".glo" 1; +lockNode -l 1 ; +createNode expression -n "expression1"; + setAttr -k on ".nds"; + setAttr ".ixp" -type "string" ""; +createNode ramp -n "ramp4"; + setAttr -s 3 ".cel"; + setAttr ".cel[0].ep" 0; + setAttr ".cel[0].ec" -type "float3" 1 1 1 ; + setAttr ".cel[1].ep" 0.5; + setAttr ".cel[1].ec" -type "float3" 0.5 0.5 0.5 ; + setAttr ".cel[2].ep" 1; + setAttr ".cel[2].ec" -type "float3" 0 0 0 ; +createNode shadingEngine -n "fumeFX_A1SG1"; + setAttr ".ihi" 0; + setAttr ".ro" yes; +createNode materialInfo -n "materialInfo2"; +createNode expression -n "ffxMRVolShape11_linkExp"; + setAttr -k on ".nds"; + setAttr -s 2 ".in"; + setAttr -s 2 ".in"; + setAttr -s 2 ".out"; + setAttr ".ixp" -type "string" ".O[0] = .I[0];\n.O[1] = .I[1];"; +createNode displayLayer -n "layer1"; + setAttr ".do" 1; +createNode VRaySettingsNode -s -n "vraySettings"; + setAttr ".pe" 2; + setAttr ".se" 3; + setAttr ".cmph" 60; + setAttr ".cfile" -type "string" ""; + setAttr ".cfile2" -type "string" ""; + setAttr ".casf" -type "string" ""; + setAttr ".casf2" -type "string" ""; + setAttr ".st" 2; + setAttr ".msr" 2; + setAttr ".dma" 2; + setAttr ".sd" 1000; + setAttr ".ss" 0.01; + setAttr ".pfts" 20; + setAttr ".ufg" yes; + setAttr ".fnm" -type "string" ""; + setAttr ".lcfnm" -type "string" ""; + setAttr ".asf" -type "string" ""; + setAttr ".lcasf" -type "string" ""; + setAttr ".urtrshd" yes; + setAttr ".rtrshd" 2; + setAttr ".icits" 10; + setAttr ".ifile" -type "string" ""; + setAttr ".ifile2" -type "string" ""; + setAttr ".iasf" -type "string" ""; + setAttr ".iasf2" -type "string" ""; + setAttr ".pmfile" -type "string" ""; + setAttr ".pmfile2" -type "string" ""; + setAttr ".pmasf" -type "string" ""; + setAttr ".pmasf2" -type "string" ""; + setAttr ".dmcstd" yes; + setAttr ".cmao" 2; + setAttr ".cmlw" yes; + setAttr ".cg" 2.2000000476837158; + setAttr ".mtah" yes; + setAttr ".srflc" 1; + setAttr ".seu" yes; + setAttr ".gorvs" yes; + setAttr ".gormio" yes; + setAttr ".wi" 1024; + setAttr ".he" 1024; + setAttr ".aspr" 1; + setAttr ".jpegq" 100; + setAttr ".animtp" 1; + setAttr ".animbo" yes; + setAttr ".imgfs" -type "string" "tif"; + setAttr ".bkc" -type "string" "map1"; + setAttr ".vfbOn" yes; + setAttr ".vfbSA" -type "Int32Array" 251 998 14 859 10 1060 1132 + 0 0 28 53 -1073691583 0 78 53 0 -2048 -2048 1024 + 1024 453 0 -1073741824 0 -1073741824 0 1072693248 0 1072693248 886 1 + 3 1 0 0 0 0 1 0 5 0 1065353216 3 + 1 0 0 0 0 1 0 5 0 1065353216 3 1 + 1065353216 0 0 0 1 0 5 0 1065353216 1 3 2 + 1065353216 1065353216 1065353216 1065353216 1 0 5 0 0 0 0 1 + 0 5 0 1065353216 1 137531 65536 1 1313131313 65536 944879383 0 + -525502228 1065353216 1621981420 1034147594 1053609164 1065353216 2 0 0 -1097805629 -1097805629 1049678019 + 1049678019 0 2 1065353216 1065353216 -1097805629 -1097805629 1049678019 1049678019 0 2 1 + 2 -1 0 0 0 1869111636 24941 7733280 7471201 6357097 7077986 7536741 + 7798816 7077993 2097260 6619234 6881312 7602286 7471205 7274608 6357100 6619252 2097252 7209065 + 7274612 7602208 6619240 7536672 7471220 7209065 16777215 0 70 1 32 53 + 1632775510 1868963961 1632444530 622879097 2036429430 1936876918 544108393 1701978236 1919247470 1835627552 1915035749 1701080677 + 1835627634 12901 1378702848 1713404257 1293972079 543258977 808660531 540094510 1701978236 1919247470 1835627552 807411813 + 807411816 892477549 7549742 16777216 16777216 0 0 0 0 1 1 0 + 0 0 0 1 1 0 0 11 1936614732 1701209669 7566435 1 + 0 1 0 1101004800 1101004800 1082130432 0 0 0 1077936128 0 0 + 0 1 0 1 1112014848 1101004800 1 0 0 0 0 82176 + 0 16576 0 0 0 0 16448 0 65536 65536 0 0 + 0 65536 0 0 0 0 0 0 0 0 0 0 + 0 0 65536 536870912 536888779 ; + setAttr ".resf" yes; + setAttr ".mSceneName" -type "string" "x:/IG/proj/XEF/seq/SMO/001/fxSmoke/scenes/SMO001.fxSmoke.ma"; +createNode renderLayer -n "fx_smoke_COL"; + setAttr ".adjs[0].val" 0; + setAttr ".do" 1; +createNode dynGlobals -n "dynGlobals1"; + setAttr ".cd" -type "string" ""; + setAttr -l on ".mnf" 1; + setAttr -l on ".mxf" 128; +createNode script -n "sceneConfigurationScriptNode"; + setAttr ".b" -type "string" "playbackOptions -min 1 -max 128 -ast 1 -aet 128 "; + setAttr ".st" 6; +createNode shadingEngine -n "fumeFX1SG"; + setAttr ".ihi" 0; + setAttr ".ro" yes; +createNode materialInfo -n "materialInfo3"; +createNode shadingEngine -n "fumeFX2SG"; + setAttr ".ihi" 0; + setAttr ".ro" yes; +createNode materialInfo -n "materialInfo4"; +createNode animCurveTU -n "fxSmoke_obj_scaleX"; + setAttr ".tan" 2; + setAttr ".wgt" no; + setAttr -s 3 ".ktv[0:2]" 1 1 5 5 6 0.001; +createNode animCurveTU -n "fxSmoke_obj_scaleY"; + setAttr ".tan" 2; + setAttr ".wgt" no; + setAttr -s 3 ".ktv[0:2]" 1 1 5 5 6 0.001; +createNode animCurveTU -n "fxSmoke_obj_scaleZ"; + setAttr ".tan" 2; + setAttr ".wgt" no; + setAttr -s 3 ".ktv[0:2]" 1 1 5 5 6 0.001; +createNode animCurveTU -n "smokeShape_x_turbulence"; + setAttr ".tan" 2; + setAttr ".wgt" no; + setAttr -s 2 ".ktv[0:1]" 10 2 11 0.15000000596046448; +createNode animCurveTU -n "fxSmoke_obj_sourceProxy_smoke_amount"; + setAttr ".tan" 10; + setAttr ".wgt" no; + setAttr -s 2 ".ktv[0:1]" 10 1 11 0; +createNode animCurveTU -n "fxSmoke_obj_sourceProxy_extra_velocity"; + setAttr ".tan" 10; + setAttr ".wgt" no; + setAttr -s 2 ".ktv[0:1]" 10 0.01 11 0; +createNode animCurveTU -n "smokeShape_scale"; + setAttr ".tan" 10; + setAttr ".wgt" no; + setAttr -s 2 ".ktv[0:1]" 10 1.5 11 3.5; +createNode animCurveTU -n "smokeShape_dissipation_strength"; + setAttr ".tan" 10; + setAttr ".wgt" no; + setAttr ".ktv[0]" 1 200; +createNode renderLayer -n "fx_smoke_LTG"; + setAttr -s 7 ".adjs"; + setAttr ".adjs[0].val" 1; + setAttr ".adjs[1].val" 100; + setAttr ".adjs[2].val" -type "float3" 0.1 0.1 0.1 ; + setAttr ".adjs[3].val" 30; + setAttr ".adjs[4].val" 1; + setAttr ".adjs[5].val" 1; + setAttr ".adjs[7].val" 1; + setAttr ".do" 2; +createNode renderLayer -n "fx_smoke_NOR"; + setAttr -s 8 ".adjs"; + setAttr ".adjs[0].val" 0; + setAttr ".adjs[1].val" 100; + setAttr ".adjs[2].val" -type "float3" 0 0 0 ; + setAttr ".adjs[3].val" 30; + setAttr ".adjs[5].val" 1; + setAttr ".adjs[6].val" 1; + setAttr ".adjs[8].val" 1; + setAttr ".adjs[9].val" 1; + setAttr ".do" 3; +createNode animCurveTL -n "allCamera:cam_translateX"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 0 2 0 3 0 4 0 5 0 6 0 7 0 8 0 9 0 10 0 + 11 0 12 0 13 0 14 0 15 0 16 0 17 0 18 0 19 0 20 0 21 0 22 0 23 0 24 0 25 0 26 0 27 0 + 28 0 29 0 30 0 31 0 32 0 33 0 34 0 35 0 36 0 37 0 38 0 39 0 40 0 41 0 42 0 43 0 44 0 + 45 0 46 0 47 0 48 0 49 0 50 0 51 0 52 0 53 0 54 0 55 0 56 0 57 0 58 0 59 0 60 0 61 0 + 62 0 63 0 64 0 65 0 66 0 67 0 68 0 69 0 70 0 71 0 72 0 73 0 74 0 75 0 76 0 77 0 78 0 + 79 0 80 0 81 0 82 0 83 0 84 0 85 0 86 0 87 0 88 0 89 0 90 0 91 0 92 0 93 0 94 0 95 0 + 96 0 97 0 98 0 99 0 100 0 101 0 102 0 103 0 104 0 105 0 106 0 107 0 108 0 109 0 110 0 + 111 0 112 0 113 0 114 0 115 0 116 0 117 0 118 0 119 0 120 0 121 0 122 0 123 0 124 0 + 125 0 126 0 127 0 128 0; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTL -n "allCamera:cam_translateY"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 17.5 2 17.5 3 17.5 4 17.5 5 17.5 6 17.5 + 7 17.5 8 17.5 9 17.5 10 17.5 11 17.5 12 17.5 13 17.5 14 17.5 15 17.5 16 17.5 17 17.5 + 18 17.5 19 17.5 20 17.5 21 17.5 22 17.5 23 17.5 24 17.5 25 17.5 26 17.5 27 17.5 28 17.5 + 29 17.5 30 17.5 31 17.5 32 17.5 33 17.5 34 17.5 35 17.5 36 17.5 37 17.5 38 17.5 39 17.5 + 40 17.5 41 17.5 42 17.5 43 17.5 44 17.5 45 17.5 46 17.5 47 17.5 48 17.5 49 17.5 50 17.5 + 51 17.5 52 17.5 53 17.5 54 17.5 55 17.5 56 17.5 57 17.5 58 17.5 59 17.5 60 17.5 61 17.5 + 62 17.5 63 17.5 64 17.5 65 17.5 66 17.5 67 17.5 68 17.5 69 17.5 70 17.5 71 17.5 72 17.5 + 73 17.5 74 17.5 75 17.5 76 17.5 77 17.5 78 17.5 79 17.5 80 17.5 81 17.5 82 17.5 83 17.5 + 84 17.5 85 17.5 86 17.5 87 17.5 88 17.5 89 17.5 90 17.5 91 17.5 92 17.5 93 17.5 94 17.5 + 95 17.5 96 17.5 97 17.5 98 17.5 99 17.5 100 17.5 101 17.5 102 17.5 103 17.5 104 17.5 + 105 17.5 106 17.5 107 17.5 108 17.5 109 17.5 110 17.5 111 17.5 112 17.5 113 17.5 + 114 17.5 115 17.5 116 17.5 117 17.5 118 17.5 119 17.5 120 17.5 121 17.5 122 17.5 + 123 17.5 124 17.5 125 17.5 126 17.5 127 17.5 128 17.5; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTL -n "allCamera:cam_translateZ"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 35 2 35 3 35 4 35 5 35 6 35 7 35 8 35 + 9 35 10 35 11 35 12 35 13 35 14 35 15 35 16 35 17 35 18 35 19 35 20 35 21 35 22 35 + 23 35 24 35 25 35 26 35 27 35 28 35 29 35 30 35 31 35 32 35 33 35 34 35 35 35 36 35 + 37 35 38 35 39 35 40 35 41 35 42 35 43 35 44 35 45 35 46 35 47 35 48 35 49 35 50 35 + 51 35 52 35 53 35 54 35 55 35 56 35 57 35 58 35 59 35 60 35 61 35 62 35 63 35 64 35 + 65 35 66 35 67 35 68 35 69 35 70 35 71 35 72 35 73 35 74 35 75 35 76 35 77 35 78 35 + 79 35 80 35 81 35 82 35 83 35 84 35 85 35 86 35 87 35 88 35 89 35 90 35 91 35 92 35 + 93 35 94 35 95 35 96 35 97 35 98 35 99 35 100 35 101 35 102 35 103 35 104 35 105 35 + 106 35 107 35 108 35 109 35 110 35 111 35 112 35 113 35 114 35 115 35 116 35 117 35 + 118 35 119 35 120 35 121 35 122 35 123 35 124 35 125 35 126 35 127 35 128 35; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTA -n "allCamera:cam_rotateX"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 0 2 0 3 0 4 0 5 0 6 0 7 0 8 0 9 0 10 0 + 11 0 12 0 13 0 14 0 15 0 16 0 17 0 18 0 19 0 20 0 21 0 22 0 23 0 24 0 25 0 26 0 27 0 + 28 0 29 0 30 0 31 0 32 0 33 0 34 0 35 0 36 0 37 0 38 0 39 0 40 0 41 0 42 0 43 0 44 0 + 45 0 46 0 47 0 48 0 49 0 50 0 51 0 52 0 53 0 54 0 55 0 56 0 57 0 58 0 59 0 60 0 61 0 + 62 0 63 0 64 0 65 0 66 0 67 0 68 0 69 0 70 0 71 0 72 0 73 0 74 0 75 0 76 0 77 0 78 0 + 79 0 80 0 81 0 82 0 83 0 84 0 85 0 86 0 87 0 88 0 89 0 90 0 91 0 92 0 93 0 94 0 95 0 + 96 0 97 0 98 0 99 0 100 0 101 0 102 0 103 0 104 0 105 0 106 0 107 0 108 0 109 0 110 0 + 111 0 112 0 113 0 114 0 115 0 116 0 117 0 118 0 119 0 120 0 121 0 122 0 123 0 124 0 + 125 0 126 0 127 0 128 0; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTA -n "allCamera:cam_rotateY"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 0 2 0 3 0 4 0 5 0 6 0 7 0 8 0 9 0 10 0 + 11 0 12 0 13 0 14 0 15 0 16 0 17 0 18 0 19 0 20 0 21 0 22 0 23 0 24 0 25 0 26 0 27 0 + 28 0 29 0 30 0 31 0 32 0 33 0 34 0 35 0 36 0 37 0 38 0 39 0 40 0 41 0 42 0 43 0 44 0 + 45 0 46 0 47 0 48 0 49 0 50 0 51 0 52 0 53 0 54 0 55 0 56 0 57 0 58 0 59 0 60 0 61 0 + 62 0 63 0 64 0 65 0 66 0 67 0 68 0 69 0 70 0 71 0 72 0 73 0 74 0 75 0 76 0 77 0 78 0 + 79 0 80 0 81 0 82 0 83 0 84 0 85 0 86 0 87 0 88 0 89 0 90 0 91 0 92 0 93 0 94 0 95 0 + 96 0 97 0 98 0 99 0 100 0 101 0 102 0 103 0 104 0 105 0 106 0 107 0 108 0 109 0 110 0 + 111 0 112 0 113 0 114 0 115 0 116 0 117 0 118 0 119 0 120 0 121 0 122 0 123 0 124 0 + 125 0 126 0 127 0 128 0; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTA -n "allCamera:cam_rotateZ"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 0 2 0 3 0 4 0 5 0 6 0 7 0 8 0 9 0 10 0 + 11 0 12 0 13 0 14 0 15 0 16 0 17 0 18 0 19 0 20 0 21 0 22 0 23 0 24 0 25 0 26 0 27 0 + 28 0 29 0 30 0 31 0 32 0 33 0 34 0 35 0 36 0 37 0 38 0 39 0 40 0 41 0 42 0 43 0 44 0 + 45 0 46 0 47 0 48 0 49 0 50 0 51 0 52 0 53 0 54 0 55 0 56 0 57 0 58 0 59 0 60 0 61 0 + 62 0 63 0 64 0 65 0 66 0 67 0 68 0 69 0 70 0 71 0 72 0 73 0 74 0 75 0 76 0 77 0 78 0 + 79 0 80 0 81 0 82 0 83 0 84 0 85 0 86 0 87 0 88 0 89 0 90 0 91 0 92 0 93 0 94 0 95 0 + 96 0 97 0 98 0 99 0 100 0 101 0 102 0 103 0 104 0 105 0 106 0 107 0 108 0 109 0 110 0 + 111 0 112 0 113 0 114 0 115 0 116 0 117 0 118 0 119 0 120 0 121 0 122 0 123 0 124 0 + 125 0 126 0 127 0 128 0; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTU -n "allCamera:cam_scaleX"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9 1 10 1 + 11 1 12 1 13 1 14 1 15 1 16 1 17 1 18 1 19 1 20 1 21 1 22 1 23 1 24 1 25 1 26 1 27 1 + 28 1 29 1 30 1 31 1 32 1 33 1 34 1 35 1 36 1 37 1 38 1 39 1 40 1 41 1 42 1 43 1 44 1 + 45 1 46 1 47 1 48 1 49 1 50 1 51 1 52 1 53 1 54 1 55 1 56 1 57 1 58 1 59 1 60 1 61 1 + 62 1 63 1 64 1 65 1 66 1 67 1 68 1 69 1 70 1 71 1 72 1 73 1 74 1 75 1 76 1 77 1 78 1 + 79 1 80 1 81 1 82 1 83 1 84 1 85 1 86 1 87 1 88 1 89 1 90 1 91 1 92 1 93 1 94 1 95 1 + 96 1 97 1 98 1 99 1 100 1 101 1 102 1 103 1 104 1 105 1 106 1 107 1 108 1 109 1 110 1 + 111 1 112 1 113 1 114 1 115 1 116 1 117 1 118 1 119 1 120 1 121 1 122 1 123 1 124 1 + 125 1 126 1 127 1 128 1; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTU -n "allCamera:cam_scaleY"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9 1 10 1 + 11 1 12 1 13 1 14 1 15 1 16 1 17 1 18 1 19 1 20 1 21 1 22 1 23 1 24 1 25 1 26 1 27 1 + 28 1 29 1 30 1 31 1 32 1 33 1 34 1 35 1 36 1 37 1 38 1 39 1 40 1 41 1 42 1 43 1 44 1 + 45 1 46 1 47 1 48 1 49 1 50 1 51 1 52 1 53 1 54 1 55 1 56 1 57 1 58 1 59 1 60 1 61 1 + 62 1 63 1 64 1 65 1 66 1 67 1 68 1 69 1 70 1 71 1 72 1 73 1 74 1 75 1 76 1 77 1 78 1 + 79 1 80 1 81 1 82 1 83 1 84 1 85 1 86 1 87 1 88 1 89 1 90 1 91 1 92 1 93 1 94 1 95 1 + 96 1 97 1 98 1 99 1 100 1 101 1 102 1 103 1 104 1 105 1 106 1 107 1 108 1 109 1 110 1 + 111 1 112 1 113 1 114 1 115 1 116 1 117 1 118 1 119 1 120 1 121 1 122 1 123 1 124 1 + 125 1 126 1 127 1 128 1; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTU -n "allCamera:cam_scaleZ"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9 1 10 1 + 11 1 12 1 13 1 14 1 15 1 16 1 17 1 18 1 19 1 20 1 21 1 22 1 23 1 24 1 25 1 26 1 27 1 + 28 1 29 1 30 1 31 1 32 1 33 1 34 1 35 1 36 1 37 1 38 1 39 1 40 1 41 1 42 1 43 1 44 1 + 45 1 46 1 47 1 48 1 49 1 50 1 51 1 52 1 53 1 54 1 55 1 56 1 57 1 58 1 59 1 60 1 61 1 + 62 1 63 1 64 1 65 1 66 1 67 1 68 1 69 1 70 1 71 1 72 1 73 1 74 1 75 1 76 1 77 1 78 1 + 79 1 80 1 81 1 82 1 83 1 84 1 85 1 86 1 87 1 88 1 89 1 90 1 91 1 92 1 93 1 94 1 95 1 + 96 1 97 1 98 1 99 1 100 1 101 1 102 1 103 1 104 1 105 1 106 1 107 1 108 1 109 1 110 1 + 111 1 112 1 113 1 114 1 115 1 116 1 117 1 118 1 119 1 120 1 121 1 122 1 123 1 124 1 + 125 1 126 1 127 1 128 1; + setAttr ".pre" 1; + setAttr ".pst" 1; +createNode animCurveTU -n "allCamera:cam_visibility"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9 1 10 1 + 11 1 12 1 13 1 14 1 15 1 16 1 17 1 18 1 19 1 20 1 21 1 22 1 23 1 24 1 25 1 26 1 27 1 + 28 1 29 1 30 1 31 1 32 1 33 1 34 1 35 1 36 1 37 1 38 1 39 1 40 1 41 1 42 1 43 1 44 1 + 45 1 46 1 47 1 48 1 49 1 50 1 51 1 52 1 53 1 54 1 55 1 56 1 57 1 58 1 59 1 60 1 61 1 + 62 1 63 1 64 1 65 1 66 1 67 1 68 1 69 1 70 1 71 1 72 1 73 1 74 1 75 1 76 1 77 1 78 1 + 79 1 80 1 81 1 82 1 83 1 84 1 85 1 86 1 87 1 88 1 89 1 90 1 91 1 92 1 93 1 94 1 95 1 + 96 1 97 1 98 1 99 1 100 1 101 1 102 1 103 1 104 1 105 1 106 1 107 1 108 1 109 1 110 1 + 111 1 112 1 113 1 114 1 115 1 116 1 117 1 118 1 119 1 120 1 121 1 122 1 123 1 124 1 + 125 1 126 1 127 1 128 1; +createNode animCurveTU -n "allCamera:camShape_visibility"; + setAttr ".tan" 18; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9 1 10 1 + 11 1 12 1 13 1 14 1 15 1 16 1 17 1 18 1 19 1 20 1 21 1 22 1 23 1 24 1 25 1 26 1 27 1 + 28 1 29 1 30 1 31 1 32 1 33 1 34 1 35 1 36 1 37 1 38 1 39 1 40 1 41 1 42 1 43 1 44 1 + 45 1 46 1 47 1 48 1 49 1 50 1 51 1 52 1 53 1 54 1 55 1 56 1 57 1 58 1 59 1 60 1 61 1 + 62 1 63 1 64 1 65 1 66 1 67 1 68 1 69 1 70 1 71 1 72 1 73 1 74 1 75 1 76 1 77 1 78 1 + 79 1 80 1 81 1 82 1 83 1 84 1 85 1 86 1 87 1 88 1 89 1 90 1 91 1 92 1 93 1 94 1 95 1 + 96 1 97 1 98 1 99 1 100 1 101 1 102 1 103 1 104 1 105 1 106 1 107 1 108 1 109 1 110 1 + 111 1 112 1 113 1 114 1 115 1 116 1 117 1 118 1 119 1 120 1 121 1 122 1 123 1 124 1 + 125 1 126 1 127 1 128 1; +createNode animCurveTU -n "allCamera:camShape_focalLength"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 50 2 50 3 50 4 50 5 50 6 50 7 50 8 50 + 9 50 10 50 11 50 12 50 13 50 14 50 15 50 16 50 17 50 18 50 19 50 20 50 21 50 22 50 + 23 50 24 50 25 50 26 50 27 50 28 50 29 50 30 50 31 50 32 50 33 50 34 50 35 50 36 50 + 37 50 38 50 39 50 40 50 41 50 42 50 43 50 44 50 45 50 46 50 47 50 48 50 49 50 50 50 + 51 50 52 50 53 50 54 50 55 50 56 50 57 50 58 50 59 50 60 50 61 50 62 50 63 50 64 50 + 65 50 66 50 67 50 68 50 69 50 70 50 71 50 72 50 73 50 74 50 75 50 76 50 77 50 78 50 + 79 50 80 50 81 50 82 50 83 50 84 50 85 50 86 50 87 50 88 50 89 50 90 50 91 50 92 50 + 93 50 94 50 95 50 96 50 97 50 98 50 99 50 100 50 101 50 102 50 103 50 104 50 105 50 + 106 50 107 50 108 50 109 50 110 50 111 50 112 50 113 50 114 50 115 50 116 50 117 50 + 118 50 119 50 120 50 121 50 122 50 123 50 124 50 125 50 126 50 127 50 128 50; +createNode animCurveTU -n "allCamera:camShape_lensSqueezeRatio"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9 1 10 1 + 11 1 12 1 13 1 14 1 15 1 16 1 17 1 18 1 19 1 20 1 21 1 22 1 23 1 24 1 25 1 26 1 27 1 + 28 1 29 1 30 1 31 1 32 1 33 1 34 1 35 1 36 1 37 1 38 1 39 1 40 1 41 1 42 1 43 1 44 1 + 45 1 46 1 47 1 48 1 49 1 50 1 51 1 52 1 53 1 54 1 55 1 56 1 57 1 58 1 59 1 60 1 61 1 + 62 1 63 1 64 1 65 1 66 1 67 1 68 1 69 1 70 1 71 1 72 1 73 1 74 1 75 1 76 1 77 1 78 1 + 79 1 80 1 81 1 82 1 83 1 84 1 85 1 86 1 87 1 88 1 89 1 90 1 91 1 92 1 93 1 94 1 95 1 + 96 1 97 1 98 1 99 1 100 1 101 1 102 1 103 1 104 1 105 1 106 1 107 1 108 1 109 1 110 1 + 111 1 112 1 113 1 114 1 115 1 116 1 117 1 118 1 119 1 120 1 121 1 122 1 123 1 124 1 + 125 1 126 1 127 1 128 1; +createNode animCurveTU -n "allCamera:camShape_fStop"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 5.6 2 5.6 3 5.6 4 5.6 5 5.6 6 5.6 7 5.6 + 8 5.6 9 5.6 10 5.6 11 5.6 12 5.6 13 5.6 14 5.6 15 5.6 16 5.6 17 5.6 18 5.6 19 5.6 + 20 5.6 21 5.6 22 5.6 23 5.6 24 5.6 25 5.6 26 5.6 27 5.6 28 5.6 29 5.6 30 5.6 31 5.6 + 32 5.6 33 5.6 34 5.6 35 5.6 36 5.6 37 5.6 38 5.6 39 5.6 40 5.6 41 5.6 42 5.6 43 5.6 + 44 5.6 45 5.6 46 5.6 47 5.6 48 5.6 49 5.6 50 5.6 51 5.6 52 5.6 53 5.6 54 5.6 55 5.6 + 56 5.6 57 5.6 58 5.6 59 5.6 60 5.6 61 5.6 62 5.6 63 5.6 64 5.6 65 5.6 66 5.6 67 5.6 + 68 5.6 69 5.6 70 5.6 71 5.6 72 5.6 73 5.6 74 5.6 75 5.6 76 5.6 77 5.6 78 5.6 79 5.6 + 80 5.6 81 5.6 82 5.6 83 5.6 84 5.6 85 5.6 86 5.6 87 5.6 88 5.6 89 5.6 90 5.6 91 5.6 + 92 5.6 93 5.6 94 5.6 95 5.6 96 5.6 97 5.6 98 5.6 99 5.6 100 5.6 101 5.6 102 5.6 103 5.6 + 104 5.6 105 5.6 106 5.6 107 5.6 108 5.6 109 5.6 110 5.6 111 5.6 112 5.6 113 5.6 114 5.6 + 115 5.6 116 5.6 117 5.6 118 5.6 119 5.6 120 5.6 121 5.6 122 5.6 123 5.6 124 5.6 125 5.6 + 126 5.6 127 5.6 128 5.6; +createNode animCurveTL -n "allCamera:camShape_focusDistance"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 5 2 5 3 5 4 5 5 5 6 5 7 5 8 5 9 5 10 5 + 11 5 12 5 13 5 14 5 15 5 16 5 17 5 18 5 19 5 20 5 21 5 22 5 23 5 24 5 25 5 26 5 27 5 + 28 5 29 5 30 5 31 5 32 5 33 5 34 5 35 5 36 5 37 5 38 5 39 5 40 5 41 5 42 5 43 5 44 5 + 45 5 46 5 47 5 48 5 49 5 50 5 51 5 52 5 53 5 54 5 55 5 56 5 57 5 58 5 59 5 60 5 61 5 + 62 5 63 5 64 5 65 5 66 5 67 5 68 5 69 5 70 5 71 5 72 5 73 5 74 5 75 5 76 5 77 5 78 5 + 79 5 80 5 81 5 82 5 83 5 84 5 85 5 86 5 87 5 88 5 89 5 90 5 91 5 92 5 93 5 94 5 95 5 + 96 5 97 5 98 5 99 5 100 5 101 5 102 5 103 5 104 5 105 5 106 5 107 5 108 5 109 5 110 5 + 111 5 112 5 113 5 114 5 115 5 116 5 117 5 118 5 119 5 120 5 121 5 122 5 123 5 124 5 + 125 5 126 5 127 5 128 5; +createNode animCurveTA -n "allCamera:camShape_shutterAngle"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 144 2 144 3 144 4 144 5 144 6 144 7 144 + 8 144 9 144 10 144 11 144 12 144 13 144 14 144 15 144 16 144 17 144 18 144 19 144 + 20 144 21 144 22 144 23 144 24 144 25 144 26 144 27 144 28 144 29 144 30 144 31 144 + 32 144 33 144 34 144 35 144 36 144 37 144 38 144 39 144 40 144 41 144 42 144 43 144 + 44 144 45 144 46 144 47 144 48 144 49 144 50 144 51 144 52 144 53 144 54 144 55 144 + 56 144 57 144 58 144 59 144 60 144 61 144 62 144 63 144 64 144 65 144 66 144 67 144 + 68 144 69 144 70 144 71 144 72 144 73 144 74 144 75 144 76 144 77 144 78 144 79 144 + 80 144 81 144 82 144 83 144 84 144 85 144 86 144 87 144 88 144 89 144 90 144 91 144 + 92 144 93 144 94 144 95 144 96 144 97 144 98 144 99 144 100 144 101 144 102 144 103 144 + 104 144 105 144 106 144 107 144 108 144 109 144 110 144 111 144 112 144 113 144 114 144 + 115 144 116 144 117 144 118 144 119 144 120 144 121 144 122 144 123 144 124 144 125 144 + 126 144 127 144 128 144; +createNode animCurveTL -n "allCamera:camShape_centerOfInterest"; + setAttr ".tan" 9; + setAttr ".wgt" no; + setAttr -s 128 ".ktv[0:127]" 1 9.1119298380547384 2 9.1119298380547384 + 3 9.1119298380547384 4 9.1119298380547384 5 9.1119298380547384 6 9.1119298380547384 + 7 9.1119298380547384 8 9.1119298380547384 9 9.1119298380547384 10 9.1119298380547384 + 11 9.1119298380547384 12 9.1119298380547384 13 9.1119298380547384 14 9.1119298380547384 + 15 9.1119298380547384 16 9.1119298380547384 17 9.1119298380547384 18 9.1119298380547384 + 19 9.1119298380547384 20 9.1119298380547384 21 9.1119298380547384 22 9.1119298380547384 + 23 9.1119298380547384 24 9.1119298380547384 25 9.1119298380547384 26 9.1119298380547384 + 27 9.1119298380547384 28 9.1119298380547384 29 9.1119298380547384 30 9.1119298380547384 + 31 9.1119298380547384 32 9.1119298380547384 33 9.1119298380547384 34 9.1119298380547384 + 35 9.1119298380547384 36 9.1119298380547384 37 9.1119298380547384 38 9.1119298380547384 + 39 9.1119298380547384 40 9.1119298380547384 41 9.1119298380547384 42 9.1119298380547384 + 43 9.1119298380547384 44 9.1119298380547384 45 9.1119298380547384 46 9.1119298380547384 + 47 9.1119298380547384 48 9.1119298380547384 49 9.1119298380547384 50 9.1119298380547384 + 51 9.1119298380547384 52 9.1119298380547384 53 9.1119298380547384 54 9.1119298380547384 + 55 9.1119298380547384 56 9.1119298380547384 57 9.1119298380547384 58 9.1119298380547384 + 59 9.1119298380547384 60 9.1119298380547384 61 9.1119298380547384 62 9.1119298380547384 + 63 9.1119298380547384 64 9.1119298380547384 65 9.1119298380547384 66 9.1119298380547384 + 67 9.1119298380547384 68 9.1119298380547384 69 9.1119298380547384 70 9.1119298380547384 + 71 9.1119298380547384 72 9.1119298380547384 73 9.1119298380547384 74 9.1119298380547384 + 75 9.1119298380547384 76 9.1119298380547384 77 9.1119298380547384 78 9.1119298380547384 + 79 9.1119298380547384 80 9.1119298380547384 81 9.1119298380547384 82 9.1119298380547384 + 83 9.1119298380547384 84 9.1119298380547384 85 9.1119298380547384 86 9.1119298380547384 + 87 9.1119298380547384 88 9.1119298380547384 89 9.1119298380547384 90 9.1119298380547384 + 91 9.1119298380547384 92 9.1119298380547384 93 9.1119298380547384 94 9.1119298380547384 + 95 9.1119298380547384 96 9.1119298380547384 97 9.1119298380547384 98 9.1119298380547384 + 99 9.1119298380547384 100 9.1119298380547384 101 9.1119298380547384 102 9.1119298380547384 + 103 9.1119298380547384 104 9.1119298380547384 105 9.1119298380547384 106 9.1119298380547384 + 107 9.1119298380547384 108 9.1119298380547384 109 9.1119298380547384 110 9.1119298380547384 + 111 9.1119298380547384 112 9.1119298380547384 113 9.1119298380547384 114 9.1119298380547384 + 115 9.1119298380547384 116 9.1119298380547384 117 9.1119298380547384 118 9.1119298380547384 + 119 9.1119298380547384 120 9.1119298380547384 121 9.1119298380547384 122 9.1119298380547384 + 123 9.1119298380547384 124 9.1119298380547384 125 9.1119298380547384 126 9.1119298380547384 + 127 9.1119298380547384 128 9.1119298380547384; +select -ne :time1; + setAttr ".o" 40; + setAttr ".unw" 40; +select -ne :renderPartition; + setAttr -s 5 ".st"; +select -ne :renderGlobalsList1; +select -ne :defaultShaderList1; + setAttr -s 3 ".s"; +select -ne :postProcessList1; + setAttr -s 2 ".p"; +select -ne :defaultRenderingList1; + setAttr -s 4 ".r"; +select -ne :lightList1; + setAttr -s 5 ".l"; +select -ne :defaultTextureList1; +select -ne :initialShadingGroup; + setAttr -s 2 ".dsm"; + setAttr ".ro" yes; +select -ne :initialParticleSE; + setAttr ".ro" yes; +select -ne :defaultRenderGlobals; + setAttr ".mcfr" 30; + setAttr ".ren" -type "string" "vray"; + setAttr ".outf" 51; + setAttr ".imfkey" -type "string" "exr"; + setAttr ".an" yes; + setAttr ".fs" 1; + setAttr ".ef" 128; + setAttr ".ep" 1; + setAttr ".ofc" 1; + setAttr ".cpe" yes; +select -ne :defaultResolution; + setAttr ".w" 1024; + setAttr ".h" 1024; + setAttr ".pa" 1; + setAttr ".dar" 1; +select -ne :defaultLightSet; + setAttr -s 5 ".dsm"; +select -ne :hardwareRenderGlobals; + setAttr ".ctrs" 256; + setAttr ".btrs" 512; + setAttr ".hwfr" 30; +select -ne :defaultHardwareRenderGlobals; + setAttr ".res" -type "string" "ntsc_4d 646 485 1.333"; +connectAttr "fx_smoke_LTG.ri" "normalLightG.rlio[0]"; +connectAttr "fx_smoke_COL.ri" "normalLightG.rlio[1]"; +connectAttr "fx_smoke_NOR.ri" "normalLightG.rlio[2]"; +connectAttr "fx_smoke_LTG.ri" "normalLightR.rlio[0]"; +connectAttr "fx_smoke_COL.ri" "normalLightR.rlio[1]"; +connectAttr "fx_smoke_NOR.ri" "normalLightR.rlio[2]"; +connectAttr "fx_smoke_NOR.ri" "normalLightY.rlio[0]"; +connectAttr "fx_smoke_LTG.ri" "normalLightB.rlio[0]"; +connectAttr "fx_smoke_COL.ri" "normalLightB.rlio[1]"; +connectAttr "fx_smoke_NOR.ri" "normalLightB.rlio[2]"; +connectAttr "fx_smoke_NOR.ri" "normalLightB.rlio[3]"; +connectAttr "fx_smoke_NOR.ri" "normalLightBShape.rlio[0]"; +connectAttr "fx_smoke_LTG.ri" "keyLight.rlio[0]"; +connectAttr "fx_smoke_COL.ri" "keyLight.rlio[1]"; +connectAttr "fx_smoke_NOR.ri" "keyLight.rlio[2]"; +connectAttr "fxSmoke_obj_scaleX.o" "fxSmoke_obj.sx"; +connectAttr "fxSmoke_obj_scaleY.o" "fxSmoke_obj.sy"; +connectAttr "fxSmoke_obj_scaleZ.o" "fxSmoke_obj.sz"; +connectAttr ":time1.o" "fxSmoke_dragField.cti"; +connectAttr "fxSmoke_obj.msg" "fxSmoke_obj_sourceProxy.oss[0]"; +connectAttr "fxSmoke_obj_sourceProxy_smoke_amount.o" "fxSmoke_obj_sourceProxy.samt" + ; +connectAttr "fxSmoke_obj_sourceProxy_extra_velocity.o" "fxSmoke_obj_sourceProxy.evel" + ; +connectAttr "fx_smoke_COL.ri" "smoke.rlio[0]"; +connectAttr "fx_smoke_LTG.ri" "smoke.rlio[1]"; +connectAttr "fx_smoke_NOR.ri" "smoke.rlio[2]"; +connectAttr ":time1.o" "smokeShape.tm"; +connectAttr "smoke.wim" "smokeShape.rndrMat"; +connectAttr "smokeShape_scale.o" "smokeShape.tnoisescale"; +connectAttr "smokeShape_x_turbulence.o" "smokeShape.xturb"; +connectAttr "fxSmoke_dragField.of[0]" "smokeShape.if[0]"; +connectAttr "fxSmoke_radialField.of[0]" "smokeShape.if[1]"; +connectAttr "smokeShape_dissipation_strength.o" "smokeShape.dissipstren"; +connectAttr "keyLightShape.msg" "smokeShape.lite[0]"; +connectAttr "normalLightGShape.msg" "smokeShape.lite[1]"; +connectAttr "normalLightRShape.msg" "smokeShape.lite[2]"; +connectAttr "normalLightBShape.msg" "smokeShape.lite[3]"; +connectAttr "normalLightYShape.msg" "smokeShape.lite[4]"; +connectAttr "fxSmoke_obj_source.msg" "smokeShape.ffxs[0]"; +connectAttr "smokeShape.acenterx" "smoke_ffxMRVol.tx" -l on; +connectAttr "smokeShape.acentery" "smoke_ffxMRVol.ty" -l on; +connectAttr "smokeShape.acenterz" "smoke_ffxMRVol.tz" -l on; +connectAttr "smokeShape.awid" "smoke_ffxMRVolShape.szx"; +connectAttr "smokeShape.ahgt" "smoke_ffxMRVolShape.szy"; +connectAttr "smokeShape.alen" "smoke_ffxMRVolShape.szz"; +connectAttr "ffxMRVolShape11_linkExp.out[0]" "smoke_ffxMRVolShape.vss"; +connectAttr "ffxMRVolShape11_linkExp.out[1]" "smoke_ffxMRVolShape.vso"; +connectAttr "smokeShape.os" "smoke_ffxWarpsHandleShape.is"; +connectAttr "layer1.di" "taiki:taiki.do"; +connectAttr "allCamera:cam_translateX.o" "allCamera:cam.tx"; +connectAttr "allCamera:cam_translateY.o" "allCamera:cam.ty"; +connectAttr "allCamera:cam_translateZ.o" "allCamera:cam.tz"; +connectAttr "allCamera:cam_rotateX.o" "allCamera:cam.rx"; +connectAttr "allCamera:cam_rotateY.o" "allCamera:cam.ry"; +connectAttr "allCamera:cam_rotateZ.o" "allCamera:cam.rz"; +connectAttr "allCamera:cam_scaleX.o" "allCamera:cam.sx"; +connectAttr "allCamera:cam_scaleY.o" "allCamera:cam.sy"; +connectAttr "allCamera:cam_scaleZ.o" "allCamera:cam.sz"; +connectAttr "allCamera:cam_visibility.o" "allCamera:cam.v"; +connectAttr "allCamera:camShape_visibility.o" "allCamera:camShape.v"; +connectAttr "allCamera:camShape_focalLength.o" "allCamera:camShape.fl"; +connectAttr "allCamera:camShape_lensSqueezeRatio.o" "allCamera:camShape.lsr"; +connectAttr "allCamera:camShape_fStop.o" "allCamera:camShape.fs"; +connectAttr "allCamera:camShape_focusDistance.o" "allCamera:camShape.fd"; +connectAttr "allCamera:camShape_shutterAngle.o" "allCamera:camShape.sa"; +connectAttr "allCamera:camShape_centerOfInterest.o" "allCamera:camShape.coi"; +connectAttr ":mentalrayGlobals.msg" ":mentalrayItemsList.glb"; +connectAttr ":miDefaultOptions.msg" ":mentalrayItemsList.opt" -na; +connectAttr ":miDefaultFramebuffer.msg" ":mentalrayItemsList.fb" -na; +connectAttr ":miDefaultOptions.msg" ":mentalrayGlobals.opt"; +connectAttr ":miDefaultFramebuffer.msg" ":mentalrayGlobals.fb"; +relationship "link" ":lightLinker1" "fumeFX_A1SG1.message" ":defaultLightSet.message"; +relationship "link" ":lightLinker1" ":initialShadingGroup.message" ":defaultLightSet.message"; +relationship "link" ":lightLinker1" ":initialParticleSE.message" ":defaultLightSet.message"; +relationship "link" ":lightLinker1" "fumeFX1SG.message" ":defaultLightSet.message"; +relationship "link" ":lightLinker1" "fumeFX2SG.message" ":defaultLightSet.message"; +relationship "shadowLink" ":lightLinker1" "fumeFX_A1SG1.message" ":defaultLightSet.message"; +relationship "shadowLink" ":lightLinker1" ":initialShadingGroup.message" ":defaultLightSet.message"; +relationship "shadowLink" ":lightLinker1" ":initialParticleSE.message" ":defaultLightSet.message"; +relationship "shadowLink" ":lightLinker1" "fumeFX1SG.message" ":defaultLightSet.message"; +relationship "shadowLink" ":lightLinker1" "fumeFX2SG.message" ":defaultLightSet.message"; +connectAttr "layerManager.dli[0]" "defaultLayer.id"; +connectAttr "renderLayerManager.rlmi[0]" "defaultRenderLayer.rlid"; +connectAttr "keyLight.v" "defaultRenderLayer.adjs[0].plg"; +connectAttr "smokeShape.sh_smo" "defaultRenderLayer.adjs[1].plg"; +connectAttr "smokeShape.sh_sac" "defaultRenderLayer.adjs[2].plg"; +connectAttr "smokeShape.sh_jit" "defaultRenderLayer.adjs[3].plg"; +connectAttr "normalLightG.v" "defaultRenderLayer.adjs[5].plg"; +connectAttr "normalLightR.v" "defaultRenderLayer.adjs[6].plg"; +connectAttr "normalLightGrp.v" "defaultRenderLayer.adjs[8].plg"; +connectAttr "normalLightB.v" "defaultRenderLayer.adjs[9].plg"; +connectAttr ":time1.o" "ffxTurbulenceShader1.tm"; +connectAttr "smokeShape.tnoisescale" "ffxTurbulenceShader1.tnoisescale"; +connectAttr "smokeShape.tnoisedet" "ffxTurbulenceShader1.tnoisedet"; +connectAttr "smokeShape.tnoisefrms" "ffxTurbulenceShader1.tnoisefrms"; +connectAttr "smokeShape.tnoiseoffset" "ffxTurbulenceShader1.tnoiseoffset"; +connectAttr "smokeShape.wid" "ffxTurbulenceShader1.w"; +connectAttr ":time1.o" "expression1.tim"; +connectAttr "smoke_ffxMRVolShape.iog" "fumeFX_A1SG1.dsm" -na; +connectAttr "smokeShape.msg" "fumeFX_A1SG1.vs"; +connectAttr "fumeFX_A1SG1.msg" "materialInfo2.sg"; +connectAttr "smokeShape.vss" "ffxMRVolShape11_linkExp.in[0]"; +connectAttr "smokeShape.sh_vm" "ffxMRVolShape11_linkExp.in[1]"; +connectAttr ":time1.o" "ffxMRVolShape11_linkExp.tim"; +connectAttr "smoke_ffxMRVolShape.msg" "ffxMRVolShape11_linkExp.obm"; +connectAttr "layerManager.dli[1]" "layer1.id"; +connectAttr "renderLayerManager.rlmi[1]" "fx_smoke_COL.rlid"; +connectAttr "keyLight.v" "fx_smoke_COL.adjs[0].plg"; +connectAttr "fumeFX1SG.msg" "materialInfo3.sg"; +connectAttr "fumeFX2SG.msg" "materialInfo4.sg"; +connectAttr "renderLayerManager.rlmi[2]" "fx_smoke_LTG.rlid"; +connectAttr "keyLight.v" "fx_smoke_LTG.adjs[0].plg"; +connectAttr "smokeShape.sh_smo" "fx_smoke_LTG.adjs[1].plg"; +connectAttr "smokeShape.sh_sac" "fx_smoke_LTG.adjs[2].plg"; +connectAttr "smokeShape.sh_jit" "fx_smoke_LTG.adjs[3].plg"; +connectAttr "normalLightG.v" "fx_smoke_LTG.adjs[4].plg"; +connectAttr "normalLightR.v" "fx_smoke_LTG.adjs[5].plg"; +connectAttr "normalLightB.v" "fx_smoke_LTG.adjs[7].plg"; +connectAttr "renderLayerManager.rlmi[3]" "fx_smoke_NOR.rlid"; +connectAttr "keyLight.v" "fx_smoke_NOR.adjs[0].plg"; +connectAttr "smokeShape.sh_smo" "fx_smoke_NOR.adjs[1].plg"; +connectAttr "smokeShape.sh_sac" "fx_smoke_NOR.adjs[2].plg"; +connectAttr "smokeShape.sh_jit" "fx_smoke_NOR.adjs[3].plg"; +connectAttr "normalLightG.v" "fx_smoke_NOR.adjs[5].plg"; +connectAttr "normalLightR.v" "fx_smoke_NOR.adjs[6].plg"; +connectAttr "normalLightGrp.v" "fx_smoke_NOR.adjs[8].plg"; +connectAttr "normalLightB.v" "fx_smoke_NOR.adjs[9].plg"; +connectAttr "fumeFX_A1SG1.pa" ":renderPartition.st" -na; +connectAttr "fumeFX1SG.pa" ":renderPartition.st" -na; +connectAttr "fumeFX2SG.pa" ":renderPartition.st" -na; +connectAttr "ffxTurbulenceShader1.msg" ":defaultShaderList1.s" -na; +connectAttr "defaultRenderLayer.msg" ":defaultRenderingList1.r" -na; +connectAttr "fx_smoke_COL.msg" ":defaultRenderingList1.r" -na; +connectAttr "fx_smoke_LTG.msg" ":defaultRenderingList1.r" -na; +connectAttr "fx_smoke_NOR.msg" ":defaultRenderingList1.r" -na; +connectAttr "keyLightShape.ltd" ":lightList1.l" -na; +connectAttr "normalLightGShape.ltd" ":lightList1.l" -na; +connectAttr "normalLightRShape.ltd" ":lightList1.l" -na; +connectAttr "normalLightBShape.ltd" ":lightList1.l" -na; +connectAttr "normalLightYShape.ltd" ":lightList1.l" -na; +connectAttr "ramp4.msg" ":defaultTextureList1.tx" -na; +connectAttr "fxSmoke_objShape.iog" ":initialShadingGroup.dsm" -na; +connectAttr "taiki:taikiShape.iog" ":initialShadingGroup.dsm" -na; +connectAttr "keyLight.iog" ":defaultLightSet.dsm" -na; +connectAttr "normalLightG.iog" ":defaultLightSet.dsm" -na; +connectAttr "normalLightR.iog" ":defaultLightSet.dsm" -na; +connectAttr "normalLightB.iog" ":defaultLightSet.dsm" -na; +connectAttr "normalLightY.iog" ":defaultLightSet.dsm" -na; +dataStructure -fmt "raw" -as "name=externalContentTable:string=node:string=key:string=upath:uint32=upathcrc:string=rpath:string=roles"; +applyMetadata -fmt "raw" -v "channel\nname externalContentTable\nstream\nname v1.0\nindexType numeric\nstructure externalContentTable\n0\n\"|normalLightGrp|normalLightG|normalLightGShape\" \"dmapName\" \"depthmap\" 2097411553 \"\" \"sourceImages\"\n1\n\"|normalLightGrp|normalLightR|normalLightRShape\" \"dmapName\" \"depthmap\" 2097411553 \"\" \"sourceImages\"\n2\n\"|normalLightGrp|normalLightY|normalLightYShape\" \"dmapName\" \"depthmap\" 2097411553 \"\" \"sourceImages\"\n3\n\"|normalLightGrp|normalLightB|normalLightBShape\" \"dmapName\" \"depthmap\" 2097411553 \"\" \"sourceImages\"\n4\n\"|keyLight|keyLightShape\" \"dmapName\" \"depthmap\" 2097411553 \"\" \"sourceImages\"\nendStream\nendChannel\nendAssociations\n" + -scn; +// End of SMO001.fxSmoke.ma diff --git a/VFXPackage/Resources/Textures/Maya/XEF_readme.txt b/VFXPackage/Resources/Textures/Maya/XEF_readme.txt new file mode 100644 index 0000000..2a148dc --- /dev/null +++ b/VFXPackage/Resources/Textures/Maya/XEF_readme.txt @@ -0,0 +1,34 @@ +”[•iƒf[ƒ^“à—e + +¥MayaƒtƒHƒ‹ƒ_ : FumeFXì‹Æƒf[ƒ^‚ðŠÜ‚ñ‚¾Mayaƒf[ƒ^(Maya2015)(FumeFX3.5.8)(vrayformaya 3.30.01) + +EXP001.fxExpFire.ma ƒ”š”­i‹ó’†j„ +FIR001.fxFire.ma ƒ‰Ši‹ó’†j„ +FRB001.fxBonFire.ma ƒ‰Šibonfirej@ƒ‹[ƒv„ +SMO001.fxSmoke.ma ƒ‰Œi‹ó’†j„ + + +¥AEƒtƒHƒ‹ƒ_ F ’†ŠÔƒtƒ@ƒCƒ‹‚Æ‚µ‚Ä‚ÌAEƒf[ƒ^(CS6) +@iƒ^ƒCƒ~ƒ“ƒOEF–¡Eƒ‹[ƒvA‚È‚ÇA‘½‚­‚Ì“à—e‚ðAE‚̃tƒ@ƒCƒ‹‚Ås‚Á‚Ä‚¢‚Ü‚·j +EXP001.aep ƒ”š”­i‹ó’†j„ +FIR001.aep ƒ‰Ši‹ó’†j„ +FRB001.aep ƒ‰Šibonfirej@ƒ‹[ƒv„ +SMO001.aep ƒ‰Œi‹ó’†j„ + + +¤cacheƒtƒHƒ‹ƒ_ F FumeFXƒLƒƒƒbƒVƒ…ƒf[ƒ^ +—pˆÓ‚Í‚µ‚Ä‚¨‚è‚Ü‚·‚ªA—e—Ê‚ª‘å‚«‚­(ˆ³k‚µ‚Ä20GB)A“Y•t‚µ‚Ä‚¨‚è‚Ü‚¹‚ñB +•K—v‚Å‚ ‚ê‚ÎA‚·‚®‚É‚¨“n‚µo—ˆ‚Ü‚·B + + + + +ƒŽg—pƒ\ƒtƒg‚ɂ‚¢‚Ä„ +ƒGƒtƒFƒNƒgì‹Æ‚Í +uMaya2015v‚Ì’†‚ÅA +ƒvƒ‰ƒOƒCƒ“‚Æ‚µ‚ÄuFumeFX for Maya(3.5.8)v‚ðŽg—p‚µAhttp://fumefx.jp/?p=96 +uV-Ray for Maya(3.30.01)v‚ŃŒƒ“ƒ_ƒŠƒ“ƒO‚ð‚µ‚Ä‚¢‚Ü‚·Bhttp://v-ray.jp/maya_info.shtml +‚±‚Ì‘g‚݇‚킹‚Å‚ÍA +uFumeFX V-Ray ƒVƒF[ƒ_[v ‚ª•Ê“r•K—v‚Æ‚È‚è‚Ü‚·B +http://www.oakcorp.net/sitnisati/maya_vray.shtml + diff --git a/VFXPackage/Resources/Textures/Misc/OROCHI_demo_vita_exp_02nyexp.dds b/VFXPackage/Resources/Textures/Misc/OROCHI_demo_vita_exp_02nyexp.dds new file mode 100644 index 0000000..be6ce41 --- /dev/null +++ b/VFXPackage/Resources/Textures/Misc/OROCHI_demo_vita_exp_02nyexp.dds @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93c10f8443335f680d4742e4e1e30dfbdf898a65fc653feebe601fd584298a8f +size 2796344 diff --git a/VFXPackage/Resources/Textures/Misc/OROCHI_demo_vita_exp_03ny.dds b/VFXPackage/Resources/Textures/Misc/OROCHI_demo_vita_exp_03ny.dds new file mode 100644 index 0000000..eedae06 --- /dev/null +++ b/VFXPackage/Resources/Textures/Misc/OROCHI_demo_vita_exp_03ny.dds @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44b06f6b19b9999022fa7785123727593ea8f5916fc66b407904a55a0c53c082 +size 349680 diff --git a/VFXPackage/Resources/Textures/Misc/OROCHI_demo_vita_smoke_02ny.dds b/VFXPackage/Resources/Textures/Misc/OROCHI_demo_vita_smoke_02ny.dds new file mode 100644 index 0000000..f1a3d99 --- /dev/null +++ b/VFXPackage/Resources/Textures/Misc/OROCHI_demo_vita_smoke_02ny.dds @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e61512b3c209127a2c6ed32d864422a4eba2e71a2f72c1c0036391839a1e570b +size 349680 diff --git a/VFXPackage/Resources/Textures/Misc/bomb03_anime_ks01.dds b/VFXPackage/Resources/Textures/Misc/bomb03_anime_ks01.dds new file mode 100644 index 0000000..a38de20 --- /dev/null +++ b/VFXPackage/Resources/Textures/Misc/bomb03_anime_ks01.dds @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c940b3cbc7d72b9cf0bc69e2e0d77ba3680cefe4d5512a6c45b82b010df04bc +size 1398256 diff --git a/VFXPackage/Resources/Textures/Misc/hikari05_ks02.dds b/VFXPackage/Resources/Textures/Misc/hikari05_ks02.dds new file mode 100644 index 0000000..8ffa686 --- /dev/null +++ b/VFXPackage/Resources/Textures/Misc/hikari05_ks02.dds @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa831d1bdb6c41c612bcd7cf172dcd6ed6a2b584664f6afdd012926e93e78439 +size 87536 diff --git a/VFXPackage/Resources/Textures/Misc/housya01_ks03.dds b/VFXPackage/Resources/Textures/Misc/housya01_ks03.dds new file mode 100644 index 0000000..d7638df --- /dev/null +++ b/VFXPackage/Resources/Textures/Misc/housya01_ks03.dds @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5809dd16cae5bd06e2f4980601b89f194759d594a026136b702dbb53ba26a036 +size 87536 diff --git a/VFXPackage/Resources/Textures/MuzzleFlash.png b/VFXPackage/Resources/Textures/MuzzleFlash.png new file mode 100644 index 0000000..08393ab --- /dev/null +++ b/VFXPackage/Resources/Textures/MuzzleFlash.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2415dfefbdf29035b345c8011a9947cc3524491cd9b83561111adbcc80fed333 +size 36624 diff --git a/VFXPackage/Resources/Textures/Muzzle_flash_NiX.png b/VFXPackage/Resources/Textures/Muzzle_flash_NiX.png new file mode 100644 index 0000000..4c9c43e --- /dev/null +++ b/VFXPackage/Resources/Textures/Muzzle_flash_NiX.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9929d376a74022a77895c0f0be443cdf29d4c04b12a0605dc3c6f525508f0cfe +size 338035 diff --git a/VFXPackage/Resources/Textures/Muzzleflash02.png b/VFXPackage/Resources/Textures/Muzzleflash02.png new file mode 100644 index 0000000..3905d3d --- /dev/null +++ b/VFXPackage/Resources/Textures/Muzzleflash02.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ec27ff24d764a9ad0369d425b706f872f9051bcaf46c9c819d96c47fcaeaba4 +size 31992 diff --git a/VFXPackage/Resources/Textures/Muzzleflash02_Desaturated.png b/VFXPackage/Resources/Textures/Muzzleflash02_Desaturated.png new file mode 100644 index 0000000..f606907 --- /dev/null +++ b/VFXPackage/Resources/Textures/Muzzleflash02_Desaturated.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18747050a46b012802ccee6a2a2eb38abe648231fce6a2876217fc20e6f44c6f +size 24899 diff --git a/VFXPackage/Resources/Textures/Ring01.png b/VFXPackage/Resources/Textures/Ring01.png new file mode 100644 index 0000000..7014c15 --- /dev/null +++ b/VFXPackage/Resources/Textures/Ring01.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82420de33332ade31c5c4dd11cc66f9ade287f635f8e975a914a6cce17c5cfbd +size 68456 diff --git a/VFXPackage/Resources/Textures/Smoke01.png b/VFXPackage/Resources/Textures/Smoke01.png new file mode 100644 index 0000000..ccc9ad7 --- /dev/null +++ b/VFXPackage/Resources/Textures/Smoke01.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d76e06e1b08111c1b3d4f35d30273646328c9863ab19b1ef0dafd256eb0681f5 +size 3839432 diff --git a/VFXPackage/Resources/Textures/Smoke01/SMO001.alphaOnly.png b/VFXPackage/Resources/Textures/Smoke01/SMO001.alphaOnly.png new file mode 100644 index 0000000..cb56ea9 --- /dev/null +++ b/VFXPackage/Resources/Textures/Smoke01/SMO001.alphaOnly.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf9a1c99447b004243a63a781567eba995b17c3f8521effd764ba13d41c1b1ba +size 2434224 diff --git a/VFXPackage/Resources/Textures/Smoke01/SMO001.normal.png b/VFXPackage/Resources/Textures/Smoke01/SMO001.normal.png new file mode 100644 index 0000000..3fe9705 --- /dev/null +++ b/VFXPackage/Resources/Textures/Smoke01/SMO001.normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a3d27ccae220d65c77d817b506c7ae9ec4ce977379a34fba4f2802a23a26630 +size 2505840 diff --git a/VFXPackage/Resources/Textures/Smoke01/SMO001.png b/VFXPackage/Resources/Textures/Smoke01/SMO001.png new file mode 100644 index 0000000..ccc9ad7 --- /dev/null +++ b/VFXPackage/Resources/Textures/Smoke01/SMO001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d76e06e1b08111c1b3d4f35d30273646328c9863ab19b1ef0dafd256eb0681f5 +size 3839432 diff --git a/VFXPackage/Resources/Textures/Smoke01/SMO001.rgbOnly.png b/VFXPackage/Resources/Textures/Smoke01/SMO001.rgbOnly.png new file mode 100644 index 0000000..7d93776 --- /dev/null +++ b/VFXPackage/Resources/Textures/Smoke01/SMO001.rgbOnly.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61ccb0fc217cbf0fbf38d06967a1a3764812536563a6df213a983c69a0b99079 +size 2086323 diff --git a/VFXPackage/Resources/Textures/Smoke02.png b/VFXPackage/Resources/Textures/Smoke02.png new file mode 100644 index 0000000..d4d8aea --- /dev/null +++ b/VFXPackage/Resources/Textures/Smoke02.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfdd5e3be14f418d1aacd6e67f87f4c409cf3625a40a6b8b50fcc8d38131ac3a +size 24628 diff --git a/VFXPackage/Resources/Textures/Smoke02/SMO001.alphaOnly.png b/VFXPackage/Resources/Textures/Smoke02/SMO001.alphaOnly.png new file mode 100644 index 0000000..604377e --- /dev/null +++ b/VFXPackage/Resources/Textures/Smoke02/SMO001.alphaOnly.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98df967452af67623ea575147243e858ac5cb7c51e5ea811762e0981db61d27c +size 2292285 diff --git a/VFXPackage/Resources/Textures/Smoke02/SMO001.png b/VFXPackage/Resources/Textures/Smoke02/SMO001.png new file mode 100644 index 0000000..924b2f0 --- /dev/null +++ b/VFXPackage/Resources/Textures/Smoke02/SMO001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47dc3dffb3317b60c66554c23cbee4252749cfb5f4db15c7ab8cb9ca2285e325 +size 3914813 diff --git a/VFXPackage/Resources/Textures/Smoke02/SMO001.rgbOnly.png b/VFXPackage/Resources/Textures/Smoke02/SMO001.rgbOnly.png new file mode 100644 index 0000000..f0c862e --- /dev/null +++ b/VFXPackage/Resources/Textures/Smoke02/SMO001.rgbOnly.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10fb690ff0230b7af93ed294c3ab9f0442e9cb6de6ac46fee3c0831965a7b890 +size 2062345 diff --git a/VFXPackage/Resources/Textures/Smoke03/SMO001.png b/VFXPackage/Resources/Textures/Smoke03/SMO001.png new file mode 100644 index 0000000..5c388b0 --- /dev/null +++ b/VFXPackage/Resources/Textures/Smoke03/SMO001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61b6cd62fdf4359521454e47c1434b06d40150d78777608d568c4be1fd51cc60 +size 68456 diff --git a/VFXPackage/Resources/Textures/SmokeAdd01.png b/VFXPackage/Resources/Textures/SmokeAdd01.png new file mode 100644 index 0000000..6bcfa74 --- /dev/null +++ b/VFXPackage/Resources/Textures/SmokeAdd01.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:433806f4812336b8141b201f420a1bf5219feff887b50ae63e441db070291022 +size 68456 diff --git a/VFXPackage/Resources/Textures/SparkLight01.png b/VFXPackage/Resources/Textures/SparkLight01.png new file mode 100644 index 0000000..dbd933e --- /dev/null +++ b/VFXPackage/Resources/Textures/SparkLight01.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95cf3b383c9e54d450b251e88277117a307be4e673e5f2e5be7e24f07112cfde +size 27008 diff --git a/VFXPackage/Resources/Textures/TeleportRing.png b/VFXPackage/Resources/Textures/TeleportRing.png new file mode 100644 index 0000000..58b6b09 --- /dev/null +++ b/VFXPackage/Resources/Textures/TeleportRing.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb232abe6421363936326f2c8e420ace131ae42a576a904bedab8ffce0fb4f56 +size 8484 diff --git a/VFXPackage/Resources/Textures/TiledPattern03.png b/VFXPackage/Resources/Textures/TiledPattern03.png new file mode 100644 index 0000000..821b609 --- /dev/null +++ b/VFXPackage/Resources/Textures/TiledPattern03.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7328c3a5a8a298cd6f5cf774228e7ce50a9b5ceb2fee6d179c9c61ddfdf53654 +size 63582 diff --git a/VFXPackage/Resources/Textures/TiledPattern04.png b/VFXPackage/Resources/Textures/TiledPattern04.png new file mode 100644 index 0000000..d5dbece --- /dev/null +++ b/VFXPackage/Resources/Textures/TiledPattern04.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e27bd5b2edeb1c7851b9a8591332dd89b28b18a7294ca34a4a91dd3ff96e3e0 +size 28959 diff --git a/VFXPackage/Resources/Textures/dota.png b/VFXPackage/Resources/Textures/dota.png new file mode 100644 index 0000000..6b80564 --- /dev/null +++ b/VFXPackage/Resources/Textures/dota.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:540d3d32daeb61c1e5ef12bf9f97781c8b0e56e277f5f234956c6c80cc31d24f +size 10548 diff --git a/VFXPackage/Resources/Textures/dota02.png b/VFXPackage/Resources/Textures/dota02.png new file mode 100644 index 0000000..50d5184 --- /dev/null +++ b/VFXPackage/Resources/Textures/dota02.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cf8f521a677c66e8b5849ebadfe09bc80c9960f8ff6e4b15369cf2f948c8d5a +size 265227 diff --git a/VFXPackage/VFXPackage.csproj b/VFXPackage/VFXPackage.csproj new file mode 100644 index 0000000..740d65d --- /dev/null +++ b/VFXPackage/VFXPackage.csproj @@ -0,0 +1,10 @@ + + + net461 + Library + + + + + + \ No newline at end of file diff --git a/VFXPackage/VFXPackage.props b/VFXPackage/VFXPackage.props new file mode 100644 index 0000000..2059d88 --- /dev/null +++ b/VFXPackage/VFXPackage.props @@ -0,0 +1,6 @@ + + + + 2.1 + + \ No newline at end of file diff --git a/VFXPackage/VFXPackage.xkpkg b/VFXPackage/VFXPackage.xkpkg new file mode 100644 index 0000000..a445d15 --- /dev/null +++ b/VFXPackage/VFXPackage.xkpkg @@ -0,0 +1,16 @@ +!Package +SerializedVersion: {Assets: 3.1.0.0} +Meta: + Name: VFXPackage + Version: 1.0.0 + Authors: [] + Owners: [] + Dependencies: null +AssetFolders: + - Path: !dir Assets/Shared +ResourceFolders: [] +OutputGroupDirectories: {} +ExplicitFolders: [] +Bundles: [] +TemplateFolders: [] +RootAssets: [] diff --git a/editor_screenshot.jpg b/editor_screenshot.jpg new file mode 100644 index 0000000..43fc421 --- /dev/null +++ b/editor_screenshot.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d57de59ed35bff5a8bd3f6d2ca920699d957c67f2051769bb9bc965c2fae61df +size 338063 diff --git a/poster.jpg b/poster.jpg new file mode 100644 index 0000000..2b24b79 --- /dev/null +++ b/poster.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a34c50a98ad5307009bf10dc018c7e34095025c5d033a0b5602b7b0396cc6827 +size 264075