├── .gitignore ├── Assets ├── Animations.meta ├── Animations │ ├── Environment.meta │ ├── Environment │ │ ├── CrateAnim.anim │ │ ├── CrateAnim.anim.meta │ │ ├── CrateAnimController.controller │ │ ├── CrateAnimController.controller.meta │ │ ├── Door.controller │ │ ├── Door.controller.meta │ │ ├── RockAnimController.controller │ │ ├── RockAnimController.controller.meta │ │ ├── RockDestroyAnim.anim │ │ ├── RockDestroyAnim.anim.meta │ │ ├── boite_0.controller │ │ ├── boite_0.controller.meta │ │ ├── bugged_tile.anim │ │ ├── bugged_tile.anim.meta │ │ ├── bugged_tiles.controller │ │ ├── bugged_tiles.controller.meta │ │ ├── door_close.anim │ │ ├── door_close.anim.meta │ │ ├── door_open.anim │ │ ├── door_open.anim.meta │ │ ├── sword.controller │ │ ├── sword.controller.meta │ │ ├── sword_on_ground.anim │ │ ├── sword_on_ground.anim.meta │ │ ├── torch.anim │ │ ├── torch.anim.meta │ │ ├── torche_0.controller │ │ └── torche_0.controller.meta │ ├── Game.meta │ ├── Game │ │ ├── StartText.anim │ │ ├── StartText.anim.meta │ │ ├── StartText.controller │ │ └── StartText.controller.meta │ ├── Monsters.meta │ ├── Monsters │ │ ├── BossAnim.anim │ │ ├── BossAnim.anim.meta │ │ ├── BossAnimController.controller │ │ ├── BossAnimController.controller.meta │ │ ├── BossGlitchAnim.anim │ │ ├── BossGlitchAnim.anim.meta │ │ ├── BossGlitchAnimController.controller │ │ ├── BossGlitchAnimController.controller.meta │ │ ├── MonsterAnim.anim │ │ ├── MonsterAnim.anim.meta │ │ ├── MonsterAnimController.controller │ │ ├── MonsterAnimController.controller.meta │ │ ├── MonsterAnimGlitch.anim │ │ ├── MonsterAnimGlitch.anim.meta │ │ ├── MonsterAnimGlitch.controller │ │ └── MonsterAnimGlitch.controller.meta │ ├── Player.meta │ ├── Player │ │ ├── AttackDownAnim.anim │ │ ├── AttackDownAnim.anim.meta │ │ ├── AttackLeftAnim.anim │ │ ├── AttackLeftAnim.anim.meta │ │ ├── AttackRightAnim.anim │ │ ├── AttackRightAnim.anim.meta │ │ ├── AttackUpAnim.anim │ │ ├── AttackUpAnim.anim.meta │ │ ├── IdleBackAnim.anim │ │ ├── IdleBackAnim.anim.meta │ │ ├── IdleFrontAnim.anim │ │ ├── IdleFrontAnim.anim.meta │ │ ├── IdleLeftAnim.anim │ │ ├── IdleLeftAnim.anim.meta │ │ ├── IdleRightAnim.anim │ │ ├── IdleRightAnim.anim.meta │ │ ├── PickupSwordAnim.anim │ │ ├── PickupSwordAnim.anim.meta │ │ ├── PlayerAnimController.controller │ │ ├── PlayerAnimController.controller.meta │ │ ├── RunBackAnim.anim │ │ ├── RunBackAnim.anim.meta │ │ ├── RunFrontAnim.anim │ │ ├── RunFrontAnim.anim.meta │ │ ├── RunLeftAnim.anim │ │ ├── RunLeftAnim.anim.meta │ │ ├── RunRightAnim.anim │ │ └── RunRightAnim.anim.meta │ ├── SpeechBubble.meta │ ├── SpeechBubble │ │ ├── SpeechBubbleAnimController.controller │ │ ├── SpeechBubbleAnimController.controller.meta │ │ ├── SpeechBubbleCloseAnim.anim │ │ ├── SpeechBubbleCloseAnim.anim.meta │ │ ├── SpeechBubbleOpenAnim.anim │ │ └── SpeechBubbleOpenAnim.anim.meta │ ├── UI.meta │ └── UI │ │ ├── GameMenu.meta │ │ ├── GameMenu │ │ ├── GameMenuAnimControllerUI.controller │ │ ├── GameMenuAnimControllerUI.controller.meta │ │ ├── GameOverAnim.anim │ │ ├── GameOverAnim.anim.meta │ │ ├── HideAllAnim.anim │ │ ├── HideAllAnim.anim.meta │ │ ├── ShippedTooSoon.controller │ │ ├── ShippedTooSoon.controller.meta │ │ ├── TitleAnim.anim │ │ ├── TitleAnim.anim.meta │ │ ├── VictoryAnim.anim │ │ └── VictoryAnim.anim.meta │ │ ├── GameState.meta │ │ └── GameState │ │ ├── GameStatAnimControllerUI.controller │ │ ├── GameStatAnimControllerUI.controller.meta │ │ ├── PickupGoalAnimUI.anim │ │ ├── PickupGoalAnimUI.anim.meta │ │ ├── TakeDamageAnimUI.anim │ │ └── TakeDamageAnimUI.anim.meta ├── Fonts.meta ├── Fonts │ ├── PIXELADE.TTF │ └── PIXELADE.TTF.meta ├── Materials.meta ├── Materials │ ├── PlayerTestMat.mat │ ├── PlayerTestMat.mat.meta │ ├── Switch.mat │ ├── Switch.mat.meta │ ├── Walls.mat │ └── Walls.mat.meta ├── Palette.meta ├── Palette │ ├── Room_Palette.prefab │ └── Room_Palette.prefab.meta ├── Prefabs.meta ├── Prefabs │ ├── Environment.meta │ ├── Environment │ │ ├── GameMap.prefab │ │ ├── GameMap.prefab.meta │ │ ├── GameMapCreator.prefab │ │ └── GameMapCreator.prefab.meta │ ├── Game.meta │ ├── Game │ │ ├── Directional_Light.prefab │ │ ├── Directional_Light.prefab.meta │ │ ├── GameManager.prefab │ │ ├── GameManager.prefab.meta │ │ ├── Main Camera.prefab │ │ ├── Main Camera.prefab.meta │ │ ├── SpawnPoint.prefab │ │ └── SpawnPoint.prefab.meta │ ├── Player.meta │ ├── Player │ │ ├── Player.prefab │ │ └── Player.prefab.meta │ ├── UI.meta │ └── UI │ │ ├── CanvasUI_GameStat.prefab │ │ ├── CanvasUI_GameStat.prefab.meta │ │ ├── CanvasUI_MenuGame.prefab │ │ ├── CanvasUI_MenuGame.prefab.meta │ │ ├── CanvasUI_WelcomeMenu.prefab │ │ └── CanvasUI_WelcomeMenu.prefab.meta ├── Resources.meta ├── Resources │ ├── Bubbles.meta │ ├── Bubbles │ │ ├── Rooms.meta │ │ ├── Rooms │ │ │ ├── BossGlitchMsg.asset │ │ │ ├── BossGlitchMsg.asset.meta │ │ │ ├── BossUglyMsg.asset │ │ │ ├── BossUglyMsg.asset.meta │ │ │ ├── BuggedMonsterMsg.asset │ │ │ ├── BuggedMonsterMsg.asset.meta │ │ │ ├── GhostBridgeMsg.asset │ │ │ ├── GhostBridgeMsg.asset.meta │ │ │ ├── GlitchedShortcutMsg.asset │ │ │ ├── GlitchedShortcutMsg.asset.meta │ │ │ ├── NiceTryMsg.asset │ │ │ ├── NiceTryMsg.asset.meta │ │ │ ├── NoButtomMsg.asset │ │ │ ├── NoButtomMsg.asset.meta │ │ │ ├── NopeMsg.asset │ │ │ ├── NopeMsg.asset.meta │ │ │ ├── PickableHammerMsg.asset │ │ │ ├── PickableHammerMsg.asset.meta │ │ │ ├── RockAloneMsg.asset │ │ │ ├── RockAloneMsg.asset.meta │ │ │ ├── RockMsg.asset │ │ │ ├── RockMsg.asset.meta │ │ │ ├── ShortcutMsg.asset │ │ │ ├── ShortcutMsg.asset.meta │ │ │ ├── SwordQuestionMsg.asset │ │ │ ├── SwordQuestionMsg.asset.meta │ │ │ ├── TrollMsg.asset │ │ │ ├── TrollMsg.asset.meta │ │ │ ├── TutorialMsg.asset │ │ │ └── TutorialMsg.asset.meta │ │ ├── UI.meta │ │ ├── UI │ │ │ ├── WelcomeControlsPCMsg.asset │ │ │ ├── WelcomeControlsPCMsg.asset.meta │ │ │ ├── WelcomeTrollMsg.asset │ │ │ └── WelcomeTrollMsg.asset.meta │ │ ├── Warning.meta │ │ └── Warning │ │ │ ├── EnemyGlitchMsg.asset │ │ │ ├── EnemyGlitchMsg.asset.meta │ │ │ ├── NoWeaponMsg.asset │ │ │ └── NoWeaponMsg.asset.meta │ ├── ScoreDataSave.asset │ ├── ScoreDataSave.asset.meta │ ├── ScoreDataSave_Debug.asset │ └── ScoreDataSave_Debug.asset.meta ├── Scenes.meta ├── Scenes │ ├── Main_Scene.unity │ ├── Main_Scene.unity.meta │ ├── MenuWelcome.unity │ └── MenuWelcome.unity.meta ├── Scripts.meta ├── Scripts │ ├── Game.meta │ ├── Game │ │ ├── CameraController.cs │ │ ├── CameraController.cs.meta │ │ ├── GameDebugger.cs │ │ ├── GameDebugger.cs.meta │ │ ├── GameManager.cs │ │ ├── GameManager.cs.meta │ │ ├── GameMap.cs │ │ ├── GameMap.cs.meta │ │ ├── GameTimeManager.cs │ │ ├── GameTimeManager.cs.meta │ │ ├── ScoreData.cs │ │ └── ScoreData.cs.meta │ ├── Player.meta │ ├── Player │ │ ├── PlayerAction.cs │ │ ├── PlayerAction.cs.meta │ │ ├── PlayerHealth.cs │ │ ├── PlayerHealth.cs.meta │ │ ├── PlayerMovement.cs │ │ └── PlayerMovement.cs.meta │ ├── Rooms.meta │ ├── Rooms │ │ ├── Destructable.cs │ │ ├── Destructable.cs.meta │ │ ├── EnemyDamage.cs │ │ ├── EnemyDamage.cs.meta │ │ ├── Pickable.cs │ │ ├── Pickable.cs.meta │ │ ├── Room.cs │ │ ├── Room.cs.meta │ │ ├── RoomDoor.cs │ │ ├── RoomDoor.cs.meta │ │ ├── RoomGoal.cs │ │ └── RoomGoal.cs.meta │ ├── SpeechBubble.meta │ ├── SpeechBubble │ │ ├── SpeechBubble.cs │ │ ├── SpeechBubble.cs.meta │ │ ├── SpeechBubbleData.cs │ │ └── SpeechBubbleData.cs.meta │ ├── UI.meta │ └── UI │ │ ├── MenuManager.cs │ │ ├── MenuManager.cs.meta │ │ ├── MenuWelcome.cs │ │ └── MenuWelcome.cs.meta ├── Sprites.meta ├── Sprites │ ├── Monsters.meta │ ├── Monsters │ │ ├── boss.png │ │ ├── boss.png.meta │ │ ├── boss_glitched.png │ │ ├── boss_glitched.png.meta │ │ ├── monstre.png │ │ ├── monstre.png.meta │ │ ├── monstre_glitched.png │ │ └── monstre_glitched.png.meta │ ├── Player.meta │ ├── Player │ │ ├── GetSword.png │ │ ├── GetSword.png.meta │ │ ├── adventurerWIP.png │ │ ├── adventurerWIP.png.meta │ │ ├── attackDown.png │ │ ├── attackDown.png.meta │ │ ├── attackRight.png │ │ ├── attackRight.png.meta │ │ ├── attackUp.png │ │ ├── attackUp.png.meta │ │ ├── attackleft.png │ │ ├── attackleft.png.meta │ │ ├── hammer.png │ │ ├── hammer.png.meta │ │ ├── hearts.png │ │ ├── hearts.png.meta │ │ ├── idlerun.png │ │ ├── idlerun.png.meta │ │ ├── idlerunleft.png │ │ ├── idlerunleft.png.meta │ │ ├── sword.png │ │ └── sword.png.meta │ ├── Rooms.meta │ ├── Rooms │ │ ├── RoomTileSet.png │ │ ├── RoomTileSet.png.meta │ │ ├── crate.png │ │ ├── crate.png.meta │ │ ├── door 1.png │ │ ├── door 1.png.meta │ │ ├── door.png │ │ ├── door.png.meta │ │ ├── locked_door.png │ │ ├── locked_door.png.meta │ │ ├── rocher.png │ │ ├── rocher.png.meta │ │ ├── rock.png │ │ ├── rock.png.meta │ │ ├── switch.png │ │ ├── switch.png.meta │ │ ├── torche.png │ │ └── torche.png.meta │ ├── UI.meta │ └── UI │ │ ├── bulleX4.png │ │ ├── bulleX4.png.meta │ │ ├── gameover.png │ │ ├── gameover.png.meta │ │ ├── quit.png │ │ ├── quit.png.meta │ │ ├── restart.png │ │ ├── restart.png.meta │ │ ├── start.png │ │ ├── start.png.meta │ │ ├── title.png │ │ ├── title.png.meta │ │ ├── victory.png │ │ └── victory.png.meta ├── StreamingAssets.meta ├── StreamingAssets │ ├── Audio.meta │ ├── Audio │ │ ├── GeneratedSoundBanks.meta │ │ └── GeneratedSoundBanks │ │ │ ├── Wwise_IDs.h │ │ │ └── Wwise_IDs.h.meta │ ├── desc.txt │ └── desc.txt.meta ├── Tiles.meta ├── Tiles │ ├── Rooms.meta │ └── Rooms │ │ ├── tilesetV1_0.asset │ │ ├── tilesetV1_0.asset.meta │ │ ├── tilesetV1_1.asset │ │ ├── tilesetV1_1.asset.meta │ │ ├── tilesetV1_10.asset │ │ ├── tilesetV1_10.asset.meta │ │ ├── tilesetV1_11.asset │ │ ├── tilesetV1_11.asset.meta │ │ ├── tilesetV1_12.asset │ │ ├── tilesetV1_12.asset.meta │ │ ├── tilesetV1_13.asset │ │ ├── tilesetV1_13.asset.meta │ │ ├── tilesetV1_14.asset │ │ ├── tilesetV1_14.asset.meta │ │ ├── tilesetV1_15.asset │ │ ├── tilesetV1_15.asset.meta │ │ ├── tilesetV1_16.asset │ │ ├── tilesetV1_16.asset.meta │ │ ├── tilesetV1_17.asset │ │ ├── tilesetV1_17.asset.meta │ │ ├── tilesetV1_18.asset │ │ ├── tilesetV1_18.asset.meta │ │ ├── tilesetV1_19.asset │ │ ├── tilesetV1_19.asset.meta │ │ ├── tilesetV1_2.asset │ │ ├── tilesetV1_2.asset.meta │ │ ├── tilesetV1_20.asset │ │ ├── tilesetV1_20.asset.meta │ │ ├── tilesetV1_21.asset │ │ ├── tilesetV1_21.asset.meta │ │ ├── tilesetV1_22.asset │ │ ├── tilesetV1_22.asset.meta │ │ ├── tilesetV1_23.asset │ │ ├── tilesetV1_23.asset.meta │ │ ├── tilesetV1_24.asset │ │ ├── tilesetV1_24.asset.meta │ │ ├── tilesetV1_25.asset │ │ ├── tilesetV1_25.asset.meta │ │ ├── tilesetV1_26.asset │ │ ├── tilesetV1_26.asset.meta │ │ ├── tilesetV1_27.asset │ │ ├── tilesetV1_27.asset.meta │ │ ├── tilesetV1_28.asset │ │ ├── tilesetV1_28.asset.meta │ │ ├── tilesetV1_29.asset │ │ ├── tilesetV1_29.asset.meta │ │ ├── tilesetV1_3.asset │ │ ├── tilesetV1_3.asset.meta │ │ ├── tilesetV1_30.asset │ │ ├── tilesetV1_30.asset.meta │ │ ├── tilesetV1_31.asset │ │ ├── tilesetV1_31.asset.meta │ │ ├── tilesetV1_32.asset │ │ ├── tilesetV1_32.asset.meta │ │ ├── tilesetV1_33.asset │ │ ├── tilesetV1_33.asset.meta │ │ ├── tilesetV1_34.asset │ │ ├── tilesetV1_34.asset.meta │ │ ├── tilesetV1_35.asset │ │ ├── tilesetV1_35.asset.meta │ │ ├── tilesetV1_36.asset │ │ ├── tilesetV1_36.asset.meta │ │ ├── tilesetV1_37.asset │ │ ├── tilesetV1_37.asset.meta │ │ ├── tilesetV1_38.asset │ │ ├── tilesetV1_38.asset.meta │ │ ├── tilesetV1_39.asset │ │ ├── tilesetV1_39.asset.meta │ │ ├── tilesetV1_4.asset │ │ ├── tilesetV1_4.asset.meta │ │ ├── tilesetV1_40.asset │ │ ├── tilesetV1_40.asset.meta │ │ ├── tilesetV1_41.asset │ │ ├── tilesetV1_41.asset.meta │ │ ├── tilesetV1_42.asset │ │ ├── tilesetV1_42.asset.meta │ │ ├── tilesetV1_43.asset │ │ ├── tilesetV1_43.asset.meta │ │ ├── tilesetV1_44.asset │ │ ├── tilesetV1_44.asset.meta │ │ ├── tilesetV1_45.asset │ │ ├── tilesetV1_45.asset.meta │ │ ├── tilesetV1_46.asset │ │ ├── tilesetV1_46.asset.meta │ │ ├── tilesetV1_47.asset │ │ ├── tilesetV1_47.asset.meta │ │ ├── tilesetV1_48.asset │ │ ├── tilesetV1_48.asset.meta │ │ ├── tilesetV1_49.asset │ │ ├── tilesetV1_49.asset.meta │ │ ├── tilesetV1_5.asset │ │ ├── tilesetV1_5.asset.meta │ │ ├── tilesetV1_50.asset │ │ ├── tilesetV1_50.asset.meta │ │ ├── tilesetV1_51.asset │ │ ├── tilesetV1_51.asset.meta │ │ ├── tilesetV1_52.asset │ │ ├── tilesetV1_52.asset.meta │ │ ├── tilesetV1_53.asset │ │ ├── tilesetV1_53.asset.meta │ │ ├── tilesetV1_54.asset │ │ ├── tilesetV1_54.asset.meta │ │ ├── tilesetV1_55.asset │ │ ├── tilesetV1_55.asset.meta │ │ ├── tilesetV1_56.asset │ │ ├── tilesetV1_56.asset.meta │ │ ├── tilesetV1_57.asset │ │ ├── tilesetV1_57.asset.meta │ │ ├── tilesetV1_58.asset │ │ ├── tilesetV1_58.asset.meta │ │ ├── tilesetV1_59.asset │ │ ├── tilesetV1_59.asset.meta │ │ ├── tilesetV1_6.asset │ │ ├── tilesetV1_6.asset.meta │ │ ├── tilesetV1_60.asset │ │ ├── tilesetV1_60.asset.meta │ │ ├── tilesetV1_61.asset │ │ ├── tilesetV1_61.asset.meta │ │ ├── tilesetV1_62.asset │ │ ├── tilesetV1_62.asset.meta │ │ ├── tilesetV1_63.asset │ │ ├── tilesetV1_63.asset.meta │ │ ├── tilesetV1_64.asset │ │ ├── tilesetV1_64.asset.meta │ │ ├── tilesetV1_65.asset │ │ ├── tilesetV1_65.asset.meta │ │ ├── tilesetV1_66.asset │ │ ├── tilesetV1_66.asset.meta │ │ ├── tilesetV1_67.asset │ │ ├── tilesetV1_67.asset.meta │ │ ├── tilesetV1_68.asset │ │ ├── tilesetV1_68.asset.meta │ │ ├── tilesetV1_69.asset │ │ ├── tilesetV1_69.asset.meta │ │ ├── tilesetV1_7.asset │ │ ├── tilesetV1_7.asset.meta │ │ ├── tilesetV1_70.asset │ │ ├── tilesetV1_70.asset.meta │ │ ├── tilesetV1_71.asset │ │ ├── tilesetV1_71.asset.meta │ │ ├── tilesetV1_72.asset │ │ ├── tilesetV1_72.asset.meta │ │ ├── tilesetV1_73.asset │ │ ├── tilesetV1_73.asset.meta │ │ ├── tilesetV1_74.asset │ │ ├── tilesetV1_74.asset.meta │ │ ├── tilesetV1_75.asset │ │ ├── tilesetV1_75.asset.meta │ │ ├── tilesetV1_76.asset │ │ ├── tilesetV1_76.asset.meta │ │ ├── tilesetV1_77.asset │ │ ├── tilesetV1_77.asset.meta │ │ ├── tilesetV1_78.asset │ │ ├── tilesetV1_78.asset.meta │ │ ├── tilesetV1_79.asset │ │ ├── tilesetV1_79.asset.meta │ │ ├── tilesetV1_8.asset │ │ ├── tilesetV1_8.asset.meta │ │ ├── tilesetV1_80.asset │ │ ├── tilesetV1_80.asset.meta │ │ ├── tilesetV1_81.asset │ │ ├── tilesetV1_81.asset.meta │ │ ├── tilesetV1_82.asset │ │ ├── tilesetV1_82.asset.meta │ │ ├── tilesetV1_83.asset │ │ ├── tilesetV1_83.asset.meta │ │ ├── tilesetV1_84.asset │ │ ├── tilesetV1_84.asset.meta │ │ ├── tilesetV1_9.asset │ │ └── tilesetV1_9.asset.meta ├── Wwise.meta ├── Wwise │ ├── Deployment.meta │ ├── Deployment │ │ ├── API.meta │ │ ├── API │ │ │ ├── Generated.meta │ │ │ ├── Generated │ │ │ │ ├── Common.meta │ │ │ │ ├── Common │ │ │ │ │ ├── AKRESULT.cs │ │ │ │ │ ├── AKRESULT.cs.meta │ │ │ │ │ ├── Ak3DSpatializationMode.cs │ │ │ │ │ ├── Ak3DSpatializationMode.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 │ │ │ │ │ ├── AkDeviceSettings.cs │ │ │ │ │ ├── AkDeviceSettings.cs.meta │ │ │ │ │ ├── AkDiffractionFlags.cs │ │ │ │ │ ├── AkDiffractionFlags.cs.meta │ │ │ │ │ ├── AkDurationCallbackInfo.cs │ │ │ │ │ ├── AkDurationCallbackInfo.cs.meta │ │ │ │ │ ├── AkDynamicSequenceItemCallbackInfo.cs │ │ │ │ │ ├── AkDynamicSequenceItemCallbackInfo.cs.meta │ │ │ │ │ ├── AkDynamicSequenceType.cs │ │ │ │ │ ├── AkDynamicSequenceType.cs.meta │ │ │ │ │ ├── AkEmitterSettings.cs │ │ │ │ │ ├── AkEmitterSettings.cs.meta │ │ │ │ │ ├── AkEventCallbackInfo.cs │ │ │ │ │ ├── AkEventCallbackInfo.cs.meta │ │ │ │ │ ├── AkExternalSourceInfo.cs │ │ │ │ │ ├── AkExternalSourceInfo.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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── AkMemSettings.cs │ │ │ │ │ ├── AkMemSettings.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 │ │ │ │ │ ├── AkPannerType.cs │ │ │ │ │ ├── AkPannerType.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 │ │ │ │ │ ├── AkPositionSourceType.cs │ │ │ │ │ ├── AkPositionSourceType.cs.meta │ │ │ │ │ ├── AkPositioningInfo.cs │ │ │ │ │ ├── AkPositioningInfo.cs.meta │ │ │ │ │ ├── AkPreparationType.cs │ │ │ │ │ ├── AkPreparationType.cs.meta │ │ │ │ │ ├── AkPropagationPathInfo.cs │ │ │ │ │ ├── AkPropagationPathInfo.cs.meta │ │ │ │ │ ├── AkPropagationPathInfoProxy.cs │ │ │ │ │ ├── AkPropagationPathInfoProxy.cs.meta │ │ │ │ │ ├── AkQueryRTPCValue.cs │ │ │ │ │ ├── AkQueryRTPCValue.cs.meta │ │ │ │ │ ├── AkRamp.cs │ │ │ │ │ ├── AkRamp.cs.meta │ │ │ │ │ ├── AkRoomParams.cs │ │ │ │ │ ├── AkRoomParams.cs.meta │ │ │ │ │ ├── AkSegmentInfo.cs │ │ │ │ │ ├── AkSegmentInfo.cs.meta │ │ │ │ │ ├── AkSerializedCallbackHeader.cs │ │ │ │ │ ├── AkSerializedCallbackHeader.cs.meta │ │ │ │ │ ├── AkSoundPathInfo.cs │ │ │ │ │ ├── AkSoundPathInfo.cs.meta │ │ │ │ │ ├── AkSoundPathInfoProxy.cs │ │ │ │ │ ├── AkSoundPathInfoProxy.cs.meta │ │ │ │ │ ├── AkSoundPropagationPathParams.cs │ │ │ │ │ ├── AkSoundPropagationPathParams.cs.meta │ │ │ │ │ ├── AkSourceChannelOrdering.cs │ │ │ │ │ ├── AkSourceChannelOrdering.cs.meta │ │ │ │ │ ├── AkSourceSettings.cs │ │ │ │ │ ├── AkSourceSettings.cs.meta │ │ │ │ │ ├── AkSpatialAudioInitSettings.cs │ │ │ │ │ ├── AkSpatialAudioInitSettings.cs.meta │ │ │ │ │ ├── AkStreamMgrSettings.cs │ │ │ │ │ ├── AkStreamMgrSettings.cs.meta │ │ │ │ │ ├── AkTransform.cs │ │ │ │ │ ├── AkTransform.cs.meta │ │ │ │ │ ├── AkTriangle.cs │ │ │ │ │ ├── AkTriangle.cs.meta │ │ │ │ │ ├── AkTriangleProxy.cs │ │ │ │ │ ├── AkTriangleProxy.cs.meta │ │ │ │ │ ├── AkVector.cs │ │ │ │ │ ├── AkVector.cs.meta │ │ │ │ │ ├── _ArrayPoolDefault.cs │ │ │ │ │ ├── _ArrayPoolDefault.cs.meta │ │ │ │ │ ├── _ArrayPoolLEngineDefault.cs │ │ │ │ │ ├── _ArrayPoolLEngineDefault.cs.meta │ │ │ │ │ ├── _ArrayPoolSpatialAudio.cs │ │ │ │ │ └── _ArrayPoolSpatialAudio.cs.meta │ │ │ │ ├── Mac.meta │ │ │ │ ├── Mac │ │ │ │ │ ├── AkMemPoolAttributes_Mac.cs │ │ │ │ │ ├── AkMemPoolAttributes_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 │ │ │ │ ├── Windows.meta │ │ │ │ └── Windows │ │ │ │ │ ├── AkAudioAPI_Windows.cs │ │ │ │ │ ├── AkAudioAPI_Windows.cs.meta │ │ │ │ │ ├── AkMemPoolAttributes_Windows.cs │ │ │ │ │ ├── AkMemPoolAttributes_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 │ │ │ ├── Handwritten.meta │ │ │ └── Handwritten │ │ │ │ ├── AkAudioInputManager.cs │ │ │ │ ├── AkAudioInputManager.cs.meta │ │ │ │ ├── AkAuxSendArray.cs │ │ │ │ ├── AkAuxSendArray.cs.meta │ │ │ │ ├── AkBankManager.cs │ │ │ │ ├── AkBankManager.cs.meta │ │ │ │ ├── AkBasePathGetter.cs │ │ │ │ ├── AkBasePathGetter.cs.meta │ │ │ │ ├── AkCallbackManager.cs │ │ │ │ ├── AkCallbackManager.cs.meta │ │ │ │ ├── AkChannelEmitterArray.cs │ │ │ │ ├── AkChannelEmitterArray.cs.meta │ │ │ │ ├── AkLogger.cs │ │ │ │ ├── AkLogger.cs.meta │ │ │ │ ├── AkMIDIPostArray.cs │ │ │ │ ├── AkMIDIPostArray.cs.meta │ │ │ │ ├── AkPositionArray.cs │ │ │ │ ├── AkPositionArray.cs.meta │ │ │ │ ├── AkPropagationPathInfoArray.cs │ │ │ │ ├── AkPropagationPathInfoArray.cs.meta │ │ │ │ ├── AkSoundEngine.cs │ │ │ │ ├── AkSoundEngine.cs.meta │ │ │ │ ├── AkSoundPathInfoArray.cs │ │ │ │ ├── AkSoundPathInfoArray.cs.meta │ │ │ │ ├── AkTriangleArray.cs │ │ │ │ ├── AkTriangleArray.cs.meta │ │ │ │ ├── AkUtilities.cs │ │ │ │ ├── AkUtilities.cs.meta │ │ │ │ ├── WwiseTypes.cs │ │ │ │ └── WwiseTypes.cs.meta │ │ ├── AkWwiseSDKVersion.h │ │ ├── AkWwiseSDKVersion.h.meta │ │ ├── Components.meta │ │ ├── Components │ │ │ ├── AkAmbient.cs │ │ │ ├── AkAmbient.cs.meta │ │ │ ├── AkAudioListener.cs │ │ │ ├── AkAudioListener.cs.meta │ │ │ ├── AkBank.cs │ │ │ ├── AkBank.cs.meta │ │ │ ├── AkDragDropHelper.cs │ │ │ ├── AkDragDropHelper.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 │ │ │ ├── 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 │ │ │ ├── AkRoomPortal.cs │ │ │ ├── AkRoomPortal.cs.meta │ │ │ ├── AkRoomPortalObstruction.cs │ │ │ ├── AkRoomPortalObstruction.cs.meta │ │ │ ├── AkSoundEngineController.cs │ │ │ ├── AkSoundEngineController.cs.meta │ │ │ ├── AkSpatialAudioBase.cs │ │ │ ├── AkSpatialAudioBase.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 │ │ │ ├── AkTriggerMouseDown.cs │ │ │ ├── AkTriggerMouseDown.cs.meta │ │ │ ├── AkTriggerMouseEnter.cs │ │ │ ├── AkTriggerMouseEnter.cs.meta │ │ │ ├── AkTriggerMouseExit.cs │ │ │ ├── AkTriggerMouseExit.cs.meta │ │ │ ├── AkTriggerMouseUp.cs │ │ │ ├── AkTriggerMouseUp.cs.meta │ │ │ ├── AkUnityEventHandler.cs │ │ │ └── AkUnityEventHandler.cs.meta │ │ ├── Plugins.meta │ │ └── Plugins │ │ │ ├── Mac.meta │ │ │ ├── Mac │ │ │ ├── DSP.meta │ │ │ ├── DSP │ │ │ │ ├── libAkConvolutionReverb.bundle │ │ │ │ ├── libAkConvolutionReverb.bundle.meta │ │ │ │ ├── libAkFlanger.bundle │ │ │ │ ├── libAkFlanger.bundle.meta │ │ │ │ ├── libAkGuitarDistortion.bundle │ │ │ │ ├── libAkGuitarDistortion.bundle.meta │ │ │ │ ├── libAkHarmonizer.bundle │ │ │ │ ├── libAkHarmonizer.bundle.meta │ │ │ │ ├── libAkMotion.bundle │ │ │ │ ├── libAkMotion.bundle.meta │ │ │ │ ├── libAkPitchShifter.bundle │ │ │ │ ├── libAkPitchShifter.bundle.meta │ │ │ │ ├── libAkRecorder.bundle │ │ │ │ ├── libAkRecorder.bundle.meta │ │ │ │ ├── libAkReflect.bundle │ │ │ │ ├── libAkReflect.bundle.meta │ │ │ │ ├── libAkRoomVerb.bundle │ │ │ │ ├── libAkRoomVerb.bundle.meta │ │ │ │ ├── libAkSoundSeedAir.bundle │ │ │ │ ├── libAkSoundSeedAir.bundle.meta │ │ │ │ ├── libAkSoundSeedImpact.bundle │ │ │ │ ├── libAkSoundSeedImpact.bundle.meta │ │ │ │ ├── libAkStereoDelay.bundle │ │ │ │ ├── libAkStereoDelay.bundle.meta │ │ │ │ ├── libAkSynthOne.bundle │ │ │ │ ├── libAkSynthOne.bundle.meta │ │ │ │ ├── libAkTimeStretch.bundle │ │ │ │ ├── libAkTimeStretch.bundle.meta │ │ │ │ ├── libAkTremolo.bundle │ │ │ │ ├── libAkTremolo.bundle.meta │ │ │ │ ├── libAuro.bundle │ │ │ │ ├── libAuro.bundle.meta │ │ │ │ ├── libCrankcaseAudioREVModelPlayer.bundle │ │ │ │ ├── libCrankcaseAudioREVModelPlayer.bundle.meta │ │ │ │ ├── libMcDSP.bundle │ │ │ │ └── libMcDSP.bundle.meta │ │ │ ├── Debug.meta │ │ │ ├── Debug │ │ │ │ ├── AkSoundEngine.bundle.meta │ │ │ │ └── AkSoundEngine.bundle │ │ │ │ │ ├── Contents.meta │ │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── Info.plist.meta │ │ │ │ │ ├── MacOS.meta │ │ │ │ │ ├── MacOS │ │ │ │ │ ├── AkSoundEngine │ │ │ │ │ └── AkSoundEngine.meta │ │ │ │ │ ├── Resources.meta │ │ │ │ │ └── Resources │ │ │ │ │ ├── en.lproj.meta │ │ │ │ │ ├── en.lproj │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── InfoPlist.strings.meta │ │ │ │ │ ├── readme.txt │ │ │ │ │ └── readme.txt.meta │ │ │ ├── Profile.meta │ │ │ ├── Profile │ │ │ │ ├── AkSoundEngine.bundle.meta │ │ │ │ └── AkSoundEngine.bundle │ │ │ │ │ ├── Contents.meta │ │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── Info.plist.meta │ │ │ │ │ ├── MacOS.meta │ │ │ │ │ ├── MacOS │ │ │ │ │ ├── AkSoundEngine │ │ │ │ │ └── AkSoundEngine.meta │ │ │ │ │ ├── Resources.meta │ │ │ │ │ └── Resources │ │ │ │ │ ├── en.lproj.meta │ │ │ │ │ ├── en.lproj │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── InfoPlist.strings.meta │ │ │ │ │ ├── readme.txt │ │ │ │ │ └── readme.txt.meta │ │ │ ├── Release.meta │ │ │ └── Release │ │ │ │ ├── AkSoundEngine.bundle.meta │ │ │ │ └── AkSoundEngine.bundle │ │ │ │ ├── Contents.meta │ │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── Info.plist.meta │ │ │ │ ├── MacOS.meta │ │ │ │ ├── MacOS │ │ │ │ ├── AkSoundEngine │ │ │ │ └── AkSoundEngine.meta │ │ │ │ ├── Resources.meta │ │ │ │ └── Resources │ │ │ │ ├── en.lproj.meta │ │ │ │ ├── en.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── InfoPlist.strings.meta │ │ │ │ ├── readme.txt │ │ │ │ └── readme.txt.meta │ │ │ ├── Windows.meta │ │ │ └── Windows │ │ │ ├── x86.meta │ │ │ ├── x86 │ │ │ ├── DSP.meta │ │ │ ├── DSP │ │ │ │ ├── AkConvolutionReverb.dll │ │ │ │ ├── AkConvolutionReverb.dll.meta │ │ │ │ ├── AkFlanger.dll │ │ │ │ ├── AkFlanger.dll.meta │ │ │ │ ├── AkGuitarDistortion.dll │ │ │ │ ├── AkGuitarDistortion.dll.meta │ │ │ │ ├── AkHarmonizer.dll │ │ │ │ ├── AkHarmonizer.dll.meta │ │ │ │ ├── AkMotion.dll │ │ │ │ ├── AkMotion.dll.meta │ │ │ │ ├── AkPitchShifter.dll │ │ │ │ ├── AkPitchShifter.dll.meta │ │ │ │ ├── AkRecorder.dll │ │ │ │ ├── AkRecorder.dll.meta │ │ │ │ ├── AkReflect.dll │ │ │ │ ├── AkReflect.dll.meta │ │ │ │ ├── AkSoundSeedAir.dll │ │ │ │ ├── AkSoundSeedAir.dll.meta │ │ │ │ ├── AkSoundSeedImpact.dll │ │ │ │ ├── AkSoundSeedImpact.dll.meta │ │ │ │ ├── AkStereoDelay.dll │ │ │ │ ├── AkStereoDelay.dll.meta │ │ │ │ ├── AkSynthOne.dll │ │ │ │ ├── AkSynthOne.dll.meta │ │ │ │ ├── AkTimeStretch.dll │ │ │ │ ├── AkTimeStretch.dll.meta │ │ │ │ ├── AkTremolo.dll │ │ │ │ ├── AkTremolo.dll.meta │ │ │ │ ├── Auro.dll │ │ │ │ ├── Auro.dll.meta │ │ │ │ ├── CrankcaseAudioREVModelPlayer.dll │ │ │ │ ├── CrankcaseAudioREVModelPlayer.dll.meta │ │ │ │ ├── McDSP.dll │ │ │ │ ├── McDSP.dll.meta │ │ │ │ ├── iZotope.dll │ │ │ │ └── iZotope.dll.meta │ │ │ ├── Debug.meta │ │ │ ├── Debug │ │ │ │ ├── AkSoundEngine.dll │ │ │ │ └── AkSoundEngine.dll.meta │ │ │ ├── Profile.meta │ │ │ ├── Profile │ │ │ │ ├── AkSoundEngine.dll │ │ │ │ └── AkSoundEngine.dll.meta │ │ │ ├── Release.meta │ │ │ └── Release │ │ │ │ ├── AkSoundEngine.dll │ │ │ │ └── AkSoundEngine.dll.meta │ │ │ ├── x86_64.meta │ │ │ └── x86_64 │ │ │ ├── DSP.meta │ │ │ ├── DSP │ │ │ ├── AkConvolutionReverb.dll │ │ │ ├── AkConvolutionReverb.dll.meta │ │ │ ├── AkFlanger.dll │ │ │ ├── AkFlanger.dll.meta │ │ │ ├── AkGuitarDistortion.dll │ │ │ ├── AkGuitarDistortion.dll.meta │ │ │ ├── AkHarmonizer.dll │ │ │ ├── AkHarmonizer.dll.meta │ │ │ ├── AkMotion.dll │ │ │ ├── AkMotion.dll.meta │ │ │ ├── AkPitchShifter.dll │ │ │ ├── AkPitchShifter.dll.meta │ │ │ ├── AkRecorder.dll │ │ │ ├── AkRecorder.dll.meta │ │ │ ├── AkReflect.dll │ │ │ ├── AkReflect.dll.meta │ │ │ ├── AkSoundSeedAir.dll │ │ │ ├── AkSoundSeedAir.dll.meta │ │ │ ├── AkSoundSeedImpact.dll │ │ │ ├── AkSoundSeedImpact.dll.meta │ │ │ ├── AkStereoDelay.dll │ │ │ ├── AkStereoDelay.dll.meta │ │ │ ├── AkSynthOne.dll │ │ │ ├── AkSynthOne.dll.meta │ │ │ ├── AkTimeStretch.dll │ │ │ ├── AkTimeStretch.dll.meta │ │ │ ├── AkTremolo.dll │ │ │ ├── AkTremolo.dll.meta │ │ │ ├── Auro.dll │ │ │ ├── Auro.dll.meta │ │ │ ├── CrankcaseAudioREVModelPlayer.dll │ │ │ ├── CrankcaseAudioREVModelPlayer.dll.meta │ │ │ ├── McDSP.dll │ │ │ ├── McDSP.dll.meta │ │ │ ├── iZotope.dll │ │ │ └── iZotope.dll.meta │ │ │ ├── Debug.meta │ │ │ ├── Debug │ │ │ ├── AkSoundEngine.dll │ │ │ └── AkSoundEngine.dll.meta │ │ │ ├── Profile.meta │ │ │ ├── Profile │ │ │ ├── AkSoundEngine.dll │ │ │ └── AkSoundEngine.dll.meta │ │ │ ├── Release.meta │ │ │ └── Release │ │ │ ├── AkSoundEngine.dll │ │ │ └── AkSoundEngine.dll.meta │ ├── Documentation.meta │ ├── Documentation │ │ ├── AppleCommon.meta │ │ ├── AppleCommon │ │ │ ├── en.meta │ │ │ ├── en │ │ │ │ ├── WwiseUnityIntegrationHelp_en.zip │ │ │ │ └── WwiseUnityIntegrationHelp_en.zip.meta │ │ │ ├── ja.meta │ │ │ ├── ja │ │ │ │ ├── WwiseUnityIntegrationHelp_ja.zip │ │ │ │ └── WwiseUnityIntegrationHelp_ja.zip.meta │ │ │ ├── zh.meta │ │ │ └── zh │ │ │ │ ├── WwiseUnityIntegrationHelp_zh.zip │ │ │ │ └── WwiseUnityIntegrationHelp_zh.zip.meta │ │ ├── Windows.meta │ │ └── Windows │ │ │ ├── en.meta │ │ │ ├── en │ │ │ ├── WwiseUnityIntegrationHelp_en.chm │ │ │ └── WwiseUnityIntegrationHelp_en.chm.meta │ │ │ ├── ja.meta │ │ │ ├── ja │ │ │ ├── WwiseUnityIntegrationHelp_ja.chm │ │ │ └── WwiseUnityIntegrationHelp_ja.chm.meta │ │ │ ├── zh.meta │ │ │ └── zh │ │ │ ├── WwiseUnityIntegrationHelp_zh.chm │ │ │ └── WwiseUnityIntegrationHelp_zh.chm.meta │ ├── Editor.meta │ ├── Editor │ │ ├── ProjectData.meta │ │ ├── ProjectData │ │ │ ├── AkWwiseProjectData 1.asset │ │ │ ├── AkWwiseProjectData 1.asset.meta │ │ │ ├── AkWwiseProjectData 2.asset │ │ │ ├── AkWwiseProjectData 2.asset.meta │ │ │ ├── AkWwiseProjectData 3.asset │ │ │ ├── AkWwiseProjectData 3.asset.meta │ │ │ ├── AkWwiseProjectData 4.asset │ │ │ ├── AkWwiseProjectData 4.asset.meta │ │ │ ├── AkWwiseProjectData 5.asset │ │ │ ├── AkWwiseProjectData 5.asset.meta │ │ │ ├── AkWwiseProjectData 6.asset │ │ │ ├── AkWwiseProjectData 6.asset.meta │ │ │ ├── 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 │ │ │ ├── AkEventCallbackDataDrawer.cs │ │ │ ├── AkEventCallbackDataDrawer.cs.meta │ │ │ ├── AkEventInspector.cs │ │ │ ├── AkEventInspector.cs.meta │ │ │ ├── AkEventPlayableInspector.cs │ │ │ ├── AkEventPlayableInspector.cs.meta │ │ │ ├── AkGameObjListenerListDrawer.cs │ │ │ ├── AkGameObjListenerListDrawer.cs.meta │ │ │ ├── AkGameObjectInspector.cs │ │ │ ├── AkGameObjectInspector.cs.meta │ │ │ ├── AkInitializerInspector.cs │ │ │ ├── AkInitializerInspector.cs.meta │ │ │ ├── AkPortalManager.cs │ │ │ ├── AkPortalManager.cs.meta │ │ │ ├── AkRTPCPlayableInspector.cs │ │ │ ├── AkRTPCPlayableInspector.cs.meta │ │ │ ├── AkRTPCTrackInspector.cs │ │ │ ├── AkRTPCTrackInspector.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 │ │ │ ├── AkWwiseXMLWatcher.cs │ │ │ └── AkWwiseXMLWatcher.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 │ │ │ ├── AkSceneUtils.cs │ │ │ ├── AkSceneUtils.cs.meta │ │ │ ├── AkUnitySettingsParser.cs │ │ │ ├── AkUnitySettingsParser.cs.meta │ │ │ ├── AkWSAUtils.cs │ │ │ ├── AkWSAUtils.cs.meta │ │ │ ├── AkWwisePostImportCallbackSetup.cs │ │ │ ├── AkWwisePostImportCallbackSetup.cs.meta │ │ │ ├── AkWwiseSettingsWindow.cs │ │ │ ├── AkWwiseSettingsWindow.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 │ │ │ ├── CallbackFlagsDrawer.cs │ │ │ ├── CallbackFlagsDrawer.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 │ │ │ ├── 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 │ │ │ ├── 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 │ ├── Tools.meta │ ├── Tools │ │ ├── WwiseIDConverter.py │ │ └── WwiseIDConverter.py.meta │ ├── Version.txt │ └── Version.txt.meta ├── WwiseSettings.xml ├── WwiseSettings.xml.meta ├── Wwise_Project.meta └── Wwise_Project │ ├── Actor-Mixer Hierarchy.meta │ ├── Actor-Mixer Hierarchy │ ├── Default Work Unit.wwu │ └── Default Work Unit.wwu.meta │ ├── Attenuations.meta │ ├── Attenuations │ ├── Default Work Unit.wwu │ └── Default Work Unit.wwu.meta │ ├── Audio Devices.meta │ ├── Audio Devices │ ├── Default Work Unit.wwu │ └── Default Work Unit.wwu.meta │ ├── Control Surface Sessions.meta │ ├── Control Surface Sessions │ ├── Default Work Unit.wwu │ └── Default Work Unit.wwu.meta │ ├── Conversion Settings.meta │ ├── Conversion Settings │ ├── Default Work Unit.wwu │ ├── Default Work Unit.wwu.meta │ ├── Factory Conversion Settings.wwu │ └── Factory Conversion Settings.wwu.meta │ ├── Dynamic Dialogue.meta │ ├── Dynamic Dialogue │ ├── Default Work Unit.wwu │ └── Default Work Unit.wwu.meta │ ├── Effects.meta │ ├── Effects │ ├── Default Work Unit.wwu │ ├── Default Work Unit.wwu.meta │ ├── Factory Effects.wwu │ └── Factory Effects.wwu.meta │ ├── Events.meta │ ├── Events │ ├── Default Work Unit.wwu │ └── Default Work Unit.wwu.meta │ ├── Game Parameters.meta │ ├── Game Parameters │ ├── Default Work Unit.wwu │ └── Default Work Unit.wwu.meta │ ├── GeneratedSoundBanks.meta │ ├── GeneratedSoundBanks │ ├── Windows.meta │ └── Windows │ │ ├── DecodedBanks.meta │ │ ├── DecodedBanks │ │ └── English(US).meta │ │ ├── Init.bnk │ │ ├── Init.bnk.meta │ │ ├── Init.txt │ │ ├── Init.txt.meta │ │ ├── PluginInfo.xml │ │ ├── PluginInfo.xml.meta │ │ ├── SoundbanksInfo.xml │ │ ├── SoundbanksInfo.xml.meta │ │ ├── TEST.bnk │ │ ├── TEST.bnk.meta │ │ ├── TEST.txt │ │ ├── TEST.txt.meta │ │ ├── WIP_TITLE.bnk │ │ ├── WIP_TITLE.bnk.meta │ │ ├── WIP_TITLE.txt │ │ └── WIP_TITLE.txt.meta │ ├── IncrementalSoundBankData.xml │ ├── IncrementalSoundBankData.xml.meta │ ├── Interactive Music Hierarchy.meta │ ├── Interactive Music Hierarchy │ ├── Default Work Unit.wwu │ └── Default Work Unit.wwu.meta │ ├── Master-Mixer Hierarchy.meta │ ├── Master-Mixer Hierarchy │ ├── Default Work Unit.wwu │ └── Default Work Unit.wwu.meta │ ├── Mixing Sessions.meta │ ├── Mixing Sessions │ ├── Default Work Unit.wwu │ └── Default Work Unit.wwu.meta │ ├── Modulators.meta │ ├── Modulators │ ├── Default Work Unit.wwu │ └── Default Work Unit.wwu.meta │ ├── Presets.meta │ ├── Presets │ ├── Default Work Unit.wwu │ └── Default Work Unit.wwu.meta │ ├── ProfilingSession12.prof │ ├── ProfilingSession12.prof.meta │ ├── ProfilingSession13.prof │ ├── ProfilingSession13.prof.meta │ ├── ProfilingSession14.prof │ ├── ProfilingSession14.prof.meta │ ├── ProfilingSession15.prof │ ├── ProfilingSession15.prof.meta │ ├── ProfilingSession16.prof │ ├── ProfilingSession16.prof.meta │ ├── Queries.meta │ ├── Queries │ ├── Default Work Unit.wwu │ ├── Default Work Unit.wwu.meta │ ├── Factory Queries.wwu │ └── Factory Queries.wwu.meta │ ├── SoundBanks.meta │ ├── SoundBanks │ ├── Default Work Unit.wwu │ └── Default Work Unit.wwu.meta │ ├── Soundcaster Sessions.meta │ ├── Soundcaster Sessions │ ├── Default Work Unit.wwu │ └── Default Work Unit.wwu.meta │ ├── States.meta │ ├── States │ ├── Default Work Unit.wwu │ └── Default Work Unit.wwu.meta │ ├── Switches.meta │ ├── Switches │ ├── Default Work Unit.wwu │ └── Default Work Unit.wwu.meta │ ├── Triggers.meta │ ├── Triggers │ ├── Default Work Unit.wwu │ └── Default Work Unit.wwu.meta │ ├── Virtual Acoustics.meta │ ├── Virtual Acoustics │ ├── Default Work Unit.wwu │ └── Default Work Unit.wwu.meta │ ├── WIP TITLE.JOON.validationcache │ ├── WIP TITLE.JOON.validationcache.meta │ ├── WIP TITLE.JOON.wsettings │ ├── WIP TITLE.JOON.wsettings.meta │ ├── WIP TITLE.wproj │ └── WIP TITLE.wproj.meta ├── Doc └── images │ ├── 2018-10-30_Screenshot-01.png │ ├── 2018-10-30_Screenshot-03.png │ ├── 2018-10-30_Screenshot-06.png │ ├── 2018-10-30_Screenshot-08.png │ ├── 2018-10-30_Screenshot-14.png │ └── 2018-10-30_Screenshot-18.gif ├── LICENSE.txt ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset └── UnityConnectSettings.asset ├── README.md └── UnityPackageManager └── manifest.json /Assets/Animations.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c285d2d17adb3c4fae59b6944372cd0 3 | folderAsset: yes 4 | timeCreated: 1521946534 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Environment.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef8c847c24c8175498a3924d4c68e9ed 3 | folderAsset: yes 4 | timeCreated: 1522527590 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Environment/CrateAnim.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b6464c2f47ffcc49bfe48e32abc5eab 3 | timeCreated: 1522566858 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 7400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Environment/CrateAnimController.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4343e1f74a130304ab14ff8f25bb965e 3 | timeCreated: 1522566948 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 9100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Environment/Door.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 557bdeefa6d7370488f2347882357e2c 3 | timeCreated: 1521993333 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 9100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Environment/RockAnimController.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2753a8020cb8360479d352bfb61aa16e 3 | timeCreated: 1521992952 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 9100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Environment/RockDestroyAnim.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 406ed1442b93ad744aced94cedfbe0d7 3 | timeCreated: 1521992952 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 7400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Environment/boite_0.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ee65b8886ec75a4c8acefb70b1b58ad 3 | timeCreated: 1522566858 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 9100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Environment/bugged_tile.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b1cd685cc2b3504693e5934081199f5 3 | timeCreated: 1522000580 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 7400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Environment/bugged_tiles.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ec1c1ecb76da2e49be4f42fa0f6f70c 3 | timeCreated: 1522000580 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 9100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Environment/door_close.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c66c57f5bf033d34c974bf0e5982e41d 3 | timeCreated: 1521997958 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 7400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Environment/door_open.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7bd7e4f433ef55741a42b24d05d18952 3 | timeCreated: 1521993333 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 7400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Environment/sword.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 735e636373e956e43ae21df10d86fce2 3 | timeCreated: 1521992715 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 9100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Environment/sword_on_ground.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 94d949836aa2da14297b3e3701c68552 3 | timeCreated: 1521992715 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 7400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Environment/torch.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b176d1771e253d4cb2cf90321bf1bfa 3 | timeCreated: 1521997748 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 7400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Environment/torche_0.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a388b137f947244dae45a858337889a 3 | timeCreated: 1521997748 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 9100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Game.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 647ee009e87a3e540b11ebec5e4a2041 3 | folderAsset: yes 4 | timeCreated: 1522527615 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Game/StartText.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a49a4ffdfcb52c54c9fce78330ef4b02 3 | timeCreated: 1522002999 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 7400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Game/StartText.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f7d4281b447be64fa225b84b064c7b0 3 | timeCreated: 1522003025 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 9100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Monsters.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d595c26a04659f4a9647e5ffd25046b 3 | folderAsset: yes 4 | timeCreated: 1522527501 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Monsters/BossAnim.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1db193162d5f924c9d56e9bfa7a8ef0 3 | timeCreated: 1522000923 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 7400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Monsters/BossAnimController.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 261a4280c0e3b1544aecd34e780c23f9 3 | timeCreated: 1522000923 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 9100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Monsters/BossGlitchAnim.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56558546d2d9b37498bfa68968222e82 3 | timeCreated: 1522001097 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 7400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Monsters/BossGlitchAnimController.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0bd8b109469dc0c4f93e351f7b802843 3 | timeCreated: 1522000923 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 9100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Monsters/MonsterAnim.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ebb3c294707af6f42affbc5a07a9308b 3 | timeCreated: 1521995819 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 7400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Monsters/MonsterAnimController.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 146c2bda8a4d779489ae575bbf1af950 3 | timeCreated: 1521996040 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 9100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Monsters/MonsterAnimGlitch.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c6d76d5d1c2fb043b8ae47b3479ecc2 3 | timeCreated: 1521995097 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 7400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Monsters/MonsterAnimGlitch.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1714bf077162e704e92734f6121f08c2 3 | timeCreated: 1521995097 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 9100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Player.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 510b681bd59175a43a177843ea4d864a 3 | folderAsset: yes 4 | timeCreated: 1522527173 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Player/AttackDownAnim.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49e84585c5cd4ef48bfe2055dd99b95e 3 | timeCreated: 1522537766 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 7400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Player/AttackLeftAnim.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1ad7f2b3cb0d9440b039a37517c264e 3 | timeCreated: 1522537757 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 7400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Player/AttackRightAnim.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12eb59230dc0e7e4d9f0e85c0026b285 3 | timeCreated: 1522531818 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 7400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Player/AttackUpAnim.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff00c954c5b3c7444a26c8eae26316a7 3 | timeCreated: 1522537776 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 7400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Player/IdleBackAnim.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84196bb224ad62040a43061c2f53a8ef 3 | timeCreated: 1521946634 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 7400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Player/IdleFrontAnim.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6353b7e489a94bf4282c6d7b49f3df09 3 | timeCreated: 1521946842 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 7400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Player/IdleLeftAnim.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49dc1876fb531d245b9457f4ecec0dac 3 | timeCreated: 1521988036 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 7400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Player/IdleRightAnim.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 962fe9fbcc45d094e9d741a94e7bfd92 3 | timeCreated: 1521946553 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 7400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Player/PickupSwordAnim.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9061a9f48e97564886a11a269fc5c82 3 | timeCreated: 1522531648 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 7400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Player/PlayerAnimController.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af16eced95665cb40814851a632d459f 3 | timeCreated: 1521946534 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 9100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Player/RunBackAnim.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7664178cf3848f4894c3d77bdd8200f 3 | timeCreated: 1521946828 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 7400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Player/RunFrontAnim.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c731f9e2ceadd9f41aea07f7eda26519 3 | timeCreated: 1521946855 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 7400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Player/RunLeftAnim.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f445569144003a4fae129e65b2198fd 3 | timeCreated: 1521988145 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 7400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/Player/RunRightAnim.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58187300a39ffcb4d8b93619d2558a83 3 | timeCreated: 1521946596 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 7400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/SpeechBubble.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bde2d4614c49d1f44b4f934264606849 3 | folderAsset: yes 4 | timeCreated: 1524159956 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/SpeechBubble/SpeechBubbleAnimController.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e722e46acad821428326d63e9d55816 3 | timeCreated: 1524160196 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 9100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/SpeechBubble/SpeechBubbleCloseAnim.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 644a995a8135bf44890114a721bc782c 3 | timeCreated: 1524160981 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 7400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/SpeechBubble/SpeechBubbleOpenAnim.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e50fbda06e45c21448c41d147364e407 3 | timeCreated: 1524160970 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 7400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 406864fa8f3048e43b8fe048a8470cb4 3 | folderAsset: yes 4 | timeCreated: 1522566901 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/UI/GameMenu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb9b6f95273090a4682f3f043bba172c 3 | folderAsset: yes 4 | timeCreated: 1522958234 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/UI/GameMenu/GameMenuAnimControllerUI.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e1e64293ad0c184dabf3c67e9445163 3 | timeCreated: 1522958133 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 9100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/UI/GameMenu/GameOverAnim.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9733e4fc79187d9408b89938d5a1e536 3 | timeCreated: 1522963831 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 7400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/UI/GameMenu/HideAllAnim.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4e44433ff541954994bf642814e9939 3 | timeCreated: 1522965883 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 7400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/UI/GameMenu/ShippedTooSoon.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 380d8c158879f8e4ba4864aa2932eb54 3 | timeCreated: 1522981739 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 9100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/UI/GameMenu/TitleAnim.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a31f1b360e3bd5e45b7b66397cc8c9fe 3 | timeCreated: 1522001896 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 7400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/UI/GameMenu/VictoryAnim.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f332d44b5badd3e4aae9fbb982deed68 3 | timeCreated: 1522963840 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 7400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/UI/GameState.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c4eda9685496cc4f9c70dbdadb6e235 3 | folderAsset: yes 4 | timeCreated: 1522958222 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/UI/GameState/GameStatAnimControllerUI.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c675327698b7fd499236fab850a9ce1 3 | timeCreated: 1522945603 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 9100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/UI/GameState/PickupGoalAnimUI.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aabd9b26013e2b24ba6656273430f5b6 3 | timeCreated: 1522955249 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 7400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Animations/UI/GameState/TakeDamageAnimUI.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e639a1f13ddbae47b14ff319e7e7df1 3 | timeCreated: 1522945583 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 7400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Fonts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ee160131794478438ca7f5a653237db 3 | folderAsset: yes 4 | timeCreated: 1522975993 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Fonts/PIXELADE.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Fonts/PIXELADE.TTF -------------------------------------------------------------------------------- /Assets/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40788a22953712b4f9a06e4c83a2845c 3 | folderAsset: yes 4 | timeCreated: 1521860459 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Materials/PlayerTestMat.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 039c96d349530054c806418824fee3f5 3 | timeCreated: 1521860476 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 2100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Materials/Switch.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ddfe62ad1b59e748a999e720e1fa929 3 | timeCreated: 1521983579 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 2100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Materials/Walls.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4fe829900fe9c4e419c9c5d5b5072cc1 3 | timeCreated: 1521937312 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 2100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Palette.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad9cb5cb9f98ac94c8bc1c141ea086a5 3 | folderAsset: yes 4 | timeCreated: 1521864501 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Palette/Room_Palette.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d094fdee88675e4ba50464ea8418432 3 | timeCreated: 1521908845 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 100100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96950a9977abe174ca99683bd6f7d766 3 | folderAsset: yes 4 | timeCreated: 1521902231 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Prefabs/Environment.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4f368a9c1b09e34a807a1f7ca97e9bf 3 | folderAsset: yes 4 | timeCreated: 1521907444 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Prefabs/Environment/GameMap.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6bb10c61c340964ebff4158a09dbf8c 3 | timeCreated: 1521903302 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 100100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Prefabs/Environment/GameMapCreator.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2918a0b9ba432164580632e5defc16a7 3 | timeCreated: 1521940230 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 100100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Prefabs/Game.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d099dcc99102d5f459d4f7154b163d41 3 | folderAsset: yes 4 | timeCreated: 1521902686 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Prefabs/Game/Directional_Light.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 55077b9e4a7b7c247b9799dfe26c62ef 3 | timeCreated: 1521903333 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 100100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Prefabs/Game/GameManager.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 923477ca46d864247a859a50b5e174fc 3 | timeCreated: 1521919922 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 100100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Prefabs/Game/Main Camera.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d3e8aadb50114e4e8eb319e459a4156 3 | timeCreated: 1521902690 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 100100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Prefabs/Game/SpawnPoint.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12f40d5dd32026a49aa6d00a626e1f2c 3 | timeCreated: 1521953181 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 100100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Prefabs/Player.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb2cef75e34b5364eb6529cb01aca0db 3 | folderAsset: yes 4 | timeCreated: 1521920016 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Prefabs/Player/Player.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae40837eb8a5b2c42b544d9c25fe173f 3 | timeCreated: 1521920003 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 100100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Prefabs/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d63a898e5b9f55848b7ac03665297d86 3 | folderAsset: yes 4 | timeCreated: 1521924994 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Prefabs/UI/CanvasUI_GameStat.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a170070522c17594ca2ac673daf16f12 3 | timeCreated: 1522947187 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 100100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Prefabs/UI/CanvasUI_MenuGame.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47e6c9a4150e39d4fb15023ff6d9ab6f 3 | timeCreated: 1521990578 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 100100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Prefabs/UI/CanvasUI_WelcomeMenu.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc34f1be969445748b7c4967fe848b01 3 | timeCreated: 1522981528 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 100100000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12dd473aa8d917d41a06074328a65f1a 3 | folderAsset: yes 4 | timeCreated: 1523562307 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Resources/Bubbles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45e1088192427584687fbc5b277306c3 3 | folderAsset: yes 4 | timeCreated: 1524165291 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Resources/Bubbles/Rooms.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 936d9e51a8f94914eb28f7ae1a5a337f 3 | folderAsset: yes 4 | timeCreated: 1524167452 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Resources/Bubbles/Rooms/BossGlitchMsg.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f92a1fc9db45f9243aac901759c7076b 3 | timeCreated: 1524168011 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Resources/Bubbles/Rooms/BossUglyMsg.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: edc68d96084a8154da94d897632e61dc 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Resources/Bubbles/Rooms/BuggedMonsterMsg.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6084a545df87e0b4c8792addfa518ea5 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Resources/Bubbles/Rooms/GhostBridgeMsg.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f14f13b7e99f054698d95c6a8a5bc48 3 | timeCreated: 1524169786 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Resources/Bubbles/Rooms/GlitchedShortcutMsg.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a07020bd0402ad44e97048c926d21aef 3 | timeCreated: 1524169316 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Resources/Bubbles/Rooms/NiceTryMsg.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b47a26bfb9005fe4fa74cd5542dcbbcd 3 | timeCreated: 1524795328 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Resources/Bubbles/Rooms/NoButtomMsg.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e33f6d2e129f064694f02ac780e8eab 3 | timeCreated: 1524794409 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Resources/Bubbles/Rooms/NopeMsg.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 067c96313e0f50446956537433146d29 3 | timeCreated: 1524795632 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Resources/Bubbles/Rooms/PickableHammerMsg.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 867f2cdb6faecdb47b9a7e56b8d05998 3 | timeCreated: 1524169204 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Resources/Bubbles/Rooms/RockAloneMsg.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1dd8014d68f99ac4ca558f585f67c159 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Resources/Bubbles/Rooms/RockMsg.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1fdb73b1868cbe648b1f1a9e577abc61 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Resources/Bubbles/Rooms/ShortcutMsg.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c09a26d54c93bd46895c3a13ec4a764 3 | timeCreated: 1524167471 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Resources/Bubbles/Rooms/SwordQuestionMsg.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0fbbad3f3d351074698bb1f17e10de28 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Resources/Bubbles/Rooms/TrollMsg.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9094d6c472b48144cbdc43230a7f599a 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Resources/Bubbles/Rooms/TutorialMsg.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9c64272c1810d848828f09cc4ce72f8 3 | timeCreated: 1524794902 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Resources/Bubbles/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88ea39d1230fed240b6f29de9aa78732 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Resources/Bubbles/UI/WelcomeControlsPCMsg.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1abcf2a4146206445ae36333729054ed 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Resources/Bubbles/UI/WelcomeTrollMsg.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a82a38d0c0973d40afa974a0686997a 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Resources/Bubbles/Warning.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 093a3e0eb67325f45a668899ce2735dd 3 | folderAsset: yes 4 | timeCreated: 1524167050 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Resources/Bubbles/Warning/EnemyGlitchMsg.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc8beba3badd2f141b70b88c829e96dc 3 | timeCreated: 1524167072 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Resources/Bubbles/Warning/NoWeaponMsg.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6d457a2a078ded42a57590f872bd916 3 | timeCreated: 1524167057 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Resources/ScoreDataSave.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d33cf209a9ab70f4ba43d9f0a827d871 3 | timeCreated: 1523562316 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Resources/ScoreDataSave_Debug.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90c86304b66ecce4db2df6db78f74512 3 | timeCreated: 1523562316 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c50d03c923ba654d9b17a2a574025a1 3 | folderAsset: yes 4 | timeCreated: 1521859281 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Scenes/Main_Scene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1a1a5b399d123344b7d7af618cde616 3 | timeCreated: 1521941866 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scenes/MenuWelcome.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8238bfa5e817cda489625129791fe0fc 3 | timeCreated: 1521998322 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fab9c783fb1f6174b95251e7689a8896 3 | folderAsset: yes 4 | timeCreated: 1521859884 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Scripts/Game.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83fd15aea05afa94c8247c76ce28457f 3 | folderAsset: yes 4 | timeCreated: 1521898823 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Scripts/Game/GameMap.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03f775d827fbdd44bb6f72bd316754b3 3 | timeCreated: 1521898835 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Scripts/Game/ScoreData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54526c1e3f3409d41b41f9d6a0f8213b 3 | timeCreated: 1523557782 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Scripts/Player.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cdb1f62961097284dac4ea5c822a15ae 3 | folderAsset: yes 4 | timeCreated: 1521859912 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Scripts/Rooms.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 647835df5b890da4789a7af8eafe16f3 3 | folderAsset: yes 4 | timeCreated: 1522566172 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Scripts/Rooms/Pickable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8fa05370021f73b42b014bd56c21f9d1 3 | timeCreated: 1524164797 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Scripts/Rooms/Room.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b564d6b16ef6d24eb5b11cb8d1ebb6f 3 | timeCreated: 1521898846 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Scripts/Rooms/RoomDoor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa300394fdf5ca84a8e68e8157c0c29b 3 | timeCreated: 1521950583 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Scripts/Rooms/RoomGoal.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18e13a2888bbc1d429a475f5a4f0fd4a 3 | timeCreated: 1521956273 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Scripts/SpeechBubble.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4360fbb0a8705fc408e6aa16852f80b0 3 | folderAsset: yes 4 | timeCreated: 1524159976 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Scripts/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a936c1ea6bdf2a245aa8ea1a47f9e969 3 | folderAsset: yes 4 | timeCreated: 1521909019 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Scripts/UI/MenuManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27b4a1d8509e94e429ed4f82700bcef4 3 | timeCreated: 1522958316 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /Assets/Sprites.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45341d35e8616154d8ac33f02497740f 3 | folderAsset: yes 4 | timeCreated: 1521864516 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Sprites/Monsters.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e82db036e281c3e41b09b33684315acf 3 | folderAsset: yes 4 | timeCreated: 1522524849 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Sprites/Monsters/boss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Sprites/Monsters/boss.png -------------------------------------------------------------------------------- /Assets/Sprites/Monsters/boss_glitched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Sprites/Monsters/boss_glitched.png -------------------------------------------------------------------------------- /Assets/Sprites/Monsters/monstre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Sprites/Monsters/monstre.png -------------------------------------------------------------------------------- /Assets/Sprites/Monsters/monstre_glitched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Sprites/Monsters/monstre_glitched.png -------------------------------------------------------------------------------- /Assets/Sprites/Player.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74ff4ab143156234c9ccef7e163ef577 3 | folderAsset: yes 4 | timeCreated: 1522524475 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Sprites/Player/GetSword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Sprites/Player/GetSword.png -------------------------------------------------------------------------------- /Assets/Sprites/Player/adventurerWIP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Sprites/Player/adventurerWIP.png -------------------------------------------------------------------------------- /Assets/Sprites/Player/attackDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Sprites/Player/attackDown.png -------------------------------------------------------------------------------- /Assets/Sprites/Player/attackRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Sprites/Player/attackRight.png -------------------------------------------------------------------------------- /Assets/Sprites/Player/attackUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Sprites/Player/attackUp.png -------------------------------------------------------------------------------- /Assets/Sprites/Player/attackleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Sprites/Player/attackleft.png -------------------------------------------------------------------------------- /Assets/Sprites/Player/hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Sprites/Player/hammer.png -------------------------------------------------------------------------------- /Assets/Sprites/Player/hearts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Sprites/Player/hearts.png -------------------------------------------------------------------------------- /Assets/Sprites/Player/idlerun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Sprites/Player/idlerun.png -------------------------------------------------------------------------------- /Assets/Sprites/Player/idlerunleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Sprites/Player/idlerunleft.png -------------------------------------------------------------------------------- /Assets/Sprites/Player/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Sprites/Player/sword.png -------------------------------------------------------------------------------- /Assets/Sprites/Rooms.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f64ac9bba7d9ec34cb900dabc4417317 3 | folderAsset: yes 4 | timeCreated: 1522524447 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Sprites/Rooms/RoomTileSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Sprites/Rooms/RoomTileSet.png -------------------------------------------------------------------------------- /Assets/Sprites/Rooms/crate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Sprites/Rooms/crate.png -------------------------------------------------------------------------------- /Assets/Sprites/Rooms/door 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Sprites/Rooms/door 1.png -------------------------------------------------------------------------------- /Assets/Sprites/Rooms/door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Sprites/Rooms/door.png -------------------------------------------------------------------------------- /Assets/Sprites/Rooms/locked_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Sprites/Rooms/locked_door.png -------------------------------------------------------------------------------- /Assets/Sprites/Rooms/rocher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Sprites/Rooms/rocher.png -------------------------------------------------------------------------------- /Assets/Sprites/Rooms/rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Sprites/Rooms/rock.png -------------------------------------------------------------------------------- /Assets/Sprites/Rooms/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Sprites/Rooms/switch.png -------------------------------------------------------------------------------- /Assets/Sprites/Rooms/torche.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Sprites/Rooms/torche.png -------------------------------------------------------------------------------- /Assets/Sprites/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67b2dbbc60c2e7e438b8ba49879e05c1 3 | folderAsset: yes 4 | timeCreated: 1521940555 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Sprites/UI/bulleX4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Sprites/UI/bulleX4.png -------------------------------------------------------------------------------- /Assets/Sprites/UI/gameover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Sprites/UI/gameover.png -------------------------------------------------------------------------------- /Assets/Sprites/UI/quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Sprites/UI/quit.png -------------------------------------------------------------------------------- /Assets/Sprites/UI/restart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Sprites/UI/restart.png -------------------------------------------------------------------------------- /Assets/Sprites/UI/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Sprites/UI/start.png -------------------------------------------------------------------------------- /Assets/Sprites/UI/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Sprites/UI/title.png -------------------------------------------------------------------------------- /Assets/Sprites/UI/victory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Sprites/UI/victory.png -------------------------------------------------------------------------------- /Assets/StreamingAssets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f81466db4101f2418fd556a4934a29a 3 | folderAsset: yes 4 | timeCreated: 1521993803 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb64a5cd0c8c9514fbbd82ada92ada8f 3 | folderAsset: yes 4 | timeCreated: 1521993842 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio/GeneratedSoundBanks.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77b9bb2a79f0e2e4386f997870f91da8 3 | folderAsset: yes 4 | timeCreated: 1521993843 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/StreamingAssets/Audio/GeneratedSoundBanks/Wwise_IDs.h.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b2454e16b2fabc4dba71f9b099e0250 3 | timeCreated: 1521995972 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /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: bdca226e12a36b14c8e20af934da8160 3 | timeCreated: 1521993804 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Tiles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4b0aea4d4db0f8d4cb705bc10d5fbca0 3 | folderAsset: yes 4 | timeCreated: 1521864507 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dfe247b586068e44db03d9f2b6148f39 3 | folderAsset: yes 4 | timeCreated: 1521908923 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_0.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f8d61d6296c7564986da7174bcc1d7f 3 | timeCreated: 1521923482 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_1.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 142d433ffd77c1e49b747bea7cbaa941 3 | timeCreated: 1521923484 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_10.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e8480b45c2b43648a23d587e29fb3eb 3 | timeCreated: 1521923486 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_11.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee9607c301387664384ab4dd4e6f68b1 3 | timeCreated: 1521923486 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_12.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aacbfee1e0d99884e861bc89c871e6c0 3 | timeCreated: 1521923486 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_13.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18a6d821945db5948b0137766a1ab793 3 | timeCreated: 1521923487 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_14.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 622b5d0448f15914cbf15db590354cf3 3 | timeCreated: 1521923482 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_15.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6bcb5606ea7c2d64f85c0d4242c03050 3 | timeCreated: 1521923487 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_16.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d92a9ddc121291046a5c41fdefe26f77 3 | timeCreated: 1521923487 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_17.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0256a84fcb5e48249bb73c539975a7fa 3 | timeCreated: 1521923487 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_18.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 913140763a2bbbd4f92cf25666e560ae 3 | timeCreated: 1521923487 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_19.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19b71d6167debb8439a60c32a669bf57 3 | timeCreated: 1521923486 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_2.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 748ae230794373648b28031897f4de06 3 | timeCreated: 1521923485 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_20.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40cc45efb632f214ebf2beb275e17697 3 | timeCreated: 1521923484 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_21.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70c7509232861c04cb6b4e08ce856d96 3 | timeCreated: 1521923487 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_22.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db037815ba812aa49954e0307edf1e48 3 | timeCreated: 1521923487 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_23.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 179ddde0040386c4982c9e5a5d930cfa 3 | timeCreated: 1521923483 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_24.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f770254c9d8aed94c9408206f4f571fe 3 | timeCreated: 1521923485 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_25.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e41ddfb8d51a58f4b8613d14daaee8f8 3 | timeCreated: 1521923485 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_26.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2572762fe7173947a6d6ed0e565b013 3 | timeCreated: 1521923485 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_27.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96e774be91d4eea42b408519c52b8b19 3 | timeCreated: 1521923487 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_28.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2fe4acf207f6b74d81403a502bb0c9a 3 | timeCreated: 1521923483 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_29.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75e0cd09c2a687843b8aa02f728528d6 3 | timeCreated: 1521923482 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_3.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2cce3b2e5ac8ebd4ea8218339ae76309 3 | timeCreated: 1521923483 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_30.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f46c7c45579d8684bb1715f37a2cadfc 3 | timeCreated: 1521923488 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_31.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0006f41cb32a5694899773ef9dd48fa7 3 | timeCreated: 1521923488 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_32.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0749f6ad75dc7054db9d1fbc53f883be 3 | timeCreated: 1521923483 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_33.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09d27f63ef45ced4dbbe5f54e1e0499a 3 | timeCreated: 1521923488 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_34.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe26f110868bfde49886495f7037a877 3 | timeCreated: 1521923488 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_35.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba8a04d0032cce54087198ac70c48fdb 3 | timeCreated: 1521923486 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_36.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3c63bd9cc1ec1947805ad09c76b3871 3 | timeCreated: 1521923488 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_37.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 008ecff1c12cd384192588d4c25c10d6 3 | timeCreated: 1521923488 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_38.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 42b4c7b21c63c49439d19ae801e72603 3 | timeCreated: 1521923484 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_39.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f1f28e709d66da4ab0a7b4d34ada59a 3 | timeCreated: 1521923488 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_4.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c4a688b05c00054f9700dd150c4df42 3 | timeCreated: 1521923485 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_40.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8c8c8d6426591e47b5d5d70ca932fbe 3 | timeCreated: 1521923488 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_41.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d084cb4af3d7af644a72c459e1c59ffe 3 | timeCreated: 1521923483 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_42.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f4211bde6256b0459d2d09d7e6199c3 3 | timeCreated: 1521923489 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_43.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6459f7ad08ac41b418fb484b82d58968 3 | timeCreated: 1521923489 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_44.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 790182682a28845449b0d9bf40a35984 3 | timeCreated: 1521923485 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_45.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a3a278b035106d48b0ae78d5d1f64c1 3 | timeCreated: 1521923485 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_46.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e70add0223e3e745bc167fe1ea04824 3 | timeCreated: 1521923489 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_47.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5d1f612a360fee49a5be93b843940eb 3 | timeCreated: 1521923484 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_48.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae0220d489d60dc488c23c41583db5dd 3 | timeCreated: 1521923489 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_49.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25321d0bc6ab79646b7d28143333dcc4 3 | timeCreated: 1521923489 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_5.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5dcc5d891ca8a64daf6c6e72e339fd5 3 | timeCreated: 1521923484 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_50.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0777c863f3caca40b0f591be15908b0 3 | timeCreated: 1521923483 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_51.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba9e64a7ef65a4a4380fd692ca73a38f 3 | timeCreated: 1521923489 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_52.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae1c3693a04b6af42aa53c0cb3957a61 3 | timeCreated: 1521923482 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_53.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2aea0d3c97aba1f4faaa8bb4ad7508c0 3 | timeCreated: 1521923489 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_54.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 01287db26d9b8bf449b3a7f6b2f28e4e 3 | timeCreated: 1521923489 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_55.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8ee86d5e08dd04449778a866acecee8 3 | timeCreated: 1521923486 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_56.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0525f03fb6acbff45970203e0f7968ff 3 | timeCreated: 1521923485 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_57.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce5449b909addfc4fa81c32bbe63a4a6 3 | timeCreated: 1521923489 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_58.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 213dfa92ae6ffc6439df33540d0e58cb 3 | timeCreated: 1521923490 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_59.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8528a3ae76e6c73448080e87c84f22ac 3 | timeCreated: 1521923483 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_6.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31903a711b253424a94512933feaf70e 3 | timeCreated: 1521923483 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_60.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c32933a7d5d06634a883d2975917ce2d 3 | timeCreated: 1521923484 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_61.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8b87f5d882a37b40af235c98255a2f0 3 | timeCreated: 1521923484 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_62.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 526c06b8ec724484891362f87cc8774c 3 | timeCreated: 1521923484 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_63.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2158a83b565dfd48950429008688769 3 | timeCreated: 1521923482 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_64.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1dcfddcbe3d9c5944b323533202ea110 3 | timeCreated: 1521923484 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_65.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 26ab6a47d65d8c44d8f122878ce0c5eb 3 | timeCreated: 1521923483 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_66.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f8d5a61546980b45abb53f34334c0ef 3 | timeCreated: 1521923490 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_67.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 184475b9586566e418087abf946efe51 3 | timeCreated: 1521923490 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_68.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5706da5efb7e5a64ca51a450034a2e6d 3 | timeCreated: 1521923490 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_69.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10c704a9c9f1eeb4ba20fd2ec4617096 3 | timeCreated: 1521923490 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_7.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64a3d967b7bfc8e4db46888ade145731 3 | timeCreated: 1521923486 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_70.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52db5b6597807124c87253132e00a46f 3 | timeCreated: 1521923490 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_71.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0773531eac709824ca37036d9802bf06 3 | timeCreated: 1521923490 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_72.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e01bb0f4375c2042a4aef292dc309d3 3 | timeCreated: 1521923490 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_73.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8bf055ce14e66e45bbcaaf7054ff520 3 | timeCreated: 1521923491 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_74.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c8d367f4f2c41144b30a4dbc6f1c784 3 | timeCreated: 1521923491 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_75.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 587bb49e9324dd0488fcd518b4bc0fe0 3 | timeCreated: 1521923491 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_76.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 389292313a0385e448b48f72bedce2ef 3 | timeCreated: 1521923491 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_77.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2cb302749473c0a47b9e1d1549ed5a93 3 | timeCreated: 1521923491 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_78.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 404bc715ab5b1c6409e97e99c2501949 3 | timeCreated: 1521923491 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_79.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2d3dde56f43b824ab70bbb58e32f40d 3 | timeCreated: 1521923491 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_8.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2659fdf061c063747bba92f33108837b 3 | timeCreated: 1521923486 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_80.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb7e593a6badd75469c3a3fca68087db 3 | timeCreated: 1521923491 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_81.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a33d757860b981f47abda91748080b6b 3 | timeCreated: 1521923492 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_82.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09ad611a4f38da74495c7494af9b394a 3 | timeCreated: 1521923492 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_83.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09750a3b5ff87c249afcc93bccd74437 3 | timeCreated: 1521923492 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_84.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5eee1772baa0d514ea286998d6ca4781 3 | timeCreated: 1521923492 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Tiles/Rooms/tilesetV1_9.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59903401b5647894bb6bcda4b114e5a8 3 | timeCreated: 1521923486 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4aaa1d62d7b52d94895901423770e02e 3 | folderAsset: yes 4 | timeCreated: 1521993803 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27d1f9e82eb1f184fad0883d532a652c 3 | folderAsset: yes 4 | timeCreated: 1521993803 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/API.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c4b3e90dc2dc3647a118562a8b60a8b 3 | folderAsset: yes 4 | timeCreated: 1521993804 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/API/Generated.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d1544743f0153e468b73a8fb2007412 3 | folderAsset: yes 4 | timeCreated: 1521993804 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/API/Generated/Common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60baee81df11225408d39fbf18d6da4f 3 | folderAsset: yes 4 | timeCreated: 1521993804 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/API/Generated/Mac.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41574fedf3b3e2d45a2c3479f06e10d1 3 | folderAsset: yes 4 | timeCreated: 1521993804 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/API/Generated/Windows.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ead6520f8dc8934e85f1b2004a77fbe 3 | folderAsset: yes 4 | timeCreated: 1521993805 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/API/Handwritten.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 33e151d9452de804c9633980ddd819e8 3 | folderAsset: yes 4 | timeCreated: 1521993804 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Components.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d8dd5824e9e3f740b3100212c77f84b 3 | folderAsset: yes 4 | timeCreated: 1521993804 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6f3aed026092864c87e7cd6589ae84f 3 | folderAsset: yes 4 | timeCreated: 1521993804 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a36f4351414873f41a1160441ed5dd48 3 | folderAsset: yes 4 | timeCreated: 1521993804 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34ef5b7184e786e4fb8c52575ab138c6 3 | folderAsset: yes 4 | timeCreated: 1521993804 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkConvolutionReverb.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkConvolutionReverb.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkFlanger.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkFlanger.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkGuitarDistortion.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkGuitarDistortion.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkHarmonizer.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkHarmonizer.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkMotion.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkMotion.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkPitchShifter.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkPitchShifter.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkRecorder.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkRecorder.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkReflect.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkReflect.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkRoomVerb.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkRoomVerb.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkSoundSeedAir.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkSoundSeedAir.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkSoundSeedImpact.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkSoundSeedImpact.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkStereoDelay.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkStereoDelay.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkSynthOne.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkSynthOne.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkTimeStretch.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkTimeStretch.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkTremolo.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAkTremolo.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libAuro.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Mac/DSP/libAuro.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libCrankcaseAudioREVModelPlayer.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Mac/DSP/libCrankcaseAudioREVModelPlayer.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/DSP/libMcDSP.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Mac/DSP/libMcDSP.bundle -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Debug.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d631d0853fa10ea4ab884b09e9908d08 3 | folderAsset: yes 4 | timeCreated: 1521993805 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Debug/AkSoundEngine.bundle/Contents.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81cbabe4b84b8a446bd9068aac188f30 3 | folderAsset: yes 4 | timeCreated: 1521993805 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Debug/AkSoundEngine.bundle/Contents/Info.plist.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d31fb544b8eea24fa1348fbee0f09d6 3 | timeCreated: 1521993805 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Debug/AkSoundEngine.bundle/Contents/MacOS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ffe2debc47bb66343add647d5ef70048 3 | folderAsset: yes 4 | timeCreated: 1521993805 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Debug/AkSoundEngine.bundle/Contents/MacOS/AkSoundEngine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/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: 644bc109f1a6833458f58db9ece1b4e4 3 | timeCreated: 1521993805 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Debug/AkSoundEngine.bundle/Contents/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e237888eddf401c47adbca667fc72708 3 | folderAsset: yes 4 | timeCreated: 1521993805 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Debug/AkSoundEngine.bundle/Contents/Resources/en.lproj.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 609b72e74762a7f478dbb94418db05af 3 | folderAsset: yes 4 | timeCreated: 1521993805 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Debug/AkSoundEngine.bundle/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Mac/Debug/AkSoundEngine.bundle/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Debug/AkSoundEngine.bundle/Contents/Resources/en.lproj/InfoPlist.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3189fd161009dc84d8ecd75d8529a633 3 | timeCreated: 1521993805 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Debug/AkSoundEngine.bundle/Contents/Resources/readme.txt: -------------------------------------------------------------------------------- 1 | The Unity script API binding is generated automatically from the Wwise SDK's native C++ interface. 2 | 3 | Please read the documentation under the Documentation folder for more information. 4 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Debug/AkSoundEngine.bundle/Contents/Resources/readme.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a68f31251bf87a948a861afaa3fd3a99 3 | timeCreated: 1521993830 4 | licenseType: Free 5 | TextScriptImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Profile.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 354761e3873275a41b35f91578703e5c 3 | folderAsset: yes 4 | timeCreated: 1521993804 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Profile/AkSoundEngine.bundle/Contents.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 550766cf771ef114091fbfe82c2f1c52 3 | folderAsset: yes 4 | timeCreated: 1521993805 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Profile/AkSoundEngine.bundle/Contents/Info.plist.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5741eba0833c93e439d633eeb565e9bc 3 | timeCreated: 1521993805 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Profile/AkSoundEngine.bundle/Contents/MacOS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5cd1c8d88ead934699bc3561475a2ed 3 | folderAsset: yes 4 | timeCreated: 1521993805 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Profile/AkSoundEngine.bundle/Contents/MacOS/AkSoundEngine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/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: de7ed5c25f8a5514fb7240ac3552a922 3 | timeCreated: 1521993805 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Profile/AkSoundEngine.bundle/Contents/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62e28c6a12c33d34286bacc139229ec9 3 | folderAsset: yes 4 | timeCreated: 1521993805 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Profile/AkSoundEngine.bundle/Contents/Resources/en.lproj.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45502282d8a5975498dd8294588e44b1 3 | folderAsset: yes 4 | timeCreated: 1521993805 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Profile/AkSoundEngine.bundle/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Mac/Profile/AkSoundEngine.bundle/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Profile/AkSoundEngine.bundle/Contents/Resources/en.lproj/InfoPlist.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b99d2340577217648bc421faf99af10e 3 | timeCreated: 1521993805 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Profile/AkSoundEngine.bundle/Contents/Resources/readme.txt: -------------------------------------------------------------------------------- 1 | The Unity script API binding is generated automatically from the Wwise SDK's native C++ interface. 2 | 3 | Please read the documentation under the Documentation folder for more information. 4 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Profile/AkSoundEngine.bundle/Contents/Resources/readme.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f0a063ce1e1ef843b0b0f7629787323 3 | timeCreated: 1521993829 4 | licenseType: Free 5 | TextScriptImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Release.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 449e2cd49f709de4c879789c3dc7deb7 3 | folderAsset: yes 4 | timeCreated: 1521993804 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Release/AkSoundEngine.bundle/Contents.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1a003655e6145942acc8af5faf4f58e 3 | folderAsset: yes 4 | timeCreated: 1521993805 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Release/AkSoundEngine.bundle/Contents/Info.plist.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 552e3a7428cc35c409c7726de83d20f7 3 | timeCreated: 1521993805 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Release/AkSoundEngine.bundle/Contents/MacOS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f99d5b2bc46f36f438cefecde4003f9f 3 | folderAsset: yes 4 | timeCreated: 1521993805 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Release/AkSoundEngine.bundle/Contents/MacOS/AkSoundEngine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/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: aef1ea7f17f255341ae3a72bdefd0b71 3 | timeCreated: 1521993805 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Release/AkSoundEngine.bundle/Contents/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f703c924c3a998e41829bdaa5514d5cc 3 | folderAsset: yes 4 | timeCreated: 1521993805 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Release/AkSoundEngine.bundle/Contents/Resources/en.lproj.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 212ab4b961df1b8448de08fc1c676efb 3 | folderAsset: yes 4 | timeCreated: 1521993805 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Release/AkSoundEngine.bundle/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Mac/Release/AkSoundEngine.bundle/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Release/AkSoundEngine.bundle/Contents/Resources/en.lproj/InfoPlist.strings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18cb7c1364232a3488a5dbb993c8e482 3 | timeCreated: 1521993805 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Release/AkSoundEngine.bundle/Contents/Resources/readme.txt: -------------------------------------------------------------------------------- 1 | The Unity script API binding is generated automatically from the Wwise SDK's native C++ interface. 2 | 3 | Please read the documentation under the Documentation folder for more information. 4 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Mac/Release/AkSoundEngine.bundle/Contents/Resources/readme.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28d662633338aac42a5f72d383d575fe 3 | timeCreated: 1521993829 4 | licenseType: Free 5 | TextScriptImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e0bd8ec5f90b53543879a82071870bd1 3 | folderAsset: yes 4 | timeCreated: 1521993804 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba1198c735ef93d4e89ebfd47e00760e 3 | folderAsset: yes 4 | timeCreated: 1521993805 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c83186fbc8481354293c91bedf502660 3 | folderAsset: yes 4 | timeCreated: 1521993805 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkConvolutionReverb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkConvolutionReverb.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkFlanger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkFlanger.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkGuitarDistortion.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkGuitarDistortion.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkHarmonizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkHarmonizer.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkMotion.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkMotion.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkPitchShifter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkPitchShifter.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkRecorder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkRecorder.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkReflect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkReflect.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkSoundSeedAir.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkSoundSeedAir.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkSoundSeedImpact.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkSoundSeedImpact.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkStereoDelay.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkStereoDelay.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkSynthOne.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkSynthOne.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkTimeStretch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkTimeStretch.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkTremolo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/AkTremolo.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/Auro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/Auro.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/CrankcaseAudioREVModelPlayer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/CrankcaseAudioREVModelPlayer.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/McDSP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/McDSP.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/iZotope.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86/DSP/iZotope.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/Debug.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6b87d53ca12e204eb20247cc69618a5 3 | folderAsset: yes 4 | timeCreated: 1521993805 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/Debug/AkSoundEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86/Debug/AkSoundEngine.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/Profile.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5824eecee3be6f42be8ad93a5828569 3 | folderAsset: yes 4 | timeCreated: 1521993805 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/Profile/AkSoundEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86/Profile/AkSoundEngine.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/Release.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28cdd3acb1f231e4f92974f2a54ee012 3 | folderAsset: yes 4 | timeCreated: 1521993805 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86/Release/AkSoundEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86/Release/AkSoundEngine.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c0770ff212e68c41a537fb71cf12411 3 | folderAsset: yes 4 | timeCreated: 1521993805 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5857e0080802cdc4584110b19fb30ebe 3 | folderAsset: yes 4 | timeCreated: 1521993805 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkConvolutionReverb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkConvolutionReverb.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkFlanger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkFlanger.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkGuitarDistortion.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkGuitarDistortion.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkHarmonizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkHarmonizer.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkMotion.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkMotion.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkPitchShifter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkPitchShifter.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkRecorder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkRecorder.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkReflect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkReflect.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkSoundSeedAir.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkSoundSeedAir.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkSoundSeedImpact.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkSoundSeedImpact.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkStereoDelay.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkStereoDelay.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkSynthOne.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkSynthOne.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkTimeStretch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkTimeStretch.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkTremolo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/AkTremolo.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/Auro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/Auro.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/CrankcaseAudioREVModelPlayer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/CrankcaseAudioREVModelPlayer.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/McDSP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/McDSP.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/iZotope.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86_64/DSP/iZotope.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/Debug.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 260b6ae0b9878e949a2694d5ebe2cc2e 3 | folderAsset: yes 4 | timeCreated: 1521993805 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/Debug/AkSoundEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86_64/Debug/AkSoundEngine.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/Profile.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 691b9c985f81b9341abd6006fd9cd4ba 3 | folderAsset: yes 4 | timeCreated: 1521993805 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/Profile/AkSoundEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86_64/Profile/AkSoundEngine.dll -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/Release.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 803ee62afea371c4eb23f3e27613fb4d 3 | folderAsset: yes 4 | timeCreated: 1521993805 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Deployment/Plugins/Windows/x86_64/Release/AkSoundEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Deployment/Plugins/Windows/x86_64/Release/AkSoundEngine.dll -------------------------------------------------------------------------------- /Assets/Wwise/Documentation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97d197a21c6d2e34b87533a498a07db8 3 | folderAsset: yes 4 | timeCreated: 1521993803 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/AppleCommon.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cfebe03ad44549f4e89b01c21d766412 3 | folderAsset: yes 4 | timeCreated: 1521993804 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/AppleCommon/en.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8291db7aaf92e874689e079764ec9965 3 | folderAsset: yes 4 | timeCreated: 1521993804 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/AppleCommon/en/WwiseUnityIntegrationHelp_en.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Documentation/AppleCommon/en/WwiseUnityIntegrationHelp_en.zip -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/AppleCommon/en/WwiseUnityIntegrationHelp_en.zip.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe5fb8861150b424195903524134e315 3 | timeCreated: 1521993805 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/AppleCommon/ja.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6c8f852a69275a4ab1714b86cf02535 3 | folderAsset: yes 4 | timeCreated: 1521993804 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/AppleCommon/ja/WwiseUnityIntegrationHelp_ja.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Documentation/AppleCommon/ja/WwiseUnityIntegrationHelp_ja.zip -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/AppleCommon/ja/WwiseUnityIntegrationHelp_ja.zip.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5226c3245fb98544fafe34c9e8fc6d9f 3 | timeCreated: 1521993804 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/AppleCommon/zh.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48287fc6a0b2a894d9dc208f18f69609 3 | folderAsset: yes 4 | timeCreated: 1521993804 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/AppleCommon/zh/WwiseUnityIntegrationHelp_zh.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Documentation/AppleCommon/zh/WwiseUnityIntegrationHelp_zh.zip -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/AppleCommon/zh/WwiseUnityIntegrationHelp_zh.zip.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74aaf788d4f2ca245978c84e43eb31bd 3 | timeCreated: 1521993805 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/Windows.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c85ef36aa8dfcd84c993f4e1f8fbfab1 3 | folderAsset: yes 4 | timeCreated: 1521993804 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/Windows/en.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f6c3b058e7b2b1440a6dd55ef408bccf 3 | folderAsset: yes 4 | timeCreated: 1521993804 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/Windows/en/WwiseUnityIntegrationHelp_en.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Documentation/Windows/en/WwiseUnityIntegrationHelp_en.chm -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/Windows/en/WwiseUnityIntegrationHelp_en.chm.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c1b0ab79f015cb4197b313e71521f4a 3 | timeCreated: 1521993804 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/Windows/ja.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 779364b941104354ba68ac317effc107 3 | folderAsset: yes 4 | timeCreated: 1521993804 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/Windows/ja/WwiseUnityIntegrationHelp_ja.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Documentation/Windows/ja/WwiseUnityIntegrationHelp_ja.chm -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/Windows/ja/WwiseUnityIntegrationHelp_ja.chm.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61bc0c419e63a28468aa177802d565a2 3 | timeCreated: 1521993805 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/Windows/zh.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b12fe382ad12a04aa95aa1ab07c4751 3 | folderAsset: yes 4 | timeCreated: 1521993804 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/Windows/zh/WwiseUnityIntegrationHelp_zh.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Documentation/Windows/zh/WwiseUnityIntegrationHelp_zh.chm -------------------------------------------------------------------------------- /Assets/Wwise/Documentation/Windows/zh/WwiseUnityIntegrationHelp_zh.chm.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34cff1d5e4bfcd44f830eeb50f599a10 3 | timeCreated: 1521993804 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65dd286d39bc7b84c94a5496f4e7da9f 3 | folderAsset: yes 4 | timeCreated: 1521993803 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/ProjectData.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2671b335f36b315409266422a1ab45ed 3 | folderAsset: yes 4 | timeCreated: 1521993831 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/ProjectData/AkWwiseProjectData 1.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8560a8ba12da7b849aa0876ba75d77bd 3 | timeCreated: 1523547925 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/ProjectData/AkWwiseProjectData 2.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee76d01936f28bb44902aed57861b6c0 3 | timeCreated: 1523580511 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/ProjectData/AkWwiseProjectData 3.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c2d004cf993c5843a0673e6516d673e 3 | timeCreated: 1524148772 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/ProjectData/AkWwiseProjectData 4.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce5d3a769086e8d4e88ee0b469d0678a 3 | timeCreated: 1524754634 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/ProjectData/AkWwiseProjectData 5.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d848d5f1cd2296341a3066e8a3d15cb1 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/ProjectData/AkWwiseProjectData 6.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fdba49729e2f27e46b591d46343dc546 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/ProjectData/AkWwiseProjectData.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 86e2b668c7356d046be8c49c9699428a 3 | timeCreated: 1521993831 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 11400000 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseComponents.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4555d8282a81f2418f901f819cebd35 3 | folderAsset: yes 4 | timeCreated: 1521993804 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseMenu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1a87a49cb5107f49b8d56ac2972fbbc 3 | folderAsset: yes 4 | timeCreated: 1521993804 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseMenu/Common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc77c8c44755f0b48bf3df59ed093e80 3 | folderAsset: yes 4 | timeCreated: 1521993804 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseMenu/Mac.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38e81de2ca0121846ad45b3ca1dc5c78 3 | folderAsset: yes 4 | timeCreated: 1521993804 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseMenu/Windows.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7dc210a10ffa62849add182fec395cec 3 | folderAsset: yes 4 | timeCreated: 1521993804 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseSetupWizard.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ffb5f794a3dbbd4d93e9c7101f8b6db 3 | folderAsset: yes 4 | timeCreated: 1521993804 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseTypes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 91e99ec45c351b74c9ffd2f4bc094153 3 | folderAsset: yes 4 | timeCreated: 1521993804 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8267673d4b055224dbc614a479999115 3 | folderAsset: yes 4 | timeCreated: 1521993804 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5fa68d05744d7b54b8b8fea5f51ab032 3 | folderAsset: yes 4 | timeCreated: 1521993804 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/TreeViewHoverSkin.guiskin.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0e0334b565efba42bc41dc28d65ffd5 3 | timeCreated: 1521993829 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 0 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/TreeViewSelectedSkin.guiskin.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97aca091b785eda4b944d16d979ff001 3 | timeCreated: 1521993829 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 0 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/TreeViewUnselectedSkin.guiskin.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f17f6c7069266464cba2ffcf0984f993 3 | timeCreated: 1521993829 4 | licenseType: Free 5 | NativeFormatImporter: 6 | externalObjects: {} 7 | mainObjectFileID: 0 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/auxbus_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/auxbus_nor.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/blank.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/bus_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/bus_nor.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/event_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/event_nor.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/folder_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/folder_nor.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/guide.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/last_sibling_collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/last_sibling_collapsed.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/last_sibling_expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/last_sibling_expanded.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/last_sibling_nochild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/last_sibling_nochild.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/middle_sibling_collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/middle_sibling_collapsed.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/middle_sibling_expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/middle_sibling_expanded.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/middle_sibling_nochild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/middle_sibling_nochild.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/normal_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/normal_checked.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/normal_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/normal_unchecked.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/physical_folder_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/physical_folder_nor.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/selected_background_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/selected_background_color.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/soundbank_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/soundbank_nor.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/state_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/state_nor.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/stategroup_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/stategroup_nor.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/switch_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/switch_nor.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/switchgroup_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/switchgroup_nor.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/workunit_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/workunit_nor.png -------------------------------------------------------------------------------- /Assets/Wwise/Editor/WwiseWindows/TreeViewControl/wproj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Editor/WwiseWindows/TreeViewControl/wproj.png -------------------------------------------------------------------------------- /Assets/Wwise/Extensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8219acb8289336241a5d43c14146efd4 3 | folderAsset: yes 4 | timeCreated: 1521993803 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Gizmos.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0244530e4dcdefa418df489a5822856f 3 | folderAsset: yes 4 | timeCreated: 1521993803 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Gizmos/WwiseAudioSpeaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Gizmos/WwiseAudioSpeaker.png -------------------------------------------------------------------------------- /Assets/Wwise/Gizmos/wwise_white_on_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise/Gizmos/wwise_white_on_gray.png -------------------------------------------------------------------------------- /Assets/Wwise/Tools.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 371aeb9b832bd56468a56dcc4df3c812 3 | folderAsset: yes 4 | timeCreated: 1521993803 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise/Tools/WwiseIDConverter.py.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22c243bd60dab5d4aa287fc90b86f892 3 | timeCreated: 1521993804 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise/Version.txt: -------------------------------------------------------------------------------- 1 | Wwise Unity Integration Version Info: 2 | 3 | Based on Wwise SDK: 2017.2.2 Build 6553 4 | 5 | Unity Integration Bundle: 2017.2.2.1015 6 | 7 | Unity Integration Version: 15 8 | -------------------------------------------------------------------------------- /Assets/Wwise/Version.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a564d02d74075b24a891168a18c912aa 3 | timeCreated: 1521993830 4 | licenseType: Free 5 | TextScriptImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/WwiseSettings.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a149f249311ee054e8d17d84ef37bbea 3 | timeCreated: 1521993830 4 | licenseType: Free 5 | TextScriptImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0932854020c22394fb528364478a9ebc 3 | folderAsset: yes 4 | timeCreated: 1523580495 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Actor-Mixer Hierarchy.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f44be25b34e924b48a84408864a8fae0 3 | folderAsset: yes 4 | timeCreated: 1523589803 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Actor-Mixer Hierarchy/Default Work Unit.wwu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: daba5356d1d5c9148917193774badba6 3 | timeCreated: 1524801323 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Attenuations.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bafa47fca025444449d396b5c1ae6581 3 | folderAsset: yes 4 | timeCreated: 1523589803 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Attenuations/Default Work Unit.wwu: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Attenuations/Default Work Unit.wwu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 282ed152c748cbc4eb428460b6627379 3 | timeCreated: 1523892580 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Audio Devices.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 857cea5070a1d804091f4f5293710d7a 3 | folderAsset: yes 4 | timeCreated: 1523589803 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Audio Devices/Default Work Unit.wwu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69fe5cfd33229d04489cc481d5ef0e88 3 | timeCreated: 1523892580 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Control Surface Sessions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ecec1347b318b24a8287a92e307e15f 3 | folderAsset: yes 4 | timeCreated: 1523589803 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Control Surface Sessions/Default Work Unit.wwu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c9ac425846f240d4199b1e485f7c993d 3 | timeCreated: 1523892580 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Conversion Settings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41c387ef33613b2468c452f19ceec933 3 | folderAsset: yes 4 | timeCreated: 1523589803 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Conversion Settings/Default Work Unit.wwu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dea8b01ce629fdc458fbfcebdce6eaaf 3 | timeCreated: 1523892580 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Conversion Settings/Factory Conversion Settings.wwu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 550ac97f471b1ef4aba45cd395a6907f 3 | timeCreated: 1523892580 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Dynamic Dialogue.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 409d84acf4963cc4f9cd273c66fe1ca6 3 | folderAsset: yes 4 | timeCreated: 1523589803 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Dynamic Dialogue/Default Work Unit.wwu: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Dynamic Dialogue/Default Work Unit.wwu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a807e5b574232f647b7feb5e3b3ec7bb 3 | timeCreated: 1523892580 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Effects.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19adfcfdccbae70459cf66652e4da618 3 | folderAsset: yes 4 | timeCreated: 1523589803 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Effects/Default Work Unit.wwu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f6df857c2eceea44b901901fc77fe0a 3 | timeCreated: 1523892580 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Effects/Factory Effects.wwu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc7bf467a0f30ad408a822f1d916240c 3 | timeCreated: 1523892580 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Events.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 374b5cbf90933284789bb5efa637d9a2 3 | folderAsset: yes 4 | timeCreated: 1523589803 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Events/Default Work Unit.wwu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b463a4c3b1220914d899ee0ced3dbb97 3 | timeCreated: 1524801110 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Game Parameters.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0bc2002e779e8b14a94c443b469d7943 3 | folderAsset: yes 4 | timeCreated: 1523589803 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Game Parameters/Default Work Unit.wwu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 097c1ea2d282124438607462a926cb32 3 | timeCreated: 1523892580 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/GeneratedSoundBanks.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 27c5a67e5e9068f4ab2107124668781f 3 | folderAsset: yes 4 | timeCreated: 1523589803 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/GeneratedSoundBanks/Windows.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d732ce149b0d9c46b76cd3b2b09af89 3 | folderAsset: yes 4 | timeCreated: 1523589803 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/GeneratedSoundBanks/Windows/DecodedBanks.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f47b2f1f0dff233459ed85770eb82cdf 3 | folderAsset: yes 4 | timeCreated: 1523589804 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/GeneratedSoundBanks/Windows/DecodedBanks/English(US).meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d382197af713f1042adcf5dfc05ceb96 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/GeneratedSoundBanks/Windows/Init.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise_Project/GeneratedSoundBanks/Windows/Init.bnk -------------------------------------------------------------------------------- /Assets/Wwise_Project/GeneratedSoundBanks/Windows/Init.bnk.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e606cda9e3e57ad4999b2d2c90faeea9 3 | timeCreated: 1524787439 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/GeneratedSoundBanks/Windows/Init.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bad4436debdd33445ba914ebb66b06ed 3 | timeCreated: 1524787439 4 | licenseType: Free 5 | TextScriptImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/GeneratedSoundBanks/Windows/PluginInfo.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e0d0fa194546dc4dbb53730ec82c5c9 3 | timeCreated: 1524801323 4 | licenseType: Free 5 | TextScriptImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/GeneratedSoundBanks/Windows/SoundbanksInfo.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6fa0b2bcf40849d4eae022cdf77593cc 3 | timeCreated: 1524801323 4 | licenseType: Free 5 | TextScriptImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/GeneratedSoundBanks/Windows/TEST.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise_Project/GeneratedSoundBanks/Windows/TEST.bnk -------------------------------------------------------------------------------- /Assets/Wwise_Project/GeneratedSoundBanks/Windows/TEST.bnk.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc92d8631ae8d334e980308ddd61ac10 3 | timeCreated: 1523892581 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/GeneratedSoundBanks/Windows/TEST.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 82f32a9e186cc2f4f96e1abfdecdf759 3 | timeCreated: 1523892582 4 | licenseType: Free 5 | TextScriptImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/GeneratedSoundBanks/Windows/WIP_TITLE.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise_Project/GeneratedSoundBanks/Windows/WIP_TITLE.bnk -------------------------------------------------------------------------------- /Assets/Wwise_Project/GeneratedSoundBanks/Windows/WIP_TITLE.bnk.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 82dec3047f3e9514cb00404465ff8325 3 | timeCreated: 1524801323 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/GeneratedSoundBanks/Windows/WIP_TITLE.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c87bd77ce55d524087ac6709359ce12 3 | timeCreated: 1524801323 4 | licenseType: Free 5 | TextScriptImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/IncrementalSoundBankData.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40ccc8c07b301aa499c8ea3737268628 3 | timeCreated: 1524801323 4 | licenseType: Free 5 | TextScriptImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Interactive Music Hierarchy.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e851959c18eb752449b0de18e2c0880f 3 | folderAsset: yes 4 | timeCreated: 1523589803 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Interactive Music Hierarchy/Default Work Unit.wwu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ccea8bbc089d87d4181ce750ccbee2da 3 | timeCreated: 1523892580 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Master-Mixer Hierarchy.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d4069ce0653d3b43ba52a9a5787e02d 3 | folderAsset: yes 4 | timeCreated: 1523589803 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Master-Mixer Hierarchy/Default Work Unit.wwu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89accc7c388f9bb45b44caa5785e129c 3 | timeCreated: 1524787439 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Mixing Sessions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a9ffb64c7218c54989db22fbe8d12b9 3 | folderAsset: yes 4 | timeCreated: 1523589803 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Mixing Sessions/Default Work Unit.wwu: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Mixing Sessions/Default Work Unit.wwu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 551b8e41c4c44a24d9a2538e38e4ca37 3 | timeCreated: 1523892580 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Modulators.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bea9a29394a46484e8dba4616baf96ef 3 | folderAsset: yes 4 | timeCreated: 1523589803 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Modulators/Default Work Unit.wwu: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Modulators/Default Work Unit.wwu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c38ea12f6c23ec84ea91ebd9f2ba6125 3 | timeCreated: 1523892580 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Presets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f30090267f9553d4f9b309e3538c0ae7 3 | folderAsset: yes 4 | timeCreated: 1523589803 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Presets/Default Work Unit.wwu: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Presets/Default Work Unit.wwu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b181c60e8507c34fa9d8224adde81ff 3 | timeCreated: 1523892580 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/ProfilingSession12.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise_Project/ProfilingSession12.prof -------------------------------------------------------------------------------- /Assets/Wwise_Project/ProfilingSession12.prof.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46b9d30455a9caa49a87651f48b68f2b 3 | timeCreated: 1523892580 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/ProfilingSession13.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise_Project/ProfilingSession13.prof -------------------------------------------------------------------------------- /Assets/Wwise_Project/ProfilingSession13.prof.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f8fde5fc3b010642a5857f61cacad8b 3 | timeCreated: 1523892580 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/ProfilingSession14.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise_Project/ProfilingSession14.prof -------------------------------------------------------------------------------- /Assets/Wwise_Project/ProfilingSession14.prof.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c57e39ad9c62b740833d6b7858df298 3 | timeCreated: 1523892580 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/ProfilingSession15.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise_Project/ProfilingSession15.prof -------------------------------------------------------------------------------- /Assets/Wwise_Project/ProfilingSession15.prof.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e92b4e092fecada47af7dd613fad7768 3 | timeCreated: 1523892580 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/ProfilingSession16.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Assets/Wwise_Project/ProfilingSession16.prof -------------------------------------------------------------------------------- /Assets/Wwise_Project/ProfilingSession16.prof.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 220f3e7c821621e44a1d543ee32e9fdf 3 | timeCreated: 1523892579 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Queries.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22956bcad19ea864bb9b81dca84090c4 3 | folderAsset: yes 4 | timeCreated: 1523589803 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Queries/Default Work Unit.wwu: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Queries/Default Work Unit.wwu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 110bfaf6506fade4fadd746376b93904 3 | timeCreated: 1523892580 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Queries/Factory Queries.wwu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf1cf204259ceb043a1ff70ca6090e55 3 | timeCreated: 1523892580 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/SoundBanks.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ba4d68a099986e4baaf294b23ff3fab 3 | folderAsset: yes 4 | timeCreated: 1523589803 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/SoundBanks/Default Work Unit.wwu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1c477423a693604aae58d68cfd603dc 3 | timeCreated: 1524787439 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Soundcaster Sessions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a098fa8a8b99644f91ce32cd5ce7b9a 3 | folderAsset: yes 4 | timeCreated: 1523589803 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Soundcaster Sessions/Default Work Unit.wwu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 002bcdb15401f1545863ce01c934f0b4 3 | timeCreated: 1524801323 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/States.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f55b6a6708c5974a8d1af21e98de1f0 3 | folderAsset: yes 4 | timeCreated: 1523589803 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/States/Default Work Unit.wwu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d8890afe68c45f4398c7974bc8cf81d 3 | timeCreated: 1523892580 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Switches.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff174717266ee654f9afe41581f2665b 3 | folderAsset: yes 4 | timeCreated: 1523589803 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Switches/Default Work Unit.wwu: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Switches/Default Work Unit.wwu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f985b5e5e046204da2cdc26b6cce8df 3 | timeCreated: 1523892580 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Triggers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65c444171c85b5b40a96012c16a68432 3 | folderAsset: yes 4 | timeCreated: 1523589803 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Triggers/Default Work Unit.wwu: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Triggers/Default Work Unit.wwu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c597b3d7d67ddc442a5ab942a4f04a95 3 | timeCreated: 1523892580 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Virtual Acoustics.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d363bea1a7461d4b84438f189e849d4 3 | folderAsset: yes 4 | timeCreated: 1523589803 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/Virtual Acoustics/Default Work Unit.wwu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b8fa808a96f36e42bac401b26d91ece 3 | timeCreated: 1523892580 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/WIP TITLE.JOON.validationcache.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d017537e306dab45bd550a9b9041386 3 | timeCreated: 1524801323 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/WIP TITLE.JOON.wsettings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3479c0d17048b014e84f65e4ae60d579 3 | timeCreated: 1524801323 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Wwise_Project/WIP TITLE.wproj.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e229383576f757d4ea0666badc2b214d 3 | timeCreated: 1523892580 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Doc/images/2018-10-30_Screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Doc/images/2018-10-30_Screenshot-01.png -------------------------------------------------------------------------------- /Doc/images/2018-10-30_Screenshot-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Doc/images/2018-10-30_Screenshot-03.png -------------------------------------------------------------------------------- /Doc/images/2018-10-30_Screenshot-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Doc/images/2018-10-30_Screenshot-06.png -------------------------------------------------------------------------------- /Doc/images/2018-10-30_Screenshot-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Doc/images/2018-10-30_Screenshot-08.png -------------------------------------------------------------------------------- /Doc/images/2018-10-30_Screenshot-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Doc/images/2018-10-30_Screenshot-14.png -------------------------------------------------------------------------------- /Doc/images/2018-10-30_Screenshot-18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekymoose/ShippedTooSoon/15b09479f51e85d2981be83f95b3e0b65a13d2c2/Doc/images/2018-10-30_Screenshot-18.gif -------------------------------------------------------------------------------- /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/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2017.4.10f1 2 | -------------------------------------------------------------------------------- /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.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /UnityPackageManager/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | } 4 | } 5 | --------------------------------------------------------------------------------