├── .gitignore ├── Assets ├── .gitignore ├── Animations.meta ├── Animations │ ├── FadeIn.anim │ ├── FadeIn.anim.meta │ ├── FadeIn.controller │ ├── FadeIn.controller.meta │ ├── PlumbingLogo.controller │ ├── PlumbingLogo.controller.meta │ ├── PlumbingLogoAnimation.anim │ ├── PlumbingLogoAnimation.anim.meta │ ├── UI Overlay.controller │ ├── UI Overlay.controller.meta │ ├── UIOverlayAnimation.anim │ └── UIOverlayAnimation.anim.meta ├── Chunks Data.asset ├── Chunks Data.asset.meta ├── Circle.prefab ├── Circle.prefab.meta ├── Controls.inputactions ├── Controls.inputactions.meta ├── Frictionless.physicsMaterial2D ├── Frictionless.physicsMaterial2D.meta ├── Metaballs.meta ├── Metaballs │ ├── COPYING │ ├── COPYING.meta │ ├── Materials.meta │ ├── Materials │ │ ├── Bouncy.physicsMaterial2D │ │ ├── Bouncy.physicsMaterial2D.meta │ │ ├── Skybox_Mat.mat │ │ ├── Skybox_Mat.mat.meta │ │ ├── Unlit.mat │ │ └── Unlit.mat.meta │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── Metaball2D System Controller.prefab │ │ ├── Metaball2D System Controller.prefab.meta │ │ ├── Metaball2D.prefab │ │ ├── Metaball2D.prefab.meta │ │ ├── Metaballs.prefab │ │ └── Metaballs.prefab.meta │ ├── Resources.meta │ ├── Resources │ │ ├── Shaders.meta │ │ └── Shaders │ │ │ ├── Metaballs2D.shader │ │ │ └── Metaballs2D.shader.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── Metaball2D.cs │ │ ├── Metaball2D.cs.meta │ │ ├── MetaballRender2D.cs │ │ ├── MetaballRender2D.cs.meta │ │ ├── MetaballSystem2D.cs │ │ ├── MetaballSystem2D.cs.meta │ │ ├── MetaballSystemController2D.cs │ │ └── MetaballSystemController2D.cs.meta │ ├── Settings.meta │ ├── Settings │ │ ├── MetaballsForwardRenderer.asset │ │ ├── MetaballsForwardRenderer.asset.meta │ │ ├── SampleSceneProfile.asset │ │ ├── SampleSceneProfile.asset.meta │ │ ├── UniversalRP-HighQuality.asset │ │ ├── UniversalRP-HighQuality.asset.meta │ │ ├── UniversalRP-LowQuality.asset │ │ ├── UniversalRP-LowQuality.asset.meta │ │ ├── UniversalRP-MediumQuality.asset │ │ └── UniversalRP-MediumQuality.asset.meta │ ├── Sprites.meta │ └── Sprites │ │ ├── Circle.png │ │ └── Circle.png.meta ├── Misc.meta ├── Misc │ ├── Forward Renderer.asset │ └── Forward Renderer.asset.meta ├── Prefabs.meta ├── Prefabs │ ├── Chunks.meta │ ├── Chunks │ │ ├── Desert1.prefab │ │ ├── Desert1.prefab.meta │ │ ├── Desert2.prefab │ │ ├── Desert2.prefab.meta │ │ ├── Desert3.prefab │ │ ├── Desert3.prefab.meta │ │ ├── Desert4.prefab │ │ ├── Desert4.prefab.meta │ │ ├── DesertForest.prefab │ │ ├── DesertForest.prefab.meta │ │ ├── DesertGrasslands.prefab │ │ ├── DesertGrasslands.prefab.meta │ │ ├── DesertTaiga.prefab │ │ ├── DesertTaiga.prefab.meta │ │ ├── DesertTundra.prefab │ │ ├── DesertTundra.prefab.meta │ │ ├── Forest1.prefab │ │ ├── Forest1.prefab.meta │ │ ├── Forest2.prefab │ │ ├── Forest2.prefab.meta │ │ ├── Forest3.prefab │ │ ├── Forest3.prefab.meta │ │ ├── Forest4.prefab │ │ ├── Forest4.prefab.meta │ │ ├── ForestDesert.prefab │ │ ├── ForestDesert.prefab.meta │ │ ├── ForestGrasslands.prefab │ │ ├── ForestGrasslands.prefab.meta │ │ ├── ForestTaiga.prefab │ │ ├── ForestTaiga.prefab.meta │ │ ├── ForestTundra.prefab │ │ ├── ForestTundra.prefab.meta │ │ ├── Grasslands1.prefab │ │ ├── Grasslands1.prefab.meta │ │ ├── Grasslands2.prefab │ │ ├── Grasslands2.prefab.meta │ │ ├── Grasslands3.prefab │ │ ├── Grasslands3.prefab.meta │ │ ├── Grasslands4.prefab │ │ ├── Grasslands4.prefab.meta │ │ ├── GrasslandsDesert.prefab │ │ ├── GrasslandsDesert.prefab.meta │ │ ├── GrasslandsForest.prefab │ │ ├── GrasslandsForest.prefab.meta │ │ ├── GrasslandsTaiga.prefab │ │ ├── GrasslandsTaiga.prefab.meta │ │ ├── GrasslandsTundra.prefab │ │ ├── GrasslandsTundra.prefab.meta │ │ ├── Taiga1.prefab │ │ ├── Taiga1.prefab.meta │ │ ├── Taiga2.prefab │ │ ├── Taiga2.prefab.meta │ │ ├── Taiga3.prefab │ │ ├── Taiga3.prefab.meta │ │ ├── TaigaDesert.prefab │ │ ├── TaigaDesert.prefab.meta │ │ ├── TaigaForest.prefab │ │ ├── TaigaForest.prefab.meta │ │ ├── TaigaGrasslands.prefab │ │ ├── TaigaGrasslands.prefab.meta │ │ ├── TaigaTundra.prefab │ │ ├── TaigaTundra.prefab.meta │ │ ├── Tundra1.prefab │ │ ├── Tundra1.prefab.meta │ │ ├── Tundra2.prefab │ │ ├── Tundra2.prefab.meta │ │ ├── Tundra3.prefab │ │ ├── Tundra3.prefab.meta │ │ ├── TundraDesert.prefab │ │ ├── TundraDesert.prefab.meta │ │ ├── TundraForest.prefab │ │ ├── TundraForest.prefab.meta │ │ ├── TundraGrasslands.prefab │ │ ├── TundraGrasslands.prefab.meta │ │ ├── TundraTaiga.prefab │ │ └── TundraTaiga.prefab.meta │ ├── Metaball Spawner.prefab │ ├── Metaball Spawner.prefab.meta │ ├── Obstacle Generator Object.prefab │ ├── Obstacle Generator Object.prefab.meta │ ├── Obstacles.meta │ └── Obstacles │ │ ├── Bush1.prefab │ │ ├── Bush1.prefab.meta │ │ ├── Bush2.prefab │ │ ├── Bush2.prefab.meta │ │ ├── Projectile1.prefab │ │ ├── Projectile1.prefab.meta │ │ ├── Projectile2.prefab │ │ ├── Projectile2.prefab.meta │ │ ├── Projectile3.prefab │ │ ├── Projectile3.prefab.meta │ │ ├── RockFormation1.prefab │ │ ├── RockFormation1.prefab.meta │ │ ├── RockFormation2.prefab │ │ └── RockFormation2.prefab.meta ├── Scenes.meta ├── Scenes │ ├── Main.unity │ ├── Main.unity.meta │ ├── Menu.unity │ └── Menu.unity.meta ├── Scripts.meta ├── Scripts │ ├── AmountOfWaterRPTC.cs │ ├── AmountOfWaterRPTC.cs.meta │ ├── ChunksData.cs │ ├── ChunksData.cs.meta │ ├── EnvironmentGenerator.cs │ ├── EnvironmentGenerator.cs.meta │ ├── GameManager.cs │ ├── GameManager.cs.meta │ ├── LateActivation.cs │ ├── LateActivation.cs.meta │ ├── LayerDestroyer.cs │ ├── LayerDestroyer.cs.meta │ ├── MetaballManager.cs │ ├── MetaballManager.cs.meta │ ├── MetaballSpawner.cs │ ├── MetaballSpawner.cs.meta │ ├── Obstacle.cs │ ├── Obstacle.cs.meta │ ├── ObstacleGenerator.cs │ ├── ObstacleGenerator.cs.meta │ ├── ObstacleGeneratorObject.cs │ ├── ObstacleGeneratorObject.cs.meta │ ├── ObstacleProjectile.cs │ ├── ObstacleProjectile.cs.meta │ ├── ProjectileShooter.cs │ ├── ProjectileShooter.cs.meta │ ├── SelfDestruct.cs │ ├── SelfDestruct.cs.meta │ ├── SmoothDampToLocation.cs │ ├── SmoothDampToLocation.cs.meta │ ├── TimeCycle.cs │ ├── TimeCycle.cs.meta │ ├── TransformMovement.cs │ ├── TransformMovement.cs.meta │ ├── VelocityLimiter.cs │ ├── VelocityLimiter.cs.meta │ ├── WaterDropper.cs │ ├── WaterDropper.cs.meta │ ├── WaterSpeedRTPC.cs │ └── WaterSpeedRTPC.cs.meta ├── Sprites.meta ├── Sprites │ ├── Chunks.meta │ ├── Chunks │ │ ├── Connectors.meta │ │ ├── Connectors │ │ │ ├── DesertForest.png │ │ │ ├── DesertForest.png.meta │ │ │ ├── DesertGrasslands.png │ │ │ ├── DesertGrasslands.png.meta │ │ │ ├── DesertTaiga.png │ │ │ ├── DesertTaiga.png.meta │ │ │ ├── DesertTundra.png │ │ │ ├── DesertTundra.png.meta │ │ │ ├── ForestDesert.png │ │ │ ├── ForestDesert.png.meta │ │ │ ├── ForestGrasslands.png │ │ │ ├── ForestGrasslands.png.meta │ │ │ ├── ForestTaiga.png │ │ │ ├── ForestTaiga.png.meta │ │ │ ├── ForestTundra.png │ │ │ ├── ForestTundra.png.meta │ │ │ ├── GrasslandsDesert.png │ │ │ ├── GrasslandsDesert.png.meta │ │ │ ├── GrasslandsForest.png │ │ │ ├── GrasslandsForest.png.meta │ │ │ ├── GrasslandsTaiga.png │ │ │ ├── GrasslandsTaiga.png.meta │ │ │ ├── GrasslandsTundra.png │ │ │ ├── GrasslandsTundra.png.meta │ │ │ ├── TaigaDesert.png │ │ │ ├── TaigaDesert.png.meta │ │ │ ├── TaigaForest.png │ │ │ ├── TaigaForest.png.meta │ │ │ ├── TaigaGrasslands.png │ │ │ ├── TaigaGrasslands.png.meta │ │ │ ├── TaigaTundra.png │ │ │ ├── TaigaTundra.png.meta │ │ │ ├── TundraDesert.png │ │ │ ├── TundraDesert.png.meta │ │ │ ├── TundraForest.png │ │ │ ├── TundraForest.png.meta │ │ │ ├── TundraGrasslands.png │ │ │ ├── TundraGrasslands.png.meta │ │ │ ├── TundraTaiga.png │ │ │ └── TundraTaiga.png.meta │ │ ├── Desert.meta │ │ ├── Desert │ │ │ ├── Desert1.png │ │ │ ├── Desert1.png.meta │ │ │ ├── Desert2.png │ │ │ ├── Desert2.png.meta │ │ │ ├── Desert3.png │ │ │ ├── Desert3.png.meta │ │ │ ├── Desert4.png │ │ │ └── Desert4.png.meta │ │ ├── Forest.meta │ │ ├── Forest │ │ │ ├── Forest1.png │ │ │ ├── Forest1.png.meta │ │ │ ├── Forest2.png │ │ │ ├── Forest2.png.meta │ │ │ ├── Forest3.png │ │ │ ├── Forest3.png.meta │ │ │ ├── Forest4.png │ │ │ └── Forest4.png.meta │ │ ├── Grasslands.meta │ │ ├── Grasslands │ │ │ ├── Grasslands1.png │ │ │ ├── Grasslands1.png.meta │ │ │ ├── Grasslands2.png │ │ │ ├── Grasslands2.png.meta │ │ │ ├── Grasslands3.png │ │ │ ├── Grasslands3.png.meta │ │ │ ├── Grasslands4.png │ │ │ └── Grasslands4.png.meta │ │ ├── Taiga.meta │ │ ├── Taiga │ │ │ ├── Taiga1.png │ │ │ ├── Taiga1.png.meta │ │ │ ├── Taiga2.png │ │ │ ├── Taiga2.png.meta │ │ │ ├── Taiga3.png │ │ │ └── Taiga3.png.meta │ │ ├── Tundra.meta │ │ └── Tundra │ │ │ ├── Tundra1.png │ │ │ ├── Tundra1.png.meta │ │ │ ├── Tundra2.png │ │ │ ├── Tundra2.png.meta │ │ │ ├── Tundra3.png │ │ │ └── Tundra3.png.meta │ ├── Circle.png │ ├── Circle.png.meta │ ├── MyFirstGameJamSummer2020Logo.png │ ├── MyFirstGameJamSummer2020Logo.png.meta │ ├── Obstacles.meta │ ├── Obstacles │ │ ├── Bush1.png │ │ ├── Bush1.png.meta │ │ ├── Bush2.png │ │ ├── Bush2.png.meta │ │ ├── Projectile1.png │ │ ├── Projectile1.png.meta │ │ ├── Projectile2.png │ │ ├── Projectile2.png.meta │ │ ├── Projectile3.png │ │ ├── Projectile3.png.meta │ │ ├── RockFormation1.png │ │ ├── RockFormation1.png.meta │ │ ├── RockFormation2.png │ │ └── RockFormation2.png.meta │ ├── Placeholder.meta │ ├── Placeholder │ │ ├── Chunks.meta │ │ └── Chunks │ │ │ ├── Environment Chunk.png │ │ │ ├── Environment Chunk.png.meta │ │ │ ├── Environment Chunk1.png │ │ │ ├── Environment Chunk1.png.meta │ │ │ ├── Environment Chunk2.png │ │ │ ├── Environment Chunk2.png.meta │ │ │ ├── Environment Chunk3.png │ │ │ ├── Environment Chunk3.png.meta │ │ │ ├── Environment Chunk4.png │ │ │ ├── Environment Chunk4.png.meta │ │ │ ├── Environment Chunk5.png │ │ │ ├── Environment Chunk5.png.meta │ │ │ ├── Environment Chunk6.png │ │ │ ├── Environment Chunk6.png.meta │ │ │ ├── Environment Chunk7.png │ │ │ ├── Environment Chunk7.png.meta │ │ │ ├── Environment Chunk8png.png │ │ │ ├── Environment Chunk8png.png.meta │ │ │ ├── Environment Chunk9.png │ │ │ └── Environment Chunk9.png.meta │ ├── PlumbingIcon.png │ ├── PlumbingIcon.png.meta │ ├── PlumbingLogo.png │ ├── PlumbingLogo.png.meta │ ├── PlumbingLogoFillable.png │ ├── PlumbingLogoFillable.png.meta │ ├── Sky Texture Top.png │ ├── Sky Texture Top.png.meta │ ├── Sky Texture.png │ ├── Sky Texture.png.meta │ ├── influencometer.png │ ├── influencometer.png.meta │ ├── sky top.png │ ├── sky top.png.meta │ ├── timecyc.png │ └── timecyc.png.meta ├── StreamingAssets.meta ├── StreamingAssets │ ├── Audio.meta │ ├── Audio │ │ ├── GeneratedSoundBanks.meta │ │ └── GeneratedSoundBanks │ │ │ ├── Mac.meta │ │ │ ├── Mac │ │ │ ├── DecodedBanks.meta │ │ │ ├── DecodedBanks │ │ │ │ └── English(US).meta │ │ │ ├── English(US).meta │ │ │ ├── General.bnk │ │ │ ├── General.bnk.meta │ │ │ ├── General.txt │ │ │ ├── General.txt.meta │ │ │ ├── Init.bnk │ │ │ ├── Init.bnk.meta │ │ │ ├── Init.txt │ │ │ ├── Init.txt.meta │ │ │ ├── Music.bnk │ │ │ ├── Music.bnk.meta │ │ │ ├── Music.txt │ │ │ ├── Music.txt.meta │ │ │ ├── PluginInfo.xml │ │ │ ├── PluginInfo.xml.meta │ │ │ ├── SoundbanksInfo.xml │ │ │ └── SoundbanksInfo.xml.meta │ │ │ ├── Windows.meta │ │ │ ├── Windows │ │ │ ├── English(US).meta │ │ │ ├── General.bnk │ │ │ ├── General.bnk.meta │ │ │ ├── General.txt │ │ │ ├── General.txt.meta │ │ │ ├── Init.bnk │ │ │ ├── Init.bnk.meta │ │ │ ├── Init.txt │ │ │ ├── Init.txt.meta │ │ │ ├── Music.bnk │ │ │ ├── Music.bnk.meta │ │ │ ├── Music.txt │ │ │ ├── Music.txt.meta │ │ │ ├── PluginInfo.xml │ │ │ ├── PluginInfo.xml.meta │ │ │ ├── SoundbanksInfo.xml │ │ │ └── SoundbanksInfo.xml.meta │ │ │ ├── Wwise_IDs.h │ │ │ └── Wwise_IDs.h.meta │ ├── desc.txt │ └── desc.txt.meta ├── Wwise.meta ├── Wwise │ ├── Deployment.meta │ ├── Deployment │ │ ├── API.meta │ │ ├── API │ │ │ ├── Generated.meta │ │ │ ├── Generated │ │ │ │ ├── Common.meta │ │ │ │ ├── Common │ │ │ │ │ ├── AKRESULT.cs │ │ │ │ │ ├── AKRESULT.cs.meta │ │ │ │ │ ├── Ak3DPositionType.cs │ │ │ │ │ ├── Ak3DPositionType.cs.meta │ │ │ │ │ ├── Ak3DSpatializationMode.cs │ │ │ │ │ ├── Ak3DSpatializationMode.cs.meta │ │ │ │ │ ├── AkAcousticSurface.cs │ │ │ │ │ ├── AkAcousticSurface.cs.meta │ │ │ │ │ ├── AkActionOnEventType.cs │ │ │ │ │ ├── AkActionOnEventType.cs.meta │ │ │ │ │ ├── AkAudioDeviceState.cs │ │ │ │ │ ├── AkAudioDeviceState.cs.meta │ │ │ │ │ ├── AkAudioFormat.cs │ │ │ │ │ ├── AkAudioFormat.cs.meta │ │ │ │ │ ├── AkAudioInterruptionCallbackInfo.cs │ │ │ │ │ ├── AkAudioInterruptionCallbackInfo.cs.meta │ │ │ │ │ ├── AkAudioSettings.cs │ │ │ │ │ ├── AkAudioSettings.cs.meta │ │ │ │ │ ├── AkAudioSourceChangeCallbackInfo.cs │ │ │ │ │ ├── AkAudioSourceChangeCallbackInfo.cs.meta │ │ │ │ │ ├── AkAuxSendValue.cs │ │ │ │ │ ├── AkAuxSendValue.cs.meta │ │ │ │ │ ├── AkBankCallbackInfo.cs │ │ │ │ │ ├── AkBankCallbackInfo.cs.meta │ │ │ │ │ ├── AkBankContent.cs │ │ │ │ │ ├── AkBankContent.cs.meta │ │ │ │ │ ├── AkBusHierarchyFlags.cs │ │ │ │ │ ├── AkBusHierarchyFlags.cs.meta │ │ │ │ │ ├── AkCallbackInfo.cs │ │ │ │ │ ├── AkCallbackInfo.cs.meta │ │ │ │ │ ├── AkCallbackSerializer.cs │ │ │ │ │ ├── AkCallbackSerializer.cs.meta │ │ │ │ │ ├── AkCallbackType.cs │ │ │ │ │ ├── AkCallbackType.cs.meta │ │ │ │ │ ├── AkChannelConfig.cs │ │ │ │ │ ├── AkChannelConfig.cs.meta │ │ │ │ │ ├── AkChannelConfigType.cs │ │ │ │ │ ├── AkChannelConfigType.cs.meta │ │ │ │ │ ├── AkChannelEmitter.cs │ │ │ │ │ ├── AkChannelEmitter.cs.meta │ │ │ │ │ ├── AkChannelOrdering.cs │ │ │ │ │ ├── AkChannelOrdering.cs.meta │ │ │ │ │ ├── AkConnectionType.cs │ │ │ │ │ ├── AkConnectionType.cs.meta │ │ │ │ │ ├── AkCurveInterpolation.cs │ │ │ │ │ ├── AkCurveInterpolation.cs.meta │ │ │ │ │ ├── AkDeviceDescription.cs │ │ │ │ │ ├── AkDeviceDescription.cs.meta │ │ │ │ │ ├── AkDeviceSettings.cs │ │ │ │ │ ├── AkDeviceSettings.cs.meta │ │ │ │ │ ├── AkDiffractionFlags.cs │ │ │ │ │ ├── AkDiffractionFlags.cs.meta │ │ │ │ │ ├── AkDiffractionPathInfo.cs │ │ │ │ │ ├── AkDiffractionPathInfo.cs.meta │ │ │ │ │ ├── AkDurationCallbackInfo.cs │ │ │ │ │ ├── AkDurationCallbackInfo.cs.meta │ │ │ │ │ ├── AkDynamicSequenceItemCallbackInfo.cs │ │ │ │ │ ├── AkDynamicSequenceItemCallbackInfo.cs.meta │ │ │ │ │ ├── AkDynamicSequenceType.cs │ │ │ │ │ ├── AkDynamicSequenceType.cs.meta │ │ │ │ │ ├── AkEventCallbackInfo.cs │ │ │ │ │ ├── AkEventCallbackInfo.cs.meta │ │ │ │ │ ├── AkExternalSourceInfo.cs │ │ │ │ │ ├── AkExternalSourceInfo.cs.meta │ │ │ │ │ ├── AkFloorPlane.cs │ │ │ │ │ ├── AkFloorPlane.cs.meta │ │ │ │ │ ├── AkGlobalCallbackLocation.cs │ │ │ │ │ ├── AkGlobalCallbackLocation.cs.meta │ │ │ │ │ ├── AkGroupType.cs │ │ │ │ │ ├── AkGroupType.cs.meta │ │ │ │ │ ├── AkImageSourceParams.cs │ │ │ │ │ ├── AkImageSourceParams.cs.meta │ │ │ │ │ ├── AkImageSourceSettings.cs │ │ │ │ │ ├── AkImageSourceSettings.cs.meta │ │ │ │ │ ├── AkInitSettings.cs │ │ │ │ │ ├── AkInitSettings.cs.meta │ │ │ │ │ ├── AkInitializationSettings.cs │ │ │ │ │ ├── AkInitializationSettings.cs.meta │ │ │ │ │ ├── AkIterator.cs │ │ │ │ │ ├── AkIterator.cs.meta │ │ │ │ │ ├── AkMIDICcTypes.cs │ │ │ │ │ ├── AkMIDICcTypes.cs.meta │ │ │ │ │ ├── AkMIDIEvent.cs │ │ │ │ │ ├── AkMIDIEvent.cs.meta │ │ │ │ │ ├── AkMIDIEventCallbackInfo.cs │ │ │ │ │ ├── AkMIDIEventCallbackInfo.cs.meta │ │ │ │ │ ├── AkMIDIEventTypes.cs │ │ │ │ │ ├── AkMIDIEventTypes.cs.meta │ │ │ │ │ ├── AkMIDIPost.cs │ │ │ │ │ ├── AkMIDIPost.cs.meta │ │ │ │ │ ├── AkMarkerCallbackInfo.cs │ │ │ │ │ ├── AkMarkerCallbackInfo.cs.meta │ │ │ │ │ ├── AkMeteringFlags.cs │ │ │ │ │ ├── AkMeteringFlags.cs.meta │ │ │ │ │ ├── AkMonitorErrorCode.cs │ │ │ │ │ ├── AkMonitorErrorCode.cs.meta │ │ │ │ │ ├── AkMonitorErrorLevel.cs │ │ │ │ │ ├── AkMonitorErrorLevel.cs.meta │ │ │ │ │ ├── AkMonitoringCallbackInfo.cs │ │ │ │ │ ├── AkMonitoringCallbackInfo.cs.meta │ │ │ │ │ ├── AkMultiPositionType.cs │ │ │ │ │ ├── AkMultiPositionType.cs.meta │ │ │ │ │ ├── AkMusicPlaylistCallbackInfo.cs │ │ │ │ │ ├── AkMusicPlaylistCallbackInfo.cs.meta │ │ │ │ │ ├── AkMusicSettings.cs │ │ │ │ │ ├── AkMusicSettings.cs.meta │ │ │ │ │ ├── AkMusicSyncCallbackInfo.cs │ │ │ │ │ ├── AkMusicSyncCallbackInfo.cs.meta │ │ │ │ │ ├── AkObjectInfo.cs │ │ │ │ │ ├── AkObjectInfo.cs.meta │ │ │ │ │ ├── AkObstructionOcclusionValues.cs │ │ │ │ │ ├── AkObstructionOcclusionValues.cs.meta │ │ │ │ │ ├── AkOutputSettings.cs │ │ │ │ │ ├── AkOutputSettings.cs.meta │ │ │ │ │ ├── AkPanningRule.cs │ │ │ │ │ ├── AkPanningRule.cs.meta │ │ │ │ │ ├── AkPlaylist.cs │ │ │ │ │ ├── AkPlaylist.cs.meta │ │ │ │ │ ├── AkPlaylistArray.cs │ │ │ │ │ ├── AkPlaylistArray.cs.meta │ │ │ │ │ ├── AkPlaylistItem.cs │ │ │ │ │ ├── AkPlaylistItem.cs.meta │ │ │ │ │ ├── AkPluginType.cs │ │ │ │ │ ├── AkPluginType.cs.meta │ │ │ │ │ ├── AkPositioningInfo.cs │ │ │ │ │ ├── AkPositioningInfo.cs.meta │ │ │ │ │ ├── AkPreparationType.cs │ │ │ │ │ ├── AkPreparationType.cs.meta │ │ │ │ │ ├── AkQueryRTPCValue.cs │ │ │ │ │ ├── AkQueryRTPCValue.cs.meta │ │ │ │ │ ├── AkRamp.cs │ │ │ │ │ ├── AkRamp.cs.meta │ │ │ │ │ ├── AkReflectionPathInfo.cs │ │ │ │ │ ├── AkReflectionPathInfo.cs.meta │ │ │ │ │ ├── AkResourceMonitorDataSummary.cs │ │ │ │ │ ├── AkResourceMonitorDataSummary.cs.meta │ │ │ │ │ ├── AkRoomParams.cs │ │ │ │ │ ├── AkRoomParams.cs.meta │ │ │ │ │ ├── AkSegmentInfo.cs │ │ │ │ │ ├── AkSegmentInfo.cs.meta │ │ │ │ │ ├── AkSerializedCallbackHeader.cs │ │ │ │ │ ├── AkSerializedCallbackHeader.cs.meta │ │ │ │ │ ├── AkSourceChannelOrdering.cs │ │ │ │ │ ├── AkSourceChannelOrdering.cs.meta │ │ │ │ │ ├── AkSourceSettings.cs │ │ │ │ │ ├── AkSourceSettings.cs.meta │ │ │ │ │ ├── AkSpatialAudioInitSettings.cs │ │ │ │ │ ├── AkSpatialAudioInitSettings.cs.meta │ │ │ │ │ ├── AkSpeakerPanningType.cs │ │ │ │ │ ├── AkSpeakerPanningType.cs.meta │ │ │ │ │ ├── AkStreamMgrSettings.cs │ │ │ │ │ ├── AkStreamMgrSettings.cs.meta │ │ │ │ │ ├── AkTaskContext.cs │ │ │ │ │ ├── AkTaskContext.cs.meta │ │ │ │ │ ├── AkTransform.cs │ │ │ │ │ ├── AkTransform.cs.meta │ │ │ │ │ ├── AkTriangle.cs │ │ │ │ │ └── AkTriangle.cs.meta │ │ │ │ ├── Mac.meta │ │ │ │ ├── Mac │ │ │ │ │ ├── AkCommunicationSettings_Mac.cs │ │ │ │ │ ├── AkCommunicationSettings_Mac.cs.meta │ │ │ │ │ ├── AkPlatformInitSettings_Mac.cs │ │ │ │ │ ├── AkPlatformInitSettings_Mac.cs.meta │ │ │ │ │ ├── AkSoundEnginePINVOKE_Mac.cs │ │ │ │ │ ├── AkSoundEnginePINVOKE_Mac.cs.meta │ │ │ │ │ ├── AkSoundEngine_Mac.cs │ │ │ │ │ ├── AkSoundEngine_Mac.cs.meta │ │ │ │ │ ├── AkThreadProperties_Mac.cs │ │ │ │ │ ├── AkThreadProperties_Mac.cs.meta │ │ │ │ │ ├── AkUnityPlatformSpecificSettings_Mac.cs │ │ │ │ │ └── AkUnityPlatformSpecificSettings_Mac.cs.meta │ │ │ │ ├── Windows.meta │ │ │ │ └── Windows │ │ │ │ │ ├── AkAudioAPI_Windows.cs │ │ │ │ │ ├── AkAudioAPI_Windows.cs.meta │ │ │ │ │ ├── AkCommunicationSettings_Windows.cs │ │ │ │ │ ├── AkCommunicationSettings_Windows.cs.meta │ │ │ │ │ ├── AkPlatformInitSettings_Windows.cs │ │ │ │ │ ├── AkPlatformInitSettings_Windows.cs.meta │ │ │ │ │ ├── AkSoundEnginePINVOKE_Windows.cs │ │ │ │ │ ├── AkSoundEnginePINVOKE_Windows.cs.meta │ │ │ │ │ ├── AkSoundEngine_Windows.cs │ │ │ │ │ ├── AkSoundEngine_Windows.cs.meta │ │ │ │ │ ├── AkThreadProperties_Windows.cs │ │ │ │ │ ├── AkThreadProperties_Windows.cs.meta │ │ │ │ │ ├── AkUnityPlatformSpecificSettings_Windows.cs │ │ │ │ │ └── AkUnityPlatformSpecificSettings_Windows.cs.meta │ │ │ ├── Handwritten.meta │ │ │ └── Handwritten │ │ │ │ ├── Common.meta │ │ │ │ ├── Common │ │ │ │ ├── AkAudioInputManager.cs │ │ │ │ ├── AkAudioInputManager.cs.meta │ │ │ │ ├── AkBankManager.cs │ │ │ │ ├── AkBankManager.cs.meta │ │ │ │ ├── AkBasePathGetter.cs │ │ │ │ ├── AkBasePathGetter.cs.meta │ │ │ │ ├── AkCallbackManager.cs │ │ │ │ ├── AkCallbackManager.cs.meta │ │ │ │ ├── AkCommonPlatformSettings.cs │ │ │ │ ├── AkCommonPlatformSettings.cs.meta │ │ │ │ ├── AkEnumFlagAttribute.cs │ │ │ │ ├── AkEnumFlagAttribute.cs.meta │ │ │ │ ├── AkLogger.cs │ │ │ │ ├── AkLogger.cs.meta │ │ │ │ ├── AkRoomAwareManager.cs │ │ │ │ ├── AkRoomAwareManager.cs.meta │ │ │ │ ├── AkRoomManager.cs │ │ │ │ ├── AkRoomManager.cs.meta │ │ │ │ ├── AkShowOnlyAttribute.cs │ │ │ │ ├── AkShowOnlyAttribute.cs.meta │ │ │ │ ├── AkSoundEngine.cs │ │ │ │ ├── AkSoundEngine.cs.meta │ │ │ │ ├── AkUtilities.cs │ │ │ │ ├── AkUtilities.cs.meta │ │ │ │ ├── AkVector.cs │ │ │ │ ├── AkVector.cs.meta │ │ │ │ ├── AkVertex.cs │ │ │ │ ├── AkVertex.cs.meta │ │ │ │ ├── AkWwiseEditorSettings.cs │ │ │ │ ├── AkWwiseEditorSettings.cs.meta │ │ │ │ ├── AkWwiseInitializationSettings.cs │ │ │ │ ├── AkWwiseInitializationSettings.cs.meta │ │ │ │ ├── AkWwiseXMLWatcher.cs │ │ │ │ ├── AkWwiseXMLWatcher.cs.meta │ │ │ │ ├── Arrays.meta │ │ │ │ ├── Arrays │ │ │ │ │ ├── AkAcousticSurfaceArray.cs │ │ │ │ │ ├── AkAcousticSurfaceArray.cs.meta │ │ │ │ │ ├── AkAuxSendArray.cs │ │ │ │ │ ├── AkAuxSendArray.cs.meta │ │ │ │ │ ├── AkBaseArray.cs │ │ │ │ │ ├── AkBaseArray.cs.meta │ │ │ │ │ ├── AkChannelEmitterArray.cs │ │ │ │ │ ├── AkChannelEmitterArray.cs.meta │ │ │ │ │ ├── AkDeviceDescriptionArray.cs │ │ │ │ │ ├── AkDeviceDescriptionArray.cs.meta │ │ │ │ │ ├── AkDiffractionPathInfoArray.cs │ │ │ │ │ ├── AkDiffractionPathInfoArray.cs.meta │ │ │ │ │ ├── AkExternalSourceInfoArray.cs │ │ │ │ │ ├── AkExternalSourceInfoArray.cs.meta │ │ │ │ │ ├── AkMIDIPostArray.cs │ │ │ │ │ ├── AkMIDIPostArray.cs.meta │ │ │ │ │ ├── AkObjectInfoArray.cs │ │ │ │ │ ├── AkObjectInfoArray.cs.meta │ │ │ │ │ ├── AkObstructionOcclusionValuesArray.cs │ │ │ │ │ ├── AkObstructionOcclusionValuesArray.cs.meta │ │ │ │ │ ├── AkPositionArray.cs │ │ │ │ │ ├── AkPositionArray.cs.meta │ │ │ │ │ ├── AkReflectionPathInfoArray.cs │ │ │ │ │ ├── AkReflectionPathInfoArray.cs.meta │ │ │ │ │ ├── AkSourceSettingsArray.cs │ │ │ │ │ ├── AkSourceSettingsArray.cs.meta │ │ │ │ │ ├── AkTriangleArray.cs │ │ │ │ │ └── AkTriangleArray.cs.meta │ │ │ │ ├── Timeline.meta │ │ │ │ ├── Timeline │ │ │ │ │ ├── AkTimelineEventPlayable.cs │ │ │ │ │ ├── AkTimelineEventPlayable.cs.meta │ │ │ │ │ ├── AkTimelineEventTrack.cs │ │ │ │ │ ├── AkTimelineEventTrack.cs.meta │ │ │ │ │ ├── AkTimelineRtpcPlayable.cs │ │ │ │ │ ├── AkTimelineRtpcPlayable.cs.meta │ │ │ │ │ ├── AkTimelineRtpcTrack.cs │ │ │ │ │ └── AkTimelineRtpcTrack.cs.meta │ │ │ │ ├── WwiseObjects.meta │ │ │ │ ├── WwiseObjects │ │ │ │ │ ├── WwiseAcousticTextureReference.cs │ │ │ │ │ ├── WwiseAcousticTextureReference.cs.meta │ │ │ │ │ ├── WwiseAuxBusReference.cs │ │ │ │ │ ├── WwiseAuxBusReference.cs.meta │ │ │ │ │ ├── WwiseBankReference.cs │ │ │ │ │ ├── WwiseBankReference.cs.meta │ │ │ │ │ ├── WwiseEventReference.cs │ │ │ │ │ ├── WwiseEventReference.cs.meta │ │ │ │ │ ├── WwiseObjectReference.cs │ │ │ │ │ ├── WwiseObjectReference.cs.meta │ │ │ │ │ ├── WwiseObjectType.cs │ │ │ │ │ ├── WwiseObjectType.cs.meta │ │ │ │ │ ├── WwiseRtpcReference.cs │ │ │ │ │ ├── WwiseRtpcReference.cs.meta │ │ │ │ │ ├── WwiseStateGroupReference.cs │ │ │ │ │ ├── WwiseStateGroupReference.cs.meta │ │ │ │ │ ├── WwiseStateReference.cs │ │ │ │ │ ├── WwiseStateReference.cs.meta │ │ │ │ │ ├── WwiseSwitchGroupReference.cs │ │ │ │ │ ├── WwiseSwitchGroupReference.cs.meta │ │ │ │ │ ├── WwiseSwitchReference.cs │ │ │ │ │ ├── WwiseSwitchReference.cs.meta │ │ │ │ │ ├── WwiseTriggerReference.cs │ │ │ │ │ └── WwiseTriggerReference.cs.meta │ │ │ │ ├── WwiseTypes.meta │ │ │ │ └── WwiseTypes │ │ │ │ │ ├── AkWwiseAcousticTexture.cs │ │ │ │ │ ├── AkWwiseAcousticTexture.cs.meta │ │ │ │ │ ├── AkWwiseAuxBus.cs │ │ │ │ │ ├── AkWwiseAuxBus.cs.meta │ │ │ │ │ ├── AkWwiseBank.cs │ │ │ │ │ ├── AkWwiseBank.cs.meta │ │ │ │ │ ├── AkWwiseBaseGroupType.cs │ │ │ │ │ ├── AkWwiseBaseGroupType.cs.meta │ │ │ │ │ ├── AkWwiseBaseType.cs │ │ │ │ │ ├── AkWwiseBaseType.cs.meta │ │ │ │ │ ├── AkWwiseCallbackFlags.cs │ │ │ │ │ ├── AkWwiseCallbackFlags.cs.meta │ │ │ │ │ ├── AkWwiseEvent.cs │ │ │ │ │ ├── AkWwiseEvent.cs.meta │ │ │ │ │ ├── AkWwiseRtpc.cs │ │ │ │ │ ├── AkWwiseRtpc.cs.meta │ │ │ │ │ ├── AkWwiseState.cs │ │ │ │ │ ├── AkWwiseState.cs.meta │ │ │ │ │ ├── AkWwiseSwitch.cs │ │ │ │ │ ├── AkWwiseSwitch.cs.meta │ │ │ │ │ ├── AkWwiseTrigger.cs │ │ │ │ │ ├── AkWwiseTrigger.cs.meta │ │ │ │ │ ├── AkWwiseTypeMigration.cs │ │ │ │ │ └── AkWwiseTypeMigration.cs.meta │ │ │ │ ├── Mac.meta │ │ │ │ ├── Mac │ │ │ │ ├── AkMacSettings.cs │ │ │ │ └── AkMacSettings.cs.meta │ │ │ │ ├── WAAPI.meta │ │ │ │ ├── WAAPI │ │ │ │ ├── AkWaapiClient.cs │ │ │ │ ├── AkWaapiClient.cs.meta │ │ │ │ ├── AkWaapiClient_PINVOKE.cs │ │ │ │ └── AkWaapiClient_PINVOKE.cs.meta │ │ │ │ ├── Windows.meta │ │ │ │ └── Windows │ │ │ │ ├── AkWindowsSettings.cs │ │ │ │ └── AkWindowsSettings.cs.meta │ │ ├── AkWwiseSDKVersion.h │ │ ├── AkWwiseSDKVersion.h.meta │ │ ├── Components.meta │ │ ├── Components │ │ │ ├── AkAmbient.cs │ │ │ ├── AkAmbient.cs.meta │ │ │ ├── AkAmbientLargeModePositioner.cs │ │ │ ├── AkAmbientLargeModePositioner.cs.meta │ │ │ ├── AkAudioListener.cs │ │ │ ├── AkAudioListener.cs.meta │ │ │ ├── AkBank.cs │ │ │ ├── AkBank.cs.meta │ │ │ ├── AkEarlyReflections.cs │ │ │ ├── AkEarlyReflections.cs.meta │ │ │ ├── AkEmitterObstructionOcclusion.cs │ │ │ ├── AkEmitterObstructionOcclusion.cs.meta │ │ │ ├── AkEnvironment.cs │ │ │ ├── AkEnvironment.cs.meta │ │ │ ├── AkEnvironmentPortal.cs │ │ │ ├── AkEnvironmentPortal.cs.meta │ │ │ ├── AkEvent.cs │ │ │ ├── AkEvent.cs.meta │ │ │ ├── AkEventCallbackData.cs │ │ │ ├── AkEventCallbackData.cs.meta │ │ │ ├── AkEventPlayable.cs │ │ │ ├── AkEventPlayable.cs.meta │ │ │ ├── AkEventPlayableBehavior.cs │ │ │ ├── AkEventPlayableBehavior.cs.meta │ │ │ ├── AkEventTrack.cs │ │ │ ├── AkEventTrack.cs.meta │ │ │ ├── AkGameObj.cs │ │ │ ├── AkGameObj.cs.meta │ │ │ ├── AkGameObjEnvironmentData.cs │ │ │ ├── AkGameObjEnvironmentData.cs.meta │ │ │ ├── AkGameObjListenerList.cs │ │ │ ├── AkGameObjListenerList.cs.meta │ │ │ ├── AkGameObjPosOffsetData.cs │ │ │ ├── AkGameObjPosOffsetData.cs.meta │ │ │ ├── AkGameObjPositionData.cs │ │ │ ├── AkGameObjPositionData.cs.meta │ │ │ ├── AkGameObjPositionOffsetData.cs │ │ │ ├── AkGameObjPositionOffsetData.cs.meta │ │ │ ├── AkInitializer.cs │ │ │ ├── AkInitializer.cs.meta │ │ │ ├── AkMemBankLoader.cs │ │ │ ├── AkMemBankLoader.cs.meta │ │ │ ├── AkObstructionOcclusion.cs │ │ │ ├── AkObstructionOcclusion.cs.meta │ │ │ ├── AkRTPCPlayable.cs │ │ │ ├── AkRTPCPlayable.cs.meta │ │ │ ├── AkRTPCTrack.cs │ │ │ ├── AkRTPCTrack.cs.meta │ │ │ ├── AkRoom.cs │ │ │ ├── AkRoom.cs.meta │ │ │ ├── AkRoomAwareObject.cs │ │ │ ├── AkRoomAwareObject.cs.meta │ │ │ ├── AkRoomPortal.cs │ │ │ ├── AkRoomPortal.cs.meta │ │ │ ├── AkRoomPortalObstruction.cs │ │ │ ├── AkRoomPortalObstruction.cs.meta │ │ │ ├── AkSoundEngineController.cs │ │ │ ├── AkSoundEngineController.cs.meta │ │ │ ├── AkSpatialAudioDebugDraw.cs │ │ │ ├── AkSpatialAudioDebugDraw.cs.meta │ │ │ ├── AkSpatialAudioEmitter.cs │ │ │ ├── AkSpatialAudioEmitter.cs.meta │ │ │ ├── AkSpatialAudioListener.cs │ │ │ ├── AkSpatialAudioListener.cs.meta │ │ │ ├── AkState.cs │ │ │ ├── AkState.cs.meta │ │ │ ├── AkSurfaceReflector.cs │ │ │ ├── AkSurfaceReflector.cs.meta │ │ │ ├── AkSwitch.cs │ │ │ ├── AkSwitch.cs.meta │ │ │ ├── AkTerminator.cs │ │ │ ├── AkTerminator.cs.meta │ │ │ ├── AkTriggerBase.cs │ │ │ ├── AkTriggerBase.cs.meta │ │ │ ├── AkTriggerCollisionEnter.cs │ │ │ ├── AkTriggerCollisionEnter.cs.meta │ │ │ ├── AkTriggerCollisionExit.cs │ │ │ ├── AkTriggerCollisionExit.cs.meta │ │ │ ├── AkTriggerDisable.cs │ │ │ ├── AkTriggerDisable.cs.meta │ │ │ ├── AkTriggerEnable.cs │ │ │ ├── AkTriggerEnable.cs.meta │ │ │ ├── AkTriggerEnter.cs │ │ │ ├── AkTriggerEnter.cs.meta │ │ │ ├── AkTriggerExit.cs │ │ │ ├── AkTriggerExit.cs.meta │ │ │ ├── AkTriggerHandler.cs │ │ │ ├── AkTriggerHandler.cs.meta │ │ │ ├── AkTriggerMouseDown.cs │ │ │ ├── AkTriggerMouseDown.cs.meta │ │ │ ├── AkTriggerMouseEnter.cs │ │ │ ├── AkTriggerMouseEnter.cs.meta │ │ │ ├── AkTriggerMouseExit.cs │ │ │ ├── AkTriggerMouseExit.cs.meta │ │ │ ├── AkTriggerMouseUp.cs │ │ │ └── AkTriggerMouseUp.cs.meta │ │ ├── Plugins.meta │ │ └── Plugins │ │ │ ├── Mac.meta │ │ │ ├── Mac │ │ │ ├── DSP.meta │ │ │ ├── DSP │ │ │ │ ├── libAkAudioInput.bundle │ │ │ │ ├── libAkAudioInput.bundle.meta │ │ │ │ ├── libAkCompressor.bundle │ │ │ │ ├── libAkCompressor.bundle.meta │ │ │ │ ├── libAkConvolutionReverb.bundle │ │ │ │ ├── libAkConvolutionReverb.bundle.meta │ │ │ │ ├── libAkDelay.bundle │ │ │ │ ├── libAkDelay.bundle.meta │ │ │ │ ├── libAkExpander.bundle │ │ │ │ ├── libAkExpander.bundle.meta │ │ │ │ ├── libAkFlanger.bundle │ │ │ │ ├── libAkFlanger.bundle.meta │ │ │ │ ├── libAkGain.bundle │ │ │ │ ├── libAkGain.bundle.meta │ │ │ │ ├── libAkGuitarDistortion.bundle │ │ │ │ ├── libAkGuitarDistortion.bundle.meta │ │ │ │ ├── libAkHarmonizer.bundle │ │ │ │ ├── libAkHarmonizer.bundle.meta │ │ │ │ ├── libAkMatrixReverb.bundle │ │ │ │ ├── libAkMatrixReverb.bundle.meta │ │ │ │ ├── libAkParametricEQ.bundle │ │ │ │ ├── libAkParametricEQ.bundle.meta │ │ │ │ ├── libAkPeakLimiter.bundle │ │ │ │ ├── libAkPeakLimiter.bundle.meta │ │ │ │ ├── libAkPitchShifter.bundle │ │ │ │ ├── libAkPitchShifter.bundle.meta │ │ │ │ ├── libAkRecorder.bundle │ │ │ │ ├── libAkRecorder.bundle.meta │ │ │ │ ├── libAkReflect.bundle │ │ │ │ ├── libAkReflect.bundle.meta │ │ │ │ ├── libAkRoomVerb.bundle │ │ │ │ ├── libAkRoomVerb.bundle.meta │ │ │ │ ├── libAkSilenceGenerator.bundle │ │ │ │ ├── libAkSilenceGenerator.bundle.meta │ │ │ │ ├── libAkSineTone.bundle │ │ │ │ ├── libAkSineTone.bundle.meta │ │ │ │ ├── libAkSoundSeedAir.bundle │ │ │ │ ├── libAkSoundSeedAir.bundle.meta │ │ │ │ ├── libAkSoundSeedGrain.bundle │ │ │ │ ├── libAkSoundSeedGrain.bundle.meta │ │ │ │ ├── libAkSoundSeedImpact.bundle │ │ │ │ ├── libAkSoundSeedImpact.bundle.meta │ │ │ │ ├── libAkStereoDelay.bundle │ │ │ │ ├── libAkStereoDelay.bundle.meta │ │ │ │ ├── libAkSynthOne.bundle │ │ │ │ ├── libAkSynthOne.bundle.meta │ │ │ │ ├── libAkTimeStretch.bundle │ │ │ │ ├── libAkTimeStretch.bundle.meta │ │ │ │ ├── libAkToneGen.bundle │ │ │ │ ├── libAkToneGen.bundle.meta │ │ │ │ ├── libAkTremolo.bundle │ │ │ │ ├── libAkTremolo.bundle.meta │ │ │ │ ├── libAuro.bundle │ │ │ │ ├── libAuro.bundle.meta │ │ │ │ ├── libMasteringSuite.bundle │ │ │ │ ├── libMasteringSuite.bundle.meta │ │ │ │ ├── libMcDSP.bundle │ │ │ │ ├── libMcDSP.bundle.meta │ │ │ │ ├── libiZotope.bundle │ │ │ │ └── libiZotope.bundle.meta │ │ │ ├── Debug.meta │ │ │ ├── Debug │ │ │ │ ├── AkSoundEngine.bundle.meta │ │ │ │ ├── AkSoundEngine.bundle │ │ │ │ │ ├── Contents.meta │ │ │ │ │ └── Contents │ │ │ │ │ │ ├── MacOS.meta │ │ │ │ │ │ └── MacOS │ │ │ │ │ │ ├── AkSoundEngine │ │ │ │ │ │ └── AkSoundEngine.meta │ │ │ │ ├── AkWaapiClient.bundle.meta │ │ │ │ └── AkWaapiClient.bundle │ │ │ │ │ ├── Contents.meta │ │ │ │ │ └── Contents │ │ │ │ │ ├── MacOS.meta │ │ │ │ │ └── MacOS │ │ │ │ │ ├── AkWaapiClient │ │ │ │ │ └── AkWaapiClient.meta │ │ │ ├── Profile.meta │ │ │ ├── Profile │ │ │ │ ├── AkSoundEngine.bundle.meta │ │ │ │ ├── AkSoundEngine.bundle │ │ │ │ │ ├── Contents.meta │ │ │ │ │ └── Contents │ │ │ │ │ │ ├── MacOS.meta │ │ │ │ │ │ └── MacOS │ │ │ │ │ │ ├── AkSoundEngine │ │ │ │ │ │ └── AkSoundEngine.meta │ │ │ │ ├── AkWaapiClient.bundle.meta │ │ │ │ └── AkWaapiClient.bundle │ │ │ │ │ ├── Contents.meta │ │ │ │ │ └── Contents │ │ │ │ │ ├── MacOS.meta │ │ │ │ │ └── MacOS │ │ │ │ │ ├── AkWaapiClient │ │ │ │ │ └── AkWaapiClient.meta │ │ │ ├── Release.meta │ │ │ └── Release │ │ │ │ ├── AkSoundEngine.bundle.meta │ │ │ │ ├── AkSoundEngine.bundle │ │ │ │ ├── Contents.meta │ │ │ │ └── Contents │ │ │ │ │ ├── MacOS.meta │ │ │ │ │ └── MacOS │ │ │ │ │ ├── AkSoundEngine │ │ │ │ │ └── AkSoundEngine.meta │ │ │ │ ├── AkWaapiClient.bundle.meta │ │ │ │ └── AkWaapiClient.bundle │ │ │ │ ├── Contents.meta │ │ │ │ └── Contents │ │ │ │ ├── MacOS.meta │ │ │ │ └── MacOS │ │ │ │ ├── AkWaapiClient │ │ │ │ └── AkWaapiClient.meta │ │ │ ├── Windows.meta │ │ │ └── Windows │ │ │ ├── x86.meta │ │ │ ├── x86 │ │ │ ├── DSP.meta │ │ │ ├── DSP │ │ │ │ ├── AkAudioInput.dll │ │ │ │ ├── AkAudioInput.dll.meta │ │ │ │ ├── AkCompressor.dll │ │ │ │ ├── AkCompressor.dll.meta │ │ │ │ ├── AkConvolutionReverb.dll │ │ │ │ ├── AkConvolutionReverb.dll.meta │ │ │ │ ├── AkDelay.dll │ │ │ │ ├── AkDelay.dll.meta │ │ │ │ ├── AkExpander.dll │ │ │ │ ├── AkExpander.dll.meta │ │ │ │ ├── AkFlanger.dll │ │ │ │ ├── AkFlanger.dll.meta │ │ │ │ ├── AkGain.dll │ │ │ │ ├── AkGain.dll.meta │ │ │ │ ├── AkGuitarDistortion.dll │ │ │ │ ├── AkGuitarDistortion.dll.meta │ │ │ │ ├── AkHarmonizer.dll │ │ │ │ ├── AkHarmonizer.dll.meta │ │ │ │ ├── AkMatrixReverb.dll │ │ │ │ ├── AkMatrixReverb.dll.meta │ │ │ │ ├── AkMotion.dll │ │ │ │ ├── AkMotion.dll.meta │ │ │ │ ├── AkParametricEQ.dll │ │ │ │ ├── AkParametricEQ.dll.meta │ │ │ │ ├── AkPeakLimiter.dll │ │ │ │ ├── AkPeakLimiter.dll.meta │ │ │ │ ├── AkPitchShifter.dll │ │ │ │ ├── AkPitchShifter.dll.meta │ │ │ │ ├── AkRecorder.dll │ │ │ │ ├── AkRecorder.dll.meta │ │ │ │ ├── AkReflect.dll │ │ │ │ ├── AkReflect.dll.meta │ │ │ │ ├── AkRoomVerb.dll │ │ │ │ ├── AkRoomVerb.dll.meta │ │ │ │ ├── AkSilenceGenerator.dll │ │ │ │ ├── AkSilenceGenerator.dll.meta │ │ │ │ ├── AkSineTone.dll │ │ │ │ ├── AkSineTone.dll.meta │ │ │ │ ├── AkSoundEngineDLL.dll │ │ │ │ ├── AkSoundEngineDLL.dll.meta │ │ │ │ ├── AkSoundSeedAir.dll │ │ │ │ ├── AkSoundSeedAir.dll.meta │ │ │ │ ├── AkSoundSeedGrain.dll │ │ │ │ ├── AkSoundSeedGrain.dll.meta │ │ │ │ ├── AkSoundSeedImpact.dll │ │ │ │ ├── AkSoundSeedImpact.dll.meta │ │ │ │ ├── AkStereoDelay.dll │ │ │ │ ├── AkStereoDelay.dll.meta │ │ │ │ ├── AkSynthOne.dll │ │ │ │ ├── AkSynthOne.dll.meta │ │ │ │ ├── AkTimeStretch.dll │ │ │ │ ├── AkTimeStretch.dll.meta │ │ │ │ ├── AkToneGen.dll │ │ │ │ ├── AkToneGen.dll.meta │ │ │ │ ├── AkTremolo.dll │ │ │ │ ├── AkTremolo.dll.meta │ │ │ │ ├── Auro.dll │ │ │ │ ├── Auro.dll.meta │ │ │ │ ├── MSSpatial.dll │ │ │ │ ├── MSSpatial.dll.meta │ │ │ │ ├── MasteringSuite.dll │ │ │ │ ├── MasteringSuite.dll.meta │ │ │ │ ├── McDSP.dll │ │ │ │ ├── McDSP.dll.meta │ │ │ │ ├── iZotope.dll │ │ │ │ └── iZotope.dll.meta │ │ │ ├── Debug.meta │ │ │ ├── Debug │ │ │ │ ├── AkSoundEngine.dll │ │ │ │ ├── AkSoundEngine.dll.meta │ │ │ │ ├── AkSoundEngine.ilk │ │ │ │ ├── AkSoundEngine.ilk.meta │ │ │ │ ├── AkWaapiClient.dll │ │ │ │ ├── AkWaapiClient.dll.meta │ │ │ │ ├── AkWaapiClient.ilk │ │ │ │ └── AkWaapiClient.ilk.meta │ │ │ ├── Profile.meta │ │ │ ├── Profile │ │ │ │ ├── AkSoundEngine.dll │ │ │ │ ├── AkSoundEngine.dll.meta │ │ │ │ ├── AkWaapiClient.dll │ │ │ │ └── AkWaapiClient.dll.meta │ │ │ ├── Release.meta │ │ │ └── Release │ │ │ │ ├── AkSoundEngine.dll │ │ │ │ ├── AkSoundEngine.dll.meta │ │ │ │ ├── AkWaapiClient.dll │ │ │ │ └── AkWaapiClient.dll.meta │ │ │ ├── x86_64.meta │ │ │ └── x86_64 │ │ │ ├── DSP.meta │ │ │ ├── DSP │ │ │ ├── AkAudioInput.dll │ │ │ ├── AkAudioInput.dll.meta │ │ │ ├── AkCompressor.dll │ │ │ ├── AkCompressor.dll.meta │ │ │ ├── AkConvolutionReverb.dll │ │ │ ├── AkConvolutionReverb.dll.meta │ │ │ ├── AkDelay.dll │ │ │ ├── AkDelay.dll.meta │ │ │ ├── AkExpander.dll │ │ │ ├── AkExpander.dll.meta │ │ │ ├── AkFlanger.dll │ │ │ ├── AkFlanger.dll.meta │ │ │ ├── AkGain.dll │ │ │ ├── AkGain.dll.meta │ │ │ ├── AkGuitarDistortion.dll │ │ │ ├── AkGuitarDistortion.dll.meta │ │ │ ├── AkHarmonizer.dll │ │ │ ├── AkHarmonizer.dll.meta │ │ │ ├── AkMatrixReverb.dll │ │ │ ├── AkMatrixReverb.dll.meta │ │ │ ├── AkMotion.dll │ │ │ ├── AkMotion.dll.meta │ │ │ ├── AkParametricEQ.dll │ │ │ ├── AkParametricEQ.dll.meta │ │ │ ├── AkPeakLimiter.dll │ │ │ ├── AkPeakLimiter.dll.meta │ │ │ ├── AkPitchShifter.dll │ │ │ ├── AkPitchShifter.dll.meta │ │ │ ├── AkRecorder.dll │ │ │ ├── AkRecorder.dll.meta │ │ │ ├── AkReflect.dll │ │ │ ├── AkReflect.dll.meta │ │ │ ├── AkRoomVerb.dll │ │ │ ├── AkRoomVerb.dll.meta │ │ │ ├── AkSilenceGenerator.dll │ │ │ ├── AkSilenceGenerator.dll.meta │ │ │ ├── AkSineTone.dll │ │ │ ├── AkSineTone.dll.meta │ │ │ ├── AkSoundEngineDLL.dll │ │ │ ├── AkSoundEngineDLL.dll.meta │ │ │ ├── AkSoundSeedAir.dll │ │ │ ├── AkSoundSeedAir.dll.meta │ │ │ ├── AkSoundSeedGrain.dll │ │ │ ├── AkSoundSeedGrain.dll.meta │ │ │ ├── AkSoundSeedImpact.dll │ │ │ ├── AkSoundSeedImpact.dll.meta │ │ │ ├── AkStereoDelay.dll │ │ │ ├── AkStereoDelay.dll.meta │ │ │ ├── AkSynthOne.dll │ │ │ ├── AkSynthOne.dll.meta │ │ │ ├── AkTimeStretch.dll │ │ │ ├── AkTimeStretch.dll.meta │ │ │ ├── AkToneGen.dll │ │ │ ├── AkToneGen.dll.meta │ │ │ ├── AkTremolo.dll │ │ │ ├── AkTremolo.dll.meta │ │ │ ├── Auro.dll │ │ │ ├── Auro.dll.meta │ │ │ ├── MSSpatial.dll │ │ │ ├── MSSpatial.dll.meta │ │ │ ├── MasteringSuite.dll │ │ │ ├── MasteringSuite.dll.meta │ │ │ ├── McDSP.dll │ │ │ ├── McDSP.dll.meta │ │ │ ├── iZotope.dll │ │ │ └── iZotope.dll.meta │ │ │ ├── Debug.meta │ │ │ ├── Debug │ │ │ ├── AkSoundEngine.dll │ │ │ ├── AkSoundEngine.dll.meta │ │ │ ├── AkSoundEngine.ilk │ │ │ ├── AkSoundEngine.ilk.meta │ │ │ ├── AkWaapiClient.dll │ │ │ ├── AkWaapiClient.dll.meta │ │ │ ├── AkWaapiClient.ilk │ │ │ └── AkWaapiClient.ilk.meta │ │ │ ├── Profile.meta │ │ │ ├── Profile │ │ │ ├── AkSoundEngine.dll │ │ │ ├── AkSoundEngine.dll.meta │ │ │ ├── AkWaapiClient.dll │ │ │ └── AkWaapiClient.dll.meta │ │ │ ├── Release.meta │ │ │ └── Release │ │ │ ├── AkSoundEngine.dll │ │ │ ├── AkSoundEngine.dll.meta │ │ │ ├── AkWaapiClient.dll │ │ │ └── AkWaapiClient.dll.meta │ ├── Documentation.meta │ ├── Documentation │ │ ├── AppleCommon.meta │ │ ├── AppleCommon │ │ │ ├── en.meta │ │ │ ├── en │ │ │ │ ├── WwiseUnityIntegrationHelp_Mac_en.chm │ │ │ │ └── WwiseUnityIntegrationHelp_Mac_en.chm.meta │ │ │ ├── ja.meta │ │ │ ├── ja │ │ │ │ ├── WwiseUnityIntegrationHelp_Mac_ja.chm │ │ │ │ └── WwiseUnityIntegrationHelp_Mac_ja.chm.meta │ │ │ ├── ko.meta │ │ │ ├── ko │ │ │ │ ├── WwiseUnityIntegrationHelp_Mac_ko.chm │ │ │ │ └── WwiseUnityIntegrationHelp_Mac_ko.chm.meta │ │ │ ├── zh.meta │ │ │ └── zh │ │ │ │ ├── WwiseUnityIntegrationHelp_Mac_zh.chm │ │ │ │ └── WwiseUnityIntegrationHelp_Mac_zh.chm.meta │ │ ├── Windows.meta │ │ └── Windows │ │ │ ├── en.meta │ │ │ ├── en │ │ │ ├── WwiseUnityIntegrationHelp_en.chm │ │ │ └── WwiseUnityIntegrationHelp_en.chm.meta │ │ │ ├── ja.meta │ │ │ ├── ja │ │ │ ├── WwiseUnityIntegrationHelp_ja.chm │ │ │ └── WwiseUnityIntegrationHelp_ja.chm.meta │ │ │ ├── ko.meta │ │ │ ├── ko │ │ │ ├── WwiseUnityIntegrationHelp_ko.chm │ │ │ └── WwiseUnityIntegrationHelp_ko.chm.meta │ │ │ ├── zh.meta │ │ │ └── zh │ │ │ ├── WwiseUnityIntegrationHelp_zh.chm │ │ │ └── WwiseUnityIntegrationHelp_zh.chm.meta │ ├── Editor.meta │ ├── Editor │ │ ├── ProjectData.meta │ │ ├── ProjectData │ │ │ ├── AkWwiseProjectData.asset │ │ │ └── AkWwiseProjectData.asset.meta │ │ ├── WwiseComponents.meta │ │ ├── WwiseComponents │ │ │ ├── AkAmbientInspector.cs │ │ │ ├── AkAmbientInspector.cs.meta │ │ │ ├── AkAudioListenerInspector.cs │ │ │ ├── AkAudioListenerInspector.cs.meta │ │ │ ├── AkBankInspector.cs │ │ │ ├── AkBankInspector.cs.meta │ │ │ ├── AkBaseInspector.cs │ │ │ ├── AkBaseInspector.cs.meta │ │ │ ├── AkEnvironmentInspector.cs │ │ │ ├── AkEnvironmentInspector.cs.meta │ │ │ ├── AkEnvironmentPortalInspector.cs │ │ │ ├── AkEnvironmentPortalInspector.cs.meta │ │ │ ├── AkEventInspector.cs │ │ │ ├── AkEventInspector.cs.meta │ │ │ ├── AkEventPlayableInspector.cs │ │ │ ├── AkEventPlayableInspector.cs.meta │ │ │ ├── AkGameObjListenerListDrawer.cs │ │ │ ├── AkGameObjListenerListDrawer.cs.meta │ │ │ ├── AkGameObjectInspector.cs │ │ │ ├── AkGameObjectInspector.cs.meta │ │ │ ├── AkPortalManager.cs │ │ │ ├── AkPortalManager.cs.meta │ │ │ ├── AkRTPCPlayableInspector.cs │ │ │ ├── AkRTPCPlayableInspector.cs.meta │ │ │ ├── AkRTPCTrackInspector.cs │ │ │ ├── AkRTPCTrackInspector.cs.meta │ │ │ ├── AkRoomAwareObjectInspector.cs │ │ │ ├── AkRoomAwareObjectInspector.cs.meta │ │ │ ├── AkRoomInspector.cs │ │ │ ├── AkRoomInspector.cs.meta │ │ │ ├── AkRoomPortalInspector.cs │ │ │ ├── AkRoomPortalInspector.cs.meta │ │ │ ├── AkSpatialAudioListenerInspector.cs │ │ │ ├── AkSpatialAudioListenerInspector.cs.meta │ │ │ ├── AkStateInspector.cs │ │ │ ├── AkStateInspector.cs.meta │ │ │ ├── AkSwitchInspector.cs │ │ │ ├── AkSwitchInspector.cs.meta │ │ │ ├── AkUnityEventHandlerInspector.cs │ │ │ └── AkUnityEventHandlerInspector.cs.meta │ │ ├── WwiseMenu.meta │ │ ├── WwiseMenu │ │ │ ├── Common.meta │ │ │ ├── Common │ │ │ │ ├── AkUnityBuilderBase.cs │ │ │ │ ├── AkUnityBuilderBase.cs.meta │ │ │ │ ├── AkUnityPluginInstallerBase.cs │ │ │ │ ├── AkUnityPluginInstallerBase.cs.meta │ │ │ │ ├── AkWwiseIdConverter.cs │ │ │ │ └── AkWwiseIdConverter.cs.meta │ │ │ ├── Mac.meta │ │ │ ├── Mac │ │ │ │ ├── AkWwiseMenu_Mac.cs │ │ │ │ └── AkWwiseMenu_Mac.cs.meta │ │ │ ├── Windows.meta │ │ │ └── Windows │ │ │ │ ├── AkWwiseMenu_Windows.cs │ │ │ │ └── AkWwiseMenu_Windows.cs.meta │ │ ├── WwiseSetupWizard.meta │ │ ├── WwiseSetupWizard │ │ │ ├── AkBuildPreprocessor.cs │ │ │ ├── AkBuildPreprocessor.cs.meta │ │ │ ├── AkPluginActivator.cs │ │ │ ├── AkPluginActivator.cs.meta │ │ │ ├── AkUnitySettingsParser.cs │ │ │ ├── AkUnitySettingsParser.cs.meta │ │ │ ├── AkWSAUtils.cs │ │ │ ├── AkWSAUtils.cs.meta │ │ │ ├── AkWwisePostImportCallbackSetup.cs │ │ │ ├── AkWwisePostImportCallbackSetup.cs.meta │ │ │ ├── AkWwiseSetupWizard.cs │ │ │ ├── AkWwiseSetupWizard.cs.meta │ │ │ ├── AkXboxOneUtils.cs │ │ │ └── AkXboxOneUtils.cs.meta │ │ ├── WwiseTypes.meta │ │ ├── WwiseTypes │ │ │ ├── AcousticTextureDrawer.cs │ │ │ ├── AcousticTextureDrawer.cs.meta │ │ │ ├── AuxBusDrawer.cs │ │ │ ├── AuxBusDrawer.cs.meta │ │ │ ├── BankDrawer.cs │ │ │ ├── BankDrawer.cs.meta │ │ │ ├── BaseTypeDrawer.cs │ │ │ ├── BaseTypeDrawer.cs.meta │ │ │ ├── EventDrawer.cs │ │ │ ├── EventDrawer.cs.meta │ │ │ ├── RTPCDrawer.cs │ │ │ ├── RTPCDrawer.cs.meta │ │ │ ├── StateDrawer.cs │ │ │ ├── StateDrawer.cs.meta │ │ │ ├── SwitchDrawer.cs │ │ │ ├── SwitchDrawer.cs.meta │ │ │ ├── TriggerDrawer.cs │ │ │ └── TriggerDrawer.cs.meta │ │ ├── WwiseWindows.meta │ │ └── WwiseWindows │ │ │ ├── AkWwiseComponentPicker.cs │ │ │ ├── AkWwiseComponentPicker.cs.meta │ │ │ ├── AkWwisePicker.cs │ │ │ ├── AkWwisePicker.cs.meta │ │ │ ├── AkWwiseProjectData.cs │ │ │ ├── AkWwiseProjectData.cs.meta │ │ │ ├── AkWwiseProjectInfo.cs │ │ │ ├── AkWwiseProjectInfo.cs.meta │ │ │ ├── AkWwiseTreeView.cs │ │ │ ├── AkWwiseTreeView.cs.meta │ │ │ ├── AkWwiseWWUBuilder.cs │ │ │ ├── AkWwiseWWUBuilder.cs.meta │ │ │ ├── AkWwiseXMLBuilder.cs │ │ │ ├── AkWwiseXMLBuilder.cs.meta │ │ │ ├── TreeViewControl.meta │ │ │ └── TreeViewControl │ │ │ ├── TreeViewControl.cs │ │ │ ├── TreeViewControl.cs.meta │ │ │ ├── TreeViewHoverSkin.guiskin │ │ │ ├── TreeViewHoverSkin.guiskin.meta │ │ │ ├── TreeViewItem.cs │ │ │ ├── TreeViewItem.cs.meta │ │ │ ├── TreeViewSelectedSkin.guiskin │ │ │ ├── TreeViewSelectedSkin.guiskin.meta │ │ │ ├── TreeViewUnselectedSkin.guiskin │ │ │ ├── TreeViewUnselectedSkin.guiskin.meta │ │ │ ├── acoustictexture_nor.png │ │ │ ├── acoustictexture_nor.png.meta │ │ │ ├── auxbus_nor.png │ │ │ ├── auxbus_nor.png.meta │ │ │ ├── blank.png │ │ │ ├── blank.png.meta │ │ │ ├── bus_nor.png │ │ │ ├── bus_nor.png.meta │ │ │ ├── event_nor.png │ │ │ ├── event_nor.png.meta │ │ │ ├── folder_nor.png │ │ │ ├── folder_nor.png.meta │ │ │ ├── gameparameter_nor.png │ │ │ ├── gameparameter_nor.png.meta │ │ │ ├── guide.png │ │ │ ├── guide.png.meta │ │ │ ├── last_sibling_collapsed.png │ │ │ ├── last_sibling_collapsed.png.meta │ │ │ ├── last_sibling_expanded.png │ │ │ ├── last_sibling_expanded.png.meta │ │ │ ├── last_sibling_nochild.png │ │ │ ├── last_sibling_nochild.png.meta │ │ │ ├── middle_sibling_collapsed.png │ │ │ ├── middle_sibling_collapsed.png.meta │ │ │ ├── middle_sibling_expanded.png │ │ │ ├── middle_sibling_expanded.png.meta │ │ │ ├── middle_sibling_nochild.png │ │ │ ├── middle_sibling_nochild.png.meta │ │ │ ├── normal_checked.png │ │ │ ├── normal_checked.png.meta │ │ │ ├── normal_unchecked.png │ │ │ ├── normal_unchecked.png.meta │ │ │ ├── physical_folder_nor.png │ │ │ ├── physical_folder_nor.png.meta │ │ │ ├── selected_background_color.png │ │ │ ├── selected_background_color.png.meta │ │ │ ├── soundbank_nor.png │ │ │ ├── soundbank_nor.png.meta │ │ │ ├── state_nor.png │ │ │ ├── state_nor.png.meta │ │ │ ├── stategroup_nor.png │ │ │ ├── stategroup_nor.png.meta │ │ │ ├── switch_nor.png │ │ │ ├── switch_nor.png.meta │ │ │ ├── switchgroup_nor.png │ │ │ ├── switchgroup_nor.png.meta │ │ │ ├── workunit_nor.png │ │ │ ├── workunit_nor.png.meta │ │ │ ├── wproj.png │ │ │ └── wproj.png.meta │ ├── Extensions.meta │ ├── Extensions │ │ ├── AkSoundEngine.extensions.cs │ │ └── AkSoundEngine.extensions.cs.meta │ ├── Gizmos.meta │ ├── Gizmos │ │ ├── WwiseAudioSpeaker.png │ │ ├── WwiseAudioSpeaker.png.meta │ │ ├── wwise_white_on_gray.png │ │ └── wwise_white_on_gray.png.meta │ ├── InstallConfig.json │ ├── InstallConfig.json.meta │ ├── LauncherInfo.json │ ├── LauncherInfo.json.meta │ ├── ScriptableObjects.meta │ ├── ScriptableObjects │ │ ├── AkWwiseInitializationSettings.asset │ │ ├── AkWwiseInitializationSettings.asset.meta │ │ ├── Event.meta │ │ ├── Event │ │ │ ├── 42C69516-EB76-47B5-899C-27CE3A20C38B.asset │ │ │ ├── 42C69516-EB76-47B5-899C-27CE3A20C38B.asset.meta │ │ │ ├── 9660E9E7-C17A-4F96-9322-F58E47E60363.asset │ │ │ ├── 9660E9E7-C17A-4F96-9322-F58E47E60363.asset.meta │ │ │ ├── D66D2319-F7ED-4318-B47B-4E2D3DE41719.asset │ │ │ ├── D66D2319-F7ED-4318-B47B-4E2D3DE41719.asset.meta │ │ │ ├── EE6488E2-A0BF-47A5-A492-9203F38B9F45.asset │ │ │ └── EE6488E2-A0BF-47A5-A492-9203F38B9F45.asset.meta │ │ ├── GameParameter.meta │ │ ├── GameParameter │ │ │ ├── 1C39DCF5-575E-454E-A6EE-0132CF8539EB.asset │ │ │ ├── 1C39DCF5-575E-454E-A6EE-0132CF8539EB.asset.meta │ │ │ ├── 5FC4CC19-D3B0-4C3B-804A-229409E6A566.asset │ │ │ ├── 5FC4CC19-D3B0-4C3B-804A-229409E6A566.asset.meta │ │ │ ├── 8CABF003-4DCD-41F0-8AE3-FFBEEC3D24CC.asset │ │ │ └── 8CABF003-4DCD-41F0-8AE3-FFBEEC3D24CC.asset.meta │ │ ├── Mac.asset │ │ ├── Mac.asset.meta │ │ ├── Soundbank.meta │ │ ├── Soundbank │ │ │ ├── 40CA8C8E-A47C-43F2-8A92-5027B36C4E58.asset │ │ │ └── 40CA8C8E-A47C-43F2-8A92-5027B36C4E58.asset.meta │ │ ├── State.meta │ │ ├── State │ │ │ ├── 3EDCCD76-A5DF-4955-8311-A220C9AB425B.asset │ │ │ ├── 3EDCCD76-A5DF-4955-8311-A220C9AB425B.asset.meta │ │ │ ├── 6BB28AF0-099F-40B2-956A-C253AA5EAFDC.asset │ │ │ ├── 6BB28AF0-099F-40B2-956A-C253AA5EAFDC.asset.meta │ │ │ ├── 9F51A0F3-2D08-4E34-BEEA-E17AA36AB810.asset │ │ │ ├── 9F51A0F3-2D08-4E34-BEEA-E17AA36AB810.asset.meta │ │ │ ├── C69DBEA0-9601-43B1-B9A1-3CC1C3C72D55.asset │ │ │ └── C69DBEA0-9601-43B1-B9A1-3CC1C3C72D55.asset.meta │ │ ├── StateGroup.meta │ │ ├── StateGroup │ │ │ ├── 33AA0349-4C7F-4657-9EAC-148B652C4FE2.asset │ │ │ └── 33AA0349-4C7F-4657-9EAC-148B652C4FE2.asset.meta │ │ ├── Windows.asset │ │ └── Windows.asset.meta │ ├── Tools.meta │ ├── Tools │ │ ├── WwiseIDConverter.py │ │ └── WwiseIDConverter.py.meta │ ├── Version.txt │ └── Version.txt.meta ├── WwiseSettings.xml └── WwiseSettings.xml.meta ├── LICENSE ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── URPProjectSettings.asset ├── UnityConnectSettings.asset ├── VFXManager.asset └── XRSettings.asset ├── README.md ├── WwiseUnityIntegration_Mac_Src.zip ├── WwiseUnityIntegration_Windows_Src.zip └── logRunSetup.txt /Assets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/.gitignore -------------------------------------------------------------------------------- /Assets/Animations.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7460fbe8a2659d4193d4d5a73c86f57 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Animations/FadeIn.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ded44ba20a4d43439eb654be628e1e5 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Animations/FadeIn.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9505a3598bfbe744a899494eac721da 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Animations/PlumbingLogo.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9ebe40df66e43f4d9e8db484e8d85ad 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Animations/PlumbingLogoAnimation.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57cd7197a960c6f47be41974de49321b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Animations/UI Overlay.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3de8e25e84ef87e4784e2fdfef383b24 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Animations/UIOverlayAnimation.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17beea549f853d749ac4dfaefe4db84f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Chunks Data.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 200c8b1d8dab5be44bdae5d4f2dca0fb 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Circle.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a0ee5dd98c4d63478d84ea4e1255464 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Frictionless.physicsMaterial2D: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!62 &6200000 4 | PhysicsMaterial2D: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_Name: Frictionless 10 | friction: 0 11 | bounciness: 0.1 12 | -------------------------------------------------------------------------------- /Assets/Frictionless.physicsMaterial2D.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3cf7a094fd7ec2c409cdf89fb9f05c4a 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Metaballs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 82196dc405315e34f894174d0d78c0fa 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Metaballs/COPYING.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f155f3a85bc62443964598896d44275 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Metaballs/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0234ba368eeec9418390da711bfdad0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Metaballs/Materials/Bouncy.physicsMaterial2D: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!62 &6200000 4 | PhysicsMaterial2D: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_Name: Bouncy 10 | friction: 0 11 | bounciness: 1 12 | -------------------------------------------------------------------------------- /Assets/Metaballs/Materials/Bouncy.physicsMaterial2D.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57dca0566d98f0540b0475f3f2fde86d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Metaballs/Materials/Skybox_Mat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ffaa0b7117ba8c47a9d05ae701d4b4d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Metaballs/Materials/Unlit.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f42579b56e6c6594688363293ab116e0 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Metaballs/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5cff78aecaa52342940204708774146 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Metaballs/Prefabs/Metaball2D System Controller.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35eec85fdf135384e8db93aeda6e71a1 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Metaballs/Prefabs/Metaball2D.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0fad9672ad59e1d4bb1c8c938ca015bd 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Metaballs/Prefabs/Metaballs.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa88fa616a1e74ae880010968fd64b09 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Metaballs/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cdc9ed6430df06046a26f392306391c7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Metaballs/Resources/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa5d7c88f47866f44933ed41a7feedde 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Metaballs/Resources/Shaders/Metaballs2D.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a44cf263944fb194fbb1388339939c0a 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Metaballs/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d88f9ef72d173a4b9c5242000e4a66c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Metaballs/Scripts/Metaball2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dcc57d1ea83df2342839e1153bdc0b26 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Metaballs/Scripts/MetaballRender2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a299cc821826a4408064ce580bab748 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Metaballs/Scripts/MetaballSystem2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef689b1fdaa3ba644a6890a3c96cdbcc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Metaballs/Scripts/MetaballSystemController2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3eec919d14533cb4989a094c03560376 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Metaballs/Settings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0735c275001a2c84dafdb30deced5d8d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Metaballs/Settings/MetaballsForwardRenderer.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a8e21d5c33334b11b34a596161b9360 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Metaballs/Settings/SampleSceneProfile.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10fc4df2da32a41aaa32d77bc913491c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Metaballs/Settings/UniversalRP-HighQuality.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19ba41d7c0026c3459d37c2fe90c55a0 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Metaballs/Settings/UniversalRP-LowQuality.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a31e9f9f9c9d4b9429ed0d1234e22103 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Metaballs/Settings/UniversalRP-MediumQuality.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d847b876476d3d6468f5dfcd34266f96 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Metaballs/Sprites.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8bcd700201a9daa46a18759c94337dd7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Metaballs/Sprites/Circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Metaballs/Sprites/Circle.png -------------------------------------------------------------------------------- /Assets/Misc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 417c6ff74a77666429102933db0fdc93 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Misc/Forward Renderer.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 78efea5bb669018458cb47119cae4764 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a454df4a397e9ef4dad0f29edcd9ce8c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f97746548aafdaa41939d33a7dc72c60 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/Desert1.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 489c4b67f1062a54ea7abf0f7bbf09d7 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/Desert2.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61282522afc73b047883be58c513bd89 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/Desert3.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7530a6ca07a7d04db3db3c58cf834cc 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/Desert4.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cde0239ba4a36264d971544f9fffe41c 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/DesertForest.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36cdb816dc27c74498880e58db9270f9 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/DesertGrasslands.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 312941e319cb4044881e6cbad53dde48 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/DesertTaiga.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89a7852b0ca58aa41947b6f3cad5ac18 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/DesertTundra.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a08c471960155274c87c1ac6a603116c 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/Forest1.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee85554f8ed25ca46ae3088db04b2e97 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/Forest2.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d122e9464500c742899756a65f3a3bd 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/Forest3.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88a98e745f2d0c743b1dfd7d2fb5bbaa 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/Forest4.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef2d4051ac8efdf468f6577fc7165e65 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/ForestDesert.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88439fc80b9bda44b966240ca247d224 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/ForestGrasslands.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39894ee070293a846b258ece40599525 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/ForestTaiga.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e100f78b53b939040937ef2dd8558ca3 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/ForestTundra.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7cebb592d0df6f478aaff99c8cf475b 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/Grasslands1.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1c7d5ba2b7b3c94897ea54070f34295 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/Grasslands2.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a38bc62da6b4574b9b77d7e3235e700 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/Grasslands3.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 442a583edd014274e85a7bbf68116e48 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/Grasslands4.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e88ee39052b7bc14383bcae98daf5735 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/GrasslandsDesert.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a856233ef243b04f9bbfd3d81c8cc21 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/GrasslandsForest.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7fa5d23a27a9cb49ad676138c035696 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/GrasslandsTaiga.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6da92f3967b444949957ca2c9ea9b7b8 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/GrasslandsTundra.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fedbc66afdcfe1b46824940e2d33bd64 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/Taiga1.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aaebc42ca7420ea488fdf9919ba95e33 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/Taiga2.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 822d4f8f9ea8a6f408189ec8c95d212d 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/Taiga3.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 193b17aba85ad0c468ed04f004285b65 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/TaigaDesert.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 213cae1247927de429691287565c735f 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/TaigaForest.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 26d1c814d29225a41a10f7d037328570 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/TaigaGrasslands.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad26d25901f89e04b85f91a889799b71 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/TaigaTundra.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c904166e78b83194c877bb2e86356557 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/Tundra1.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 431eccb29a7cba844b48484001d9c9dd 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/Tundra2.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0cfe1f73f43b9cd42a880b2e62a44c1c 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/Tundra3.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9e4dbc760a593a49ada12593c7926e8 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/TundraDesert.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8898aca7eee42e2488b6e6409ba594e5 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/TundraForest.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a12b90b5eba4fac4784b8d5aee31514a 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/TundraGrasslands.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 312e94106aa8bad46b6c7a4546844886 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Chunks/TundraTaiga.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e541ea926e4d4a64aa2b5195a11e3562 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Metaball Spawner.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1df31fa98a216ff459545450c38db63d 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Obstacle Generator Object.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9350d9fb87e4ee547b794ec2cbaa44c9 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Obstacles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85d2b3ed5ff982d4aa54bba5d5a238fc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Prefabs/Obstacles/Bush1.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca908fd97a9f38149a66c017f8206138 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Obstacles/Bush2.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4fda908719a10d546a744fec08377d22 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Obstacles/Projectile1.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7a0116c60f25c54fb44fe0497b4a665 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Obstacles/Projectile2.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 706f51a5aa97cb541a145f67515bf53b 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Obstacles/Projectile3.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a139c63d145dde42b3cba078a1484dd 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Obstacles/RockFormation1.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ab156b2870ddc142a66c5d8adceb425 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Prefabs/Obstacles/RockFormation2.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b7b0d58cc76e7c48bccf890a2b1adce 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e02b6fd8cd9b1ff42a1cd727bf762f81 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scenes/Main.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43ea43645effa1f45a40819bd86430cd 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Scenes/Menu.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a99e8ff91e3c53b4fb8498a121fae58b 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b198869140797c6408cad899faa0491b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scripts/AmountOfWaterRPTC.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c7d2a2bad65117449885fb354d176db 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/ChunksData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06ffd1b54c40e4b409f5a175520f252e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/EnvironmentGenerator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3a4cc2ff85bcb645ba8ae9f35f5b2e3 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/GameManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ff1b38e54dee3d408c4b522527e8e85 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/LateActivation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 869339a842402b54f967ad57c476e017 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/LayerDestroyer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43c829de28e97ea4c88eaeffa7be96b0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/MetaballManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b8786c5fadcdfc4e9556d97a10b03b4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Obstacle.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb1c69bf9fc64844783baa334308dc24 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/ObstacleGenerator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 514e46dec10d6174aa397f2afbfe115b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/ObstacleGeneratorObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3282bce320a3fd459b438329ba0d7dc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/ObstacleProjectile.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9cabf30a817e0354d85f172c828e2c8f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/ProjectileShooter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88eb5aa9416f9ec4aa9fd539f359b0ed 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/SelfDestruct.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51016fd61989f1b4c8faa9905b555224 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/SmoothDampToLocation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e71c662381a47cd4ea55203e70539c40 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/TimeCycle.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9757eb44e865d434a8a46295495cbebe 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/TransformMovement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1a981422f000024da37fcd2c02596cc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/VelocityLimiter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dab3cd89fd3d7fc4893210a9efa0fa6c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/WaterDropper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86b120837cef8024daddd3692fa4866b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/WaterSpeedRTPC.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e7b871496a44164e877460b0bb24151 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Sprites.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a17b3ac472f9174cbf1cc805542f872 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Sprites/Chunks.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59c417ac1bfb5ca4ba5f22a20e4bf735 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Connectors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3bccd4ae12bf25499dd5394ccf116e7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Connectors/DesertForest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Connectors/DesertForest.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Connectors/DesertGrasslands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Connectors/DesertGrasslands.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Connectors/DesertTaiga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Connectors/DesertTaiga.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Connectors/DesertTundra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Connectors/DesertTundra.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Connectors/ForestDesert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Connectors/ForestDesert.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Connectors/ForestGrasslands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Connectors/ForestGrasslands.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Connectors/ForestTaiga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Connectors/ForestTaiga.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Connectors/ForestTundra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Connectors/ForestTundra.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Connectors/GrasslandsDesert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Connectors/GrasslandsDesert.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Connectors/GrasslandsForest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Connectors/GrasslandsForest.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Connectors/GrasslandsTaiga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Connectors/GrasslandsTaiga.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Connectors/GrasslandsTundra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Connectors/GrasslandsTundra.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Connectors/TaigaDesert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Connectors/TaigaDesert.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Connectors/TaigaForest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Connectors/TaigaForest.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Connectors/TaigaGrasslands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Connectors/TaigaGrasslands.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Connectors/TaigaTundra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Connectors/TaigaTundra.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Connectors/TundraDesert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Connectors/TundraDesert.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Connectors/TundraForest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Connectors/TundraForest.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Connectors/TundraGrasslands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Connectors/TundraGrasslands.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Connectors/TundraTaiga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Connectors/TundraTaiga.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Desert.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3fe57c1daf0276d4fb75b879d08e2844 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Desert/Desert1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Desert/Desert1.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Desert/Desert2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Desert/Desert2.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Desert/Desert3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Desert/Desert3.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Desert/Desert4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Desert/Desert4.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Forest.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ead2929c9adaef4caca2ce4a317970e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Forest/Forest1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Forest/Forest1.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Forest/Forest2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Forest/Forest2.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Forest/Forest3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Forest/Forest3.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Forest/Forest4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Forest/Forest4.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Grasslands.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18115420b2d26b44c87c43e9f64fef4e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Grasslands/Grasslands1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Grasslands/Grasslands1.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Grasslands/Grasslands2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Grasslands/Grasslands2.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Grasslands/Grasslands3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Grasslands/Grasslands3.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Grasslands/Grasslands4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Grasslands/Grasslands4.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Taiga.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cec0b01b09a8fb8458ef05d8569c0d26 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Taiga/Taiga1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Taiga/Taiga1.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Taiga/Taiga2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Taiga/Taiga2.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Taiga/Taiga3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Taiga/Taiga3.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Tundra.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b38ce42ef73d484b813237e74481ede 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Tundra/Tundra1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Tundra/Tundra1.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Tundra/Tundra2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Tundra/Tundra2.png -------------------------------------------------------------------------------- /Assets/Sprites/Chunks/Tundra/Tundra3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Chunks/Tundra/Tundra3.png -------------------------------------------------------------------------------- /Assets/Sprites/Circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Circle.png -------------------------------------------------------------------------------- /Assets/Sprites/MyFirstGameJamSummer2020Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/MyFirstGameJamSummer2020Logo.png -------------------------------------------------------------------------------- /Assets/Sprites/Obstacles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e90ebdd68b4ab444b8841a05a466462e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Sprites/Obstacles/Bush1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Obstacles/Bush1.png -------------------------------------------------------------------------------- /Assets/Sprites/Obstacles/Bush2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Obstacles/Bush2.png -------------------------------------------------------------------------------- /Assets/Sprites/Obstacles/Projectile1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Obstacles/Projectile1.png -------------------------------------------------------------------------------- /Assets/Sprites/Obstacles/Projectile2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Obstacles/Projectile2.png -------------------------------------------------------------------------------- /Assets/Sprites/Obstacles/Projectile3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Obstacles/Projectile3.png -------------------------------------------------------------------------------- /Assets/Sprites/Obstacles/RockFormation1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Obstacles/RockFormation1.png -------------------------------------------------------------------------------- /Assets/Sprites/Obstacles/RockFormation2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Obstacles/RockFormation2.png -------------------------------------------------------------------------------- /Assets/Sprites/Placeholder.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0e9a963c612f0f4692d8c41d7e6d17a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Sprites/Placeholder/Chunks.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77cee34d1651670489230ab735f18d57 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Sprites/Placeholder/Chunks/Environment Chunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Placeholder/Chunks/Environment Chunk.png -------------------------------------------------------------------------------- /Assets/Sprites/Placeholder/Chunks/Environment Chunk1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Placeholder/Chunks/Environment Chunk1.png -------------------------------------------------------------------------------- /Assets/Sprites/Placeholder/Chunks/Environment Chunk2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Placeholder/Chunks/Environment Chunk2.png -------------------------------------------------------------------------------- /Assets/Sprites/Placeholder/Chunks/Environment Chunk3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Placeholder/Chunks/Environment Chunk3.png -------------------------------------------------------------------------------- /Assets/Sprites/Placeholder/Chunks/Environment Chunk4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Placeholder/Chunks/Environment Chunk4.png -------------------------------------------------------------------------------- /Assets/Sprites/Placeholder/Chunks/Environment Chunk5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Placeholder/Chunks/Environment Chunk5.png -------------------------------------------------------------------------------- /Assets/Sprites/Placeholder/Chunks/Environment Chunk6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Placeholder/Chunks/Environment Chunk6.png -------------------------------------------------------------------------------- /Assets/Sprites/Placeholder/Chunks/Environment Chunk7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Placeholder/Chunks/Environment Chunk7.png -------------------------------------------------------------------------------- /Assets/Sprites/Placeholder/Chunks/Environment Chunk8png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Placeholder/Chunks/Environment Chunk8png.png -------------------------------------------------------------------------------- /Assets/Sprites/Placeholder/Chunks/Environment Chunk9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Placeholder/Chunks/Environment Chunk9.png -------------------------------------------------------------------------------- /Assets/Sprites/PlumbingIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/PlumbingIcon.png -------------------------------------------------------------------------------- /Assets/Sprites/PlumbingLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/PlumbingLogo.png -------------------------------------------------------------------------------- /Assets/Sprites/PlumbingLogoFillable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/PlumbingLogoFillable.png -------------------------------------------------------------------------------- /Assets/Sprites/Sky Texture Top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Sky Texture Top.png -------------------------------------------------------------------------------- /Assets/Sprites/Sky Texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/Sky Texture.png -------------------------------------------------------------------------------- /Assets/Sprites/influencometer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/influencometer.png -------------------------------------------------------------------------------- /Assets/Sprites/sky top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/sky top.png -------------------------------------------------------------------------------- /Assets/Sprites/timecyc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Sprites/timecyc.png -------------------------------------------------------------------------------- /Assets/StreamingAssets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d93f53388b7c143e0b7adee94ba244d1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b389945bd8f1e40898cdef092ffdee8f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio/GeneratedSoundBanks.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f83735604835947d9956f8fa8ef7465e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio/GeneratedSoundBanks/Mac.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9adaf9751b1384ababaef3707f13eef0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio/GeneratedSoundBanks/Mac/DecodedBanks.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ced365ace639c4d14ae9f48ea4595850 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio/GeneratedSoundBanks/Mac/DecodedBanks/English(US).meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3331cd06fd854b738d3c43b07c84fb4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio/GeneratedSoundBanks/Mac/English(US).meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e224a005e00e46608d2512fadefb29c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio/GeneratedSoundBanks/Mac/General.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/StreamingAssets/Audio/GeneratedSoundBanks/Mac/General.bnk -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio/GeneratedSoundBanks/Mac/General.bnk.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7831d59dfbf54724aec80a310fedfff 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio/GeneratedSoundBanks/Mac/General.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 862876f716df24fa2900c4b58de11c85 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio/GeneratedSoundBanks/Mac/Init.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/StreamingAssets/Audio/GeneratedSoundBanks/Mac/Init.bnk -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio/GeneratedSoundBanks/Mac/Init.bnk.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df2dc9a010f40486694f67d0cd0e7072 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio/GeneratedSoundBanks/Mac/Init.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f3aa39e4869947f2b776d5d617a189d 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio/GeneratedSoundBanks/Mac/Music.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/StreamingAssets/Audio/GeneratedSoundBanks/Mac/Music.bnk -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio/GeneratedSoundBanks/Mac/Music.bnk.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df02e35d23a3e41a382ece4672b639f5 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio/GeneratedSoundBanks/Mac/Music.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/StreamingAssets/Audio/GeneratedSoundBanks/Mac/Music.txt -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio/GeneratedSoundBanks/Mac/Music.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4feb822fa90846f68271405271669de 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio/GeneratedSoundBanks/Mac/PluginInfo.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79459ed1e98694d10b161865c55c5f43 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio/GeneratedSoundBanks/Mac/SoundbanksInfo.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 213d16b56302a4d7e8147eb22b5bf173 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio/GeneratedSoundBanks/Windows.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e644081f3f6ed4d3d9fdbe603d8baa12 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio/GeneratedSoundBanks/Windows/English(US).meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce293b1eedc87441da351f933aabeacd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio/GeneratedSoundBanks/Windows/General.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/StreamingAssets/Audio/GeneratedSoundBanks/Windows/General.bnk -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio/GeneratedSoundBanks/Windows/General.bnk.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f7fbce59fabb47f199ff993a222564d 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio/GeneratedSoundBanks/Windows/General.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7640c5ac11e174482acd58669076b99e 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio/GeneratedSoundBanks/Windows/Init.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/StreamingAssets/Audio/GeneratedSoundBanks/Windows/Init.bnk -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio/GeneratedSoundBanks/Windows/Init.bnk.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03fbb8e5a87794873ad8e7721f5e4aaa 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio/GeneratedSoundBanks/Windows/Init.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fdad1590b5f274b5f818ef271dd5fa8c 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio/GeneratedSoundBanks/Windows/Music.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/StreamingAssets/Audio/GeneratedSoundBanks/Windows/Music.bnk -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio/GeneratedSoundBanks/Windows/Music.bnk.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3af5313fbf2d9451d9f04c9f946c1778 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio/GeneratedSoundBanks/Windows/Music.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/StreamingAssets/Audio/GeneratedSoundBanks/Windows/Music.txt -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio/GeneratedSoundBanks/Windows/Music.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64498117900cd4dcbacaaf37c34397ba 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio/GeneratedSoundBanks/Windows/PluginInfo.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56d9c2f9ae1524274870a7d21baad1f6 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio/GeneratedSoundBanks/Windows/SoundbanksInfo.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e776b5b832d744b6bb4092499af269ae 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio/GeneratedSoundBanks/Wwise_IDs.h.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 403b6547f02eb40bf97d51cf757a1465 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/desc.txt: -------------------------------------------------------------------------------- 1 | AK: Do not delete the folder (StreamingAssets) of this file. The folder is required in the Wwise Unity Integration to avoid DirectoryNotFoundException on Unity Editor for Windows when there is no such a folder in the active Unity project. -------------------------------------------------------------------------------- /Assets/StreamingAssets/desc.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c48efed29a7624d6192f24df4d703c83 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Wwise.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5c390e13ca3d43288aba60aac253e54 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0365fcbad1ac84deabe4c5a8581d5226 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/API.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 559c2a66ec50b49a5b12201b8e5e7158 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/API/Generated.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa4524fb6e3c84c819910103befb71c2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/API/Generated/Common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2e0aa8f5b60d4f599369dafdc54e362 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/API/Generated/Common/AKRESULT.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cdceeaa3d9e804a29837be706b9bf00c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/API/Generated/Common/AkGroupType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04b9398a322a0419bbd89c701c5e7a02 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/API/Generated/Common/AkIterator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0aafa359011b4196b81e05cf1d99ae9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/API/Generated/Common/AkMIDIEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c94905db6543d4895ae4479c509cf6c9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/API/Generated/Common/AkMIDIPost.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af16cc1e7dbec4f9886b57b0917561c0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/API/Generated/Common/AkPlaylist.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f5e4b59043a543f5b93b259201af022 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/API/Generated/Common/AkRamp.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3154497b11e5b469dafe3634ceaf7343 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/API/Generated/Common/AkTransform.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 109ad4be7309c46a4a4de41f58f6894a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/API/Generated/Common/AkTriangle.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02209880d410f4b32b633861b0394499 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/API/Generated/Mac.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cef2c1e3103634a7782e3426067adc83 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/API/Generated/Windows.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7eb4630d37dc0459ea80f584dfbb463b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/API/Handwritten.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cca234b9eb0354385a2b907c20145649 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/API/Handwritten/Common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c4970b9023d574840a3856221c0afb74 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/API/Handwritten/Common/AkLogger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31743f62682ed4943ab067bf18cb105b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/API/Handwritten/Common/AkVector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e55978f6a2f504abd82faafa90a1ca7b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/API/Handwritten/Common/AkVertex.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc76829deba914626b74e5031de634b9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/API/Handwritten/Common/Arrays.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ecd3f42b6c95440890e1ca94107f5e1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/API/Handwritten/Common/Timeline.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03354d3cf2bad4722926df1739d4fd28 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/API/Handwritten/Common/WwiseObjects.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f676331fc131b497e9289e729fd43b38 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/API/Handwritten/Common/WwiseTypes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e2ae292348044212b8609a570c38e8f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/API/Handwritten/Mac.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 672752e0a584e464a86b1f50afa019cf 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/API/Handwritten/WAAPI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8621e19c2f4f646d28e2de692c2145b9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/API/Handwritten/Windows.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff8a96a9ea9cd4a89ba605b433a48ff6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d34db8f4f6ae54ef78714248b67b1cd5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkAmbient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94b675f3bd78842dfb6047759a8142a0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkAudioListener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c136962548f3b452f9c8703696ff88ca 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkBank.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 834901bf6032145429f1c8acde2dbb1c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkEarlyReflections.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6452ac6a049404625bf9e074645ecc0c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkEnvironment.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa56d8d9f92444b6cb69dc6e69f075fe 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkEnvironmentPortal.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 26b9ab21a21624ab6a8cd0c583f19e34 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkEvent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e076cc5e2355341a69e7ee7d0bbfeca8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkEventCallbackData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 231148a54e4ae459bb0674c973b9b15e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkEventPlayable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f70526567d8f143a3b935e58736ab552 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkEventTrack.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dfea372a4231b4c07921e9faf7772c09 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkGameObj.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7b8942cdb55c415fb768233d3e66485 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkGameObjListenerList.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a432ea6f055c642d7a5e609af11decb5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkGameObjPositionData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8bbe08fe5f1164bebb8e9c5025eccf52 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkInitializer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f567a00e6c3f4345a520f8c45db0a04 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkMemBankLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f96e162ecb87d46988436a41d626824e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkRTPCPlayable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 397e8146d93594d5ca793e958c4466e9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkRTPCTrack.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b5aa2ad86b8e407f83e860f96407e7b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkRoom.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b45395cc638614e809d3119df0ba11bf 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkRoomAwareObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90cc3d251f5db477d8cc6e5a38f168f9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkRoomPortal.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 540ee863398ac444dab77dbb16c33d4e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkSpatialAudioEmitter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e920adf76eb0140a696604caa2c4d7a8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 670bb59b0e789498dac5c4d1954e4807 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkSurfaceReflector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 397e994244a0b4c169c5d2ba8cdc23cb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkSwitch.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21861088d79a54ddc9e31699d82f3379 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkTerminator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e4de2c7eba63407b936bfbad7ca2196 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkTriggerBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a360dc3b59b0a478b8a32da8e986390a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkTriggerDisable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2590b0bd9885f4ab7942a796088ac62f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkTriggerEnable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9fe7280a07c1f464fae4550bd8802c5b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkTriggerEnter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe3cb161af24b48fbae0eae2ff97778e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkTriggerExit.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e0d2c873ed58a49508f0b99bb2037948 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkTriggerHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d26b1466f2e94926966d76bb6186e47 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkTriggerMouseDown.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: afe7ae1cac0c34e938bfc6f6526cfa0b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkTriggerMouseEnter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8e47129ece624e60b7c1a7475fce7ca 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkTriggerMouseExit.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 486a8c86411d9464292cac8e18074c09 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components/AkTriggerMouseUp.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8f64849ef2584f83b922af0619e29f8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3e95cc98748348d9b09412d09bd556d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef7b1b7836b994f688f40ebee2777fe3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3180aec17d7c940a8a495daec7d514c3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkAudioInput.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkAudioInput.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkCompressor.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkCompressor.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkConvolutionReverb.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkConvolutionReverb.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkDelay.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkDelay.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkExpander.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkExpander.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkFlanger.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkFlanger.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkGain.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkGain.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkGuitarDistortion.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkGuitarDistortion.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkHarmonizer.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkHarmonizer.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkMatrixReverb.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkMatrixReverb.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkParametricEQ.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkParametricEQ.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkPeakLimiter.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkPeakLimiter.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkPitchShifter.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkPitchShifter.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkRecorder.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkRecorder.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkReflect.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkReflect.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkRoomVerb.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkRoomVerb.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkSilenceGenerator.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkSilenceGenerator.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkSineTone.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkSineTone.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkSoundSeedAir.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkSoundSeedAir.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkSoundSeedGrain.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkSoundSeedGrain.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkSoundSeedImpact.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkSoundSeedImpact.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkStereoDelay.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkStereoDelay.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkSynthOne.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkSynthOne.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkTimeStretch.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkTimeStretch.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkToneGen.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkToneGen.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkTremolo.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkTremolo.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAuro.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAuro.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libMasteringSuite.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/DSP/libMasteringSuite.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libMcDSP.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/DSP/libMcDSP.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libiZotope.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/DSP/libiZotope.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Debug.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d095af5f40d2a43bd9e15ccb7714325b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Debug/AkSoundEngine.bundle/Contents.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea92c1aca67e24823b2749a2a05a946e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Debug/AkSoundEngine.bundle/Contents/MacOS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e40d18a6eb1364d77b70886daf81c286 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Debug/AkSoundEngine.bundle/Contents/MacOS/AkSoundEngine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/Debug/AkSoundEngine.bundle/Contents/MacOS/AkSoundEngine -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Debug/AkSoundEngine.bundle/Contents/MacOS/AkSoundEngine.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36de16bb12d284de8aa690151a2dc2c3 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Debug/AkWaapiClient.bundle/Contents.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b356fd9ceee6c4d948a38d9715c5e140 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Debug/AkWaapiClient.bundle/Contents/MacOS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18c99a19cb6c4498888cea08102f40e7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Debug/AkWaapiClient.bundle/Contents/MacOS/AkWaapiClient: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/Debug/AkWaapiClient.bundle/Contents/MacOS/AkWaapiClient -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Debug/AkWaapiClient.bundle/Contents/MacOS/AkWaapiClient.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9773f26fcb5774524a5f37886002ce97 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Profile.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb875cb15b9194d6b9283afffdf60d96 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Profile/AkSoundEngine.bundle/Contents.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac4bbed024b864f008c2c91dafd8ec50 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Profile/AkSoundEngine.bundle/Contents/MacOS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b634279115444177876344b2d7a859e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Profile/AkSoundEngine.bundle/Contents/MacOS/AkSoundEngine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/Profile/AkSoundEngine.bundle/Contents/MacOS/AkSoundEngine -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Profile/AkSoundEngine.bundle/Contents/MacOS/AkSoundEngine.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc2ad1ccbfebc49f09eb59ad8b32b06f 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Profile/AkWaapiClient.bundle/Contents.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f6994af2ac5e6423a940c2e47dc425cd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Profile/AkWaapiClient.bundle/Contents/MacOS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 867e009febbeb42ee8948c369263cb3d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Profile/AkWaapiClient.bundle/Contents/MacOS/AkWaapiClient: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/Profile/AkWaapiClient.bundle/Contents/MacOS/AkWaapiClient -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Profile/AkWaapiClient.bundle/Contents/MacOS/AkWaapiClient.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 090b6a978621642cbb4f6905fd23cd4f 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Release.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31cfa36638670458c9e77f852c1c0791 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Release/AkSoundEngine.bundle/Contents.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a89987b24bce446dbd27ea59a131394 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Release/AkSoundEngine.bundle/Contents/MacOS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20a53dbbee7214ae8925966b6ca53e9a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Release/AkSoundEngine.bundle/Contents/MacOS/AkSoundEngine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/Release/AkSoundEngine.bundle/Contents/MacOS/AkSoundEngine -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Release/AkSoundEngine.bundle/Contents/MacOS/AkSoundEngine.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 682c44f182dd04d3aa0477b3ad8a8cee 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Release/AkWaapiClient.bundle/Contents.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92d18788d979540ff9e0275936663715 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Release/AkWaapiClient.bundle/Contents/MacOS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3fe17ef9550c240f095127e988e402ca 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Release/AkWaapiClient.bundle/Contents/MacOS/AkWaapiClient: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Mac/Release/AkWaapiClient.bundle/Contents/MacOS/AkWaapiClient -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Release/AkWaapiClient.bundle/Contents/MacOS/AkWaapiClient.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a40e98a361ef7473cbcc98db98c6c17c 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9904a953f50b437d80d0b40332adcb8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 075ded88af4f94e9bacea20fc58b05ac 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef2ecb74dec1d4136a74f5d08bd9848e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkAudioInput.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkAudioInput.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkCompressor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkCompressor.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkConvolutionReverb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkConvolutionReverb.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkDelay.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkDelay.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkExpander.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkExpander.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkFlanger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkFlanger.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkGain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkGain.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkGuitarDistortion.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkGuitarDistortion.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkHarmonizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkHarmonizer.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkMatrixReverb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkMatrixReverb.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkMotion.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkMotion.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkParametricEQ.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkParametricEQ.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkPeakLimiter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkPeakLimiter.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkPitchShifter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkPitchShifter.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkRecorder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkRecorder.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkReflect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkReflect.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkRoomVerb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkRoomVerb.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkSilenceGenerator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkSilenceGenerator.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkSineTone.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkSineTone.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkSoundEngineDLL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkSoundEngineDLL.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkSoundSeedAir.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkSoundSeedAir.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkSoundSeedGrain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkSoundSeedGrain.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkSoundSeedImpact.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkSoundSeedImpact.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkStereoDelay.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkStereoDelay.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkSynthOne.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkSynthOne.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkTimeStretch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkTimeStretch.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkToneGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkToneGen.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkTremolo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkTremolo.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/Auro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/Auro.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/MSSpatial.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/MSSpatial.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/MasteringSuite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/MasteringSuite.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/McDSP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/McDSP.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/iZotope.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/iZotope.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/Debug.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a490bdd9f04049e3ae8161e10961231 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/Debug/AkSoundEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/Debug/AkSoundEngine.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/Debug/AkSoundEngine.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/Debug/AkSoundEngine.ilk -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/Debug/AkSoundEngine.ilk.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4cd93bfeef35477796391fab01a1a1f 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/Debug/AkWaapiClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/Debug/AkWaapiClient.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/Debug/AkWaapiClient.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/Debug/AkWaapiClient.ilk -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/Debug/AkWaapiClient.ilk.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf553ffac69f443889bcfaf1b03b1614 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/Profile.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 599fd020c376743a18a751e6ffd53ad2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/Profile/AkSoundEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/Profile/AkSoundEngine.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/Profile/AkWaapiClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/Profile/AkWaapiClient.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/Release.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53f3aab1d49cb4e82ae0bfcd5499e4d9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/Release/AkSoundEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/Release/AkSoundEngine.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/Release/AkWaapiClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86/Release/AkWaapiClient.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7802241327f894b988425bfc419e94e1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3b351df7e3da4fc2803a24173471a76 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkAudioInput.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkAudioInput.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkCompressor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkCompressor.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkConvolutionReverb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkConvolutionReverb.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkDelay.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkDelay.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkExpander.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkExpander.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkFlanger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkFlanger.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkGain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkGain.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkGuitarDistortion.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkGuitarDistortion.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkHarmonizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkHarmonizer.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkMatrixReverb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkMatrixReverb.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkMotion.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkMotion.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkParametricEQ.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkParametricEQ.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkPeakLimiter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkPeakLimiter.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkPitchShifter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkPitchShifter.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkRecorder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkRecorder.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkReflect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkReflect.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkRoomVerb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkRoomVerb.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkSilenceGenerator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkSilenceGenerator.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkSineTone.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkSineTone.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkSoundEngineDLL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkSoundEngineDLL.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkSoundSeedAir.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkSoundSeedAir.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkSoundSeedGrain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkSoundSeedGrain.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkSoundSeedImpact.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkSoundSeedImpact.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkStereoDelay.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkStereoDelay.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkSynthOne.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkSynthOne.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkTimeStretch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkTimeStretch.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkToneGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkToneGen.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkTremolo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkTremolo.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/Auro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/Auro.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/MSSpatial.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/MSSpatial.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/MasteringSuite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/MasteringSuite.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/McDSP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/McDSP.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/iZotope.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/iZotope.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/Debug.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f19d341510b94486087ed6a80ee58308 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/Debug/AkSoundEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/Debug/AkSoundEngine.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/Debug/AkSoundEngine.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/Debug/AkSoundEngine.ilk -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/Debug/AkSoundEngine.ilk.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 365c1b8666c0f41ad89518fe4ce33fd1 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/Debug/AkWaapiClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/Debug/AkWaapiClient.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/Debug/AkWaapiClient.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/Debug/AkWaapiClient.ilk -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/Debug/AkWaapiClient.ilk.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83f7156b17340401980f681a4768d824 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/Profile.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3f71c5c028e54e148f206919a91d7e5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/Profile/AkSoundEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/Profile/AkSoundEngine.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/Profile/AkWaapiClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/Profile/AkWaapiClient.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/Release.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd9e6a9bc96c947c39c7e35e138effc3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/Release/AkSoundEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/Release/AkSoundEngine.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/Release/AkWaapiClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Deployment/Plugins/Windows/x86_64/Release/AkWaapiClient.dll -------------------------------------------------------------------------------- /Assets/Wwise/Documentation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7fc9f37dc0f45406aaffc4613b978044 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/AppleCommon.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83f29453cb5dd47cca62ad092ba460a5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/AppleCommon/en.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1bafc7b9c1fdb4e498cffb5032e264a9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/AppleCommon/en/WwiseUnityIntegrationHelp_Mac_en.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Documentation/AppleCommon/en/WwiseUnityIntegrationHelp_Mac_en.chm -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/AppleCommon/en/WwiseUnityIntegrationHelp_Mac_en.chm.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77588483f8d6445bb8b6e516b30cc497 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/AppleCommon/ja.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6522f49d4827a4564948b3f028224fb5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/AppleCommon/ja/WwiseUnityIntegrationHelp_Mac_ja.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Documentation/AppleCommon/ja/WwiseUnityIntegrationHelp_Mac_ja.chm -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/AppleCommon/ja/WwiseUnityIntegrationHelp_Mac_ja.chm.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e49800e75bdd4e23ac3ad76e1b231ff 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/AppleCommon/ko.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9995885139033423d9e51d020174571f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/AppleCommon/ko/WwiseUnityIntegrationHelp_Mac_ko.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Documentation/AppleCommon/ko/WwiseUnityIntegrationHelp_Mac_ko.chm -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/AppleCommon/ko/WwiseUnityIntegrationHelp_Mac_ko.chm.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cdcc2c0781d8d4615b05596b9c7c59fd 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/AppleCommon/zh.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47e73fed585174022830a270bc1204bf 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/AppleCommon/zh/WwiseUnityIntegrationHelp_Mac_zh.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Documentation/AppleCommon/zh/WwiseUnityIntegrationHelp_Mac_zh.chm -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/AppleCommon/zh/WwiseUnityIntegrationHelp_Mac_zh.chm.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e0b88a77a5034887b8303f58cad509f 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/Windows.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 870e4828143a74d5f92da338bb1833ed 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/Windows/en.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37731306c15114c2ca2029150b1d9e43 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/Windows/en/WwiseUnityIntegrationHelp_en.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Documentation/Windows/en/WwiseUnityIntegrationHelp_en.chm -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/Windows/en/WwiseUnityIntegrationHelp_en.chm.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa8aaa8d151bb4f8cb3a874be7b6863b 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/Windows/ja.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c192125bc68184f43a5401f4e7a4e0ef 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/Windows/ja/WwiseUnityIntegrationHelp_ja.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Documentation/Windows/ja/WwiseUnityIntegrationHelp_ja.chm -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/Windows/ja/WwiseUnityIntegrationHelp_ja.chm.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47680c7c8f9e9440997baa411249687f 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/Windows/ko.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eba547767198140c2aa4c18dd2298d1f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/Windows/ko/WwiseUnityIntegrationHelp_ko.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Documentation/Windows/ko/WwiseUnityIntegrationHelp_ko.chm -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/Windows/ko/WwiseUnityIntegrationHelp_ko.chm.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4678b2c8521d542a6b4c015ed89175f7 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/Windows/zh.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b88d79105bbe465b9cd840b5b83e85d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/Windows/zh/WwiseUnityIntegrationHelp_zh.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Documentation/Windows/zh/WwiseUnityIntegrationHelp_zh.chm -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/Windows/zh/WwiseUnityIntegrationHelp_zh.chm.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8266ff4f769a43b2a5872f7f3636236 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 709aab7c55e7f48aea6034870ea46dd7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/ProjectData.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7805d08ec73c043adbd7e6c7b803f075 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/ProjectData/AkWwiseProjectData.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62b226f2c65694f45b46f70ee104f23a 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseComponents.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a8b034b6a356d43fa864d165e29f3bc0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseComponents/AkAmbientInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f3b7bb2785fe46c882ed27b77bb0b76 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseComponents/AkBankInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92673f8d6f9ed443d862b6c09e879e3e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseComponents/AkBaseInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a945b00b3c30d41b39b82d7b8ea75865 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseComponents/AkEventInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af305142a6a664356b271a99350e11ee 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseComponents/AkPortalManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a32452d2b83ac41749288b5721b02b45 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseComponents/AkRoomInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c74134d60e8b847379fa2d77043df6cc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseMenu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 146d245b91d154b5a805ac7169a15642 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseMenu/Common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1cbeb7ff6a2bb49319a2cbe7be22d640 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseMenu/Mac.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7447d3d3f63a8403dbc71cc1cc7d74ed 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseMenu/Mac/AkWwiseMenu_Mac.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5933f44c2d72d4d53bec6207974e09f5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseMenu/Windows.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 42cea6491cd7247028f0324cb4611779 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseSetupWizard.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9763451e1d35748a4b99107dfffdc59d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseSetupWizard/AkWSAUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03a97c70d725b47a5bb5f93a7e814602 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseSetupWizard/AkXboxOneUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8455ab3e4b744955b8ebb65918e1094 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseTypes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4ef7c74b32b74a49a278305da8849dc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseTypes/AuxBusDrawer.cs: -------------------------------------------------------------------------------- 1 | namespace AK.Wwise.Editor 2 | { 3 | [UnityEditor.CustomPropertyDrawer(typeof(AuxBus))] 4 | public class AuxBusDrawer : BaseTypeDrawer 5 | { 6 | protected override WwiseObjectType WwiseObjectType { get { return WwiseObjectType.AuxBus; } } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseTypes/AuxBusDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a764fff1d551248c19edff170c523d46 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseTypes/BankDrawer.cs: -------------------------------------------------------------------------------- 1 | namespace AK.Wwise.Editor 2 | { 3 | [UnityEditor.CustomPropertyDrawer(typeof(Bank))] 4 | public class BankDrawer : BaseTypeDrawer 5 | { 6 | protected override WwiseObjectType WwiseObjectType { get { return WwiseObjectType.Soundbank; } } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseTypes/BankDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d3935e1695454432bf0074b59adad26 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseTypes/BaseTypeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1255abbbae85f4470a75867f5a4bcce7 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseTypes/EventDrawer.cs: -------------------------------------------------------------------------------- 1 | namespace AK.Wwise.Editor 2 | { 3 | [UnityEditor.CustomPropertyDrawer(typeof(Event))] 4 | public class EventDrawer : BaseTypeDrawer 5 | { 6 | protected override WwiseObjectType WwiseObjectType { get { return WwiseObjectType.Event; } } 7 | } 8 | } -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseTypes/EventDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 568a4b80841374ef2a7debec5f495a65 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseTypes/RTPCDrawer.cs: -------------------------------------------------------------------------------- 1 | namespace AK.Wwise.Editor 2 | { 3 | [UnityEditor.CustomPropertyDrawer(typeof(RTPC))] 4 | public class RTPCDrawer : BaseTypeDrawer 5 | { 6 | protected override WwiseObjectType WwiseObjectType { get { return WwiseObjectType.GameParameter; } } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseTypes/RTPCDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc934f65c55534b76975f280bb632bbd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseTypes/StateDrawer.cs: -------------------------------------------------------------------------------- 1 | namespace AK.Wwise.Editor 2 | { 3 | [UnityEditor.CustomPropertyDrawer(typeof(State))] 4 | public class StateDrawer : BaseTypeDrawer 5 | { 6 | protected override WwiseObjectType WwiseObjectType { get { return WwiseObjectType.State; } } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseTypes/StateDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8305bb69eb0c4b70a5bdb2108d74e61 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseTypes/SwitchDrawer.cs: -------------------------------------------------------------------------------- 1 | namespace AK.Wwise.Editor 2 | { 3 | [UnityEditor.CustomPropertyDrawer(typeof(Switch))] 4 | public class SwitchDrawer : BaseTypeDrawer 5 | { 6 | protected override WwiseObjectType WwiseObjectType { get { return WwiseObjectType.Switch; } } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseTypes/SwitchDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05c7602dc56404c45982b7e4e8ec979c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseTypes/TriggerDrawer.cs: -------------------------------------------------------------------------------- 1 | namespace AK.Wwise.Editor 2 | { 3 | [UnityEditor.CustomPropertyDrawer(typeof(Trigger))] 4 | public class TriggerDrawer : BaseTypeDrawer 5 | { 6 | protected override WwiseObjectType WwiseObjectType { get { return WwiseObjectType.Trigger; } } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseTypes/TriggerDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f5dd3cb042564f30b7b919bb6eddc9b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7834c1276b73b44388e72ef1cd361fb7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/AkWwisePicker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08d575edc601342fda46c722e253ca2c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/AkWwiseProjectData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 275e3f331f26d47b99a13867e660868f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/AkWwiseProjectInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d15d015fb75f42e4a295fe5d2e39943 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/AkWwiseTreeView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e649ebd24bef4516b55b170dde7398d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/AkWwiseWWUBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd901da07e3df4cb2bbda279b18b79b2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/AkWwiseXMLBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9141d72fa2636431cbeb7becb7b79895 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 985b2a6ee928f4719bb9f7469f08f0f5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/TreeViewHoverSkin.guiskin.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ffb844578b0a43eea5053676337ec3b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/TreeViewSelectedSkin.guiskin.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ca3235c7923648399fbd3f5ea50c08f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/TreeViewUnselectedSkin.guiskin.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51e0ce650e7eb4382a9b178f17e80264 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/acoustictexture_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/acoustictexture_nor.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/auxbus_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/auxbus_nor.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/blank.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/bus_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/bus_nor.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/event_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/event_nor.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/folder_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/folder_nor.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/gameparameter_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/gameparameter_nor.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/guide.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/last_sibling_collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/last_sibling_collapsed.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/last_sibling_expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/last_sibling_expanded.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/last_sibling_nochild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/last_sibling_nochild.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/middle_sibling_collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/middle_sibling_collapsed.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/middle_sibling_expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/middle_sibling_expanded.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/middle_sibling_nochild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/middle_sibling_nochild.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/normal_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/normal_checked.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/normal_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/normal_unchecked.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/physical_folder_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/physical_folder_nor.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/selected_background_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/selected_background_color.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/soundbank_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/soundbank_nor.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/state_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/state_nor.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/stategroup_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/stategroup_nor.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/switch_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/switch_nor.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/switchgroup_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/switchgroup_nor.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/workunit_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/workunit_nor.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/wproj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/wproj.png -------------------------------------------------------------------------------- /Assets/Wwise/Extensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93e0c1470cbd847b2baff22289a0ae69 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Extensions/AkSoundEngine.extensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ee94633543464b3695f198b424a6d19 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Wwise/Gizmos.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c2ede7f4fdd54cdd83b86edd5ccbadc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Gizmos/WwiseAudioSpeaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Gizmos/WwiseAudioSpeaker.png -------------------------------------------------------------------------------- /Assets/Wwise/Gizmos/wwise_white_on_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/Gizmos/wwise_white_on_gray.png -------------------------------------------------------------------------------- /Assets/Wwise/InstallConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/Assets/Wwise/InstallConfig.json -------------------------------------------------------------------------------- /Assets/Wwise/InstallConfig.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9bef8766e9534687b0c9038a07d4fef 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Wwise/LauncherInfo.json: -------------------------------------------------------------------------------- 1 | { 2 | "originalSdkFolder": "/Applications/Audiokinetic/Wwise 2019.2.4.7329/SDK" 3 | } -------------------------------------------------------------------------------- /Assets/Wwise/LauncherInfo.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6f47e26eaeda489c8ccde3725d4526c 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Wwise/ScriptableObjects.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac03756d50a8f4ffaaff310c57f6f818 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/ScriptableObjects/AkWwiseInitializationSettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e04152bbdba944c7da81a6f5fd5d5c4a 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/ScriptableObjects/Event.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11f0e1d049bbd4668984dfc4df081b03 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/ScriptableObjects/Event/42C69516-EB76-47B5-899C-27CE3A20C38B.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 55887c75451bb4936b0c845cb5ded75d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/ScriptableObjects/Event/9660E9E7-C17A-4F96-9322-F58E47E60363.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d81e0a6d9dfa347cfbb039f04774c317 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/ScriptableObjects/Event/D66D2319-F7ED-4318-B47B-4E2D3DE41719.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23a8cf1dd002841eea519f8c39654f27 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/ScriptableObjects/Event/EE6488E2-A0BF-47A5-A492-9203F38B9F45.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07f96f943b8de47c48bee662c0d7c0cd 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/ScriptableObjects/GameParameter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96836149ebd344a6f891584b9d2a1e0e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/ScriptableObjects/GameParameter/1C39DCF5-575E-454E-A6EE-0132CF8539EB.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c0dc8cdc2dff48e6aa35016f05e5de1 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/ScriptableObjects/GameParameter/5FC4CC19-D3B0-4C3B-804A-229409E6A566.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1743df0754afb4aa986dfddb58ca1633 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/ScriptableObjects/GameParameter/8CABF003-4DCD-41F0-8AE3-FFBEEC3D24CC.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ddb1e6acdf7543c189bd0799bd4deca 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/ScriptableObjects/Mac.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7495bdd5095e5457d8fd9d69ca4da584 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/ScriptableObjects/Soundbank.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd3f9f713f38b4bc48aef38e34685579 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/ScriptableObjects/Soundbank/40CA8C8E-A47C-43F2-8A92-5027B36C4E58.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54f3309a94962440eafd1339794214b9 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/ScriptableObjects/State.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c9ddd55a778e3422b99118e5a55209b0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/ScriptableObjects/State/3EDCCD76-A5DF-4955-8311-A220C9AB425B.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9d24ee317f754b55bc1061e16953763 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/ScriptableObjects/State/6BB28AF0-099F-40B2-956A-C253AA5EAFDC.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 599ff9384ad8b488e85a265ce079cbcd 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/ScriptableObjects/State/9F51A0F3-2D08-4E34-BEEA-E17AA36AB810.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 594a664c6ae094704b2dc80697319881 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/ScriptableObjects/State/C69DBEA0-9601-43B1-B9A1-3CC1C3C72D55.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50b24e8858bba4b7aadbb8d6a5e8871c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/ScriptableObjects/StateGroup.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 052d0ed8c24c84f9899ad76e3cac9e08 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/ScriptableObjects/StateGroup/33AA0349-4C7F-4657-9EAC-148B652C4FE2.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45deee26c25ab486d9e8f330b4749c49 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/ScriptableObjects/Windows.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86827bfafb14d472b9557ea34ff09daa 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Tools.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81e96c2dcca5f47c0826b9e5cb06eae9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Tools/WwiseIDConverter.py.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18d2c619ff8444a95b6836ca9c51ebe6 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Wwise/Version.txt: -------------------------------------------------------------------------------- 1 | Wwise Unity Integration Version Info: 2 | 3 | Based on Wwise SDK: 2019.2.4 Build 7329 4 | 5 | Unity Integration Bundle: 2019.2.4.1806 6 | 7 | Unity Integration Version: 19 8 | -------------------------------------------------------------------------------- /Assets/Wwise/Version.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74ec918ab0b0d4fffbe0eccaf5a937f3 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/WwiseSettings.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c81f714ec476948c2af096ac6a9d01d2 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_DefaultPresets: {} 8 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2019.4.4f1 2 | m_EditorVersionWithRevision: 2019.4.4f1 (1f1dac67805b) 3 | -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.1 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /WwiseUnityIntegration_Mac_Src.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/WwiseUnityIntegration_Mac_Src.zip -------------------------------------------------------------------------------- /WwiseUnityIntegration_Windows_Src.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxygencraft/Plumbing/afaf450e00dc993e2935f665768c7e07355af3ab/WwiseUnityIntegration_Windows_Src.zip --------------------------------------------------------------------------------